OSDN Git Service

* tree-sra.c (decide_block_copy): Decide if there are groups.
[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
3 @c Free Software Foundation, Inc.
4 @c This is part of the GCC manual.
5 @c For copying conditions, see the file gcc.texi.
6
7 @ignore
8 @c man begin INCLUDE
9 @include gcc-vers.texi
10 @c man end
11
12 @c man begin COPYRIGHT
13 Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
14 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
15 2007 Free Software Foundation, Inc.
16
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.2 or
19 any later version published by the Free Software Foundation; with the
20 Invariant Sections being ``GNU General Public License'' and ``Funding
21 Free Software'', the Front-Cover texts being (a) (see below), and with
22 the Back-Cover Texts being (b) (see below).  A copy of the license is
23 included in the gfdl(7) man page.
24
25 (a) The FSF's Front-Cover Text is:
26
27      A GNU Manual
28
29 (b) The FSF's Back-Cover Text is:
30
31      You have freedom to copy and modify this GNU Manual, like GNU
32      software.  Copies published by the Free Software Foundation raise
33      funds for GNU development.
34 @c man end
35 @c Set file name and title for the man page.
36 @setfilename gcc
37 @settitle GNU project C and C++ compiler
38 @c man begin SYNOPSIS
39 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
40     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
41     [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
42     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
43     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
44     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
45     [@option{-o} @var{outfile}] [@@@var{file}] @var{infile}@dots{}
46
47 Only the most useful options are listed here; see below for the
48 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
49 @c man end
50 @c man begin SEEALSO
51 gpl(7), gfdl(7), fsf-funding(7),
52 cpp(1), gcov(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
53 and the Info entries for @file{gcc}, @file{cpp}, @file{as},
54 @file{ld}, @file{binutils} and @file{gdb}.
55 @c man end
56 @c man begin BUGS
57 For instructions on reporting bugs, see
58 @w{@value{BUGURL}}.
59 @c man end
60 @c man begin AUTHOR
61 See the Info entry for @command{gcc}, or
62 @w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
63 for contributors to GCC@.
64 @c man end
65 @end ignore
66
67 @node Invoking GCC
68 @chapter GCC Command Options
69 @cindex GCC command options
70 @cindex command options
71 @cindex options, GCC command
72
73 @c man begin DESCRIPTION
74 When you invoke GCC, it normally does preprocessing, compilation,
75 assembly and linking.  The ``overall options'' allow you to stop this
76 process at an intermediate stage.  For example, the @option{-c} option
77 says not to run the linker.  Then the output consists of object files
78 output by the assembler.
79
80 Other options are passed on to one stage of processing.  Some options
81 control the preprocessor and others the compiler itself.  Yet other
82 options control the assembler and linker; most of these are not
83 documented here, since you rarely need to use any of them.
84
85 @cindex C compilation options
86 Most of the command line options that you can use with GCC are useful
87 for C programs; when an option is only useful with another language
88 (usually C++), the explanation says so explicitly.  If the description
89 for a particular option does not mention a source language, you can use
90 that option with all supported languages.
91
92 @cindex C++ compilation options
93 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
94 options for compiling C++ programs.
95
96 @cindex grouping options
97 @cindex options, grouping
98 The @command{gcc} program accepts options and file names as operands.  Many
99 options have multi-letter names; therefore multiple single-letter options
100 may @emph{not} be grouped: @option{-dr} is very different from @w{@samp{-d
101 -r}}.
102
103 @cindex order of options
104 @cindex options, order
105 You can mix options and other arguments.  For the most part, the order
106 you use doesn't matter.  Order does matter when you use several
107 options of the same kind; for example, if you specify @option{-L} more
108 than once, the directories are searched in the order specified.  Also,
109 the placement of the @option{-l} option is significant.
110
111 Many options have long names starting with @samp{-f} or with
112 @samp{-W}---for example,
113 @option{-fmove-loop-invariants}, @option{-Wformat} and so on.  Most of
114 these have both positive and negative forms; the negative form of
115 @option{-ffoo} would be @option{-fno-foo}.  This manual documents
116 only one of these two forms, whichever one is not the default.
117
118 @c man end
119
120 @xref{Option Index}, for an index to GCC's options.
121
122 @menu
123 * Option Summary::      Brief list of all options, without explanations.
124 * Overall Options::     Controlling the kind of output:
125                         an executable, object files, assembler files,
126                         or preprocessed source.
127 * Invoking G++::        Compiling C++ programs.
128 * C Dialect Options::   Controlling the variant of C language compiled.
129 * C++ Dialect Options:: Variations on C++.
130 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
131                         and Objective-C++.
132 * Language Independent Options:: Controlling how diagnostics should be
133                         formatted.
134 * Warning Options::     How picky should the compiler be?
135 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
136 * Optimize Options::    How much optimization?
137 * Preprocessor Options:: Controlling header files and macro definitions.
138                          Also, getting dependency information for Make.
139 * Assembler Options::   Passing options to the assembler.
140 * Link Options::        Specifying libraries and so on.
141 * Directory Options::   Where to find header files and libraries.
142                         Where to find the compiler executable files.
143 * Spec Files::          How to pass switches to sub-processes.
144 * Target Options::      Running a cross-compiler, or an old version of GCC.
145 * Submodel Options::    Specifying minor hardware or convention variations,
146                         such as 68010 vs 68020.
147 * Code Gen Options::    Specifying conventions for function calls, data layout
148                         and register usage.
149 * Environment Variables:: Env vars that affect GCC.
150 * Precompiled Headers:: Compiling a header once, and using it many times.
151 * Running Protoize::    Automatically adding or removing function prototypes.
152 @end menu
153
154 @c man begin OPTIONS
155
156 @node Option Summary
157 @section Option Summary
158
159 Here is a summary of all the options, grouped by type.  Explanations are
160 in the following sections.
161
162 @table @emph
163 @item Overall Options
164 @xref{Overall Options,,Options Controlling the Kind of Output}.
165 @gccoptlist{-c  -S  -E  -o @var{file}  -combine  -pipe  -pass-exit-codes  @gol
166 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{]}  --target-help  @gol
167 --version @@@var{file}}
168
169 @item C Language Options
170 @xref{C Dialect Options,,Options Controlling C Dialect}.
171 @gccoptlist{-ansi  -std=@var{standard}  -fgnu89-inline @gol
172 -aux-info @var{filename} @gol
173 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
174 -fhosted  -ffreestanding -fopenmp -fms-extensions @gol
175 -trigraphs  -no-integrated-cpp  -traditional  -traditional-cpp @gol
176 -fallow-single-precision  -fcond-mismatch -flax-vector-conversions @gol
177 -fsigned-bitfields  -fsigned-char @gol
178 -funsigned-bitfields  -funsigned-char}
179
180 @item C++ Language Options
181 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
182 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
183 -fconserve-space  -ffriend-injection @gol
184 -fno-elide-constructors @gol
185 -fno-enforce-eh-specs @gol
186 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
187 -fno-implicit-templates @gol
188 -fno-implicit-inline-templates @gol
189 -fno-implement-inlines  -fms-extensions @gol
190 -fno-nonansi-builtins  -fno-operator-names @gol
191 -fno-optional-diags  -fpermissive @gol
192 -frepo  -fno-rtti  -fstats  -ftemplate-depth-@var{n} @gol
193 -fno-threadsafe-statics -fuse-cxa-atexit  -fno-weak  -nostdinc++ @gol
194 -fno-default-inline  -fvisibility-inlines-hidden @gol
195 -fvisibility-ms-compat @gol
196 -Wabi  -Wctor-dtor-privacy @gol
197 -Wnon-virtual-dtor  -Wreorder @gol
198 -Weffc++  -Wno-deprecated  -Wstrict-null-sentinel @gol
199 -Wno-non-template-friend  -Wold-style-cast @gol
200 -Woverloaded-virtual  -Wno-pmf-conversions @gol
201 -Wsign-promo}
202
203 @item Objective-C and Objective-C++ Language Options
204 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
205 Objective-C and Objective-C++ Dialects}.
206 @gccoptlist{-fconstant-string-class=@var{class-name} @gol
207 -fgnu-runtime  -fnext-runtime @gol
208 -fno-nil-receivers @gol
209 -fobjc-call-cxx-cdtors @gol
210 -fobjc-direct-dispatch @gol
211 -fobjc-exceptions @gol
212 -fobjc-gc @gol
213 -freplace-objc-classes @gol
214 -fzero-link @gol
215 -gen-decls @gol
216 -Wassign-intercept @gol
217 -Wno-protocol  -Wselector @gol
218 -Wstrict-selector-match @gol
219 -Wundeclared-selector}
220
221 @item Language Independent Options
222 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
223 @gccoptlist{-fmessage-length=@var{n}  @gol
224 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}  @gol
225 -fdiagnostics-show-option}
226
227 @item Warning Options
228 @xref{Warning Options,,Options to Request or Suppress Warnings}.
229 @gccoptlist{-fsyntax-only  -pedantic  -pedantic-errors @gol
230 -w  -Wextra  -Wall  -Waddress  -Waggregate-return  -Warray-bounds @gol
231 -Wno-attributes -Wc++-compat -Wc++0x-compat -Wcast-align  -Wcast-qual  @gol
232 -Wchar-subscripts -Wclobbered  -Wcomment @gol
233 -Wconversion  -Wcoverage-mismatch  -Wno-deprecated-declarations @gol
234 -Wdisabled-optimization  -Wno-div-by-zero  @gol
235 -Wempty-body  -Wno-endif-labels @gol
236 -Werror  -Werror=* @gol
237 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
238 -Wno-format-extra-args -Wformat-nonliteral @gol
239 -Wformat-security  -Wformat-y2k @gol
240 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
241 -Wimport  -Wno-import  -Winit-self  -Winline @gol
242 -Wno-int-to-pointer-cast -Wno-invalid-offsetof @gol
243 -Winvalid-pch -Wlarger-than-@var{len}  -Wunsafe-loop-optimizations @gol
244 -Wlogical-op -Wlong-long @gol
245 -Wmain  -Wmissing-braces  -Wmissing-field-initializers @gol
246 -Wmissing-format-attribute  -Wmissing-include-dirs @gol
247 -Wmissing-noreturn @gol
248 -Wno-multichar  -Wnonnull  -Wno-overflow @gol
249 -Woverlength-strings  -Wpacked  -Wpadded @gol
250 -Wparentheses  -Wpointer-arith  -Wno-pointer-to-int-cast @gol
251 -Wredundant-decls @gol
252 -Wreturn-type  -Wsequence-point  -Wshadow @gol
253 -Wsign-compare  -Wsign-conversion  -Wstack-protector @gol
254 -Wstrict-aliasing -Wstrict-aliasing=n @gol
255 -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
256 -Wswitch  -Wswitch-default  -Wswitch-enum @gol
257 -Wsystem-headers  -Wtrigraphs  -Wtype-limits  -Wundef  -Wuninitialized @gol
258 -Wunknown-pragmas  -Wno-pragmas -Wunreachable-code @gol
259 -Wunused  -Wunused-function  -Wunused-label  -Wunused-parameter @gol
260 -Wunused-value  -Wunused-variable @gol
261 -Wvariadic-macros -Wvla @gol
262 -Wvolatile-register-var  -Wwrite-strings}
263
264 @item C-only Warning Options
265 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
266 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
267 -Wold-style-declaration  -Wold-style-definition @gol
268 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
269 -Wdeclaration-after-statement -Wpointer-sign}
270
271 @item Debugging Options
272 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
273 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
274 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
275 -fdump-noaddr -fdump-unnumbered  -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
276 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
277 -fdump-ipa-all -fdump-ipa-cgraph @gol
278 -fdump-tree-all @gol
279 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
280 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
281 -fdump-tree-inlined@r{[}-@var{n}@r{]} @gol
282 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
283 -fdump-tree-ch @gol
284 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
285 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
286 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
287 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
288 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
289 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
290 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
291 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
292 -fdump-tree-nrv -fdump-tree-vect @gol
293 -fdump-tree-sink @gol
294 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
295 -fdump-tree-salias @gol
296 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
297 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
298 -ftree-vectorizer-verbose=@var{n} @gol
299 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
300 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
301 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
302 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
303 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
304 -ftest-coverage  -ftime-report -fvar-tracking @gol
305 -g  -g@var{level}  -gcoff -gdwarf-2 @gol
306 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
307 -fdebug-prefix-map=@var{old}=@var{new} @gol
308 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
309 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
310 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
311 -print-multi-directory  -print-multi-lib @gol
312 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
313 -print-sysroot-headers-suffix @gol
314 -save-temps  -time}
315
316 @item Optimization Options
317 @xref{Optimize Options,,Options that Control Optimization}.
318 @gccoptlist{-falign-functions=@var{n}  -falign-jumps=@var{n} @gol
319 -falign-labels=@var{n}  -falign-loops=@var{n}  @gol
320 -fbounds-check -fmudflap -fmudflapth -fmudflapir @gol
321 -fbranch-probabilities -fprofile-values -fvpt -fbranch-target-load-optimize @gol
322 -fbranch-target-load-optimize2 -fbtr-bb-exclusive @gol
323 -fcaller-saves  -fcprop-registers  -fcse-follow-jumps @gol
324 -fcse-skip-blocks  -fcx-limited-range  -fdata-sections @gol
325 -fdelayed-branch  -fdelete-null-pointer-checks -fearly-inlining @gol
326 -fexpensive-optimizations  -ffast-math  -ffloat-store @gol
327 -fforce-addr  -fforward-propagate  -ffunction-sections @gol
328 -fgcse  -fgcse-lm  -fgcse-sm  -fgcse-las  -fgcse-after-reload @gol
329 -fcrossjumping  -fif-conversion  -fif-conversion2 @gol
330 -finline-functions  -finline-functions-called-once @gol
331 -finline-small-functions -finline-limit=@var{n}  -fkeep-inline-functions @gol
332 -fkeep-static-consts  -fmerge-constants  -fmerge-all-constants @gol
333 -fmodulo-sched -fmodulo-sched-allow-regmoves -fno-branch-count-reg @gol
334 -fno-default-inline  -fno-defer-pop -fmove-loop-invariants @gol
335 -fno-function-cse  -fno-guess-branch-probability @gol
336 -fno-inline  -fno-math-errno  -fno-peephole  -fno-peephole2 @gol
337 -funsafe-math-optimizations  -funsafe-loop-optimizations @gol
338 -ffinite-math-only  -fno-signed-zeros @gol
339 -fno-toplevel-reorder -fno-trapping-math  -fno-zero-initialized-in-bss @gol
340 -fomit-frame-pointer  -foptimize-register-move @gol
341 -foptimize-sibling-calls  -fpredictive-commoning -fprefetch-loop-arrays @gol
342 -fprofile-generate -fprofile-use @gol
343 -fregmove  -frename-registers @gol
344 -freorder-blocks  -freorder-blocks-and-partition -freorder-functions @gol
345 -frerun-cse-after-loop @gol
346 -frounding-math -frtl-abstract-sequences @gol
347 -fschedule-insns  -fschedule-insns2 @gol
348 -fno-sched-interblock  -fno-sched-spec  -fsched-spec-load @gol
349 -fsched-spec-load-dangerous  @gol
350 -fsched-stalled-insns=@var{n} -fsched-stalled-insns-dep=@var{n} @gol
351 -fsched2-use-superblocks @gol
352 -fsched2-use-traces -fsee -freschedule-modulo-scheduled-loops @gol
353 -fsection-anchors  -fsignaling-nans  -fsingle-precision-constant @gol
354 -fno-split-wide-types -fstack-protector  -fstack-protector-all @gol
355 -fstrict-aliasing  -fstrict-overflow  -ftracer  -fthread-jumps @gol
356 -funroll-all-loops  -funroll-loops  -fpeel-loops @gol
357 -fsplit-ivs-in-unroller -funswitch-loops @gol
358 -fvariable-expansion-in-unroller -ftree-reassoc @gol
359 -ftree-pre  -ftree-ccp  -ftree-dce -ftree-loop-optimize @gol
360 -ftree-loop-linear -ftree-loop-im -ftree-loop-ivcanon -fivopts @gol
361 -fcheck-data-deps -ftree-parallelize-loops @gol
362 -ftree-dominator-opts -ftree-dse -ftree-copyrename -ftree-sink @gol
363 -ftree-ch -ftree-sra -ftree-ter -ftree-fre -ftree-vectorize @gol
364 -ftree-vect-loop-version -fvect-cost-model -ftree-salias -fipa-pta -fweb @gol
365 -ftree-copy-prop -ftree-store-ccp -ftree-store-copy-prop -fwhole-program @gol
366 --param @var{name}=@var{value}
367 -O  -O0  -O1  -O2  -O3  -Os}
368
369 @item Preprocessor Options
370 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
371 @gccoptlist{-A@var{question}=@var{answer} @gol
372 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
373 -C  -dD  -dI  -dM  -dN @gol
374 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
375 -idirafter @var{dir} @gol
376 -include @var{file}  -imacros @var{file} @gol
377 -iprefix @var{file}  -iwithprefix @var{dir} @gol
378 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
379 -imultilib @var{dir} -isysroot @var{dir} @gol
380 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
381 -P  -fworking-directory  -remap @gol
382 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
383 -Xpreprocessor @var{option}}
384
385 @item Assembler Option
386 @xref{Assembler Options,,Passing Options to the Assembler}.
387 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
388
389 @item Linker Options
390 @xref{Link Options,,Options for Linking}.
391 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
392 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
393 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
394 -Wl,@var{option}  -Xlinker @var{option} @gol
395 -u @var{symbol}}
396
397 @item Directory Options
398 @xref{Directory Options,,Options for Directory Search}.
399 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
400 -specs=@var{file}  -I- --sysroot=@var{dir}}
401
402 @item Target Options
403 @c I wrote this xref this way to avoid overfull hbox. -- rms
404 @xref{Target Options}.
405 @gccoptlist{-V @var{version}  -b @var{machine}}
406
407 @item Machine Dependent Options
408 @xref{Submodel Options,,Hardware Models and Configurations}.
409 @c This list is ordered alphanumerically by subsection name.
410 @c Try and put the significant identifier (CPU or system) first,
411 @c so users have a clue at guessing where the ones they want will be.
412
413 @emph{ARC Options}
414 @gccoptlist{-EB  -EL @gol
415 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
416 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
417
418 @emph{ARM Options}
419 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
420 -mabi=@var{name} @gol
421 -mapcs-stack-check  -mno-apcs-stack-check @gol
422 -mapcs-float  -mno-apcs-float @gol
423 -mapcs-reentrant  -mno-apcs-reentrant @gol
424 -msched-prolog  -mno-sched-prolog @gol
425 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
426 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
427 -mthumb-interwork  -mno-thumb-interwork @gol
428 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
429 -mstructure-size-boundary=@var{n} @gol
430 -mabort-on-noreturn @gol
431 -mlong-calls  -mno-long-calls @gol
432 -msingle-pic-base  -mno-single-pic-base @gol
433 -mpic-register=@var{reg} @gol
434 -mnop-fun-dllimport @gol
435 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
436 -mpoke-function-name @gol
437 -mthumb  -marm @gol
438 -mtpcs-frame  -mtpcs-leaf-frame @gol
439 -mcaller-super-interworking  -mcallee-super-interworking @gol
440 -mtp=@var{name}}
441
442 @emph{AVR Options}
443 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
444 -mcall-prologues  -mno-tablejump  -mtiny-stack  -mint8}
445
446 @emph{Blackfin Options}
447 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
448 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
449 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
450 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
451 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
452 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
453 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
454 -mfast-fp -minline-plt}
455
456 @emph{CRIS Options}
457 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
458 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
459 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
460 -mstack-align  -mdata-align  -mconst-align @gol
461 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
462 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
463 -mmul-bug-workaround  -mno-mul-bug-workaround}
464
465 @emph{CRX Options}
466 @gccoptlist{-mmac -mpush-args}
467
468 @emph{Darwin Options}
469 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
470 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
471 -client_name  -compatibility_version  -current_version @gol
472 -dead_strip @gol
473 -dependency-file  -dylib_file  -dylinker_install_name @gol
474 -dynamic  -dynamiclib  -exported_symbols_list @gol
475 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
476 -force_flat_namespace  -headerpad_max_install_names @gol
477 -iframework @gol
478 -image_base  -init  -install_name  -keep_private_externs @gol
479 -multi_module  -multiply_defined  -multiply_defined_unused @gol
480 -noall_load   -no_dead_strip_inits_and_terms @gol
481 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
482 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
483 -private_bundle  -read_only_relocs  -sectalign @gol
484 -sectobjectsymbols  -whyload  -seg1addr @gol
485 -sectcreate  -sectobjectsymbols  -sectorder @gol
486 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
487 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
488 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
489 -single_module  -static  -sub_library  -sub_umbrella @gol
490 -twolevel_namespace  -umbrella  -undefined @gol
491 -unexported_symbols_list  -weak_reference_mismatches @gol
492 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
493 -mkernel -mone-byte-bool}
494
495 @emph{DEC Alpha Options}
496 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
497 -mieee  -mieee-with-inexact  -mieee-conformant @gol
498 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
499 -mtrap-precision=@var{mode}  -mbuild-constants @gol
500 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
501 -mbwx  -mmax  -mfix  -mcix @gol
502 -mfloat-vax  -mfloat-ieee @gol
503 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
504 -msmall-text  -mlarge-text @gol
505 -mmemory-latency=@var{time}}
506
507 @emph{DEC Alpha/VMS Options}
508 @gccoptlist{-mvms-return-codes}
509
510 @emph{FRV Options}
511 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
512 -mhard-float  -msoft-float @gol
513 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
514 -mdouble  -mno-double @gol
515 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
516 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
517 -mlinked-fp  -mlong-calls  -malign-labels @gol
518 -mlibrary-pic  -macc-4  -macc-8 @gol
519 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
520 -moptimize-membar -mno-optimize-membar @gol
521 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
522 -mvliw-branch  -mno-vliw-branch @gol
523 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
524 -mno-nested-cond-exec  -mtomcat-stats @gol
525 -mTLS -mtls @gol
526 -mcpu=@var{cpu}}
527
528 @emph{GNU/Linux Options}
529 @gccoptlist{-muclibc}
530
531 @emph{H8/300 Options}
532 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
533
534 @emph{HPPA Options}
535 @gccoptlist{-march=@var{architecture-type} @gol
536 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
537 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
538 -mfixed-range=@var{register-range} @gol
539 -mjump-in-delay -mlinker-opt -mlong-calls @gol
540 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
541 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
542 -mno-jump-in-delay  -mno-long-load-store @gol
543 -mno-portable-runtime  -mno-soft-float @gol
544 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
545 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
546 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
547 -munix=@var{unix-std}  -nolibdld  -static  -threads}
548
549 @emph{i386 and x86-64 Options}
550 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
551 -mfpmath=@var{unit} @gol
552 -masm=@var{dialect}  -mno-fancy-math-387 @gol
553 -mno-fp-ret-in-387  -msoft-float @gol
554 -mno-wide-multiply  -mrtd  -malign-double @gol
555 -mpreferred-stack-boundary=@var{num} -mcx16 -msahf -mrecip @gol
556 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 @gol
557 -msse4a -m3dnow -mpopcnt -mabm -msse5 @gol
558 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
559 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
560 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
561 -mveclibabi=@var{type} -mpc32 -mpc64 -mpc80 -mstackrealign @gol
562 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
563 -mcmodel=@var{code-model} @gol
564 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
565 -mfused-madd -mno-fused-madd}
566
567 @emph{IA-64 Options}
568 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
569 -mvolatile-asm-stop  -mregister-names  -mno-sdata @gol
570 -mconstant-gp  -mauto-pic  -minline-float-divide-min-latency @gol
571 -minline-float-divide-max-throughput @gol
572 -minline-int-divide-min-latency @gol
573 -minline-int-divide-max-throughput  @gol
574 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
575 -mno-dwarf2-asm -mearly-stop-bits @gol
576 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
577 -mtune=@var{cpu-type} -mt -pthread -milp32 -mlp64 @gol
578 -mno-sched-br-data-spec -msched-ar-data-spec -mno-sched-control-spec @gol
579 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
580 -msched-ldc -mno-sched-control-ldc -mno-sched-spec-verbose @gol
581 -mno-sched-prefer-non-data-spec-insns @gol
582 -mno-sched-prefer-non-control-spec-insns @gol
583 -mno-sched-count-spec-in-critical-path}
584
585 @emph{M32R/D Options}
586 @gccoptlist{-m32r2 -m32rx -m32r @gol
587 -mdebug @gol
588 -malign-loops -mno-align-loops @gol
589 -missue-rate=@var{number} @gol
590 -mbranch-cost=@var{number} @gol
591 -mmodel=@var{code-size-model-type} @gol
592 -msdata=@var{sdata-type} @gol
593 -mno-flush-func -mflush-func=@var{name} @gol
594 -mno-flush-trap -mflush-trap=@var{number} @gol
595 -G @var{num}}
596
597 @emph{M32C Options}
598 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
599
600 @emph{M680x0 Options}
601 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
602 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
603 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
604 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
605 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
606 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
607 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
608 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library}
609
610 @emph{M68hc1x Options}
611 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
612 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
613 -msoft-reg-count=@var{count}}
614
615 @emph{MCore Options}
616 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
617 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
618 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
619 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
620 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
621
622 @emph{MIPS Options}
623 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
624 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2  -mips64 @gol
625 -mips16  -mno-mips16  -mflip-mips16 @gol
626 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
627 -mshared  -mno-shared  -mxgot  -mno-xgot  -mgp32  -mgp64 @gol
628 -mfp32  -mfp64  -mhard-float  -msoft-float @gol
629 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
630 -msmartmips  -mno-smartmips @gol
631 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
632 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
633 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
634 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
635 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
636 -membedded-data  -mno-embedded-data @gol
637 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
638 -mcode-readable=@var{setting} @gol
639 -msplit-addresses  -mno-split-addresses @gol
640 -mexplicit-relocs  -mno-explicit-relocs @gol
641 -mcheck-zero-division  -mno-check-zero-division @gol
642 -mdivide-traps  -mdivide-breaks @gol
643 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
644 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
645 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
646 -mfix-vr4120  -mno-fix-vr4120  -mfix-vr4130  -mno-fix-vr4130 @gol
647 -mfix-sb1  -mno-fix-sb1 @gol
648 -mflush-func=@var{func}  -mno-flush-func @gol
649 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
650 -mfp-exceptions -mno-fp-exceptions @gol
651 -mvr4130-align -mno-vr4130-align}
652
653 @emph{MMIX Options}
654 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
655 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
656 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
657 -mno-base-addresses  -msingle-exit  -mno-single-exit}
658
659 @emph{MN10300 Options}
660 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
661 -mam33  -mno-am33 @gol
662 -mam33-2  -mno-am33-2 @gol
663 -mreturn-pointer-on-d0 @gol
664 -mno-crt0  -mrelax}
665
666 @emph{MT Options}
667 @gccoptlist{-mno-crt0 -mbacc -msim @gol
668 -march=@var{cpu-type} }
669
670 @emph{PDP-11 Options}
671 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
672 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
673 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
674 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
675 -mbranch-expensive  -mbranch-cheap @gol
676 -msplit  -mno-split  -munix-asm  -mdec-asm}
677
678 @emph{PowerPC Options}
679 See RS/6000 and PowerPC Options.
680
681 @emph{RS/6000 and PowerPC Options}
682 @gccoptlist{-mcpu=@var{cpu-type} @gol
683 -mtune=@var{cpu-type} @gol
684 -mpower  -mno-power  -mpower2  -mno-power2 @gol
685 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
686 -maltivec  -mno-altivec @gol
687 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
688 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
689 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
690 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mdfp -mno-dfp @gol
691 -mnew-mnemonics  -mold-mnemonics @gol
692 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
693 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
694 -malign-power  -malign-natural @gol
695 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
696 -mstring  -mno-string  -mupdate  -mno-update @gol
697 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
698 -mstrict-align  -mno-strict-align  -mrelocatable @gol
699 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
700 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
701 -mdynamic-no-pic  -maltivec  -mswdiv @gol
702 -mprioritize-restricted-insns=@var{priority} @gol
703 -msched-costly-dep=@var{dependence_type} @gol
704 -minsert-sched-nops=@var{scheme} @gol
705 -mcall-sysv  -mcall-netbsd @gol
706 -maix-struct-return  -msvr4-struct-return @gol
707 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
708 -misel -mno-isel @gol
709 -misel=yes  -misel=no @gol
710 -mspe -mno-spe @gol
711 -mspe=yes  -mspe=no @gol
712 -mpaired @gol
713 -mvrsave -mno-vrsave @gol
714 -mmulhw -mno-mulhw @gol
715 -mdlmzb -mno-dlmzb @gol
716 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
717 -mprototype  -mno-prototype @gol
718 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
719 -msdata=@var{opt}  -mvxworks  -mwindiss  -G @var{num}  -pthread}
720
721 @emph{S/390 and zSeries Options}
722 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
723 -mhard-float  -msoft-float -mlong-double-64 -mlong-double-128 @gol
724 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
725 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
726 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
727 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
728 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
729
730 @emph{Score Options}
731 @gccoptlist{-meb -mel @gol
732 -mnhwloop @gol
733 -muls @gol
734 -mmac @gol
735 -mscore5 -mscore5u -mscore7 -mscore7d}
736
737 @emph{SH Options}
738 @gccoptlist{-m1  -m2  -m2e  -m3  -m3e @gol
739 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
740 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
741 -m5-64media  -m5-64media-nofpu @gol
742 -m5-32media  -m5-32media-nofpu @gol
743 -m5-compact  -m5-compact-nofpu @gol
744 -mb  -ml  -mdalign  -mrelax @gol
745 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
746 -mieee  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
747 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
748 -mdivsi3_libfunc=@var{name}  @gol
749 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
750  -minvalid-symbols}
751
752 @emph{SPARC Options}
753 @gccoptlist{-mcpu=@var{cpu-type} @gol
754 -mtune=@var{cpu-type} @gol
755 -mcmodel=@var{code-model} @gol
756 -m32  -m64  -mapp-regs  -mno-app-regs @gol
757 -mfaster-structs  -mno-faster-structs @gol
758 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
759 -mhard-quad-float  -msoft-quad-float @gol
760 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
761 -mstack-bias  -mno-stack-bias @gol
762 -munaligned-doubles  -mno-unaligned-doubles @gol
763 -mv8plus  -mno-v8plus  -mvis  -mno-vis
764 -threads -pthreads -pthread}
765
766 @emph{SPU Options}
767 @gccoptlist{-mwarn-reloc -merror-reloc @gol
768 -msafe-dma -munsafe-dma @gol
769 -mbranch-hints @gol
770 -msmall-mem -mlarge-mem -mstdmain @gol
771 -mfixed-range=@var{register-range}}
772
773 @emph{System V Options}
774 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
775
776 @emph{TMS320C3x/C4x Options}
777 @gccoptlist{-mcpu=@var{cpu}  -mbig  -msmall  -mregparm  -mmemparm @gol
778 -mfast-fix  -mmpyi  -mbk  -mti  -mdp-isr-reload @gol
779 -mrpts=@var{count}  -mrptb  -mdb  -mloop-unsigned @gol
780 -mparallel-insns  -mparallel-mpy  -mpreserve-float}
781
782 @emph{V850 Options}
783 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
784 -mprolog-function  -mno-prolog-function  -mspace @gol
785 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
786 -mapp-regs  -mno-app-regs @gol
787 -mdisable-callt  -mno-disable-callt @gol
788 -mv850e1 @gol
789 -mv850e @gol
790 -mv850  -mbig-switch}
791
792 @emph{VAX Options}
793 @gccoptlist{-mg  -mgnu  -munix}
794
795 @emph{VxWorks Options}
796 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
797 -Xbind-lazy  -Xbind-now}
798
799 @emph{x86-64 Options}
800 See i386 and x86-64 Options.
801
802 @emph{Xstormy16 Options}
803 @gccoptlist{-msim}
804
805 @emph{Xtensa Options}
806 @gccoptlist{-mconst16 -mno-const16 @gol
807 -mfused-madd  -mno-fused-madd @gol
808 -mtext-section-literals  -mno-text-section-literals @gol
809 -mtarget-align  -mno-target-align @gol
810 -mlongcalls  -mno-longcalls}
811
812 @emph{zSeries Options}
813 See S/390 and zSeries Options.
814
815 @item Code Generation Options
816 @xref{Code Gen Options,,Options for Code Generation Conventions}.
817 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
818 -ffixed-@var{reg}  -fexceptions @gol
819 -fnon-call-exceptions  -funwind-tables @gol
820 -fasynchronous-unwind-tables @gol
821 -finhibit-size-directive  -finstrument-functions @gol
822 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
823 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
824 -fno-common  -fno-ident @gol
825 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
826 -fno-jump-tables @gol
827 -frecord-gcc-switches @gol
828 -freg-struct-return  -fshort-enums @gol
829 -fshort-double  -fshort-wchar @gol
830 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
831 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
832 -fargument-alias  -fargument-noalias @gol
833 -fargument-noalias-global  -fargument-noalias-anything
834 -fleading-underscore  -ftls-model=@var{model} @gol
835 -ftrapv  -fwrapv  -fbounds-check @gol
836 -fvisibility}
837 @end table
838
839 @menu
840 * Overall Options::     Controlling the kind of output:
841                         an executable, object files, assembler files,
842                         or preprocessed source.
843 * C Dialect Options::   Controlling the variant of C language compiled.
844 * C++ Dialect Options:: Variations on C++.
845 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
846                         and Objective-C++.
847 * Language Independent Options:: Controlling how diagnostics should be
848                         formatted.
849 * Warning Options::     How picky should the compiler be?
850 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
851 * Optimize Options::    How much optimization?
852 * Preprocessor Options:: Controlling header files and macro definitions.
853                          Also, getting dependency information for Make.
854 * Assembler Options::   Passing options to the assembler.
855 * Link Options::        Specifying libraries and so on.
856 * Directory Options::   Where to find header files and libraries.
857                         Where to find the compiler executable files.
858 * Spec Files::          How to pass switches to sub-processes.
859 * Target Options::      Running a cross-compiler, or an old version of GCC.
860 @end menu
861
862 @node Overall Options
863 @section Options Controlling the Kind of Output
864
865 Compilation can involve up to four stages: preprocessing, compilation
866 proper, assembly and linking, always in that order.  GCC is capable of
867 preprocessing and compiling several files either into several
868 assembler input files, or into one assembler input file; then each
869 assembler input file produces an object file, and linking combines all
870 the object files (those newly compiled, and those specified as input)
871 into an executable file.
872
873 @cindex file name suffix
874 For any given input file, the file name suffix determines what kind of
875 compilation is done:
876
877 @table @gcctabopt
878 @item @var{file}.c
879 C source code which must be preprocessed.
880
881 @item @var{file}.i
882 C source code which should not be preprocessed.
883
884 @item @var{file}.ii
885 C++ source code which should not be preprocessed.
886
887 @item @var{file}.m
888 Objective-C source code.  Note that you must link with the @file{libobjc}
889 library to make an Objective-C program work.
890
891 @item @var{file}.mi
892 Objective-C source code which should not be preprocessed.
893
894 @item @var{file}.mm
895 @itemx @var{file}.M
896 Objective-C++ source code.  Note that you must link with the @file{libobjc}
897 library to make an Objective-C++ program work.  Note that @samp{.M} refers
898 to a literal capital M@.
899
900 @item @var{file}.mii
901 Objective-C++ source code which should not be preprocessed.
902
903 @item @var{file}.h
904 C, C++, Objective-C or Objective-C++ header file to be turned into a
905 precompiled header.
906
907 @item @var{file}.cc
908 @itemx @var{file}.cp
909 @itemx @var{file}.cxx
910 @itemx @var{file}.cpp
911 @itemx @var{file}.CPP
912 @itemx @var{file}.c++
913 @itemx @var{file}.C
914 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
915 the last two letters must both be literally @samp{x}.  Likewise,
916 @samp{.C} refers to a literal capital C@.
917
918 @item @var{file}.mm
919 @itemx @var{file}.M
920 Objective-C++ source code which must be preprocessed.
921
922 @item @var{file}.mii
923 Objective-C++ source code which should not be preprocessed.
924
925 @item @var{file}.hh
926 @itemx @var{file}.H
927 @itemx @var{file}.hp
928 @itemx @var{file}.hxx
929 @itemx @var{file}.hpp
930 @itemx @var{file}.HPP
931 @itemx @var{file}.h++
932 @itemx @var{file}.tcc
933 C++ header file to be turned into a precompiled header.
934
935 @item @var{file}.f
936 @itemx @var{file}.for
937 @itemx @var{file}.FOR
938 Fixed form Fortran source code which should not be preprocessed.
939
940 @item @var{file}.F
941 @itemx @var{file}.fpp
942 @itemx @var{file}.FPP
943 Fixed form Fortran source code which must be preprocessed (with the traditional
944 preprocessor).
945
946 @item @var{file}.f90
947 @itemx @var{file}.f95
948 Free form Fortran source code which should not be preprocessed.
949
950 @item @var{file}.F90
951 @itemx @var{file}.F95
952 Free form Fortran source code which must be preprocessed (with the
953 traditional preprocessor).
954
955 @c FIXME: Descriptions of Java file types.
956 @c @var{file}.java
957 @c @var{file}.class
958 @c @var{file}.zip
959 @c @var{file}.jar
960
961 @item @var{file}.ads
962 Ada source code file which contains a library unit declaration (a
963 declaration of a package, subprogram, or generic, or a generic
964 instantiation), or a library unit renaming declaration (a package,
965 generic, or subprogram renaming declaration).  Such files are also
966 called @dfn{specs}.
967
968 @itemx @var{file}.adb
969 Ada source code file containing a library unit body (a subprogram or
970 package body).  Such files are also called @dfn{bodies}.
971
972 @c GCC also knows about some suffixes for languages not yet included:
973 @c Pascal:
974 @c @var{file}.p
975 @c @var{file}.pas
976 @c Ratfor:
977 @c @var{file}.r
978
979 @item @var{file}.s
980 Assembler code.
981
982 @item @var{file}.S
983 @itemx @var{file}.sx
984 Assembler code which must be preprocessed.
985
986 @item @var{other}
987 An object file to be fed straight into linking.
988 Any file name with no recognized suffix is treated this way.
989 @end table
990
991 @opindex x
992 You can specify the input language explicitly with the @option{-x} option:
993
994 @table @gcctabopt
995 @item -x @var{language}
996 Specify explicitly the @var{language} for the following input files
997 (rather than letting the compiler choose a default based on the file
998 name suffix).  This option applies to all following input files until
999 the next @option{-x} option.  Possible values for @var{language} are:
1000 @smallexample
1001 c  c-header  c-cpp-output
1002 c++  c++-header  c++-cpp-output
1003 objective-c  objective-c-header  objective-c-cpp-output
1004 objective-c++ objective-c++-header objective-c++-cpp-output
1005 assembler  assembler-with-cpp
1006 ada
1007 f95  f95-cpp-input
1008 java
1009 treelang
1010 @end smallexample
1011
1012 @item -x none
1013 Turn off any specification of a language, so that subsequent files are
1014 handled according to their file name suffixes (as they are if @option{-x}
1015 has not been used at all).
1016
1017 @item -pass-exit-codes
1018 @opindex pass-exit-codes
1019 Normally the @command{gcc} program will exit with the code of 1 if any
1020 phase of the compiler returns a non-success return code.  If you specify
1021 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1022 numerically highest error produced by any phase that returned an error
1023 indication.  The C, C++, and Fortran frontends return 4, if an internal
1024 compiler error is encountered.
1025 @end table
1026
1027 If you only want some of the stages of compilation, you can use
1028 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1029 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1030 @command{gcc} is to stop.  Note that some combinations (for example,
1031 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1032
1033 @table @gcctabopt
1034 @item -c
1035 @opindex c
1036 Compile or assemble the source files, but do not link.  The linking
1037 stage simply is not done.  The ultimate output is in the form of an
1038 object file for each source file.
1039
1040 By default, the object file name for a source file is made by replacing
1041 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1042
1043 Unrecognized input files, not requiring compilation or assembly, are
1044 ignored.
1045
1046 @item -S
1047 @opindex S
1048 Stop after the stage of compilation proper; do not assemble.  The output
1049 is in the form of an assembler code file for each non-assembler input
1050 file specified.
1051
1052 By default, the assembler file name for a source file is made by
1053 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1054
1055 Input files that don't require compilation are ignored.
1056
1057 @item -E
1058 @opindex E
1059 Stop after the preprocessing stage; do not run the compiler proper.  The
1060 output is in the form of preprocessed source code, which is sent to the
1061 standard output.
1062
1063 Input files which don't require preprocessing are ignored.
1064
1065 @cindex output file option
1066 @item -o @var{file}
1067 @opindex o
1068 Place output in file @var{file}.  This applies regardless to whatever
1069 sort of output is being produced, whether it be an executable file,
1070 an object file, an assembler file or preprocessed C code.
1071
1072 If @option{-o} is not specified, the default is to put an executable
1073 file in @file{a.out}, the object file for
1074 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1075 assembler file in @file{@var{source}.s}, a precompiled header file in
1076 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1077 standard output.
1078
1079 @item -v
1080 @opindex v
1081 Print (on standard error output) the commands executed to run the stages
1082 of compilation.  Also print the version number of the compiler driver
1083 program and of the preprocessor and the compiler proper.
1084
1085 @item -###
1086 @opindex ###
1087 Like @option{-v} except the commands are not executed and all command
1088 arguments are quoted.  This is useful for shell scripts to capture the
1089 driver-generated command lines.
1090
1091 @item -pipe
1092 @opindex pipe
1093 Use pipes rather than temporary files for communication between the
1094 various stages of compilation.  This fails to work on some systems where
1095 the assembler is unable to read from a pipe; but the GNU assembler has
1096 no trouble.
1097
1098 @item -combine
1099 @opindex combine
1100 If you are compiling multiple source files, this option tells the driver
1101 to pass all the source files to the compiler at once (for those
1102 languages for which the compiler can handle this).  This will allow
1103 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1104 language for which this is supported is C@.  If you pass source files for
1105 multiple languages to the driver, using this option, the driver will invoke
1106 the compiler(s) that support IMA once each, passing each compiler all the
1107 source files appropriate for it.  For those languages that do not support
1108 IMA this option will be ignored, and the compiler will be invoked once for
1109 each source file in that language.  If you use this option in conjunction
1110 with @option{-save-temps}, the compiler will generate multiple
1111 pre-processed files
1112 (one for each source file), but only one (combined) @file{.o} or
1113 @file{.s} file.
1114
1115 @item --help
1116 @opindex help
1117 Print (on the standard output) a description of the command line options
1118 understood by @command{gcc}.  If the @option{-v} option is also specified
1119 then @option{--help} will also be passed on to the various processes
1120 invoked by @command{gcc}, so that they can display the command line options
1121 they accept.  If the @option{-Wextra} option has also been specified
1122 (prior to the @option{--help} option), then command line options which
1123 have no documentation associated with them will also be displayed.
1124
1125 @item --target-help
1126 @opindex target-help
1127 Print (on the standard output) a description of target-specific command
1128 line options for each tool.  For some targets extra target-specific
1129 information may also be printed.
1130
1131 @item --help=@var{class}@r{[},@var{qualifier}@r{]}
1132 Print (on the standard output) a description of the command line
1133 options understood by the compiler that fit into a specific class.
1134 The class can be one of @samp{optimizers}, @samp{warnings}, @samp{target},
1135 @samp{params}, or @var{language}:
1136
1137 @table @asis
1138 @item @samp{optimizers}
1139 This will display all of the optimization options supported by the
1140 compiler.
1141
1142 @item @samp{warnings}
1143 This will display all of the options controlling warning messages
1144 produced by the compiler.
1145
1146 @item @samp{target}
1147 This will display target-specific options.  Unlike the
1148 @option{--target-help} option however, target-specific options of the
1149 linker and assembler will not be displayed.  This is because those
1150 tools do not currently support the extended @option{--help=} syntax.
1151
1152 @item @samp{params}
1153 This will display the values recognized by the @option{--param}
1154 option.
1155
1156 @item @var{language}
1157 This will display the options supported for @var{language}, where 
1158 @var{language} is the name of one of the languages supported in this 
1159 version of GCC.
1160
1161 @item @samp{common}
1162 This will display the options that are common to all languages.
1163 @end table
1164
1165 It is possible to further refine the output of the @option{--help=}
1166 option by adding a comma separated list of qualifiers after the
1167 class.  These can be any from the following list:
1168
1169 @table @asis
1170 @item @samp{undocumented}
1171 Display only those options which are undocumented.
1172
1173 @item @samp{joined}
1174 Display options which take an argument that appears after an equal
1175 sign in the same continuous piece of text, such as:
1176 @samp{--help=target}.
1177
1178 @item @samp{separate}
1179 Display options which take an argument that appears as a separate word
1180 following the original option, such as: @samp{-o output-file}.
1181 @end table
1182
1183 Thus for example to display all the undocumented target-specific
1184 switches supported by the compiler the following can be used:
1185
1186 @smallexample
1187 --help=target,undocumented
1188 @end smallexample
1189
1190 The sense of a qualifier can be inverted by prefixing it with the
1191 @var{^} character, so for example to display all binary warning
1192 options (i.e. ones that are either on or off and that do not take an
1193 argument), which have a description the following can be used:
1194
1195 @smallexample
1196 --help=warnings,^joined,^undocumented
1197 @end smallexample
1198
1199 A class can also be used as a qualifier, although this usually
1200 restricts the output by so much that there is nothing to display.  One
1201 case where it does work however is when one of the classes is
1202 @var{target}.  So for example to display all the target-specific
1203 optimization options the following can be used:
1204
1205 @smallexample
1206 --help=target,optimizers
1207 @end smallexample
1208
1209 The @option{--help=} option can be repeated on the command line.  Each
1210 successive use will display its requested class of options, skipping
1211 those that have already been displayed.
1212
1213 If the @option{-Q} option appears on the command line before the
1214 @option{--help=} option, then the descriptive text displayed by
1215 @option{--help=} is changed.  Instead of describing the displayed
1216 options, an indication is given as to whether the option is enabled,
1217 disabled or set to a specific value (assuming that the compiler
1218 knows this at the point where the @option{--help=} option is used).
1219
1220 Here is a truncated example from the ARM port of @command{gcc}:
1221
1222 @smallexample
1223   % gcc -Q -mabi=2 --help=target -c
1224   The following options are target specific:
1225   -mabi=                                2
1226   -mabort-on-noreturn                   [disabled]
1227   -mapcs                                [disabled]
1228 @end smallexample
1229
1230 The output is sensitive to the effects of previous command line
1231 options, so for example it is possible to find out which optimizations
1232 are enabled at @option{-O2} by using:
1233
1234 @smallexample
1235 -O2 --help=optimizers
1236 @end smallexample
1237
1238 Alternatively you can discover which binary optimizations are enabled
1239 by @option{-O3} by using:
1240
1241 @smallexample
1242 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1243 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1244 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1245 @end smallexample
1246
1247 @item --version
1248 @opindex version
1249 Display the version number and copyrights of the invoked GCC@.
1250
1251 @include @value{srcdir}/../libiberty/at-file.texi
1252 @end table
1253
1254 @node Invoking G++
1255 @section Compiling C++ Programs
1256
1257 @cindex suffixes for C++ source
1258 @cindex C++ source file suffixes
1259 C++ source files conventionally use one of the suffixes @samp{.C},
1260 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1261 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1262 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1263 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1264 files with these names and compiles them as C++ programs even if you
1265 call the compiler the same way as for compiling C programs (usually
1266 with the name @command{gcc}).
1267
1268 @findex g++
1269 @findex c++
1270 However, the use of @command{gcc} does not add the C++ library.
1271 @command{g++} is a program that calls GCC and treats @samp{.c},
1272 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1273 files unless @option{-x} is used, and automatically specifies linking
1274 against the C++ library.  This program is also useful when
1275 precompiling a C header file with a @samp{.h} extension for use in C++
1276 compilations.  On many systems, @command{g++} is also installed with
1277 the name @command{c++}.
1278
1279 @cindex invoking @command{g++}
1280 When you compile C++ programs, you may specify many of the same
1281 command-line options that you use for compiling programs in any
1282 language; or command-line options meaningful for C and related
1283 languages; or options that are meaningful only for C++ programs.
1284 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1285 explanations of options for languages related to C@.
1286 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1287 explanations of options that are meaningful only for C++ programs.
1288
1289 @node C Dialect Options
1290 @section Options Controlling C Dialect
1291 @cindex dialect options
1292 @cindex language dialect options
1293 @cindex options, dialect
1294
1295 The following options control the dialect of C (or languages derived
1296 from C, such as C++, Objective-C and Objective-C++) that the compiler
1297 accepts:
1298
1299 @table @gcctabopt
1300 @cindex ANSI support
1301 @cindex ISO support
1302 @item -ansi
1303 @opindex ansi
1304 In C mode, support all ISO C90 programs.  In C++ mode,
1305 remove GNU extensions that conflict with ISO C++.
1306
1307 This turns off certain features of GCC that are incompatible with ISO
1308 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1309 such as the @code{asm} and @code{typeof} keywords, and
1310 predefined macros such as @code{unix} and @code{vax} that identify the
1311 type of system you are using.  It also enables the undesirable and
1312 rarely used ISO trigraph feature.  For the C compiler,
1313 it disables recognition of C++ style @samp{//} comments as well as
1314 the @code{inline} keyword.
1315
1316 The alternate keywords @code{__asm__}, @code{__extension__},
1317 @code{__inline__} and @code{__typeof__} continue to work despite
1318 @option{-ansi}.  You would not want to use them in an ISO C program, of
1319 course, but it is useful to put them in header files that might be included
1320 in compilations done with @option{-ansi}.  Alternate predefined macros
1321 such as @code{__unix__} and @code{__vax__} are also available, with or
1322 without @option{-ansi}.
1323
1324 The @option{-ansi} option does not cause non-ISO programs to be
1325 rejected gratuitously.  For that, @option{-pedantic} is required in
1326 addition to @option{-ansi}.  @xref{Warning Options}.
1327
1328 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1329 option is used.  Some header files may notice this macro and refrain
1330 from declaring certain functions or defining certain macros that the
1331 ISO standard doesn't call for; this is to avoid interfering with any
1332 programs that might use these names for other things.
1333
1334 Functions which would normally be built in but do not have semantics
1335 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1336 functions with @option{-ansi} is used.  @xref{Other Builtins,,Other
1337 built-in functions provided by GCC}, for details of the functions
1338 affected.
1339
1340 @item -std=
1341 @opindex std
1342 Determine the language standard.  This option is currently only
1343 supported when compiling C or C++.  A value for this option must be
1344 provided; possible values are
1345
1346 @table @samp
1347 @item c89
1348 @itemx iso9899:1990
1349 ISO C90 (same as @option{-ansi}).
1350
1351 @item iso9899:199409
1352 ISO C90 as modified in amendment 1.
1353
1354 @item c99
1355 @itemx c9x
1356 @itemx iso9899:1999
1357 @itemx iso9899:199x
1358 ISO C99.  Note that this standard is not yet fully supported; see
1359 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1360 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1361
1362 @item gnu89
1363 Default, ISO C90 plus GNU extensions (including some C99 features).
1364
1365 @item gnu99
1366 @itemx gnu9x
1367 ISO C99 plus GNU extensions.  When ISO C99 is fully implemented in GCC,
1368 this will become the default.  The name @samp{gnu9x} is deprecated.
1369
1370 @item c++98
1371 The 1998 ISO C++ standard plus amendments.
1372
1373 @item gnu++98
1374 The same as @option{-std=c++98} plus GNU extensions.  This is the
1375 default for C++ code.
1376
1377 @item c++0x
1378 The working draft of the upcoming ISO C++0x standard. This option
1379 enables experimental features that are likely to be included in
1380 C++0x. The working draft is constantly changing, and any feature that is
1381 enabled by this flag may be removed from future versions of GCC if it is
1382 not part of the C++0x standard.
1383
1384 @item gnu++0x
1385 The same as @option{-std=c++0x} plus GNU extensions. As with
1386 @option{-std=c++0x}, this option enables experimental features that may
1387 be removed in future versions of GCC.
1388 @end table
1389
1390 Even when this option is not specified, you can still use some of the
1391 features of newer standards in so far as they do not conflict with
1392 previous C standards.  For example, you may use @code{__restrict__} even
1393 when @option{-std=c99} is not specified.
1394
1395 The @option{-std} options specifying some version of ISO C have the same
1396 effects as @option{-ansi}, except that features that were not in ISO C90
1397 but are in the specified version (for example, @samp{//} comments and
1398 the @code{inline} keyword in ISO C99) are not disabled.
1399
1400 @xref{Standards,,Language Standards Supported by GCC}, for details of
1401 these standard versions.
1402
1403 @item -fgnu89-inline
1404 @opindex fgnu89-inline
1405 The option @option{-fgnu89-inline} tells GCC to use the traditional
1406 GNU semantics for @code{inline} functions when in C99 mode.
1407 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1408 is accepted and ignored by GCC versions 4.1.3 up to but not including
1409 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1410 C99 mode.  Using this option is roughly equivalent to adding the
1411 @code{gnu_inline} function attribute to all inline functions
1412 (@pxref{Function Attributes}).
1413
1414 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1415 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1416 specifies the default behavior).  This option was first supported in
1417 GCC 4.3.  This option is not supported in C89 or gnu89 mode.
1418
1419 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1420 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1421 in effect for @code{inline} functions.  @xref{Common Predefined
1422 Macros,,,cpp,The C Preprocessor}.
1423
1424 @item -aux-info @var{filename}
1425 @opindex aux-info
1426 Output to the given filename prototyped declarations for all functions
1427 declared and/or defined in a translation unit, including those in header
1428 files.  This option is silently ignored in any language other than C@.
1429
1430 Besides declarations, the file indicates, in comments, the origin of
1431 each declaration (source file and line), whether the declaration was
1432 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1433 @samp{O} for old, respectively, in the first character after the line
1434 number and the colon), and whether it came from a declaration or a
1435 definition (@samp{C} or @samp{F}, respectively, in the following
1436 character).  In the case of function definitions, a K&R-style list of
1437 arguments followed by their declarations is also provided, inside
1438 comments, after the declaration.
1439
1440 @item -fno-asm
1441 @opindex fno-asm
1442 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1443 keyword, so that code can use these words as identifiers.  You can use
1444 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1445 instead.  @option{-ansi} implies @option{-fno-asm}.
1446
1447 In C++, this switch only affects the @code{typeof} keyword, since
1448 @code{asm} and @code{inline} are standard keywords.  You may want to
1449 use the @option{-fno-gnu-keywords} flag instead, which has the same
1450 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1451 switch only affects the @code{asm} and @code{typeof} keywords, since
1452 @code{inline} is a standard keyword in ISO C99.
1453
1454 @item -fno-builtin
1455 @itemx -fno-builtin-@var{function}
1456 @opindex fno-builtin
1457 @cindex built-in functions
1458 Don't recognize built-in functions that do not begin with
1459 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1460 functions provided by GCC}, for details of the functions affected,
1461 including those which are not built-in functions when @option{-ansi} or
1462 @option{-std} options for strict ISO C conformance are used because they
1463 do not have an ISO standard meaning.
1464
1465 GCC normally generates special code to handle certain built-in functions
1466 more efficiently; for instance, calls to @code{alloca} may become single
1467 instructions that adjust the stack directly, and calls to @code{memcpy}
1468 may become inline copy loops.  The resulting code is often both smaller
1469 and faster, but since the function calls no longer appear as such, you
1470 cannot set a breakpoint on those calls, nor can you change the behavior
1471 of the functions by linking with a different library.  In addition,
1472 when a function is recognized as a built-in function, GCC may use
1473 information about that function to warn about problems with calls to
1474 that function, or to generate more efficient code, even if the
1475 resulting code still contains calls to that function.  For example,
1476 warnings are given with @option{-Wformat} for bad calls to
1477 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1478 known not to modify global memory.
1479
1480 With the @option{-fno-builtin-@var{function}} option
1481 only the built-in function @var{function} is
1482 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1483 function is named this is not built-in in this version of GCC, this
1484 option is ignored.  There is no corresponding
1485 @option{-fbuiltin-@var{function}} option; if you wish to enable
1486 built-in functions selectively when using @option{-fno-builtin} or
1487 @option{-ffreestanding}, you may define macros such as:
1488
1489 @smallexample
1490 #define abs(n)          __builtin_abs ((n))
1491 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1492 @end smallexample
1493
1494 @item -fhosted
1495 @opindex fhosted
1496 @cindex hosted environment
1497
1498 Assert that compilation takes place in a hosted environment.  This implies
1499 @option{-fbuiltin}.  A hosted environment is one in which the
1500 entire standard library is available, and in which @code{main} has a return
1501 type of @code{int}.  Examples are nearly everything except a kernel.
1502 This is equivalent to @option{-fno-freestanding}.
1503
1504 @item -ffreestanding
1505 @opindex ffreestanding
1506 @cindex hosted environment
1507
1508 Assert that compilation takes place in a freestanding environment.  This
1509 implies @option{-fno-builtin}.  A freestanding environment
1510 is one in which the standard library may not exist, and program startup may
1511 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1512 This is equivalent to @option{-fno-hosted}.
1513
1514 @xref{Standards,,Language Standards Supported by GCC}, for details of
1515 freestanding and hosted environments.
1516
1517 @item -fopenmp
1518 @opindex fopenmp
1519 @cindex openmp parallel
1520 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1521 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1522 compiler generates parallel code according to the OpenMP Application
1523 Program Interface v2.5 @w{@uref{http://www.openmp.org/}}.
1524
1525 @item -fms-extensions
1526 @opindex fms-extensions
1527 Accept some non-standard constructs used in Microsoft header files.
1528
1529 Some cases of unnamed fields in structures and unions are only
1530 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1531 fields within structs/unions}, for details.
1532
1533 @item -trigraphs
1534 @opindex trigraphs
1535 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1536 options for strict ISO C conformance) implies @option{-trigraphs}.
1537
1538 @item -no-integrated-cpp
1539 @opindex no-integrated-cpp
1540 Performs a compilation in two passes: preprocessing and compiling.  This
1541 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1542 @option{-B} option.  The user supplied compilation step can then add in
1543 an additional preprocessing step after normal preprocessing but before
1544 compiling.  The default is to use the integrated cpp (internal cpp)
1545
1546 The semantics of this option will change if "cc1", "cc1plus", and
1547 "cc1obj" are merged.
1548
1549 @cindex traditional C language
1550 @cindex C language, traditional
1551 @item -traditional
1552 @itemx -traditional-cpp
1553 @opindex traditional-cpp
1554 @opindex traditional
1555 Formerly, these options caused GCC to attempt to emulate a pre-standard
1556 C compiler.  They are now only supported with the @option{-E} switch.
1557 The preprocessor continues to support a pre-standard mode.  See the GNU
1558 CPP manual for details.
1559
1560 @item -fcond-mismatch
1561 @opindex fcond-mismatch
1562 Allow conditional expressions with mismatched types in the second and
1563 third arguments.  The value of such an expression is void.  This option
1564 is not supported for C++.
1565
1566 @item -flax-vector-conversions
1567 @opindex flax-vector-conversions
1568 Allow implicit conversions between vectors with differing numbers of
1569 elements and/or incompatible element types.  This option should not be
1570 used for new code.
1571
1572 @item -funsigned-char
1573 @opindex funsigned-char
1574 Let the type @code{char} be unsigned, like @code{unsigned char}.
1575
1576 Each kind of machine has a default for what @code{char} should
1577 be.  It is either like @code{unsigned char} by default or like
1578 @code{signed char} by default.
1579
1580 Ideally, a portable program should always use @code{signed char} or
1581 @code{unsigned char} when it depends on the signedness of an object.
1582 But many programs have been written to use plain @code{char} and
1583 expect it to be signed, or expect it to be unsigned, depending on the
1584 machines they were written for.  This option, and its inverse, let you
1585 make such a program work with the opposite default.
1586
1587 The type @code{char} is always a distinct type from each of
1588 @code{signed char} or @code{unsigned char}, even though its behavior
1589 is always just like one of those two.
1590
1591 @item -fsigned-char
1592 @opindex fsigned-char
1593 Let the type @code{char} be signed, like @code{signed char}.
1594
1595 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1596 the negative form of @option{-funsigned-char}.  Likewise, the option
1597 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1598
1599 @item -fsigned-bitfields
1600 @itemx -funsigned-bitfields
1601 @itemx -fno-signed-bitfields
1602 @itemx -fno-unsigned-bitfields
1603 @opindex fsigned-bitfields
1604 @opindex funsigned-bitfields
1605 @opindex fno-signed-bitfields
1606 @opindex fno-unsigned-bitfields
1607 These options control whether a bit-field is signed or unsigned, when the
1608 declaration does not use either @code{signed} or @code{unsigned}.  By
1609 default, such a bit-field is signed, because this is consistent: the
1610 basic integer types such as @code{int} are signed types.
1611 @end table
1612
1613 @node C++ Dialect Options
1614 @section Options Controlling C++ Dialect
1615
1616 @cindex compiler options, C++
1617 @cindex C++ options, command line
1618 @cindex options, C++
1619 This section describes the command-line options that are only meaningful
1620 for C++ programs; but you can also use most of the GNU compiler options
1621 regardless of what language your program is in.  For example, you
1622 might compile a file @code{firstClass.C} like this:
1623
1624 @smallexample
1625 g++ -g -frepo -O -c firstClass.C
1626 @end smallexample
1627
1628 @noindent
1629 In this example, only @option{-frepo} is an option meant
1630 only for C++ programs; you can use the other options with any
1631 language supported by GCC@.
1632
1633 Here is a list of options that are @emph{only} for compiling C++ programs:
1634
1635 @table @gcctabopt
1636
1637 @item -fabi-version=@var{n}
1638 @opindex fabi-version
1639 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1640 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1641 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1642 the version that conforms most closely to the C++ ABI specification.
1643 Therefore, the ABI obtained using version 0 will change as ABI bugs
1644 are fixed.
1645
1646 The default is version 2.
1647
1648 @item -fno-access-control
1649 @opindex fno-access-control
1650 Turn off all access checking.  This switch is mainly useful for working
1651 around bugs in the access control code.
1652
1653 @item -fcheck-new
1654 @opindex fcheck-new
1655 Check that the pointer returned by @code{operator new} is non-null
1656 before attempting to modify the storage allocated.  This check is
1657 normally unnecessary because the C++ standard specifies that
1658 @code{operator new} will only return @code{0} if it is declared
1659 @samp{throw()}, in which case the compiler will always check the
1660 return value even without this option.  In all other cases, when
1661 @code{operator new} has a non-empty exception specification, memory
1662 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1663 @samp{new (nothrow)}.
1664
1665 @item -fconserve-space
1666 @opindex fconserve-space
1667 Put uninitialized or runtime-initialized global variables into the
1668 common segment, as C does.  This saves space in the executable at the
1669 cost of not diagnosing duplicate definitions.  If you compile with this
1670 flag and your program mysteriously crashes after @code{main()} has
1671 completed, you may have an object that is being destroyed twice because
1672 two definitions were merged.
1673
1674 This option is no longer useful on most targets, now that support has
1675 been added for putting variables into BSS without making them common.
1676
1677 @item -ffriend-injection
1678 @opindex ffriend-injection
1679 Inject friend functions into the enclosing namespace, so that they are
1680 visible outside the scope of the class in which they are declared.
1681 Friend functions were documented to work this way in the old Annotated
1682 C++ Reference Manual, and versions of G++ before 4.1 always worked
1683 that way.  However, in ISO C++ a friend function which is not declared
1684 in an enclosing scope can only be found using argument dependent
1685 lookup.  This option causes friends to be injected as they were in
1686 earlier releases.
1687
1688 This option is for compatibility, and may be removed in a future
1689 release of G++.
1690
1691 @item -fno-elide-constructors
1692 @opindex fno-elide-constructors
1693 The C++ standard allows an implementation to omit creating a temporary
1694 which is only used to initialize another object of the same type.
1695 Specifying this option disables that optimization, and forces G++ to
1696 call the copy constructor in all cases.
1697
1698 @item -fno-enforce-eh-specs
1699 @opindex fno-enforce-eh-specs
1700 Don't generate code to check for violation of exception specifications
1701 at runtime.  This option violates the C++ standard, but may be useful
1702 for reducing code size in production builds, much like defining
1703 @samp{NDEBUG}.  This does not give user code permission to throw
1704 exceptions in violation of the exception specifications; the compiler
1705 will still optimize based on the specifications, so throwing an
1706 unexpected exception will result in undefined behavior.
1707
1708 @item -ffor-scope
1709 @itemx -fno-for-scope
1710 @opindex ffor-scope
1711 @opindex fno-for-scope
1712 If @option{-ffor-scope} is specified, the scope of variables declared in
1713 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1714 as specified by the C++ standard.
1715 If @option{-fno-for-scope} is specified, the scope of variables declared in
1716 a @i{for-init-statement} extends to the end of the enclosing scope,
1717 as was the case in old versions of G++, and other (traditional)
1718 implementations of C++.
1719
1720 The default if neither flag is given to follow the standard,
1721 but to allow and give a warning for old-style code that would
1722 otherwise be invalid, or have different behavior.
1723
1724 @item -fno-gnu-keywords
1725 @opindex fno-gnu-keywords
1726 Do not recognize @code{typeof} as a keyword, so that code can use this
1727 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1728 @option{-ansi} implies @option{-fno-gnu-keywords}.
1729
1730 @item -fno-implicit-templates
1731 @opindex fno-implicit-templates
1732 Never emit code for non-inline templates which are instantiated
1733 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1734 @xref{Template Instantiation}, for more information.
1735
1736 @item -fno-implicit-inline-templates
1737 @opindex fno-implicit-inline-templates
1738 Don't emit code for implicit instantiations of inline templates, either.
1739 The default is to handle inlines differently so that compiles with and
1740 without optimization will need the same set of explicit instantiations.
1741
1742 @item -fno-implement-inlines
1743 @opindex fno-implement-inlines
1744 To save space, do not emit out-of-line copies of inline functions
1745 controlled by @samp{#pragma implementation}.  This will cause linker
1746 errors if these functions are not inlined everywhere they are called.
1747
1748 @item -fms-extensions
1749 @opindex fms-extensions
1750 Disable pedantic warnings about constructs used in MFC, such as implicit
1751 int and getting a pointer to member function via non-standard syntax.
1752
1753 @item -fno-nonansi-builtins
1754 @opindex fno-nonansi-builtins
1755 Disable built-in declarations of functions that are not mandated by
1756 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1757 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1758
1759 @item -fno-operator-names
1760 @opindex fno-operator-names
1761 Do not treat the operator name keywords @code{and}, @code{bitand},
1762 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1763 synonyms as keywords.
1764
1765 @item -fno-optional-diags
1766 @opindex fno-optional-diags
1767 Disable diagnostics that the standard says a compiler does not need to
1768 issue.  Currently, the only such diagnostic issued by G++ is the one for
1769 a name having multiple meanings within a class.
1770
1771 @item -fpermissive
1772 @opindex fpermissive
1773 Downgrade some diagnostics about nonconformant code from errors to
1774 warnings.  Thus, using @option{-fpermissive} will allow some
1775 nonconforming code to compile.
1776
1777 @item -frepo
1778 @opindex frepo
1779 Enable automatic template instantiation at link time.  This option also
1780 implies @option{-fno-implicit-templates}.  @xref{Template
1781 Instantiation}, for more information.
1782
1783 @item -fno-rtti
1784 @opindex fno-rtti
1785 Disable generation of information about every class with virtual
1786 functions for use by the C++ runtime type identification features
1787 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1788 of the language, you can save some space by using this flag.  Note that
1789 exception handling uses the same information, but it will generate it as
1790 needed. The @samp{dynamic_cast} operator can still be used for casts that
1791 do not require runtime type information, i.e. casts to @code{void *} or to
1792 unambiguous base classes.
1793
1794 @item -fstats
1795 @opindex fstats
1796 Emit statistics about front-end processing at the end of the compilation.
1797 This information is generally only useful to the G++ development team.
1798
1799 @item -ftemplate-depth-@var{n}
1800 @opindex ftemplate-depth
1801 Set the maximum instantiation depth for template classes to @var{n}.
1802 A limit on the template instantiation depth is needed to detect
1803 endless recursions during template class instantiation.  ANSI/ISO C++
1804 conforming programs must not rely on a maximum depth greater than 17.
1805
1806 @item -fno-threadsafe-statics
1807 @opindex fno-threadsafe-statics
1808 Do not emit the extra code to use the routines specified in the C++
1809 ABI for thread-safe initialization of local statics.  You can use this
1810 option to reduce code size slightly in code that doesn't need to be
1811 thread-safe.
1812
1813 @item -fuse-cxa-atexit
1814 @opindex fuse-cxa-atexit
1815 Register destructors for objects with static storage duration with the
1816 @code{__cxa_atexit} function rather than the @code{atexit} function.
1817 This option is required for fully standards-compliant handling of static
1818 destructors, but will only work if your C library supports
1819 @code{__cxa_atexit}.
1820
1821 @item -fno-use-cxa-get-exception-ptr
1822 @opindex fno-use-cxa-get-exception-ptr
1823 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1824 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1825 if the runtime routine is not available.
1826
1827 @item -fvisibility-inlines-hidden
1828 @opindex fvisibility-inlines-hidden
1829 This switch declares that the user does not attempt to compare
1830 pointers to inline methods where the addresses of the two functions
1831 were taken in different shared objects.
1832
1833 The effect of this is that GCC may, effectively, mark inline methods with
1834 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1835 appear in the export table of a DSO and do not require a PLT indirection
1836 when used within the DSO@.  Enabling this option can have a dramatic effect
1837 on load and link times of a DSO as it massively reduces the size of the
1838 dynamic export table when the library makes heavy use of templates.
1839
1840 The behavior of this switch is not quite the same as marking the
1841 methods as hidden directly, because it does not affect static variables
1842 local to the function or cause the compiler to deduce that
1843 the function is defined in only one shared object.
1844
1845 You may mark a method as having a visibility explicitly to negate the
1846 effect of the switch for that method.  For example, if you do want to
1847 compare pointers to a particular inline method, you might mark it as
1848 having default visibility.  Marking the enclosing class with explicit
1849 visibility will have no effect.
1850
1851 Explicitly instantiated inline methods are unaffected by this option
1852 as their linkage might otherwise cross a shared library boundary.
1853 @xref{Template Instantiation}.
1854
1855 @item -fvisibility-ms-compat
1856 @opindex fvisibility-ms-compat
1857 This flag attempts to use visibility settings to make GCC's C++
1858 linkage model compatible with that of Microsoft Visual Studio.
1859
1860 The flag makes these changes to GCC's linkage model:
1861
1862 @enumerate
1863 @item
1864 It sets the default visibility to @code{hidden}, like
1865 @option{-fvisibility=hidden}.
1866
1867 @item
1868 Types, but not their members, are not hidden by default.
1869
1870 @item
1871 The One Definition Rule is relaxed for types without explicit
1872 visibility specifications which are defined in more than one different
1873 shared object: those declarations are permitted if they would have
1874 been permitted when this option was not used.
1875 @end enumerate
1876
1877 In new code it is better to use @option{-fvisibility=hidden} and
1878 export those classes which are intended to be externally visible.
1879 Unfortunately it is possible for code to rely, perhaps accidentally,
1880 on the Visual Studio behavior.
1881
1882 Among the consequences of these changes are that static data members
1883 of the same type with the same name but defined in different shared
1884 objects will be different, so changing one will not change the other;
1885 and that pointers to function members defined in different shared
1886 objects may not compare equal.  When this flag is given, it is a
1887 violation of the ODR to define types with the same name differently.
1888
1889 @item -fno-weak
1890 @opindex fno-weak
1891 Do not use weak symbol support, even if it is provided by the linker.
1892 By default, G++ will use weak symbols if they are available.  This
1893 option exists only for testing, and should not be used by end-users;
1894 it will result in inferior code and has no benefits.  This option may
1895 be removed in a future release of G++.
1896
1897 @item -nostdinc++
1898 @opindex nostdinc++
1899 Do not search for header files in the standard directories specific to
1900 C++, but do still search the other standard directories.  (This option
1901 is used when building the C++ library.)
1902 @end table
1903
1904 In addition, these optimization, warning, and code generation options
1905 have meanings only for C++ programs:
1906
1907 @table @gcctabopt
1908 @item -fno-default-inline
1909 @opindex fno-default-inline
1910 Do not assume @samp{inline} for functions defined inside a class scope.
1911 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1912 functions will have linkage like inline functions; they just won't be
1913 inlined by default.
1914
1915 @item -Wabi @r{(C++ only)}
1916 @opindex Wabi
1917 Warn when G++ generates code that is probably not compatible with the
1918 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
1919 all such cases, there are probably some cases that are not warned about,
1920 even though G++ is generating incompatible code.  There may also be
1921 cases where warnings are emitted even though the code that is generated
1922 will be compatible.
1923
1924 You should rewrite your code to avoid these warnings if you are
1925 concerned about the fact that code generated by G++ may not be binary
1926 compatible with code generated by other compilers.
1927
1928 The known incompatibilities at this point include:
1929
1930 @itemize @bullet
1931
1932 @item
1933 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
1934 pack data into the same byte as a base class.  For example:
1935
1936 @smallexample
1937 struct A @{ virtual void f(); int f1 : 1; @};
1938 struct B : public A @{ int f2 : 1; @};
1939 @end smallexample
1940
1941 @noindent
1942 In this case, G++ will place @code{B::f2} into the same byte
1943 as@code{A::f1}; other compilers will not.  You can avoid this problem
1944 by explicitly padding @code{A} so that its size is a multiple of the
1945 byte size on your platform; that will cause G++ and other compilers to
1946 layout @code{B} identically.
1947
1948 @item
1949 Incorrect handling of tail-padding for virtual bases.  G++ does not use
1950 tail padding when laying out virtual bases.  For example:
1951
1952 @smallexample
1953 struct A @{ virtual void f(); char c1; @};
1954 struct B @{ B(); char c2; @};
1955 struct C : public A, public virtual B @{@};
1956 @end smallexample
1957
1958 @noindent
1959 In this case, G++ will not place @code{B} into the tail-padding for
1960 @code{A}; other compilers will.  You can avoid this problem by
1961 explicitly padding @code{A} so that its size is a multiple of its
1962 alignment (ignoring virtual base classes); that will cause G++ and other
1963 compilers to layout @code{C} identically.
1964
1965 @item
1966 Incorrect handling of bit-fields with declared widths greater than that
1967 of their underlying types, when the bit-fields appear in a union.  For
1968 example:
1969
1970 @smallexample
1971 union U @{ int i : 4096; @};
1972 @end smallexample
1973
1974 @noindent
1975 Assuming that an @code{int} does not have 4096 bits, G++ will make the
1976 union too small by the number of bits in an @code{int}.
1977
1978 @item
1979 Empty classes can be placed at incorrect offsets.  For example:
1980
1981 @smallexample
1982 struct A @{@};
1983
1984 struct B @{
1985   A a;
1986   virtual void f ();
1987 @};
1988
1989 struct C : public B, public A @{@};
1990 @end smallexample
1991
1992 @noindent
1993 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
1994 it should be placed at offset zero.  G++ mistakenly believes that the
1995 @code{A} data member of @code{B} is already at offset zero.
1996
1997 @item
1998 Names of template functions whose types involve @code{typename} or
1999 template template parameters can be mangled incorrectly.
2000
2001 @smallexample
2002 template <typename Q>
2003 void f(typename Q::X) @{@}
2004
2005 template <template <typename> class Q>
2006 void f(typename Q<int>::X) @{@}
2007 @end smallexample
2008
2009 @noindent
2010 Instantiations of these templates may be mangled incorrectly.
2011
2012 @end itemize
2013
2014 @item -Wctor-dtor-privacy @r{(C++ only)}
2015 @opindex Wctor-dtor-privacy
2016 Warn when a class seems unusable because all the constructors or
2017 destructors in that class are private, and it has neither friends nor
2018 public static member functions.
2019
2020 @item -Wnon-virtual-dtor @r{(C++ only)}
2021 @opindex Wnon-virtual-dtor
2022 Warn when a class has virtual functions and accessible non-virtual
2023 destructor, in which case it would be possible but unsafe to delete
2024 an instance of a derived class through a pointer to the base class.
2025 This warning is also enabled if -Weffc++ is specified.
2026
2027 @item -Wreorder @r{(C++ only)}
2028 @opindex Wreorder
2029 @cindex reordering, warning
2030 @cindex warning for reordering of member initializers
2031 Warn when the order of member initializers given in the code does not
2032 match the order in which they must be executed.  For instance:
2033
2034 @smallexample
2035 struct A @{
2036   int i;
2037   int j;
2038   A(): j (0), i (1) @{ @}
2039 @};
2040 @end smallexample
2041
2042 The compiler will rearrange the member initializers for @samp{i}
2043 and @samp{j} to match the declaration order of the members, emitting
2044 a warning to that effect.  This warning is enabled by @option{-Wall}.
2045 @end table
2046
2047 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2048
2049 @table @gcctabopt
2050 @item -Weffc++ @r{(C++ only)}
2051 @opindex Weffc++
2052 Warn about violations of the following style guidelines from Scott Meyers'
2053 @cite{Effective C++} book:
2054
2055 @itemize @bullet
2056 @item
2057 Item 11:  Define a copy constructor and an assignment operator for classes
2058 with dynamically allocated memory.
2059
2060 @item
2061 Item 12:  Prefer initialization to assignment in constructors.
2062
2063 @item
2064 Item 14:  Make destructors virtual in base classes.
2065
2066 @item
2067 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2068
2069 @item
2070 Item 23:  Don't try to return a reference when you must return an object.
2071
2072 @end itemize
2073
2074 Also warn about violations of the following style guidelines from
2075 Scott Meyers' @cite{More Effective C++} book:
2076
2077 @itemize @bullet
2078 @item
2079 Item 6:  Distinguish between prefix and postfix forms of increment and
2080 decrement operators.
2081
2082 @item
2083 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2084
2085 @end itemize
2086
2087 When selecting this option, be aware that the standard library
2088 headers do not obey all of these guidelines; use @samp{grep -v}
2089 to filter out those warnings.
2090
2091 @item -Wno-deprecated @r{(C++ only)}
2092 @opindex Wno-deprecated
2093 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
2094
2095 @item -Wstrict-null-sentinel @r{(C++ only)}
2096 @opindex Wstrict-null-sentinel
2097 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2098 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2099 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2100 it is guaranteed to of the same size as a pointer.  But this use is
2101 not portable across different compilers.
2102
2103 @item -Wno-non-template-friend @r{(C++ only)}
2104 @opindex Wno-non-template-friend
2105 Disable warnings when non-templatized friend functions are declared
2106 within a template.  Since the advent of explicit template specification
2107 support in G++, if the name of the friend is an unqualified-id (i.e.,
2108 @samp{friend foo(int)}), the C++ language specification demands that the
2109 friend declare or define an ordinary, nontemplate function.  (Section
2110 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2111 could be interpreted as a particular specialization of a templatized
2112 function.  Because this non-conforming behavior is no longer the default
2113 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2114 check existing code for potential trouble spots and is on by default.
2115 This new compiler behavior can be turned off with
2116 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2117 but disables the helpful warning.
2118
2119 @item -Wold-style-cast @r{(C++ only)}
2120 @opindex Wold-style-cast
2121 Warn if an old-style (C-style) cast to a non-void type is used within
2122 a C++ program.  The new-style casts (@samp{dynamic_cast},
2123 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2124 less vulnerable to unintended effects and much easier to search for.
2125
2126 @item -Woverloaded-virtual @r{(C++ only)}
2127 @opindex Woverloaded-virtual
2128 @cindex overloaded virtual fn, warning
2129 @cindex warning for overloaded virtual fn
2130 Warn when a function declaration hides virtual functions from a
2131 base class.  For example, in:
2132
2133 @smallexample
2134 struct A @{
2135   virtual void f();
2136 @};
2137
2138 struct B: public A @{
2139   void f(int);
2140 @};
2141 @end smallexample
2142
2143 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2144 like:
2145
2146 @smallexample
2147 B* b;
2148 b->f();
2149 @end smallexample
2150
2151 will fail to compile.
2152
2153 @item -Wno-pmf-conversions @r{(C++ only)}
2154 @opindex Wno-pmf-conversions
2155 Disable the diagnostic for converting a bound pointer to member function
2156 to a plain pointer.
2157
2158 @item -Wsign-promo @r{(C++ only)}
2159 @opindex Wsign-promo
2160 Warn when overload resolution chooses a promotion from unsigned or
2161 enumerated type to a signed type, over a conversion to an unsigned type of
2162 the same size.  Previous versions of G++ would try to preserve
2163 unsignedness, but the standard mandates the current behavior.
2164
2165 @smallexample
2166 struct A @{
2167   operator int ();
2168   A& operator = (int);
2169 @};
2170
2171 main ()
2172 @{
2173   A a,b;
2174   a = b;
2175 @}
2176 @end smallexample
2177
2178 In this example, G++ will synthesize a default @samp{A& operator =
2179 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2180 @end table
2181
2182 @node Objective-C and Objective-C++ Dialect Options
2183 @section Options Controlling Objective-C and Objective-C++ Dialects
2184
2185 @cindex compiler options, Objective-C and Objective-C++
2186 @cindex Objective-C and Objective-C++ options, command line
2187 @cindex options, Objective-C and Objective-C++
2188 (NOTE: This manual does not describe the Objective-C and Objective-C++
2189 languages themselves.  See @xref{Standards,,Language Standards
2190 Supported by GCC}, for references.)
2191
2192 This section describes the command-line options that are only meaningful
2193 for Objective-C and Objective-C++ programs, but you can also use most of
2194 the language-independent GNU compiler options.
2195 For example, you might compile a file @code{some_class.m} like this:
2196
2197 @smallexample
2198 gcc -g -fgnu-runtime -O -c some_class.m
2199 @end smallexample
2200
2201 @noindent
2202 In this example, @option{-fgnu-runtime} is an option meant only for
2203 Objective-C and Objective-C++ programs; you can use the other options with
2204 any language supported by GCC@.
2205
2206 Note that since Objective-C is an extension of the C language, Objective-C
2207 compilations may also use options specific to the C front-end (e.g.,
2208 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2209 C++-specific options (e.g., @option{-Wabi}).
2210
2211 Here is a list of options that are @emph{only} for compiling Objective-C
2212 and Objective-C++ programs:
2213
2214 @table @gcctabopt
2215 @item -fconstant-string-class=@var{class-name}
2216 @opindex fconstant-string-class
2217 Use @var{class-name} as the name of the class to instantiate for each
2218 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2219 class name is @code{NXConstantString} if the GNU runtime is being used, and
2220 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2221 @option{-fconstant-cfstrings} option, if also present, will override the
2222 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2223 to be laid out as constant CoreFoundation strings.
2224
2225 @item -fgnu-runtime
2226 @opindex fgnu-runtime
2227 Generate object code compatible with the standard GNU Objective-C
2228 runtime.  This is the default for most types of systems.
2229
2230 @item -fnext-runtime
2231 @opindex fnext-runtime
2232 Generate output compatible with the NeXT runtime.  This is the default
2233 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2234 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2235 used.
2236
2237 @item -fno-nil-receivers
2238 @opindex fno-nil-receivers
2239 Assume that all Objective-C message dispatches (e.g.,
2240 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2241 is not @code{nil}.  This allows for more efficient entry points in the runtime
2242 to be used.  Currently, this option is only available in conjunction with
2243 the NeXT runtime on Mac OS X 10.3 and later.
2244
2245 @item -fobjc-call-cxx-cdtors
2246 @opindex fobjc-call-cxx-cdtors
2247 For each Objective-C class, check if any of its instance variables is a
2248 C++ object with a non-trivial default constructor.  If so, synthesize a
2249 special @code{- (id) .cxx_construct} instance method that will run
2250 non-trivial default constructors on any such instance variables, in order,
2251 and then return @code{self}.  Similarly, check if any instance variable
2252 is a C++ object with a non-trivial destructor, and if so, synthesize a
2253 special @code{- (void) .cxx_destruct} method that will run
2254 all such default destructors, in reverse order.
2255
2256 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2257 thusly generated will only operate on instance variables declared in the
2258 current Objective-C class, and not those inherited from superclasses.  It
2259 is the responsibility of the Objective-C runtime to invoke all such methods
2260 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2261 will be invoked by the runtime immediately after a new object
2262 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2263 be invoked immediately before the runtime deallocates an object instance.
2264
2265 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2266 support for invoking the @code{- (id) .cxx_construct} and
2267 @code{- (void) .cxx_destruct} methods.
2268
2269 @item -fobjc-direct-dispatch
2270 @opindex fobjc-direct-dispatch
2271 Allow fast jumps to the message dispatcher.  On Darwin this is
2272 accomplished via the comm page.
2273
2274 @item -fobjc-exceptions
2275 @opindex fobjc-exceptions
2276 Enable syntactic support for structured exception handling in Objective-C,
2277 similar to what is offered by C++ and Java.  This option is
2278 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2279 earlier.
2280
2281 @smallexample
2282   @@try @{
2283     @dots{}
2284        @@throw expr;
2285     @dots{}
2286   @}
2287   @@catch (AnObjCClass *exc) @{
2288     @dots{}
2289       @@throw expr;
2290     @dots{}
2291       @@throw;
2292     @dots{}
2293   @}
2294   @@catch (AnotherClass *exc) @{
2295     @dots{}
2296   @}
2297   @@catch (id allOthers) @{
2298     @dots{}
2299   @}
2300   @@finally @{
2301     @dots{}
2302       @@throw expr;
2303     @dots{}
2304   @}
2305 @end smallexample
2306
2307 The @code{@@throw} statement may appear anywhere in an Objective-C or
2308 Objective-C++ program; when used inside of a @code{@@catch} block, the
2309 @code{@@throw} may appear without an argument (as shown above), in which case
2310 the object caught by the @code{@@catch} will be rethrown.
2311
2312 Note that only (pointers to) Objective-C objects may be thrown and
2313 caught using this scheme.  When an object is thrown, it will be caught
2314 by the nearest @code{@@catch} clause capable of handling objects of that type,
2315 analogously to how @code{catch} blocks work in C++ and Java.  A
2316 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2317 any and all Objective-C exceptions not caught by previous @code{@@catch}
2318 clauses (if any).
2319
2320 The @code{@@finally} clause, if present, will be executed upon exit from the
2321 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2322 regardless of whether any exceptions are thrown, caught or rethrown
2323 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2324 of the @code{finally} clause in Java.
2325
2326 There are several caveats to using the new exception mechanism:
2327
2328 @itemize @bullet
2329 @item
2330 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2331 idioms provided by the @code{NSException} class, the new
2332 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2333 systems, due to additional functionality needed in the (NeXT) Objective-C
2334 runtime.
2335
2336 @item
2337 As mentioned above, the new exceptions do not support handling
2338 types other than Objective-C objects.   Furthermore, when used from
2339 Objective-C++, the Objective-C exception model does not interoperate with C++
2340 exceptions at this time.  This means you cannot @code{@@throw} an exception
2341 from Objective-C and @code{catch} it in C++, or vice versa
2342 (i.e., @code{throw @dots{} @@catch}).
2343 @end itemize
2344
2345 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2346 blocks for thread-safe execution:
2347
2348 @smallexample
2349   @@synchronized (ObjCClass *guard) @{
2350     @dots{}
2351   @}
2352 @end smallexample
2353
2354 Upon entering the @code{@@synchronized} block, a thread of execution shall
2355 first check whether a lock has been placed on the corresponding @code{guard}
2356 object by another thread.  If it has, the current thread shall wait until
2357 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2358 the current thread will place its own lock on it, execute the code contained in
2359 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2360 making @code{guard} available to other threads).
2361
2362 Unlike Java, Objective-C does not allow for entire methods to be marked
2363 @code{@@synchronized}.  Note that throwing exceptions out of
2364 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2365 to be unlocked properly.
2366
2367 @item -fobjc-gc
2368 @opindex fobjc-gc
2369 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2370
2371 @item -freplace-objc-classes
2372 @opindex freplace-objc-classes
2373 Emit a special marker instructing @command{ld(1)} not to statically link in
2374 the resulting object file, and allow @command{dyld(1)} to load it in at
2375 run time instead.  This is used in conjunction with the Fix-and-Continue
2376 debugging mode, where the object file in question may be recompiled and
2377 dynamically reloaded in the course of program execution, without the need
2378 to restart the program itself.  Currently, Fix-and-Continue functionality
2379 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2380 and later.
2381
2382 @item -fzero-link
2383 @opindex fzero-link
2384 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2385 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2386 compile time) with static class references that get initialized at load time,
2387 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2388 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2389 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2390 for individual class implementations to be modified during program execution.
2391
2392 @item -gen-decls
2393 @opindex gen-decls
2394 Dump interface declarations for all classes seen in the source file to a
2395 file named @file{@var{sourcename}.decl}.
2396
2397 @item -Wassign-intercept
2398 @opindex Wassign-intercept
2399 Warn whenever an Objective-C assignment is being intercepted by the
2400 garbage collector.
2401
2402 @item -Wno-protocol
2403 @opindex Wno-protocol
2404 If a class is declared to implement a protocol, a warning is issued for
2405 every method in the protocol that is not implemented by the class.  The
2406 default behavior is to issue a warning for every method not explicitly
2407 implemented in the class, even if a method implementation is inherited
2408 from the superclass.  If you use the @option{-Wno-protocol} option, then
2409 methods inherited from the superclass are considered to be implemented,
2410 and no warning is issued for them.
2411
2412 @item -Wselector
2413 @opindex Wselector
2414 Warn if multiple methods of different types for the same selector are
2415 found during compilation.  The check is performed on the list of methods
2416 in the final stage of compilation.  Additionally, a check is performed
2417 for each selector appearing in a @code{@@selector(@dots{})}
2418 expression, and a corresponding method for that selector has been found
2419 during compilation.  Because these checks scan the method table only at
2420 the end of compilation, these warnings are not produced if the final
2421 stage of compilation is not reached, for example because an error is
2422 found during compilation, or because the @option{-fsyntax-only} option is
2423 being used.
2424
2425 @item -Wstrict-selector-match
2426 @opindex Wstrict-selector-match
2427 Warn if multiple methods with differing argument and/or return types are
2428 found for a given selector when attempting to send a message using this
2429 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2430 is off (which is the default behavior), the compiler will omit such warnings
2431 if any differences found are confined to types which share the same size
2432 and alignment.
2433
2434 @item -Wundeclared-selector
2435 @opindex Wundeclared-selector
2436 Warn if a @code{@@selector(@dots{})} expression referring to an
2437 undeclared selector is found.  A selector is considered undeclared if no
2438 method with that name has been declared before the
2439 @code{@@selector(@dots{})} expression, either explicitly in an
2440 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2441 an @code{@@implementation} section.  This option always performs its
2442 checks as soon as a @code{@@selector(@dots{})} expression is found,
2443 while @option{-Wselector} only performs its checks in the final stage of
2444 compilation.  This also enforces the coding style convention
2445 that methods and selectors must be declared before being used.
2446
2447 @item -print-objc-runtime-info
2448 @opindex print-objc-runtime-info
2449 Generate C header describing the largest structure that is passed by
2450 value, if any.
2451
2452 @end table
2453
2454 @node Language Independent Options
2455 @section Options to Control Diagnostic Messages Formatting
2456 @cindex options to control diagnostics formatting
2457 @cindex diagnostic messages
2458 @cindex message formatting
2459
2460 Traditionally, diagnostic messages have been formatted irrespective of
2461 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2462 below can be used to control the diagnostic messages formatting
2463 algorithm, e.g.@: how many characters per line, how often source location
2464 information should be reported.  Right now, only the C++ front end can
2465 honor these options.  However it is expected, in the near future, that
2466 the remaining front ends would be able to digest them correctly.
2467
2468 @table @gcctabopt
2469 @item -fmessage-length=@var{n}
2470 @opindex fmessage-length
2471 Try to format error messages so that they fit on lines of about @var{n}
2472 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2473 the front ends supported by GCC@.  If @var{n} is zero, then no
2474 line-wrapping will be done; each error message will appear on a single
2475 line.
2476
2477 @opindex fdiagnostics-show-location
2478 @item -fdiagnostics-show-location=once
2479 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2480 reporter to emit @emph{once} source location information; that is, in
2481 case the message is too long to fit on a single physical line and has to
2482 be wrapped, the source location won't be emitted (as prefix) again,
2483 over and over, in subsequent continuation lines.  This is the default
2484 behavior.
2485
2486 @item -fdiagnostics-show-location=every-line
2487 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2488 messages reporter to emit the same source location information (as
2489 prefix) for physical lines that result from the process of breaking
2490 a message which is too long to fit on a single line.
2491
2492 @item -fdiagnostics-show-option
2493 @opindex fdiagnostics-show-option
2494 This option instructs the diagnostic machinery to add text to each
2495 diagnostic emitted, which indicates which command line option directly
2496 controls that diagnostic, when such an option is known to the
2497 diagnostic machinery.
2498
2499 @item -Wcoverage-mismatch
2500 @opindex Wcoverage-mismatch
2501 Warn if feedback profiles do not match when using the
2502 @option{-fprofile-use} option.
2503 If a source file was changed between @option{-fprofile-gen} and
2504 @option{-fprofile-use}, the files with the profile feedback can fail
2505 to match the source file and GCC can not use the profile feedback
2506 information.  By default, GCC emits an error message in this case.
2507 The option @option{-Wcoverage-mismatch} emits a warning instead of an
2508 error.  GCC does not use appropriate feedback profiles, so using this
2509 option can result in poorly optimized code.  This option is useful
2510 only in the case of very minor changes such as bug fixes to an
2511 existing code-base.
2512
2513 @end table
2514
2515 @node Warning Options
2516 @section Options to Request or Suppress Warnings
2517 @cindex options to control warnings
2518 @cindex warning messages
2519 @cindex messages, warning
2520 @cindex suppressing warnings
2521
2522 Warnings are diagnostic messages that report constructions which
2523 are not inherently erroneous but which are risky or suggest there
2524 may have been an error.
2525
2526 You can request many specific warnings with options beginning @samp{-W},
2527 for example @option{-Wimplicit} to request warnings on implicit
2528 declarations.  Each of these specific warning options also has a
2529 negative form beginning @samp{-Wno-} to turn off warnings;
2530 for example, @option{-Wno-implicit}.  This manual lists only one of the
2531 two forms, whichever is not the default.
2532
2533 The following options control the amount and kinds of warnings produced
2534 by GCC; for further, language-specific options also refer to
2535 @ref{C++ Dialect Options} and @ref{Objective-C and Objective-C++ Dialect
2536 Options}.
2537
2538 @table @gcctabopt
2539 @cindex syntax checking
2540 @item -fsyntax-only
2541 @opindex fsyntax-only
2542 Check the code for syntax errors, but don't do anything beyond that.
2543
2544 @item -pedantic
2545 @opindex pedantic
2546 Issue all the warnings demanded by strict ISO C and ISO C++;
2547 reject all programs that use forbidden extensions, and some other
2548 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2549 version of the ISO C standard specified by any @option{-std} option used.
2550
2551 Valid ISO C and ISO C++ programs should compile properly with or without
2552 this option (though a rare few will require @option{-ansi} or a
2553 @option{-std} option specifying the required version of ISO C)@.  However,
2554 without this option, certain GNU extensions and traditional C and C++
2555 features are supported as well.  With this option, they are rejected.
2556
2557 @option{-pedantic} does not cause warning messages for use of the
2558 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2559 warnings are also disabled in the expression that follows
2560 @code{__extension__}.  However, only system header files should use
2561 these escape routes; application programs should avoid them.
2562 @xref{Alternate Keywords}.
2563
2564 Some users try to use @option{-pedantic} to check programs for strict ISO
2565 C conformance.  They soon find that it does not do quite what they want:
2566 it finds some non-ISO practices, but not all---only those for which
2567 ISO C @emph{requires} a diagnostic, and some others for which
2568 diagnostics have been added.
2569
2570 A feature to report any failure to conform to ISO C might be useful in
2571 some instances, but would require considerable additional work and would
2572 be quite different from @option{-pedantic}.  We don't have plans to
2573 support such a feature in the near future.
2574
2575 Where the standard specified with @option{-std} represents a GNU
2576 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2577 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2578 extended dialect is based.  Warnings from @option{-pedantic} are given
2579 where they are required by the base standard.  (It would not make sense
2580 for such warnings to be given only for features not in the specified GNU
2581 C dialect, since by definition the GNU dialects of C include all
2582 features the compiler supports with the given option, and there would be
2583 nothing to warn about.)
2584
2585 @item -pedantic-errors
2586 @opindex pedantic-errors
2587 Like @option{-pedantic}, except that errors are produced rather than
2588 warnings.
2589
2590 @item -w
2591 @opindex w
2592 Inhibit all warning messages.
2593
2594 @item -Wno-import
2595 @opindex Wno-import
2596 Inhibit warning messages about the use of @samp{#import}.
2597
2598 @item -Wchar-subscripts
2599 @opindex Wchar-subscripts
2600 Warn if an array subscript has type @code{char}.  This is a common cause
2601 of error, as programmers often forget that this type is signed on some
2602 machines.
2603 This warning is enabled by @option{-Wall}.
2604
2605 @item -Wcomment
2606 @opindex Wcomment
2607 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2608 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2609 This warning is enabled by @option{-Wall}.
2610
2611 @item -Wfatal-errors
2612 @opindex Wfatal-errors
2613 This option causes the compiler to abort compilation on the first error
2614 occurred rather than trying to keep going and printing further error
2615 messages.
2616
2617 @item -Wformat
2618 @opindex Wformat
2619 @opindex ffreestanding
2620 @opindex fno-builtin
2621 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2622 the arguments supplied have types appropriate to the format string
2623 specified, and that the conversions specified in the format string make
2624 sense.  This includes standard functions, and others specified by format
2625 attributes (@pxref{Function Attributes}), in the @code{printf},
2626 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2627 not in the C standard) families (or other target-specific families).
2628 Which functions are checked without format attributes having been
2629 specified depends on the standard version selected, and such checks of
2630 functions without the attribute specified are disabled by
2631 @option{-ffreestanding} or @option{-fno-builtin}.
2632
2633 The formats are checked against the format features supported by GNU
2634 libc version 2.2.  These include all ISO C90 and C99 features, as well
2635 as features from the Single Unix Specification and some BSD and GNU
2636 extensions.  Other library implementations may not support all these
2637 features; GCC does not support warning about features that go beyond a
2638 particular library's limitations.  However, if @option{-pedantic} is used
2639 with @option{-Wformat}, warnings will be given about format features not
2640 in the selected standard version (but not for @code{strfmon} formats,
2641 since those are not in any version of the C standard).  @xref{C Dialect
2642 Options,,Options Controlling C Dialect}.
2643
2644 Since @option{-Wformat} also checks for null format arguments for
2645 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2646
2647 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2648 aspects of format checking, the options @option{-Wformat-y2k},
2649 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2650 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2651 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2652
2653 @item -Wformat-y2k
2654 @opindex Wformat-y2k
2655 If @option{-Wformat} is specified, also warn about @code{strftime}
2656 formats which may yield only a two-digit year.
2657
2658 @item -Wno-format-extra-args
2659 @opindex Wno-format-extra-args
2660 If @option{-Wformat} is specified, do not warn about excess arguments to a
2661 @code{printf} or @code{scanf} format function.  The C standard specifies
2662 that such arguments are ignored.
2663
2664 Where the unused arguments lie between used arguments that are
2665 specified with @samp{$} operand number specifications, normally
2666 warnings are still given, since the implementation could not know what
2667 type to pass to @code{va_arg} to skip the unused arguments.  However,
2668 in the case of @code{scanf} formats, this option will suppress the
2669 warning if the unused arguments are all pointers, since the Single
2670 Unix Specification says that such unused arguments are allowed.
2671
2672 @item -Wno-format-zero-length
2673 @opindex Wno-format-zero-length
2674 If @option{-Wformat} is specified, do not warn about zero-length formats.
2675 The C standard specifies that zero-length formats are allowed.
2676
2677 @item -Wformat-nonliteral
2678 @opindex Wformat-nonliteral
2679 If @option{-Wformat} is specified, also warn if the format string is not a
2680 string literal and so cannot be checked, unless the format function
2681 takes its format arguments as a @code{va_list}.
2682
2683 @item -Wformat-security
2684 @opindex Wformat-security
2685 If @option{-Wformat} is specified, also warn about uses of format
2686 functions that represent possible security problems.  At present, this
2687 warns about calls to @code{printf} and @code{scanf} functions where the
2688 format string is not a string literal and there are no format arguments,
2689 as in @code{printf (foo);}.  This may be a security hole if the format
2690 string came from untrusted input and contains @samp{%n}.  (This is
2691 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2692 in future warnings may be added to @option{-Wformat-security} that are not
2693 included in @option{-Wformat-nonliteral}.)
2694
2695 @item -Wformat=2
2696 @opindex Wformat=2
2697 Enable @option{-Wformat} plus format checks not included in
2698 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2699 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2700
2701 @item -Wnonnull
2702 @opindex Wnonnull
2703 Warn about passing a null pointer for arguments marked as
2704 requiring a non-null value by the @code{nonnull} function attribute.
2705
2706 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2707 can be disabled with the @option{-Wno-nonnull} option.
2708
2709 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
2710 @opindex Winit-self
2711 Warn about uninitialized variables which are initialized with themselves.
2712 Note this option can only be used with the @option{-Wuninitialized} option,
2713 which in turn only works with @option{-O1} and above.
2714
2715 For example, GCC will warn about @code{i} being uninitialized in the
2716 following snippet only when @option{-Winit-self} has been specified:
2717 @smallexample
2718 @group
2719 int f()
2720 @{
2721   int i = i;
2722   return i;
2723 @}
2724 @end group
2725 @end smallexample
2726
2727 @item -Wimplicit-int
2728 @opindex Wimplicit-int
2729 Warn when a declaration does not specify a type.
2730 This warning is enabled by @option{-Wall}.
2731
2732 @item -Wimplicit-function-declaration
2733 @opindex Wimplicit-function-declaration
2734 @opindex Wno-implicit-function-declaration
2735 Give a warning whenever a function is used before being declared. In
2736 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
2737 enabled by default and it is made into an error by
2738 @option{-pedantic-errors}. This warning is also enabled by
2739 @option{-Wall}.
2740
2741 @item -Wimplicit
2742 @opindex Wimplicit
2743 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
2744 This warning is enabled by @option{-Wall}.
2745
2746 @item -Wmain
2747 @opindex Wmain
2748 Warn if the type of @samp{main} is suspicious.  @samp{main} should be a
2749 function with external linkage, returning int, taking either zero
2750 arguments, two, or three arguments of appropriate types.
2751 This warning is enabled by @option{-Wall}.
2752
2753 @item -Wmissing-braces
2754 @opindex Wmissing-braces
2755 Warn if an aggregate or union initializer is not fully bracketed.  In
2756 the following example, the initializer for @samp{a} is not fully
2757 bracketed, but that for @samp{b} is fully bracketed.
2758
2759 @smallexample
2760 int a[2][2] = @{ 0, 1, 2, 3 @};
2761 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
2762 @end smallexample
2763
2764 This warning is enabled by @option{-Wall}.
2765
2766 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
2767 @opindex Wmissing-include-dirs
2768 Warn if a user-supplied include directory does not exist.
2769
2770 @item -Wparentheses
2771 @opindex Wparentheses
2772 Warn if parentheses are omitted in certain contexts, such
2773 as when there is an assignment in a context where a truth value
2774 is expected, or when operators are nested whose precedence people
2775 often get confused about.
2776
2777 Also warn if a comparison like @samp{x<=y<=z} appears; this is
2778 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
2779 interpretation from that of ordinary mathematical notation.
2780
2781 Also warn about constructions where there may be confusion to which
2782 @code{if} statement an @code{else} branch belongs.  Here is an example of
2783 such a case:
2784
2785 @smallexample
2786 @group
2787 @{
2788   if (a)
2789     if (b)
2790       foo ();
2791   else
2792     bar ();
2793 @}
2794 @end group
2795 @end smallexample
2796
2797 In C/C++, every @code{else} branch belongs to the innermost possible
2798 @code{if} statement, which in this example is @code{if (b)}.  This is
2799 often not what the programmer expected, as illustrated in the above
2800 example by indentation the programmer chose.  When there is the
2801 potential for this confusion, GCC will issue a warning when this flag
2802 is specified.  To eliminate the warning, add explicit braces around
2803 the innermost @code{if} statement so there is no way the @code{else}
2804 could belong to the enclosing @code{if}.  The resulting code would
2805 look like this:
2806
2807 @smallexample
2808 @group
2809 @{
2810   if (a)
2811     @{
2812       if (b)
2813         foo ();
2814       else
2815         bar ();
2816     @}
2817 @}
2818 @end group
2819 @end smallexample
2820
2821 This warning is enabled by @option{-Wall}.
2822
2823 @item -Wsequence-point
2824 @opindex Wsequence-point
2825 Warn about code that may have undefined semantics because of violations
2826 of sequence point rules in the C and C++ standards.
2827
2828 The C and C++ standards defines the order in which expressions in a C/C++
2829 program are evaluated in terms of @dfn{sequence points}, which represent
2830 a partial ordering between the execution of parts of the program: those
2831 executed before the sequence point, and those executed after it.  These
2832 occur after the evaluation of a full expression (one which is not part
2833 of a larger expression), after the evaluation of the first operand of a
2834 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
2835 function is called (but after the evaluation of its arguments and the
2836 expression denoting the called function), and in certain other places.
2837 Other than as expressed by the sequence point rules, the order of
2838 evaluation of subexpressions of an expression is not specified.  All
2839 these rules describe only a partial order rather than a total order,
2840 since, for example, if two functions are called within one expression
2841 with no sequence point between them, the order in which the functions
2842 are called is not specified.  However, the standards committee have
2843 ruled that function calls do not overlap.
2844
2845 It is not specified when between sequence points modifications to the
2846 values of objects take effect.  Programs whose behavior depends on this
2847 have undefined behavior; the C and C++ standards specify that ``Between
2848 the previous and next sequence point an object shall have its stored
2849 value modified at most once by the evaluation of an expression.
2850 Furthermore, the prior value shall be read only to determine the value
2851 to be stored.''.  If a program breaks these rules, the results on any
2852 particular implementation are entirely unpredictable.
2853
2854 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
2855 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
2856 diagnosed by this option, and it may give an occasional false positive
2857 result, but in general it has been found fairly effective at detecting
2858 this sort of problem in programs.
2859
2860 The standard is worded confusingly, therefore there is some debate
2861 over the precise meaning of the sequence point rules in subtle cases.
2862 Links to discussions of the problem, including proposed formal
2863 definitions, may be found on the GCC readings page, at
2864 @w{@uref{http://gcc.gnu.org/readings.html}}.
2865
2866 This warning is enabled by @option{-Wall} for C and C++.
2867
2868 @item -Wreturn-type
2869 @opindex Wreturn-type
2870 @opindex Wno-return-type
2871 Warn whenever a function is defined with a return-type that defaults
2872 to @code{int}.  Also warn about any @code{return} statement with no
2873 return-value in a function whose return-type is not @code{void}
2874 (falling off the end of the function body is considered returning
2875 without a value), and about a @code{return} statement with a
2876 expression in a function whose return-type is @code{void}.
2877
2878 Also warn if the return type of a function has a type qualifier
2879 such as @code{const}.  For ISO C such a type qualifier has no effect,
2880 since the value returned by a function is not an lvalue.
2881 For C++, the warning is only emitted for scalar types or @code{void}.
2882 ISO C prohibits qualified @code{void} return types on function
2883 definitions, so such return types always receive a warning
2884 even without this option.
2885
2886 For C++, a function without return type always produces a diagnostic
2887 message, even when @option{-Wno-return-type} is specified.  The only
2888 exceptions are @samp{main} and functions defined in system headers.
2889
2890 This warning is enabled by @option{-Wall}.
2891
2892 @item -Wswitch
2893 @opindex Wswitch
2894 Warn whenever a @code{switch} statement has an index of enumerated type
2895 and lacks a @code{case} for one or more of the named codes of that
2896 enumeration.  (The presence of a @code{default} label prevents this
2897 warning.)  @code{case} labels outside the enumeration range also
2898 provoke warnings when this option is used.
2899 This warning is enabled by @option{-Wall}.
2900
2901 @item -Wswitch-default
2902 @opindex Wswitch-switch
2903 Warn whenever a @code{switch} statement does not have a @code{default}
2904 case.
2905
2906 @item -Wswitch-enum
2907 @opindex Wswitch-enum
2908 Warn whenever a @code{switch} statement has an index of enumerated type
2909 and lacks a @code{case} for one or more of the named codes of that
2910 enumeration.  @code{case} labels outside the enumeration range also
2911 provoke warnings when this option is used.
2912
2913 @item -Wtrigraphs
2914 @opindex Wtrigraphs
2915 Warn if any trigraphs are encountered that might change the meaning of
2916 the program (trigraphs within comments are not warned about).
2917 This warning is enabled by @option{-Wall}.
2918
2919 @item -Wunused-function
2920 @opindex Wunused-function
2921 Warn whenever a static function is declared but not defined or a
2922 non-inline static function is unused.
2923 This warning is enabled by @option{-Wall}.
2924
2925 @item -Wunused-label
2926 @opindex Wunused-label
2927 Warn whenever a label is declared but not used.
2928 This warning is enabled by @option{-Wall}.
2929
2930 To suppress this warning use the @samp{unused} attribute
2931 (@pxref{Variable Attributes}).
2932
2933 @item -Wunused-parameter
2934 @opindex Wunused-parameter
2935 Warn whenever a function parameter is unused aside from its declaration.
2936
2937 To suppress this warning use the @samp{unused} attribute
2938 (@pxref{Variable Attributes}).
2939
2940 @item -Wunused-variable
2941 @opindex Wunused-variable
2942 Warn whenever a local variable or non-constant static variable is unused
2943 aside from its declaration.
2944 This warning is enabled by @option{-Wall}.
2945
2946 To suppress this warning use the @samp{unused} attribute
2947 (@pxref{Variable Attributes}).
2948
2949 @item -Wunused-value
2950 @opindex Wunused-value
2951 Warn whenever a statement computes a result that is explicitly not
2952 used. To suppress this warning cast the unused expression to
2953 @samp{void}. This includes an expression-statement or the left-hand
2954 side of a comma expression that contains no side effects. For example,
2955 an expression such as @samp{x[i,j]} will cause a warning, while
2956 @samp{x[(void)i,j]} will not.
2957
2958 This warning is enabled by @option{-Wall}.
2959
2960 @item -Wunused
2961 @opindex Wunused
2962 All the above @option{-Wunused} options combined.
2963
2964 In order to get a warning about an unused function parameter, you must
2965 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
2966 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
2967
2968 @item -Wuninitialized
2969 @opindex Wuninitialized
2970 Warn if an automatic variable is used without first being initialized or
2971 if a variable may be clobbered by a @code{setjmp} call.
2972
2973 These warnings are possible only in optimizing compilation,
2974 because they require data flow information that is computed only
2975 when optimizing.  If you do not specify @option{-O}, you will not get
2976 these warnings. Instead, GCC will issue a warning about @option{-Wuninitialized}
2977 requiring @option{-O}.
2978
2979 If you want to warn about code which uses the uninitialized value of the
2980 variable in its own initializer, use the @option{-Winit-self} option.
2981
2982 These warnings occur for individual uninitialized or clobbered
2983 elements of structure, union or array variables as well as for
2984 variables which are uninitialized or clobbered as a whole.  They do
2985 not occur for variables or elements declared @code{volatile}.  Because
2986 these warnings depend on optimization, the exact variables or elements
2987 for which there are warnings will depend on the precise optimization
2988 options and version of GCC used.
2989
2990 Note that there may be no warning about a variable that is used only
2991 to compute a value that itself is never used, because such
2992 computations may be deleted by data flow analysis before the warnings
2993 are printed.
2994
2995 These warnings are made optional because GCC is not smart
2996 enough to see all the reasons why the code might be correct
2997 despite appearing to have an error.  Here is one example of how
2998 this can happen:
2999
3000 @smallexample
3001 @group
3002 @{
3003   int x;
3004   switch (y)
3005     @{
3006     case 1: x = 1;
3007       break;
3008     case 2: x = 4;
3009       break;
3010     case 3: x = 5;
3011     @}
3012   foo (x);
3013 @}
3014 @end group
3015 @end smallexample
3016
3017 @noindent
3018 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3019 always initialized, but GCC doesn't know this.  Here is
3020 another common case:
3021
3022 @smallexample
3023 @{
3024   int save_y;
3025   if (change_y) save_y = y, y = new_y;
3026   @dots{}
3027   if (change_y) y = save_y;
3028 @}
3029 @end smallexample
3030
3031 @noindent
3032 This has no bug because @code{save_y} is used only if it is set.
3033
3034 @cindex @code{longjmp} warnings
3035 This option also warns when a non-volatile automatic variable might be
3036 changed by a call to @code{longjmp}.  These warnings as well are possible
3037 only in optimizing compilation.
3038
3039 The compiler sees only the calls to @code{setjmp}.  It cannot know
3040 where @code{longjmp} will be called; in fact, a signal handler could
3041 call it at any point in the code.  As a result, you may get a warning
3042 even when there is in fact no problem because @code{longjmp} cannot
3043 in fact be called at the place which would cause a problem.
3044
3045 Some spurious warnings can be avoided if you declare all the functions
3046 you use that never return as @code{noreturn}.  @xref{Function
3047 Attributes}.
3048
3049 This warning is enabled by @option{-Wall}.
3050
3051 @item -Wunknown-pragmas
3052 @opindex Wunknown-pragmas
3053 @cindex warning for unknown pragmas
3054 @cindex unknown pragmas, warning
3055 @cindex pragmas, warning of unknown
3056 Warn when a #pragma directive is encountered which is not understood by
3057 GCC@.  If this command line option is used, warnings will even be issued
3058 for unknown pragmas in system header files.  This is not the case if
3059 the warnings were only enabled by the @option{-Wall} command line option.
3060
3061 @item -Wno-pragmas
3062 @opindex Wno-pragmas
3063 @opindex Wpragmas
3064 Do not warn about misuses of pragmas, such as incorrect parameters,
3065 invalid syntax, or conflicts between pragmas.  See also
3066 @samp{-Wunknown-pragmas}.
3067
3068 @item -Wstrict-aliasing
3069 @opindex Wstrict-aliasing
3070 This option is only active when @option{-fstrict-aliasing} is active.
3071 It warns about code which might break the strict aliasing rules that the
3072 compiler is using for optimization.  The warning does not catch all
3073 cases, but does attempt to catch the more common pitfalls.  It is
3074 included in @option{-Wall}.
3075 It is equivalent to -Wstrict-aliasing=3
3076
3077 @item -Wstrict-aliasing=n
3078 @opindex Wstrict-aliasing=n
3079 This option is only active when @option{-fstrict-aliasing} is active.
3080 It warns about code which might break the strict aliasing rules that the
3081 compiler is using for optimization.
3082 Higher levels correspond to higher accuracy (fewer false positives).
3083 Higher levels also correspond to more effort, similar to the way -O works.
3084 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3085 with n=3.
3086
3087 Level 1: Most aggressive, quick, least accurate.
3088 Possibly useful when higher levels
3089 do not warn but -fstrict-aliasing still breaks the code, as it has very few 
3090 false negatives.  However, it has many false positives.
3091 Warns for all pointer conversions between possibly incompatible types, 
3092 even if never dereferenced.  Runs in the frontend only.
3093
3094 Level 2: Aggressive, quick, not too precise.
3095 May still have many false positives (not as many as level 1 though),
3096 and few false negatives (but possibly more than level 1).
3097 Unlike level 1, it only warns when an address is taken.  Warns about
3098 incomplete types.  Runs in the frontend only.
3099
3100 Level 3 (default for @option{-Wstrict-aliasing}): 
3101 Should have very few false positives and few false 
3102 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3103 Takes care of the common punn+dereference pattern in the frontend:
3104 @code{*(int*)&some_float}.
3105 If optimization is enabled, it also runs in the backend, where it deals 
3106 with multiple statement cases using flow-sensitive points-to information.
3107 Only warns when the converted pointer is dereferenced.
3108 Does not warn about incomplete types.
3109
3110 @item -Wstrict-overflow
3111 @item -Wstrict-overflow=@var{n}
3112 @opindex Wstrict-overflow
3113 This option is only active when @option{-fstrict-overflow} is active.
3114 It warns about cases where the compiler optimizes based on the
3115 assumption that signed overflow does not occur.  Note that it does not
3116 warn about all cases where the code might overflow: it only warns
3117 about cases where the compiler implements some optimization.  Thus
3118 this warning depends on the optimization level.
3119
3120 An optimization which assumes that signed overflow does not occur is
3121 perfectly safe if the values of the variables involved are such that
3122 overflow never does, in fact, occur.  Therefore this warning can
3123 easily give a false positive: a warning about code which is not
3124 actually a problem.  To help focus on important issues, several
3125 warning levels are defined.  No warnings are issued for the use of
3126 undefined signed overflow when estimating how many iterations a loop
3127 will require, in particular when determining whether a loop will be
3128 executed at all.
3129
3130 @table @gcctabopt
3131 @item -Wstrict-overflow=1
3132 Warn about cases which are both questionable and easy to avoid.  For
3133 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3134 compiler will simplify this to @code{1}.  This level of
3135 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3136 are not, and must be explicitly requested.
3137
3138 @item -Wstrict-overflow=2
3139 Also warn about other cases where a comparison is simplified to a
3140 constant.  For example: @code{abs (x) >= 0}.  This can only be
3141 simplified when @option{-fstrict-overflow} is in effect, because
3142 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3143 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3144 @option{-Wstrict-overflow=2}.
3145
3146 @item -Wstrict-overflow=3
3147 Also warn about other cases where a comparison is simplified.  For
3148 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3149
3150 @item -Wstrict-overflow=4
3151 Also warn about other simplifications not covered by the above cases.
3152 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3153
3154 @item -Wstrict-overflow=5
3155 Also warn about cases where the compiler reduces the magnitude of a
3156 constant involved in a comparison.  For example: @code{x + 2 > y} will
3157 be simplified to @code{x + 1 >= y}.  This is reported only at the
3158 highest warning level because this simplification applies to many
3159 comparisons, so this warning level will give a very large number of
3160 false positives.
3161 @end table
3162
3163 @item -Warray-bounds
3164 @opindex Wno-array-bounds
3165 @opindex Warray-bounds
3166 This option is only active when @option{-ftree-vrp} is active
3167 (default for -O2 and above). It warns about subscripts to arrays
3168 that are always out of bounds. This warning is enabled by @option{-Wall}.
3169
3170 @item -Wall
3171 @opindex Wall
3172 All of the above @samp{-W} options combined.  This enables all the
3173 warnings about constructions that some users consider questionable, and
3174 that are easy to avoid (or modify to prevent the warning), even in
3175 conjunction with macros.  This also enables some language-specific
3176 warnings described in @ref{C++ Dialect Options} and
3177 @ref{Objective-C and Objective-C++ Dialect Options}.
3178 @end table
3179
3180 The following @option{-W@dots{}} options are not implied by @option{-Wall}.
3181 Some of them warn about constructions that users generally do not
3182 consider questionable, but which occasionally you might wish to check
3183 for; others warn about constructions that are necessary or hard to avoid
3184 in some cases, and there is no simple way to modify the code to suppress
3185 the warning.
3186
3187 @table @gcctabopt
3188 @item -Wextra
3189 @opindex W
3190 @opindex Wextra
3191 (This option used to be called @option{-W}.  The older name is still
3192 supported, but the newer name is more descriptive.)  Print extra warning
3193 messages for these events:
3194
3195 @itemize @bullet
3196 @item
3197 Warn if a comparison is always true or always false due to the limited
3198 range of the data type, but do not warn for constant expressions.  For
3199 example, warn if an unsigned variable is compared against zero with
3200 @samp{<} or @samp{>=}.  This warning can be independently controlled
3201 by @option{-Wtype-limits}.
3202
3203 @item @r{(C only)}
3204 Storage-class specifiers like @code{static} are not the first things
3205 in a declaration.  According to the C Standard, this usage is
3206 obsolescent.  This warning can be independently controlled by
3207 @option{-Wold-style-declaration}.
3208
3209 @item
3210 If @option{-Wall} or @option{-Wunused} is also specified, warn about unused
3211 arguments.
3212
3213 @item
3214 A comparison between signed and unsigned values could produce an
3215 incorrect result when the signed value is converted to unsigned.
3216 (But don't warn if @option{-Wno-sign-compare} is also specified.)
3217
3218 @item
3219 An aggregate has an initializer which does not initialize all members.
3220 This warning can be independently controlled by
3221 @option{-Wmissing-field-initializers}.
3222
3223 @item
3224 An initialized field without side effects is overridden when using
3225 designated initializers (@pxref{Designated Inits, , Designated
3226 Initializers}).  This warning can be independently controlled by
3227 @option{-Woverride-init}.
3228
3229 @item @r{(C only)}
3230 A function parameter is declared without a type specifier in K&R-style
3231 functions.  This warning can be independently controlled by
3232 @option{-Wmissing-parameter-type}.
3233
3234 @item
3235 An empty body occurs in an @samp{if}, @samp{else} or
3236 @samp{do while} statement. This warning can be independently
3237 controlled by @option{-Wempty-body}.
3238
3239 @item @r{(C++ only)}
3240 An empty body occurs in a @samp{while} or @samp{for} statement with no
3241 whitespacing before the semicolon. This warning can be independently
3242 controlled by @option{-Wempty-body}.
3243
3244 @item
3245 A pointer is compared against integer zero with @samp{<}, @samp{<=},
3246 @samp{>}, or @samp{>=}.
3247
3248 @item
3249 A variable might be changed by @samp{longjmp} or @samp{vfork}.
3250 This warning can be independently controlled by @option{-Wclobbered}.
3251
3252 @item @r{(C++ only)}
3253 An enumerator and a non-enumerator both appear in a conditional expression.
3254
3255 @item @r{(C++ only)}
3256 A non-static reference or non-static @samp{const} member appears in a
3257 class without constructors.
3258
3259 @item @r{(C++ only)}
3260 Ambiguous virtual bases.
3261
3262 @item @r{(C++ only)}
3263 Subscripting an array which has been declared @samp{register}.
3264
3265 @item @r{(C++ only)}
3266 Taking the address of a variable which has been declared @samp{register}.
3267
3268 @item @r{(C++ only)}
3269 A base class is not initialized in a derived class' copy constructor.
3270 @end itemize
3271
3272 @item -Wno-div-by-zero
3273 @opindex Wno-div-by-zero
3274 @opindex Wdiv-by-zero
3275 Do not warn about compile-time integer division by zero.  Floating point
3276 division by zero is not warned about, as it can be a legitimate way of
3277 obtaining infinities and NaNs.
3278
3279 @item -Wsystem-headers
3280 @opindex Wsystem-headers
3281 @cindex warnings from system headers
3282 @cindex system headers, warnings from
3283 Print warning messages for constructs found in system header files.
3284 Warnings from system headers are normally suppressed, on the assumption
3285 that they usually do not indicate real problems and would only make the
3286 compiler output harder to read.  Using this command line option tells
3287 GCC to emit warnings from system headers as if they occurred in user
3288 code.  However, note that using @option{-Wall} in conjunction with this
3289 option will @emph{not} warn about unknown pragmas in system
3290 headers---for that, @option{-Wunknown-pragmas} must also be used.
3291
3292 @item -Wfloat-equal
3293 @opindex Wfloat-equal
3294 Warn if floating point values are used in equality comparisons.
3295
3296 The idea behind this is that sometimes it is convenient (for the
3297 programmer) to consider floating-point values as approximations to
3298 infinitely precise real numbers.  If you are doing this, then you need
3299 to compute (by analyzing the code, or in some other way) the maximum or
3300 likely maximum error that the computation introduces, and allow for it
3301 when performing comparisons (and when producing output, but that's a
3302 different problem).  In particular, instead of testing for equality, you
3303 would check to see whether the two values have ranges that overlap; and
3304 this is done with the relational operators, so equality comparisons are
3305 probably mistaken.
3306
3307 @item -Wtraditional @r{(C only)}
3308 @opindex Wtraditional
3309 Warn about certain constructs that behave differently in traditional and
3310 ISO C@.  Also warn about ISO C constructs that have no traditional C
3311 equivalent, and/or problematic constructs which should be avoided.
3312
3313 @itemize @bullet
3314 @item
3315 Macro parameters that appear within string literals in the macro body.
3316 In traditional C macro replacement takes place within string literals,
3317 but does not in ISO C@.
3318
3319 @item
3320 In traditional C, some preprocessor directives did not exist.
3321 Traditional preprocessors would only consider a line to be a directive
3322 if the @samp{#} appeared in column 1 on the line.  Therefore
3323 @option{-Wtraditional} warns about directives that traditional C
3324 understands but would ignore because the @samp{#} does not appear as the
3325 first character on the line.  It also suggests you hide directives like
3326 @samp{#pragma} not understood by traditional C by indenting them.  Some
3327 traditional implementations would not recognize @samp{#elif}, so it
3328 suggests avoiding it altogether.
3329
3330 @item
3331 A function-like macro that appears without arguments.
3332
3333 @item
3334 The unary plus operator.
3335
3336 @item
3337 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3338 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3339 constants.)  Note, these suffixes appear in macros defined in the system
3340 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3341 Use of these macros in user code might normally lead to spurious
3342 warnings, however GCC's integrated preprocessor has enough context to
3343 avoid warning in these cases.
3344
3345 @item
3346 A function declared external in one block and then used after the end of
3347 the block.
3348
3349 @item
3350 A @code{switch} statement has an operand of type @code{long}.
3351
3352 @item
3353 A non-@code{static} function declaration follows a @code{static} one.
3354 This construct is not accepted by some traditional C compilers.
3355
3356 @item
3357 The ISO type of an integer constant has a different width or
3358 signedness from its traditional type.  This warning is only issued if
3359 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3360 typically represent bit patterns, are not warned about.
3361
3362 @item
3363 Usage of ISO string concatenation is detected.
3364
3365 @item
3366 Initialization of automatic aggregates.
3367
3368 @item
3369 Identifier conflicts with labels.  Traditional C lacks a separate
3370 namespace for labels.
3371
3372 @item
3373 Initialization of unions.  If the initializer is zero, the warning is
3374 omitted.  This is done under the assumption that the zero initializer in
3375 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3376 initializer warnings and relies on default initialization to zero in the
3377 traditional C case.
3378
3379 @item
3380 Conversions by prototypes between fixed/floating point values and vice
3381 versa.  The absence of these prototypes when compiling with traditional
3382 C would cause serious problems.  This is a subset of the possible
3383 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3384
3385 @item
3386 Use of ISO C style function definitions.  This warning intentionally is
3387 @emph{not} issued for prototype declarations or variadic functions
3388 because these ISO C features will appear in your code when using
3389 libiberty's traditional C compatibility macros, @code{PARAMS} and
3390 @code{VPARAMS}.  This warning is also bypassed for nested functions
3391 because that feature is already a GCC extension and thus not relevant to
3392 traditional C compatibility.
3393 @end itemize
3394
3395 @item -Wtraditional-conversion @r{(C only)}
3396 @opindex Wtraditional-conversion
3397 Warn if a prototype causes a type conversion that is different from what
3398 would happen to the same argument in the absence of a prototype.  This
3399 includes conversions of fixed point to floating and vice versa, and
3400 conversions changing the width or signedness of a fixed point argument
3401 except when the same as the default promotion.
3402
3403 @item -Wdeclaration-after-statement @r{(C only)}
3404 @opindex Wdeclaration-after-statement
3405 Warn when a declaration is found after a statement in a block.  This
3406 construct, known from C++, was introduced with ISO C99 and is by default
3407 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3408 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3409
3410 @item -Wundef
3411 @opindex Wundef
3412 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3413
3414 @item -Wno-endif-labels
3415 @opindex Wno-endif-labels
3416 @opindex Wendif-labels
3417 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3418
3419 @item -Wshadow
3420 @opindex Wshadow
3421 Warn whenever a local variable shadows another local variable, parameter or
3422 global variable or whenever a built-in function is shadowed.
3423
3424 @item -Wlarger-than-@var{len}
3425 @opindex Wlarger-than
3426 Warn whenever an object of larger than @var{len} bytes is defined.
3427
3428 @item -Wunsafe-loop-optimizations
3429 @opindex Wunsafe-loop-optimizations
3430 Warn if the loop cannot be optimized because the compiler could not
3431 assume anything on the bounds of the loop indices.  With
3432 @option{-funsafe-loop-optimizations} warn if the compiler made
3433 such assumptions.
3434
3435 @item -Wpointer-arith
3436 @opindex Wpointer-arith
3437 Warn about anything that depends on the ``size of'' a function type or
3438 of @code{void}.  GNU C assigns these types a size of 1, for
3439 convenience in calculations with @code{void *} pointers and pointers
3440 to functions.  In C++, warn also when an arithmetic operation involves
3441 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3442
3443 @item -Wtype-limits
3444 @opindex Wtype-limits
3445 @opindex Wno-type-limits
3446 Warn if a comparison is always true or always false due to the limited
3447 range of the data type, but do not warn for constant expressions.  For
3448 example, warn if an unsigned variable is compared against zero with
3449 @samp{<} or @samp{>=}.  This warning is also enabled by
3450 @option{-Wextra}.
3451
3452 @item -Wbad-function-cast @r{(C only)}
3453 @opindex Wbad-function-cast
3454 Warn whenever a function call is cast to a non-matching type.
3455 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3456
3457 @item -Wc++-compat
3458 Warn about ISO C constructs that are outside of the common subset of
3459 ISO C and ISO C++, e.g.@: request for implicit conversion from
3460 @code{void *} to a pointer to non-@code{void} type.
3461
3462 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3463 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3464 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3465 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3466
3467 @item -Wcast-qual
3468 @opindex Wcast-qual
3469 Warn whenever a pointer is cast so as to remove a type qualifier from
3470 the target type.  For example, warn if a @code{const char *} is cast
3471 to an ordinary @code{char *}.
3472
3473 @item -Wcast-align
3474 @opindex Wcast-align
3475 Warn whenever a pointer is cast such that the required alignment of the
3476 target is increased.  For example, warn if a @code{char *} is cast to
3477 an @code{int *} on machines where integers can only be accessed at
3478 two- or four-byte boundaries.
3479
3480 @item -Wwrite-strings
3481 @opindex Wwrite-strings
3482 When compiling C, give string constants the type @code{const
3483 char[@var{length}]} so that
3484 copying the address of one into a non-@code{const} @code{char *}
3485 pointer will get a warning; when compiling C++, warn about the
3486 deprecated conversion from string literals to @code{char *}.  This
3487 warning, by default, is enabled for C++ programs.
3488 These warnings will help you find at
3489 compile time code that can try to write into a string constant, but
3490 only if you have been very careful about using @code{const} in
3491 declarations and prototypes.  Otherwise, it will just be a nuisance;
3492 this is why we did not make @option{-Wall} request these warnings.
3493
3494 @item -Wclobbered
3495 @opindex Wclobbered
3496 Warn for variables that might be changed by @samp{longjmp} or
3497 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
3498
3499 @item -Wconversion
3500 @opindex Wconversion
3501 @opindex Wno-conversion
3502 Warn for implicit conversions that may alter a value. This includes
3503 conversions between real and integer, like @code{abs (x)} when
3504 @code{x} is @code{double}; conversions between signed and unsigned,
3505 like @code{unsigned ui = -1}; and conversions to smaller types, like
3506 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
3507 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
3508 changed by the conversion like in @code{abs (2.0)}.  Warnings about
3509 conversions between signed and unsigned integers can be disabled by
3510 using @option{-Wno-sign-conversion}.
3511
3512 For C++, also warn for conversions between @code{NULL} and non-pointer
3513 types; confusing overload resolution for user-defined conversions; and
3514 conversions that will never use a type conversion operator:
3515 conversions to @code{void}, the same type, a base class or a reference
3516 to them. Warnings about conversions between signed and unsigned
3517 integers are disabled by default in C++ unless
3518 @option{-Wsign-conversion} is explicitly enabled.
3519
3520 @item -Wempty-body
3521 @opindex Wempty-body
3522 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
3523 while} statement.  Additionally, in C++, warn when an empty body occurs
3524 in a @samp{while} or @samp{for} statement with no whitespacing before
3525 the semicolon.  This warning is also enabled by @option{-Wextra}.
3526
3527 @item -Wsign-compare
3528 @opindex Wsign-compare
3529 @cindex warning for comparison of signed and unsigned values
3530 @cindex comparison of signed and unsigned values, warning
3531 @cindex signed and unsigned values, comparison warning
3532 Warn when a comparison between signed and unsigned values could produce
3533 an incorrect result when the signed value is converted to unsigned.
3534 This warning is also enabled by @option{-Wextra}; to get the other warnings
3535 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3536
3537 @item -Wsign-conversion
3538 @opindex Wsign-conversion
3539 @opindex Wno-sign-conversion
3540 Warn for implicit conversions that may change the sign of an integer
3541 value, like assigning a signed integer expression to an unsigned
3542 integer variable. An explicit cast silences the warning. In C, this
3543 option is enabled also by @option{-Wconversion}.
3544
3545 @item -Waddress
3546 @opindex Waddress
3547 @opindex Wno-address
3548 Warn about suspicious uses of memory addresses. These include using
3549 the address of a function in a conditional expression, such as
3550 @code{void func(void); if (func)}, and comparisons against the memory
3551 address of a string literal, such as @code{if (x == "abc")}.  Such
3552 uses typically indicate a programmer error: the address of a function
3553 always evaluates to true, so their use in a conditional usually
3554 indicate that the programmer forgot the parentheses in a function
3555 call; and comparisons against string literals result in unspecified
3556 behavior and are not portable in C, so they usually indicate that the
3557 programmer intended to use @code{strcmp}.  This warning is enabled by
3558 @option{-Wall}.
3559
3560 @item -Wlogical-op
3561 @opindex Wlogical-op
3562 @opindex Wno-logical-op
3563 Warn about suspicious uses of logical operators in expressions.
3564 This includes using logical operators in contexts where a
3565 bit-wise operator is likely to be expected.
3566
3567 @item -Waggregate-return
3568 @opindex Waggregate-return
3569 Warn if any functions that return structures or unions are defined or
3570 called.  (In languages where you can return an array, this also elicits
3571 a warning.)
3572
3573 @item -Wno-attributes
3574 @opindex Wno-attributes
3575 @opindex Wattributes
3576 Do not warn if an unexpected @code{__attribute__} is used, such as
3577 unrecognized attributes, function attributes applied to variables,
3578 etc.  This will not stop errors for incorrect use of supported
3579 attributes.
3580
3581 @item -Wstrict-prototypes @r{(C only)}
3582 @opindex Wstrict-prototypes
3583 Warn if a function is declared or defined without specifying the
3584 argument types.  (An old-style function definition is permitted without
3585 a warning if preceded by a declaration which specifies the argument
3586 types.)
3587
3588 @item -Wold-style-declaration @r{(C only)}
3589 @opindex Wold-style-declaration
3590 Warn for obsolescent usages, according to the C Standard, in a
3591 declaration. For example, warn if storage-class specifiers like
3592 @code{static} are not the first things in a declaration.  This warning
3593 is also enabled by @option{-Wextra}.
3594
3595 @item -Wold-style-definition @r{(C only)}
3596 @opindex Wold-style-definition
3597 Warn if an old-style function definition is used.  A warning is given
3598 even if there is a previous prototype.
3599
3600 @item -Wmissing-parameter-type @r{(C only)}
3601 @opindex Wmissing-parameter-type
3602 A function parameter is declared without a type specifier in K&R-style
3603 functions:
3604
3605 @smallexample
3606 void foo(bar) @{ @}
3607 @end smallexample
3608
3609 This warning is also enabled by @option{-Wextra}.
3610
3611 @item -Wmissing-prototypes @r{(C only)}
3612 @opindex Wmissing-prototypes
3613 Warn if a global function is defined without a previous prototype
3614 declaration.  This warning is issued even if the definition itself
3615 provides a prototype.  The aim is to detect global functions that fail
3616 to be declared in header files.
3617
3618 @item -Wmissing-declarations @r{(C and C++ only)}
3619 @opindex Wmissing-declarations
3620 Warn if a global function is defined without a previous declaration.
3621 Do so even if the definition itself provides a prototype.
3622 Use this option to detect global functions that are not declared in
3623 header files.  In C++, no warnings are issued for function templates,
3624 or for inline functions, or for functions in anonymous namespaces.
3625
3626 @item -Wmissing-field-initializers
3627 @opindex Wmissing-field-initializers
3628 @opindex W
3629 @opindex Wextra
3630 Warn if a structure's initializer has some fields missing.  For
3631 example, the following code would cause such a warning, because
3632 @code{x.h} is implicitly zero:
3633
3634 @smallexample
3635 struct s @{ int f, g, h; @};
3636 struct s x = @{ 3, 4 @};
3637 @end smallexample
3638
3639 This option does not warn about designated initializers, so the following
3640 modification would not trigger a warning:
3641
3642 @smallexample
3643 struct s @{ int f, g, h; @};
3644 struct s x = @{ .f = 3, .g = 4 @};
3645 @end smallexample
3646
3647 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3648 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3649
3650 @item -Wmissing-noreturn
3651 @opindex Wmissing-noreturn
3652 Warn about functions which might be candidates for attribute @code{noreturn}.
3653 Note these are only possible candidates, not absolute ones.  Care should
3654 be taken to manually verify functions actually do not ever return before
3655 adding the @code{noreturn} attribute, otherwise subtle code generation
3656 bugs could be introduced.  You will not get a warning for @code{main} in
3657 hosted C environments.
3658
3659 @item -Wmissing-format-attribute
3660 @opindex Wmissing-format-attribute
3661 @opindex Wformat
3662 Warn about function pointers which might be candidates for @code{format}
3663 attributes.  Note these are only possible candidates, not absolute ones.
3664 GCC will guess that function pointers with @code{format} attributes that
3665 are used in assignment, initialization, parameter passing or return
3666 statements should have a corresponding @code{format} attribute in the
3667 resulting type.  I.e.@: the left-hand side of the assignment or
3668 initialization, the type of the parameter variable, or the return type
3669 of the containing function respectively should also have a @code{format}
3670 attribute to avoid the warning.
3671
3672 GCC will also warn about function definitions which might be
3673 candidates for @code{format} attributes.  Again, these are only
3674 possible candidates.  GCC will guess that @code{format} attributes
3675 might be appropriate for any function that calls a function like
3676 @code{vprintf} or @code{vscanf}, but this might not always be the
3677 case, and some functions for which @code{format} attributes are
3678 appropriate may not be detected.
3679
3680 @item -Wno-multichar
3681 @opindex Wno-multichar
3682 @opindex Wmultichar
3683 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3684 Usually they indicate a typo in the user's code, as they have
3685 implementation-defined values, and should not be used in portable code.
3686
3687 @item -Wnormalized=<none|id|nfc|nfkc>
3688 @opindex Wnormalized
3689 @cindex NFC
3690 @cindex NFKC
3691 @cindex character set, input normalization
3692 In ISO C and ISO C++, two identifiers are different if they are
3693 different sequences of characters.  However, sometimes when characters
3694 outside the basic ASCII character set are used, you can have two
3695 different character sequences that look the same.  To avoid confusion,
3696 the ISO 10646 standard sets out some @dfn{normalization rules} which
3697 when applied ensure that two sequences that look the same are turned into
3698 the same sequence.  GCC can warn you if you are using identifiers which
3699 have not been normalized; this option controls that warning.
3700
3701 There are four levels of warning that GCC supports.  The default is
3702 @option{-Wnormalized=nfc}, which warns about any identifier which is
3703 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
3704 recommended form for most uses.
3705
3706 Unfortunately, there are some characters which ISO C and ISO C++ allow
3707 in identifiers that when turned into NFC aren't allowable as
3708 identifiers.  That is, there's no way to use these symbols in portable
3709 ISO C or C++ and have all your identifiers in NFC.
3710 @option{-Wnormalized=id} suppresses the warning for these characters.
3711 It is hoped that future versions of the standards involved will correct
3712 this, which is why this option is not the default.
3713
3714 You can switch the warning off for all characters by writing
3715 @option{-Wnormalized=none}.  You would only want to do this if you
3716 were using some other normalization scheme (like ``D''), because
3717 otherwise you can easily create bugs that are literally impossible to see.
3718
3719 Some characters in ISO 10646 have distinct meanings but look identical
3720 in some fonts or display methodologies, especially once formatting has
3721 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
3722 LETTER N'', will display just like a regular @code{n} which has been
3723 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
3724 normalization scheme to convert all these into a standard form as
3725 well, and GCC will warn if your code is not in NFKC if you use
3726 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
3727 about every identifier that contains the letter O because it might be
3728 confused with the digit 0, and so is not the default, but may be
3729 useful as a local coding convention if the programming environment is
3730 unable to be fixed to display these characters distinctly.
3731
3732 @item -Wno-deprecated-declarations
3733 @opindex Wno-deprecated-declarations
3734 Do not warn about uses of functions (@pxref{Function Attributes}),
3735 variables (@pxref{Variable Attributes}), and types (@pxref{Type
3736 Attributes}) marked as deprecated by using the @code{deprecated}
3737 attribute.
3738
3739 @item -Wno-overflow
3740 @opindex Wno-overflow
3741 Do not warn about compile-time overflow in constant expressions.
3742
3743 @item -Woverride-init
3744 @opindex Woverride-init
3745 @opindex W
3746 @opindex Wextra
3747 Warn if an initialized field without side effects is overridden when
3748 using designated initializers (@pxref{Designated Inits, , Designated
3749 Initializers}).
3750
3751 This warning is included in @option{-Wextra}.  To get other
3752 @option{-Wextra} warnings without this one, use @samp{-Wextra
3753 -Wno-override-init}.
3754
3755 @item -Wpacked
3756 @opindex Wpacked
3757 Warn if a structure is given the packed attribute, but the packed
3758 attribute has no effect on the layout or size of the structure.
3759 Such structures may be mis-aligned for little benefit.  For
3760 instance, in this code, the variable @code{f.x} in @code{struct bar}
3761 will be misaligned even though @code{struct bar} does not itself
3762 have the packed attribute:
3763
3764 @smallexample
3765 @group
3766 struct foo @{
3767   int x;
3768   char a, b, c, d;
3769 @} __attribute__((packed));
3770 struct bar @{
3771   char z;
3772   struct foo f;
3773 @};
3774 @end group
3775 @end smallexample
3776
3777 @item -Wpadded
3778 @opindex Wpadded
3779 Warn if padding is included in a structure, either to align an element
3780 of the structure or to align the whole structure.  Sometimes when this
3781 happens it is possible to rearrange the fields of the structure to
3782 reduce the padding and so make the structure smaller.
3783
3784 @item -Wredundant-decls
3785 @opindex Wredundant-decls
3786 Warn if anything is declared more than once in the same scope, even in
3787 cases where multiple declaration is valid and changes nothing.
3788
3789 @item -Wnested-externs @r{(C only)}
3790 @opindex Wnested-externs
3791 Warn if an @code{extern} declaration is encountered within a function.
3792
3793 @item -Wunreachable-code
3794 @opindex Wunreachable-code
3795 Warn if the compiler detects that code will never be executed.
3796
3797 This option is intended to warn when the compiler detects that at
3798 least a whole line of source code will never be executed, because
3799 some condition is never satisfied or because it is after a
3800 procedure that never returns.
3801
3802 It is possible for this option to produce a warning even though there
3803 are circumstances under which part of the affected line can be executed,
3804 so care should be taken when removing apparently-unreachable code.
3805
3806 For instance, when a function is inlined, a warning may mean that the
3807 line is unreachable in only one inlined copy of the function.
3808
3809 This option is not made part of @option{-Wall} because in a debugging
3810 version of a program there is often substantial code which checks
3811 correct functioning of the program and is, hopefully, unreachable
3812 because the program does work.  Another common use of unreachable
3813 code is to provide behavior which is selectable at compile-time.
3814
3815 @item -Winline
3816 @opindex Winline
3817 Warn if a function can not be inlined and it was declared as inline.
3818 Even with this option, the compiler will not warn about failures to
3819 inline functions declared in system headers.
3820
3821 The compiler uses a variety of heuristics to determine whether or not
3822 to inline a function.  For example, the compiler takes into account
3823 the size of the function being inlined and the amount of inlining
3824 that has already been done in the current function.  Therefore,
3825 seemingly insignificant changes in the source program can cause the
3826 warnings produced by @option{-Winline} to appear or disappear.
3827
3828 @item -Wno-invalid-offsetof @r{(C++ only)}
3829 @opindex Wno-invalid-offsetof
3830 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
3831 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
3832 to a non-POD type is undefined.  In existing C++ implementations,
3833 however, @samp{offsetof} typically gives meaningful results even when
3834 applied to certain kinds of non-POD types. (Such as a simple
3835 @samp{struct} that fails to be a POD type only by virtue of having a
3836 constructor.)  This flag is for users who are aware that they are
3837 writing nonportable code and who have deliberately chosen to ignore the
3838 warning about it.
3839
3840 The restrictions on @samp{offsetof} may be relaxed in a future version
3841 of the C++ standard.
3842
3843 @item -Wno-int-to-pointer-cast @r{(C only)}
3844 @opindex Wno-int-to-pointer-cast
3845 Suppress warnings from casts to pointer type of an integer of a
3846 different size.
3847
3848 @item -Wno-pointer-to-int-cast @r{(C only)}
3849 @opindex Wno-pointer-to-int-cast
3850 Suppress warnings from casts from a pointer to an integer type of a
3851 different size.
3852
3853 @item -Winvalid-pch
3854 @opindex Winvalid-pch
3855 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
3856 the search path but can't be used.
3857
3858 @item -Wlong-long
3859 @opindex Wlong-long
3860 @opindex Wno-long-long
3861 Warn if @samp{long long} type is used.  This is default.  To inhibit
3862 the warning messages, use @option{-Wno-long-long}.  Flags
3863 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
3864 only when @option{-pedantic} flag is used.
3865
3866 @item -Wvariadic-macros
3867 @opindex Wvariadic-macros
3868 @opindex Wno-variadic-macros
3869 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
3870 alternate syntax when in pedantic ISO C99 mode.  This is default.
3871 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
3872
3873 @item -Wvla
3874 @opindex Wvla
3875 @opindex Wno-vla
3876 Warn if variable length array is used in the code.
3877 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
3878 the variable length array.
3879
3880 @item -Wvolatile-register-var
3881 @opindex Wvolatile-register-var
3882 @opindex Wno-volatile-register-var
3883 Warn if a register variable is declared volatile.  The volatile
3884 modifier does not inhibit all optimizations that may eliminate reads
3885 and/or writes to register variables.
3886
3887 @item -Wdisabled-optimization
3888 @opindex Wdisabled-optimization
3889 Warn if a requested optimization pass is disabled.  This warning does
3890 not generally indicate that there is anything wrong with your code; it
3891 merely indicates that GCC's optimizers were unable to handle the code
3892 effectively.  Often, the problem is that your code is too big or too
3893 complex; GCC will refuse to optimize programs when the optimization
3894 itself is likely to take inordinate amounts of time.
3895
3896 @item -Wpointer-sign
3897 @opindex Wpointer-sign
3898 @opindex Wno-pointer-sign
3899 Warn for pointer argument passing or assignment with different signedness.
3900 This option is only supported for C and Objective-C@.  It is implied by
3901 @option{-Wall} and by @option{-pedantic}, which can be disabled with
3902 @option{-Wno-pointer-sign}.
3903
3904 @item -Werror
3905 @opindex Werror
3906 Make all warnings into errors.
3907
3908 @item -Werror=
3909 @opindex Werror=
3910 Make the specified warning into an errors.  The specifier for a
3911 warning is appended, for example @option{-Werror=switch} turns the
3912 warnings controlled by @option{-Wswitch} into errors.  This switch
3913 takes a negative form, to be used to negate @option{-Werror} for
3914 specific warnings, for example @option{-Wno-error=switch} makes
3915 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
3916 is in effect.  You can use the @option{-fdiagnostics-show-option}
3917 option to have each controllable warning amended with the option which
3918 controls it, to determine what to use with this option.
3919
3920 Note that specifying @option{-Werror=}@var{foo} automatically implies
3921 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
3922 imply anything.
3923
3924 @item -Wstack-protector
3925 @opindex Wstack-protector
3926 This option is only active when @option{-fstack-protector} is active.  It
3927 warns about functions that will not be protected against stack smashing.
3928
3929 @item -Woverlength-strings
3930 @opindex Woverlength-strings
3931 Warn about string constants which are longer than the ``minimum
3932 maximum'' length specified in the C standard.  Modern compilers
3933 generally allow string constants which are much longer than the
3934 standard's minimum limit, but very portable programs should avoid
3935 using longer strings.
3936
3937 The limit applies @emph{after} string constant concatenation, and does
3938 not count the trailing NUL@.  In C89, the limit was 509 characters; in
3939 C99, it was raised to 4095.  C++98 does not specify a normative
3940 minimum maximum, so we do not diagnose overlength strings in C++@.
3941
3942 This option is implied by @option{-pedantic}, and can be disabled with
3943 @option{-Wno-overlength-strings}.
3944 @end table
3945
3946 @node Debugging Options
3947 @section Options for Debugging Your Program or GCC
3948 @cindex options, debugging
3949 @cindex debugging information options
3950
3951 GCC has various special options that are used for debugging
3952 either your program or GCC:
3953
3954 @table @gcctabopt
3955 @item -g
3956 @opindex g
3957 Produce debugging information in the operating system's native format
3958 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
3959 information.
3960
3961 On most systems that use stabs format, @option{-g} enables use of extra
3962 debugging information that only GDB can use; this extra information
3963 makes debugging work better in GDB but will probably make other debuggers
3964 crash or
3965 refuse to read the program.  If you want to control for certain whether
3966 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
3967 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
3968
3969 GCC allows you to use @option{-g} with
3970 @option{-O}.  The shortcuts taken by optimized code may occasionally
3971 produce surprising results: some variables you declared may not exist
3972 at all; flow of control may briefly move where you did not expect it;
3973 some statements may not be executed because they compute constant
3974 results or their values were already at hand; some statements may
3975 execute in different places because they were moved out of loops.
3976
3977 Nevertheless it proves possible to debug optimized output.  This makes
3978 it reasonable to use the optimizer for programs that might have bugs.
3979
3980 The following options are useful when GCC is generated with the
3981 capability for more than one debugging format.
3982
3983 @item -ggdb
3984 @opindex ggdb
3985 Produce debugging information for use by GDB@.  This means to use the
3986 most expressive format available (DWARF 2, stabs, or the native format
3987 if neither of those are supported), including GDB extensions if at all
3988 possible.
3989
3990 @item -gstabs
3991 @opindex gstabs
3992 Produce debugging information in stabs format (if that is supported),
3993 without GDB extensions.  This is the format used by DBX on most BSD
3994 systems.  On MIPS, Alpha and System V Release 4 systems this option
3995 produces stabs debugging output which is not understood by DBX or SDB@.
3996 On System V Release 4 systems this option requires the GNU assembler.
3997
3998 @item -feliminate-unused-debug-symbols
3999 @opindex feliminate-unused-debug-symbols
4000 Produce debugging information in stabs format (if that is supported),
4001 for only symbols that are actually used.
4002
4003 @item -femit-class-debug-always
4004 Instead of emitting debugging information for a C++ class in only one
4005 object file, emit it in all object files using the class.  This option
4006 should be used only with debuggers that are unable to handle the way GCC
4007 normally emits debugging information for classes because using this
4008 option will increase the size of debugging information by as much as a
4009 factor of two.
4010
4011 @item -gstabs+
4012 @opindex gstabs+
4013 Produce debugging information in stabs format (if that is supported),
4014 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4015 use of these extensions is likely to make other debuggers crash or
4016 refuse to read the program.
4017
4018 @item -gcoff
4019 @opindex gcoff
4020 Produce debugging information in COFF format (if that is supported).
4021 This is the format used by SDB on most System V systems prior to
4022 System V Release 4.
4023
4024 @item -gxcoff
4025 @opindex gxcoff
4026 Produce debugging information in XCOFF format (if that is supported).
4027 This is the format used by the DBX debugger on IBM RS/6000 systems.
4028
4029 @item -gxcoff+
4030 @opindex gxcoff+
4031 Produce debugging information in XCOFF format (if that is supported),
4032 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4033 use of these extensions is likely to make other debuggers crash or
4034 refuse to read the program, and may cause assemblers other than the GNU
4035 assembler (GAS) to fail with an error.
4036
4037 @item -gdwarf-2
4038 @opindex gdwarf-2
4039 Produce debugging information in DWARF version 2 format (if that is
4040 supported).  This is the format used by DBX on IRIX 6.  With this
4041 option, GCC uses features of DWARF version 3 when they are useful;
4042 version 3 is upward compatible with version 2, but may still cause
4043 problems for older debuggers.
4044
4045 @item -gvms
4046 @opindex gvms
4047 Produce debugging information in VMS debug format (if that is
4048 supported).  This is the format used by DEBUG on VMS systems.
4049
4050 @item -g@var{level}
4051 @itemx -ggdb@var{level}
4052 @itemx -gstabs@var{level}
4053 @itemx -gcoff@var{level}
4054 @itemx -gxcoff@var{level}
4055 @itemx -gvms@var{level}
4056 Request debugging information and also use @var{level} to specify how
4057 much information.  The default level is 2.
4058
4059 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4060 @option{-g}.
4061
4062 Level 1 produces minimal information, enough for making backtraces in
4063 parts of the program that you don't plan to debug.  This includes
4064 descriptions of functions and external variables, but no information
4065 about local variables and no line numbers.
4066
4067 Level 3 includes extra information, such as all the macro definitions
4068 present in the program.  Some debuggers support macro expansion when
4069 you use @option{-g3}.
4070
4071 @option{-gdwarf-2} does not accept a concatenated debug level, because
4072 GCC used to support an option @option{-gdwarf} that meant to generate
4073 debug information in version 1 of the DWARF format (which is very
4074 different from version 2), and it would have been too confusing.  That
4075 debug format is long obsolete, but the option cannot be changed now.
4076 Instead use an additional @option{-g@var{level}} option to change the
4077 debug level for DWARF2.
4078
4079 @item -feliminate-dwarf2-dups
4080 @opindex feliminate-dwarf2-dups
4081 Compress DWARF2 debugging information by eliminating duplicated
4082 information about each symbol.  This option only makes sense when
4083 generating DWARF2 debugging information with @option{-gdwarf-2}.
4084
4085 @item -femit-struct-debug-baseonly
4086 Emit debug information for struct-like types
4087 only when the base name of the compilation source file
4088 matches the base name of file in which the struct was defined.
4089
4090 This option substantially reduces the size of debugging information,
4091 but at significant potential loss in type information to the debugger.
4092 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4093 See @option{-femit-struct-debug-detailed} for more detailed control.
4094
4095 This option works only with DWARF 2.
4096
4097 @item -femit-struct-debug-reduced
4098 Emit debug information for struct-like types
4099 only when the base name of the compilation source file
4100 matches the base name of file in which the type was defined,
4101 unless the struct is a template or defined in a system header.
4102
4103 This option significantly reduces the size of debugging information,
4104 with some potential loss in type information to the debugger.
4105 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4106 See @option{-femit-struct-debug-detailed} for more detailed control.
4107
4108 This option works only with DWARF 2.
4109
4110 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4111 Specify the struct-like types
4112 for which the compiler will generate debug information.
4113 The intent is to reduce duplicate struct debug information
4114 between different object files within the same program.
4115
4116 This option is a detailed version of
4117 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4118 which will serve for most needs.
4119
4120 A specification has the syntax
4121 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4122
4123 The optional first word limits the specification to
4124 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4125 A struct type is used directly when it is the type of a variable, member.
4126 Indirect uses arise through pointers to structs.
4127 That is, when use of an incomplete struct would be legal, the use is indirect.
4128 An example is
4129 @samp{struct one direct; struct two * indirect;}.
4130
4131 The optional second word limits the specification to
4132 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4133 Generic structs are a bit complicated to explain.
4134 For C++, these are non-explicit specializations of template classes,
4135 or non-template classes within the above.
4136 Other programming languages have generics,
4137 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4138
4139 The third word specifies the source files for those
4140 structs for which the compiler will emit debug information.
4141 The values @samp{none} and @samp{any} have the normal meaning.
4142 The value @samp{base} means that
4143 the base of name of the file in which the type declaration appears
4144 must match the base of the name of the main compilation file.
4145 In practice, this means that
4146 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4147 but types declared in other header will not.
4148 The value @samp{sys} means those types satisfying @samp{base}
4149 or declared in system or compiler headers.
4150
4151 You may need to experiment to determine the best settings for your application.
4152
4153 The default is @samp{-femit-struct-debug-detailed=all}.
4154
4155 This option works only with DWARF 2.
4156
4157 @item -fdebug-prefix-map=@var{old}=@var{new}
4158 @opindex fdebug-prefix-map
4159 When compiling files in directory @file{@var{old}}, record debugging
4160 information describing them as in @file{@var{new}} instead.
4161
4162 @cindex @command{prof}
4163 @item -p
4164 @opindex p
4165 Generate extra code to write profile information suitable for the
4166 analysis program @command{prof}.  You must use this option when compiling
4167 the source files you want data about, and you must also use it when
4168 linking.
4169
4170 @cindex @command{gprof}
4171 @item -pg
4172 @opindex pg
4173 Generate extra code to write profile information suitable for the
4174 analysis program @command{gprof}.  You must use this option when compiling
4175 the source files you want data about, and you must also use it when
4176 linking.
4177
4178 @item -Q
4179 @opindex Q
4180 Makes the compiler print out each function name as it is compiled, and
4181 print some statistics about each pass when it finishes.
4182
4183 @item -ftime-report
4184 @opindex ftime-report
4185 Makes the compiler print some statistics about the time consumed by each
4186 pass when it finishes.
4187
4188 @item -fmem-report
4189 @opindex fmem-report
4190 Makes the compiler print some statistics about permanent memory
4191 allocation when it finishes.
4192
4193 @item -fpre-ipa-mem-report
4194 @opindex fpre-ipa-mem-report
4195 @item -fpost-ipa-mem-report
4196 @opindex fpost-ipa-mem-report
4197 Makes the compiler print some statistics about permanent memory
4198 allocation before or after interprocedural optimization.
4199
4200 @item -fprofile-arcs
4201 @opindex fprofile-arcs
4202 Add code so that program flow @dfn{arcs} are instrumented.  During
4203 execution the program records how many times each branch and call is
4204 executed and how many times it is taken or returns.  When the compiled
4205 program exits it saves this data to a file called
4206 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4207 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4208 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4209 @var{auxname} is generated from the name of the output file, if
4210 explicitly specified and it is not the final executable, otherwise it is
4211 the basename of the source file.  In both cases any suffix is removed
4212 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4213 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4214 @xref{Cross-profiling}.
4215
4216 @cindex @command{gcov}
4217 @item --coverage
4218 @opindex coverage
4219
4220 This option is used to compile and link code instrumented for coverage
4221 analysis.  The option is a synonym for @option{-fprofile-arcs}
4222 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4223 linking).  See the documentation for those options for more details.
4224
4225 @itemize
4226
4227 @item
4228 Compile the source files with @option{-fprofile-arcs} plus optimization
4229 and code generation options.  For test coverage analysis, use the
4230 additional @option{-ftest-coverage} option.  You do not need to profile
4231 every source file in a program.
4232
4233 @item
4234 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4235 (the latter implies the former).
4236
4237 @item
4238 Run the program on a representative workload to generate the arc profile
4239 information.  This may be repeated any number of times.  You can run
4240 concurrent instances of your program, and provided that the file system
4241 supports locking, the data files will be correctly updated.  Also
4242 @code{fork} calls are detected and correctly handled (double counting
4243 will not happen).
4244
4245 @item
4246 For profile-directed optimizations, compile the source files again with
4247 the same optimization and code generation options plus
4248 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4249 Control Optimization}).
4250
4251 @item
4252 For test coverage analysis, use @command{gcov} to produce human readable
4253 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4254 @command{gcov} documentation for further information.
4255
4256 @end itemize
4257
4258 With @option{-fprofile-arcs}, for each function of your program GCC
4259 creates a program flow graph, then finds a spanning tree for the graph.
4260 Only arcs that are not on the spanning tree have to be instrumented: the
4261 compiler adds code to count the number of times that these arcs are
4262 executed.  When an arc is the only exit or only entrance to a block, the
4263 instrumentation code can be added to the block; otherwise, a new basic
4264 block must be created to hold the instrumentation code.
4265
4266 @need 2000
4267 @item -ftest-coverage
4268 @opindex ftest-coverage
4269 Produce a notes file that the @command{gcov} code-coverage utility
4270 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4271 show program coverage.  Each source file's note file is called
4272 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4273 above for a description of @var{auxname} and instructions on how to
4274 generate test coverage data.  Coverage data will match the source files
4275 more closely, if you do not optimize.
4276
4277 @item -fdbg-cnt-list
4278 @opindex fdbg-cnt-list
4279 Print the name and the counter upperbound for all debug counters.
4280
4281 @item -fdbg-cnt=@var{counter-value-list}
4282 @opindex fdbg-cnt
4283 Set the internal debug counter upperbound. @var{counter-value-list} 
4284 is a comma-separated list of @var{name}:@var{value} pairs
4285 which sets the upperbound of each debug counter @var{name} to @var{value}.
4286 All debug counters have the initial upperbound of @var{UINT_MAX},
4287 thus dbg_cnt() returns true always unless the upperbound is set by this option.
4288 e.g. With -fdbg-cnt=dce:10,tail_call:0
4289 dbg_cnt(dce) will return true only for first 10 invocations
4290 and dbg_cnt(tail_call) will return false always.
4291
4292 @item -d@var{letters}
4293 @item -fdump-rtl-@var{pass}
4294 @opindex d
4295 Says to make debugging dumps during compilation at times specified by
4296 @var{letters}.    This is used for debugging the RTL-based passes of the
4297 compiler.  The file names for most of the dumps are made by appending a
4298 pass number and a word to the @var{dumpname}.  @var{dumpname} is generated
4299 from the name of the output file, if explicitly specified and it is not
4300 an executable, otherwise it is the basename of the source file. These
4301 switches may have different effects when @option{-E} is used for
4302 preprocessing.
4303
4304 Most debug dumps can be enabled either passing a letter to the @option{-d}
4305 option, or with a long @option{-fdump-rtl} switch; here are the possible
4306 letters for use in @var{letters} and @var{pass}, and their meanings:
4307
4308 @table @gcctabopt
4309 @item -dA
4310 @opindex dA
4311 Annotate the assembler output with miscellaneous debugging information.
4312
4313 @item -dB
4314 @itemx -fdump-rtl-bbro
4315 @opindex dB
4316 @opindex fdump-rtl-bbro
4317 Dump after block reordering, to @file{@var{file}.148r.bbro}.
4318
4319 @item -dc
4320 @itemx -fdump-rtl-combine
4321 @opindex dc
4322 @opindex fdump-rtl-combine
4323 Dump after the RTL instruction combination pass, to the file
4324 @file{@var{file}.129r.combine}.
4325
4326 @item -dC
4327 @itemx -fdump-rtl-ce1
4328 @itemx -fdump-rtl-ce2
4329 @opindex dC
4330 @opindex fdump-rtl-ce1
4331 @opindex fdump-rtl-ce2
4332 @option{-dC} and @option{-fdump-rtl-ce1} enable dumping after the
4333 first if conversion, to the file @file{@var{file}.117r.ce1}.  @option{-dC}
4334 and @option{-fdump-rtl-ce2} enable dumping after the second if
4335 conversion, to the file @file{@var{file}.130r.ce2}.
4336
4337 @item -dd
4338 @itemx -fdump-rtl-btl
4339 @itemx -fdump-rtl-dbr
4340 @opindex dd
4341 @opindex fdump-rtl-btl
4342 @opindex fdump-rtl-dbr
4343 @option{-dd} and @option{-fdump-rtl-btl} enable dumping after branch
4344 target load optimization, to @file{@var{file}.31.btl}.  @option{-dd}
4345 and @option{-fdump-rtl-dbr} enable dumping after delayed branch
4346 scheduling, to @file{@var{file}.36.dbr}.
4347
4348 @item -dD
4349 @opindex dD
4350 Dump all macro definitions, at the end of preprocessing, in addition to
4351 normal output.
4352
4353 @item -dE
4354 @itemx -fdump-rtl-ce3
4355 @opindex dE
4356 @opindex fdump-rtl-ce3
4357 Dump after the third if conversion, to @file{@var{file}.146r.ce3}.
4358
4359 @item -df
4360 @itemx -fdump-rtl-cfg
4361 @itemx -fdump-rtl-life
4362 @opindex df
4363 @opindex fdump-rtl-cfg
4364 @opindex fdump-rtl-life
4365 @option{-df} and @option{-fdump-rtl-cfg} enable dumping after control
4366 and data flow analysis, to @file{@var{file}.116r.cfg}.  @option{-df}
4367 and @option{-fdump-rtl-cfg} enable dumping dump after life analysis,
4368 to @file{@var{file}.128r.life1} and @file{@var{file}.135r.life2}.
4369
4370 @item -dg
4371 @itemx -fdump-rtl-greg
4372 @opindex dg
4373 @opindex fdump-rtl-greg
4374 Dump after global register allocation, to @file{@var{file}.139r.greg}.
4375
4376 @item -dG
4377 @itemx -fdump-rtl-gcse
4378 @itemx -fdump-rtl-bypass
4379 @opindex dG
4380 @opindex fdump-rtl-gcse
4381 @opindex fdump-rtl-bypass
4382 @option{-dG} and @option{-fdump-rtl-gcse} enable dumping after GCSE, to
4383 @file{@var{file}.114r.gcse}.  @option{-dG} and @option{-fdump-rtl-bypass}
4384 enable dumping after jump bypassing and control flow optimizations, to
4385 @file{@var{file}.115r.bypass}.
4386
4387 @item -dh
4388 @itemx -fdump-rtl-eh
4389 @opindex dh
4390 @opindex fdump-rtl-eh
4391 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
4392
4393 @item -di
4394 @itemx -fdump-rtl-sibling
4395 @opindex di
4396 @opindex fdump-rtl-sibling
4397 Dump after sibling call optimizations, to @file{@var{file}.106r.sibling}.
4398
4399 @item -dj
4400 @itemx -fdump-rtl-jump
4401 @opindex dj
4402 @opindex fdump-rtl-jump
4403 Dump after the first jump optimization, to @file{@var{file}.112r.jump}.
4404
4405 @item -dk
4406 @itemx -fdump-rtl-stack
4407 @opindex dk
4408 @opindex fdump-rtl-stack
4409 Dump after conversion from GCC's "flat register file" registers to the
4410 x87's stack-like registers, to @file{@var{file}.152r.stack}.
4411
4412 @item -dl
4413 @itemx -fdump-rtl-lreg
4414 @opindex dl
4415 @opindex fdump-rtl-lreg
4416 Dump after local register allocation, to @file{@var{file}.138r.lreg}.
4417
4418 @item -dL
4419 @itemx -fdump-rtl-loop2
4420 @opindex dL
4421 @opindex fdump-rtl-loop2
4422 @option{-dL} and @option{-fdump-rtl-loop2} enable dumping after the
4423 loop optimization pass, to @file{@var{file}.119r.loop2},
4424 @file{@var{file}.120r.loop2_init},
4425 @file{@var{file}.121r.loop2_invariant}, and
4426 @file{@var{file}.125r.loop2_done}.
4427
4428 @item -dm
4429 @itemx -fdump-rtl-sms
4430 @opindex dm
4431 @opindex fdump-rtl-sms
4432 Dump after modulo scheduling, to @file{@var{file}.136r.sms}.
4433
4434 @item -dM
4435 @itemx -fdump-rtl-mach
4436 @opindex dM
4437 @opindex fdump-rtl-mach
4438 Dump after performing the machine dependent reorganization pass, to
4439 @file{@var{file}.155r.mach} if that pass exists.
4440
4441 @item -dn
4442 @itemx -fdump-rtl-rnreg
4443 @opindex dn
4444 @opindex fdump-rtl-rnreg
4445 Dump after register renumbering, to @file{@var{file}.147r.rnreg}.
4446
4447 @item -dN
4448 @itemx -fdump-rtl-regmove
4449 @opindex dN
4450 @opindex fdump-rtl-regmove
4451 Dump after the register move pass, to @file{@var{file}.132r.regmove}.
4452
4453 @item -do
4454 @itemx -fdump-rtl-postreload
4455 @opindex do
4456 @opindex fdump-rtl-postreload
4457 Dump after post-reload optimizations, to @file{@var{file}.24.postreload}.
4458
4459 @item -dr
4460 @itemx -fdump-rtl-expand
4461 @opindex dr
4462 @opindex fdump-rtl-expand
4463 Dump after RTL generation, to @file{@var{file}.104r.expand}.
4464
4465 @item -dR
4466 @itemx -fdump-rtl-sched2
4467 @opindex dR
4468 @opindex fdump-rtl-sched2
4469 Dump after the second scheduling pass, to @file{@var{file}.149r.sched2}.
4470
4471 @item -ds
4472 @itemx -fdump-rtl-cse
4473 @opindex ds
4474 @opindex fdump-rtl-cse
4475 Dump after CSE (including the jump optimization that sometimes follows
4476 CSE), to @file{@var{file}.113r.cse}.
4477
4478 @item -dS
4479 @itemx -fdump-rtl-sched1
4480 @opindex dS
4481 @opindex fdump-rtl-sched1
4482 Dump after the first scheduling pass, to @file{@var{file}.136r.sched1}.
4483
4484 @item -dt
4485 @itemx -fdump-rtl-cse2
4486 @opindex dt
4487 @opindex fdump-rtl-cse2
4488 Dump after the second CSE pass (including the jump optimization that
4489 sometimes follows CSE), to @file{@var{file}.127r.cse2}.
4490
4491 @item -dT
4492 @itemx -fdump-rtl-tracer
4493 @opindex dT
4494 @opindex fdump-rtl-tracer
4495 Dump after running tracer, to @file{@var{file}.118r.tracer}.
4496
4497 @item -dV
4498 @itemx -fdump-rtl-vpt
4499 @itemx -fdump-rtl-vartrack
4500 @opindex dV
4501 @opindex fdump-rtl-vpt
4502 @opindex fdump-rtl-vartrack
4503 @option{-dV} and @option{-fdump-rtl-vpt} enable dumping after the value
4504 profile transformations, to @file{@var{file}.10.vpt}.  @option{-dV}
4505 and @option{-fdump-rtl-vartrack} enable dumping after variable tracking,
4506 to @file{@var{file}.154r.vartrack}.
4507
4508 @item -dw
4509 @itemx -fdump-rtl-flow2
4510 @opindex dw
4511 @opindex fdump-rtl-flow2
4512 Dump after the second flow pass, to @file{@var{file}.142r.flow2}.
4513
4514 @item -dz
4515 @itemx -fdump-rtl-peephole2
4516 @opindex dz
4517 @opindex fdump-rtl-peephole2
4518 Dump after the peephole pass, to @file{@var{file}.145r.peephole2}.
4519
4520 @item -dZ
4521 @itemx -fdump-rtl-web
4522 @opindex dZ
4523 @opindex fdump-rtl-web
4524 Dump after live range splitting, to @file{@var{file}.126r.web}.
4525
4526 @item -da
4527 @itemx -fdump-rtl-all
4528 @opindex da
4529 @opindex fdump-rtl-all
4530 Produce all the dumps listed above.
4531
4532 @item -dH
4533 @opindex dH
4534 Produce a core dump whenever an error occurs.
4535
4536 @item -dm
4537 @opindex dm
4538 Print statistics on memory usage, at the end of the run, to
4539 standard error.
4540
4541 @item -dp
4542 @opindex dp
4543 Annotate the assembler output with a comment indicating which
4544 pattern and alternative was used.  The length of each instruction is
4545 also printed.
4546
4547 @item -dP
4548 @opindex dP
4549 Dump the RTL in the assembler output as a comment before each instruction.
4550 Also turns on @option{-dp} annotation.
4551
4552 @item -dv
4553 @opindex dv
4554 For each of the other indicated dump files (either with @option{-d} or
4555 @option{-fdump-rtl-@var{pass}}), dump a representation of the control flow
4556 graph suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
4557
4558 @item -dx
4559 @opindex dx
4560 Just generate RTL for a function instead of compiling it.  Usually used
4561 with @samp{r} (@option{-fdump-rtl-expand}).
4562
4563 @item -dy
4564 @opindex dy
4565 Dump debugging information during parsing, to standard error.
4566 @end table
4567
4568 @item -fdump-noaddr
4569 @opindex fdump-noaddr
4570 When doing debugging dumps (see @option{-d} option above), suppress
4571 address output.  This makes it more feasible to use diff on debugging
4572 dumps for compiler invocations with different compiler binaries and/or
4573 different text / bss / data / heap / stack / dso start locations.
4574
4575 @item -fdump-unnumbered
4576 @opindex fdump-unnumbered
4577 When doing debugging dumps (see @option{-d} option above), suppress instruction
4578 numbers and address output.  This makes it more feasible to
4579 use diff on debugging dumps for compiler invocations with different
4580 options, in particular with and without @option{-g}.
4581
4582 @item -fdump-translation-unit @r{(C++ only)}
4583 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
4584 @opindex fdump-translation-unit
4585 Dump a representation of the tree structure for the entire translation
4586 unit to a file.  The file name is made by appending @file{.tu} to the
4587 source file name.  If the @samp{-@var{options}} form is used, @var{options}
4588 controls the details of the dump as described for the
4589 @option{-fdump-tree} options.
4590
4591 @item -fdump-class-hierarchy @r{(C++ only)}
4592 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
4593 @opindex fdump-class-hierarchy
4594 Dump a representation of each class's hierarchy and virtual function
4595 table layout to a file.  The file name is made by appending @file{.class}
4596 to the source file name.  If the @samp{-@var{options}} form is used,
4597 @var{options} controls the details of the dump as described for the
4598 @option{-fdump-tree} options.
4599
4600 @item -fdump-ipa-@var{switch}
4601 @opindex fdump-ipa
4602 Control the dumping at various stages of inter-procedural analysis
4603 language tree to a file.  The file name is generated by appending a switch
4604 specific suffix to the source file name.  The following dumps are possible:
4605
4606 @table @samp
4607 @item all
4608 Enables all inter-procedural analysis dumps; currently the only produced
4609 dump is the @samp{cgraph} dump.
4610
4611 @item cgraph
4612 Dumps information about call-graph optimization, unused function removal,
4613 and inlining decisions.
4614 @end table
4615
4616 @item -fdump-tree-@var{switch}
4617 @itemx -fdump-tree-@var{switch}-@var{options}
4618 @opindex fdump-tree
4619 Control the dumping at various stages of processing the intermediate
4620 language tree to a file.  The file name is generated by appending a switch
4621 specific suffix to the source file name.  If the @samp{-@var{options}}
4622 form is used, @var{options} is a list of @samp{-} separated options that
4623 control the details of the dump.  Not all options are applicable to all
4624 dumps, those which are not meaningful will be ignored.  The following
4625 options are available
4626
4627 @table @samp
4628 @item address
4629 Print the address of each node.  Usually this is not meaningful as it
4630 changes according to the environment and source file.  Its primary use
4631 is for tying up a dump file with a debug environment.
4632 @item slim
4633 Inhibit dumping of members of a scope or body of a function merely
4634 because that scope has been reached.  Only dump such items when they
4635 are directly reachable by some other path.  When dumping pretty-printed
4636 trees, this option inhibits dumping the bodies of control structures.
4637 @item raw
4638 Print a raw representation of the tree.  By default, trees are
4639 pretty-printed into a C-like representation.
4640 @item details
4641 Enable more detailed dumps (not honored by every dump option).
4642 @item stats
4643 Enable dumping various statistics about the pass (not honored by every dump
4644 option).
4645 @item blocks
4646 Enable showing basic block boundaries (disabled in raw dumps).
4647 @item vops
4648 Enable showing virtual operands for every statement.
4649 @item lineno
4650 Enable showing line numbers for statements.
4651 @item uid
4652 Enable showing the unique ID (@code{DECL_UID}) for each variable.
4653 @item all
4654 Turn on all options, except @option{raw}, @option{slim} and @option{lineno}.
4655 @end table
4656
4657 The following tree dumps are possible:
4658 @table @samp
4659
4660 @item original
4661 Dump before any tree based optimization, to @file{@var{file}.original}.
4662
4663 @item optimized
4664 Dump after all tree based optimization, to @file{@var{file}.optimized}.
4665
4666 @item inlined
4667 Dump after function inlining, to @file{@var{file}.inlined}.
4668
4669 @item gimple
4670 @opindex fdump-tree-gimple
4671 Dump each function before and after the gimplification pass to a file.  The
4672 file name is made by appending @file{.gimple} to the source file name.
4673
4674 @item cfg
4675 @opindex fdump-tree-cfg
4676 Dump the control flow graph of each function to a file.  The file name is
4677 made by appending @file{.cfg} to the source file name.
4678
4679 @item vcg
4680 @opindex fdump-tree-vcg
4681 Dump the control flow graph of each function to a file in VCG format.  The
4682 file name is made by appending @file{.vcg} to the source file name.  Note
4683 that if the file contains more than one function, the generated file cannot
4684 be used directly by VCG@.  You will need to cut and paste each function's
4685 graph into its own separate file first.
4686
4687 @item ch
4688 @opindex fdump-tree-ch
4689 Dump each function after copying loop headers.  The file name is made by
4690 appending @file{.ch} to the source file name.
4691
4692 @item ssa
4693 @opindex fdump-tree-ssa
4694 Dump SSA related information to a file.  The file name is made by appending
4695 @file{.ssa} to the source file name.
4696
4697 @item salias
4698 @opindex fdump-tree-salias
4699 Dump structure aliasing variable information to a file.  This file name
4700 is made by appending @file{.salias} to the source file name.
4701
4702 @item alias
4703 @opindex fdump-tree-alias
4704 Dump aliasing information for each function.  The file name is made by
4705 appending @file{.alias} to the source file name.
4706
4707 @item ccp
4708 @opindex fdump-tree-ccp
4709 Dump each function after CCP@.  The file name is made by appending
4710 @file{.ccp} to the source file name.
4711
4712 @item storeccp
4713 @opindex fdump-tree-storeccp
4714 Dump each function after STORE-CCP.  The file name is made by appending
4715 @file{.storeccp} to the source file name.
4716
4717 @item pre
4718 @opindex fdump-tree-pre
4719 Dump trees after partial redundancy elimination.  The file name is made
4720 by appending @file{.pre} to the source file name.
4721
4722 @item fre
4723 @opindex fdump-tree-fre
4724 Dump trees after full redundancy elimination.  The file name is made
4725 by appending @file{.fre} to the source file name.
4726
4727 @item copyprop
4728 @opindex fdump-tree-copyprop
4729 Dump trees after copy propagation.  The file name is made
4730 by appending @file{.copyprop} to the source file name.
4731
4732 @item store_copyprop
4733 @opindex fdump-tree-store_copyprop
4734 Dump trees after store copy-propagation.  The file name is made
4735 by appending @file{.store_copyprop} to the source file name.
4736
4737 @item dce
4738 @opindex fdump-tree-dce
4739 Dump each function after dead code elimination.  The file name is made by
4740 appending @file{.dce} to the source file name.
4741
4742 @item mudflap
4743 @opindex fdump-tree-mudflap
4744 Dump each function after adding mudflap instrumentation.  The file name is
4745 made by appending @file{.mudflap} to the source file name.
4746
4747 @item sra
4748 @opindex fdump-tree-sra
4749 Dump each function after performing scalar replacement of aggregates.  The
4750 file name is made by appending @file{.sra} to the source file name.
4751
4752 @item sink
4753 @opindex fdump-tree-sink
4754 Dump each function after performing code sinking.  The file name is made
4755 by appending @file{.sink} to the source file name.
4756
4757 @item dom
4758 @opindex fdump-tree-dom
4759 Dump each function after applying dominator tree optimizations.  The file
4760 name is made by appending @file{.dom} to the source file name.
4761
4762 @item dse
4763 @opindex fdump-tree-dse
4764 Dump each function after applying dead store elimination.  The file
4765 name is made by appending @file{.dse} to the source file name.
4766
4767 @item phiopt
4768 @opindex fdump-tree-phiopt
4769 Dump each function after optimizing PHI nodes into straightline code.  The file
4770 name is made by appending @file{.phiopt} to the source file name.
4771
4772 @item forwprop
4773 @opindex fdump-tree-forwprop
4774 Dump each function after forward propagating single use variables.  The file
4775 name is made by appending @file{.forwprop} to the source file name.
4776
4777 @item copyrename
4778 @opindex fdump-tree-copyrename
4779 Dump each function after applying the copy rename optimization.  The file
4780 name is made by appending @file{.copyrename} to the source file name.
4781
4782 @item nrv
4783 @opindex fdump-tree-nrv
4784 Dump each function after applying the named return value optimization on
4785 generic trees.  The file name is made by appending @file{.nrv} to the source
4786 file name.
4787
4788 @item vect
4789 @opindex fdump-tree-vect
4790 Dump each function after applying vectorization of loops.  The file name is
4791 made by appending @file{.vect} to the source file name.
4792
4793 @item vrp
4794 @opindex fdump-tree-vrp
4795 Dump each function after Value Range Propagation (VRP).  The file name
4796 is made by appending @file{.vrp} to the source file name.
4797
4798 @item all
4799 @opindex fdump-tree-all
4800 Enable all the available tree dumps with the flags provided in this option.
4801 @end table
4802
4803 @item -ftree-vectorizer-verbose=@var{n}
4804 @opindex ftree-vectorizer-verbose
4805 This option controls the amount of debugging output the vectorizer prints.
4806 This information is written to standard error, unless
4807 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
4808 in which case it is output to the usual dump listing file, @file{.vect}.
4809 For @var{n}=0 no diagnostic information is reported.
4810 If @var{n}=1 the vectorizer reports each loop that got vectorized,
4811 and the total number of loops that got vectorized.
4812 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
4813 the first analysis phase (vect_analyze_loop_form) - i.e. countable,
4814 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
4815 level that @option{-fdump-tree-vect-stats} uses.
4816 Higher verbosity levels mean either more information dumped for each
4817 reported loop, or same amount of information reported for more loops:
4818 If @var{n}=3, alignment related information is added to the reports.
4819 If @var{n}=4, data-references related information (e.g. memory dependences,
4820 memory access-patterns) is added to the reports.
4821 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops
4822 that did not pass the first analysis phase (i.e. may not be countable, or
4823 may have complicated control-flow).
4824 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
4825 For @var{n}=7, all the information the vectorizer generates during its
4826 analysis and transformation is reported.  This is the same verbosity level
4827 that @option{-fdump-tree-vect-details} uses.
4828
4829 @item -frandom-seed=@var{string}
4830 @opindex frandom-string
4831 This option provides a seed that GCC uses when it would otherwise use
4832 random numbers.  It is used to generate certain symbol names
4833 that have to be different in every compiled file.  It is also used to
4834 place unique stamps in coverage data files and the object files that
4835 produce them.  You can use the @option{-frandom-seed} option to produce
4836 reproducibly identical object files.
4837
4838 The @var{string} should be different for every file you compile.
4839
4840 @item -fsched-verbose=@var{n}
4841 @opindex fsched-verbose
4842 On targets that use instruction scheduling, this option controls the
4843 amount of debugging output the scheduler prints.  This information is
4844 written to standard error, unless @option{-dS} or @option{-dR} is
4845 specified, in which case it is output to the usual dump
4846 listing file, @file{.sched} or @file{.sched2} respectively.  However
4847 for @var{n} greater than nine, the output is always printed to standard
4848 error.
4849
4850 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
4851 same information as @option{-dRS}.  For @var{n} greater than one, it
4852 also output basic block probabilities, detailed ready list information
4853 and unit/insn info.  For @var{n} greater than two, it includes RTL
4854 at abort point, control-flow and regions info.  And for @var{n} over
4855 four, @option{-fsched-verbose} also includes dependence info.
4856
4857 @item -save-temps
4858 @opindex save-temps
4859 Store the usual ``temporary'' intermediate files permanently; place them
4860 in the current directory and name them based on the source file.  Thus,
4861 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
4862 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
4863 preprocessed @file{foo.i} output file even though the compiler now
4864 normally uses an integrated preprocessor.
4865
4866 When used in combination with the @option{-x} command line option,
4867 @option{-save-temps} is sensible enough to avoid over writing an
4868 input source file with the same extension as an intermediate file.
4869 The corresponding intermediate file may be obtained by renaming the
4870 source file before using @option{-save-temps}.
4871
4872 @item -time
4873 @opindex time
4874 Report the CPU time taken by each subprocess in the compilation
4875 sequence.  For C source files, this is the compiler proper and assembler
4876 (plus the linker if linking is done).  The output looks like this:
4877
4878 @smallexample
4879 # cc1 0.12 0.01
4880 # as 0.00 0.01
4881 @end smallexample
4882
4883 The first number on each line is the ``user time'', that is time spent
4884 executing the program itself.  The second number is ``system time'',
4885 time spent executing operating system routines on behalf of the program.
4886 Both numbers are in seconds.
4887
4888 @item -fvar-tracking
4889 @opindex fvar-tracking
4890 Run variable tracking pass.  It computes where variables are stored at each
4891 position in code.  Better debugging information is then generated
4892 (if the debugging information format supports this information).
4893
4894 It is enabled by default when compiling with optimization (@option{-Os},
4895 @option{-O}, @option{-O2}, ...), debugging information (@option{-g}) and
4896 the debug info format supports it.
4897
4898 @item -print-file-name=@var{library}
4899 @opindex print-file-name
4900 Print the full absolute name of the library file @var{library} that
4901 would be used when linking---and don't do anything else.  With this
4902 option, GCC does not compile or link anything; it just prints the
4903 file name.
4904
4905 @item -print-multi-directory
4906 @opindex print-multi-directory
4907 Print the directory name corresponding to the multilib selected by any
4908 other switches present in the command line.  This directory is supposed
4909 to exist in @env{GCC_EXEC_PREFIX}.
4910
4911 @item -print-multi-lib
4912 @opindex print-multi-lib
4913 Print the mapping from multilib directory names to compiler switches
4914 that enable them.  The directory name is separated from the switches by
4915 @samp{;}, and each switch starts with an @samp{@@} instead of the
4916 @samp{-}, without spaces between multiple switches.  This is supposed to
4917 ease shell-processing.
4918
4919 @item -print-prog-name=@var{program}
4920 @opindex print-prog-name
4921 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
4922
4923 @item -print-libgcc-file-name
4924 @opindex print-libgcc-file-name
4925 Same as @option{-print-file-name=libgcc.a}.
4926
4927 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
4928 but you do want to link with @file{libgcc.a}.  You can do
4929
4930 @smallexample
4931 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
4932 @end smallexample
4933
4934 @item -print-search-dirs
4935 @opindex print-search-dirs
4936 Print the name of the configured installation directory and a list of
4937 program and library directories @command{gcc} will search---and don't do anything else.
4938
4939 This is useful when @command{gcc} prints the error message
4940 @samp{installation problem, cannot exec cpp0: No such file or directory}.
4941 To resolve this you either need to put @file{cpp0} and the other compiler
4942 components where @command{gcc} expects to find them, or you can set the environment
4943 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
4944 Don't forget the trailing @samp{/}.
4945 @xref{Environment Variables}.
4946
4947 @item -print-sysroot-headers-suffix
4948 @opindex print-sysroot-headers-suffix
4949 Print the suffix added to the target sysroot when searching for
4950 headers, or give an error if the compiler is not configured with such
4951 a suffix---and don't do anything else.
4952
4953 @item -dumpmachine
4954 @opindex dumpmachine
4955 Print the compiler's target machine (for example,
4956 @samp{i686-pc-linux-gnu})---and don't do anything else.
4957
4958 @item -dumpversion
4959 @opindex dumpversion
4960 Print the compiler version (for example, @samp{3.0})---and don't do
4961 anything else.
4962
4963 @item -dumpspecs
4964 @opindex dumpspecs
4965 Print the compiler's built-in specs---and don't do anything else.  (This
4966 is used when GCC itself is being built.)  @xref{Spec Files}.
4967
4968 @item -feliminate-unused-debug-types
4969 @opindex feliminate-unused-debug-types
4970 Normally, when producing DWARF2 output, GCC will emit debugging
4971 information for all types declared in a compilation
4972 unit, regardless of whether or not they are actually used
4973 in that compilation unit.  Sometimes this is useful, such as
4974 if, in the debugger, you want to cast a value to a type that is
4975 not actually used in your program (but is declared).  More often,
4976 however, this results in a significant amount of wasted space.
4977 With this option, GCC will avoid producing debug symbol output
4978 for types that are nowhere used in the source file being compiled.
4979 @end table
4980
4981 @node Optimize Options
4982 @section Options That Control Optimization
4983 @cindex optimize options
4984 @cindex options, optimization
4985
4986 These options control various sorts of optimizations.
4987
4988 Without any optimization option, the compiler's goal is to reduce the
4989 cost of compilation and to make debugging produce the expected
4990 results.  Statements are independent: if you stop the program with a
4991 breakpoint between statements, you can then assign a new value to any
4992 variable or change the program counter to any other statement in the
4993 function and get exactly the results you would expect from the source
4994 code.
4995
4996 Turning on optimization flags makes the compiler attempt to improve
4997 the performance and/or code size at the expense of compilation time
4998 and possibly the ability to debug the program.
4999
5000 The compiler performs optimization based on the knowledge it has of
5001 the program.  Optimization levels @option{-O} and above, in
5002 particular, enable @emph{unit-at-a-time} mode, which allows the
5003 compiler to consider information gained from later functions in
5004 the file when compiling a function.  Compiling multiple files at
5005 once to a single output file in @emph{unit-at-a-time} mode allows
5006 the compiler to use information gained from all of the files when
5007 compiling each of them.
5008
5009 Not all optimizations are controlled directly by a flag.  Only
5010 optimizations that have a flag are listed.
5011
5012 @table @gcctabopt
5013 @item -O
5014 @itemx -O1
5015 @opindex O
5016 @opindex O1
5017 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5018 more memory for a large function.
5019
5020 With @option{-O}, the compiler tries to reduce code size and execution
5021 time, without performing any optimizations that take a great deal of
5022 compilation time.
5023
5024 @option{-O} turns on the following optimization flags:
5025 @gccoptlist{-fdefer-pop @gol
5026 -fdelayed-branch @gol
5027 -fguess-branch-probability @gol
5028 -fcprop-registers @gol
5029 -fif-conversion @gol
5030 -fif-conversion2 @gol
5031 -fsplit-wide-types @gol
5032 -ftree-ccp @gol
5033 -ftree-dce @gol
5034 -ftree-dominator-opts @gol
5035 -ftree-dse @gol
5036 -ftree-ter @gol
5037 -ftree-sra @gol
5038 -ftree-copyrename @gol
5039 -ftree-fre @gol
5040 -ftree-ch @gol
5041 -funit-at-a-time @gol
5042 -finline-small-functions @gol
5043 -fmerge-constants}
5044
5045 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5046 where doing so does not interfere with debugging.
5047
5048 @item -O2
5049 @opindex O2
5050 Optimize even more.  GCC performs nearly all supported optimizations
5051 that do not involve a space-speed tradeoff.  The compiler does not
5052 perform loop unrolling or function inlining when you specify @option{-O2}.
5053 As compared to @option{-O}, this option increases both compilation time
5054 and the performance of the generated code.
5055
5056 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5057 also turns on the following optimization flags:
5058 @gccoptlist{-fthread-jumps @gol
5059 -fcrossjumping @gol
5060 -foptimize-sibling-calls @gol
5061 -fcse-follow-jumps  -fcse-skip-blocks @gol
5062 -fgcse  -fgcse-lm  @gol
5063 -fexpensive-optimizations @gol
5064 -frerun-cse-after-loop  @gol
5065 -fcaller-saves @gol
5066 -fpeephole2 @gol
5067 -fschedule-insns  -fschedule-insns2 @gol
5068 -fsched-interblock  -fsched-spec @gol
5069 -fregmove @gol
5070 -fstrict-aliasing -fstrict-overflow @gol
5071 -fdelete-null-pointer-checks @gol
5072 -freorder-blocks  -freorder-functions @gol
5073 -falign-functions  -falign-jumps @gol
5074 -falign-loops  -falign-labels @gol
5075 -ftree-vrp @gol
5076 -ftree-pre}
5077
5078 Please note the warning under @option{-fgcse} about
5079 invoking @option{-O2} on programs that use computed gotos.
5080
5081 @item -O3
5082 @opindex O3
5083 Optimize yet more.  @option{-O3} turns on all optimizations specified by
5084 @option{-O2} and also turns on the @option{-finline-functions},
5085 @option{-funswitch-loops}, @option{-fpredictive-commoning} and
5086 @option{-fgcse-after-reload} options.
5087
5088 @item -O0
5089 @opindex O0
5090 Reduce compilation time and make debugging produce the expected
5091 results.  This is the default.
5092
5093 @item -Os
5094 @opindex Os
5095 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5096 do not typically increase code size.  It also performs further
5097 optimizations designed to reduce code size.
5098
5099 @option{-Os} disables the following optimization flags:
5100 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5101 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5102 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5103
5104 If you use multiple @option{-O} options, with or without level numbers,
5105 the last such option is the one that is effective.
5106 @end table
5107
5108 Options of the form @option{-f@var{flag}} specify machine-independent
5109 flags.  Most flags have both positive and negative forms; the negative
5110 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
5111 below, only one of the forms is listed---the one you typically will
5112 use.  You can figure out the other form by either removing @samp{no-}
5113 or adding it.
5114
5115 The following options control specific optimizations.  They are either
5116 activated by @option{-O} options or are related to ones that are.  You
5117 can use the following flags in the rare cases when ``fine-tuning'' of
5118 optimizations to be performed is desired.
5119
5120 @table @gcctabopt
5121 @item -fno-default-inline
5122 @opindex fno-default-inline
5123 Do not make member functions inline by default merely because they are
5124 defined inside the class scope (C++ only).  Otherwise, when you specify
5125 @w{@option{-O}}, member functions defined inside class scope are compiled
5126 inline by default; i.e., you don't need to add @samp{inline} in front of
5127 the member function name.
5128
5129 @item -fno-defer-pop
5130 @opindex fno-defer-pop
5131 Always pop the arguments to each function call as soon as that function
5132 returns.  For machines which must pop arguments after a function call,
5133 the compiler normally lets arguments accumulate on the stack for several
5134 function calls and pops them all at once.
5135
5136 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5137
5138 @item -fforce-addr
5139 @opindex fforce-addr
5140 Force memory address constants to be copied into registers before
5141 doing arithmetic on them.
5142
5143 @item -fforward-propagate
5144 @opindex fforward-propagate
5145 Perform a forward propagation pass on RTL.  The pass tries to combine two
5146 instructions and checks if the result can be simplified.  If loop unrolling
5147 is active, two passes are performed and the second is scheduled after
5148 loop unrolling.
5149
5150 This option is enabled by default at optimization levels @option{-O2},
5151 @option{-O3}, @option{-Os}.
5152
5153 @item -fomit-frame-pointer
5154 @opindex fomit-frame-pointer
5155 Don't keep the frame pointer in a register for functions that
5156 don't need one.  This avoids the instructions to save, set up and
5157 restore frame pointers; it also makes an extra register available
5158 in many functions.  @strong{It also makes debugging impossible on
5159 some machines.}
5160
5161 On some machines, such as the VAX, this flag has no effect, because
5162 the standard calling sequence automatically handles the frame pointer
5163 and nothing is saved by pretending it doesn't exist.  The
5164 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
5165 whether a target machine supports this flag.  @xref{Registers,,Register
5166 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
5167
5168 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5169
5170 @item -foptimize-sibling-calls
5171 @opindex foptimize-sibling-calls
5172 Optimize sibling and tail recursive calls.
5173
5174 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5175
5176 @item -fno-inline
5177 @opindex fno-inline
5178 Don't pay attention to the @code{inline} keyword.  Normally this option
5179 is used to keep the compiler from expanding any functions inline.
5180 Note that if you are not optimizing, no functions can be expanded inline.
5181
5182 @item -finline-small-functions
5183 @opindex finline-small-functions
5184 Integrate functions into their callers when their body is smaller than expected
5185 function call code (so overall size of program gets smaller).  The compiler
5186 heuristically decides which functions are simple enough to be worth integrating
5187 in this way.
5188
5189 Enabled at level @option{-O2}.
5190
5191 @item -finline-functions
5192 @opindex finline-functions
5193 Integrate all simple functions into their callers.  The compiler
5194 heuristically decides which functions are simple enough to be worth
5195 integrating in this way.
5196
5197 If all calls to a given function are integrated, and the function is
5198 declared @code{static}, then the function is normally not output as
5199 assembler code in its own right.
5200
5201 Enabled at level @option{-O3}.
5202
5203 @item -finline-functions-called-once
5204 @opindex finline-functions-called-once
5205 Consider all @code{static} functions called once for inlining into their
5206 caller even if they are not marked @code{inline}.  If a call to a given
5207 function is integrated, then the function is not output as assembler code
5208 in its own right.
5209
5210 Enabled if @option{-funit-at-a-time} is enabled.
5211
5212 @item -fearly-inlining
5213 @opindex fearly-inlining
5214 Inline functions marked by @code{always_inline} and functions whose body seems
5215 smaller than the function call overhead early before doing
5216 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
5217 makes profiling significantly cheaper and usually inlining faster on programs
5218 having large chains of nested wrapper functions.
5219
5220 Enabled by default.
5221
5222 @item -finline-limit=@var{n}
5223 @opindex finline-limit
5224 By default, GCC limits the size of functions that can be inlined.  This flag
5225 allows the control of this limit for functions that are explicitly marked as
5226 inline (i.e., marked with the inline keyword or defined within the class
5227 definition in c++).  @var{n} is the size of functions that can be inlined in
5228 number of pseudo instructions (not counting parameter handling).  The default
5229 value of @var{n} is 600.
5230 Increasing this value can result in more inlined code at
5231 the cost of compilation time and memory consumption.  Decreasing usually makes
5232 the compilation faster and less code will be inlined (which presumably
5233 means slower programs).  This option is particularly useful for programs that
5234 use inlining heavily such as those based on recursive templates with C++.
5235
5236 Inlining is actually controlled by a number of parameters, which may be
5237 specified individually by using @option{--param @var{name}=@var{value}}.
5238 The @option{-finline-limit=@var{n}} option sets some of these parameters
5239 as follows:
5240
5241 @table @gcctabopt
5242 @item max-inline-insns-single
5243  is set to @var{n}/2.
5244 @item max-inline-insns-auto
5245  is set to @var{n}/2.
5246 @item min-inline-insns
5247  is set to 130 or @var{n}/4, whichever is smaller.
5248 @item max-inline-insns-rtl
5249  is set to @var{n}.
5250 @end table
5251
5252 See below for a documentation of the individual
5253 parameters controlling inlining.
5254
5255 @emph{Note:} pseudo instruction represents, in this particular context, an
5256 abstract measurement of function's size.  In no way does it represent a count
5257 of assembly instructions and as such its exact meaning might change from one
5258 release to an another.
5259
5260 @item -fkeep-inline-functions
5261 @opindex fkeep-inline-functions
5262 In C, emit @code{static} functions that are declared @code{inline}
5263 into the object file, even if the function has been inlined into all
5264 of its callers.  This switch does not affect functions using the
5265 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
5266 inline functions into the object file.
5267
5268 @item -fkeep-static-consts
5269 @opindex fkeep-static-consts
5270 Emit variables declared @code{static const} when optimization isn't turned
5271 on, even if the variables aren't referenced.
5272
5273 GCC enables this option by default.  If you want to force the compiler to
5274 check if the variable was referenced, regardless of whether or not
5275 optimization is turned on, use the @option{-fno-keep-static-consts} option.
5276
5277 @item -fmerge-constants
5278 Attempt to merge identical constants (string constants and floating point
5279 constants) across compilation units.
5280
5281 This option is the default for optimized compilation if the assembler and
5282 linker support it.  Use @option{-fno-merge-constants} to inhibit this
5283 behavior.
5284
5285 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5286
5287 @item -fmerge-all-constants
5288 Attempt to merge identical constants and identical variables.
5289
5290 This option implies @option{-fmerge-constants}.  In addition to
5291 @option{-fmerge-constants} this considers e.g.@: even constant initialized
5292 arrays or initialized constant variables with integral or floating point
5293 types.  Languages like C or C++ require each non-automatic variable to
5294 have distinct location, so using this option will result in non-conforming
5295 behavior.
5296
5297 @item -fmodulo-sched
5298 @opindex fmodulo-sched
5299 Perform swing modulo scheduling immediately before the first scheduling
5300 pass.  This pass looks at innermost loops and reorders their
5301 instructions by overlapping different iterations.
5302
5303 @item -fmodulo-sched-allow-regmoves
5304 @opindex fmodulo-sched-allow-regmoves
5305 Perform more aggressive SMS based modulo scheduling with register moves
5306 allowed.  By setting this flag certain anti-dependences edges will be
5307 deleted which will trigger the generation of reg-moves based on the
5308 life-range analysis.  This option is effective only with
5309 @option{-fmodulo-sched} enabled.
5310
5311 @item -fno-branch-count-reg
5312 @opindex fno-branch-count-reg
5313 Do not use ``decrement and branch'' instructions on a count register,
5314 but instead generate a sequence of instructions that decrement a
5315 register, compare it against zero, then branch based upon the result.
5316 This option is only meaningful on architectures that support such
5317 instructions, which include x86, PowerPC, IA-64 and S/390.
5318
5319 The default is @option{-fbranch-count-reg}.
5320
5321 @item -fno-function-cse
5322 @opindex fno-function-cse
5323 Do not put function addresses in registers; make each instruction that
5324 calls a constant function contain the function's address explicitly.
5325
5326 This option results in less efficient code, but some strange hacks
5327 that alter the assembler output may be confused by the optimizations
5328 performed when this option is not used.
5329
5330 The default is @option{-ffunction-cse}
5331
5332 @item -fno-zero-initialized-in-bss
5333 @opindex fno-zero-initialized-in-bss
5334 If the target supports a BSS section, GCC by default puts variables that
5335 are initialized to zero into BSS@.  This can save space in the resulting
5336 code.
5337
5338 This option turns off this behavior because some programs explicitly
5339 rely on variables going to the data section.  E.g., so that the
5340 resulting executable can find the beginning of that section and/or make
5341 assumptions based on that.
5342
5343 The default is @option{-fzero-initialized-in-bss}.
5344
5345 @item -fbounds-check
5346 @opindex fbounds-check
5347 For front-ends that support it, generate additional code to check that
5348 indices used to access arrays are within the declared range.  This is
5349 currently only supported by the Java and Fortran front-ends, where
5350 this option defaults to true and false respectively.
5351
5352 @item -fmudflap -fmudflapth -fmudflapir
5353 @opindex fmudflap
5354 @opindex fmudflapth
5355 @opindex fmudflapir
5356 @cindex bounds checking
5357 @cindex mudflap
5358 For front-ends that support it (C and C++), instrument all risky
5359 pointer/array dereferencing operations, some standard library
5360 string/heap functions, and some other associated constructs with
5361 range/validity tests.  Modules so instrumented should be immune to
5362 buffer overflows, invalid heap use, and some other classes of C/C++
5363 programming errors.  The instrumentation relies on a separate runtime
5364 library (@file{libmudflap}), which will be linked into a program if
5365 @option{-fmudflap} is given at link time.  Run-time behavior of the
5366 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
5367 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
5368 for its options.
5369
5370 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
5371 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
5372 addition to @option{-fmudflap} or @option{-fmudflapth}, if
5373 instrumentation should ignore pointer reads.  This produces less
5374 instrumentation (and therefore faster execution) and still provides
5375 some protection against outright memory corrupting writes, but allows
5376 erroneously read data to propagate within a program.
5377
5378 @item -fthread-jumps
5379 @opindex fthread-jumps
5380 Perform optimizations where we check to see if a jump branches to a
5381 location where another comparison subsumed by the first is found.  If
5382 so, the first branch is redirected to either the destination of the
5383 second branch or a point immediately following it, depending on whether
5384 the condition is known to be true or false.
5385
5386 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5387
5388 @item -fsplit-wide-types
5389 @opindex fsplit-wide-types
5390 When using a type that occupies multiple registers, such as @code{long
5391 long} on a 32-bit system, split the registers apart and allocate them
5392 independently.  This normally generates better code for those types,
5393 but may make debugging more difficult.
5394
5395 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
5396 @option{-Os}.
5397
5398 @item -fcse-follow-jumps
5399 @opindex fcse-follow-jumps
5400 In common subexpression elimination, scan through jump instructions
5401 when the target of the jump is not reached by any other path.  For
5402 example, when CSE encounters an @code{if} statement with an
5403 @code{else} clause, CSE will follow the jump when the condition
5404 tested is false.
5405
5406 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5407
5408 @item -fcse-skip-blocks
5409 @opindex fcse-skip-blocks
5410 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
5411 follow jumps which conditionally skip over blocks.  When CSE
5412 encounters a simple @code{if} statement with no else clause,
5413 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
5414 body of the @code{if}.
5415
5416 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5417
5418 @item -frerun-cse-after-loop
5419 @opindex frerun-cse-after-loop
5420 Re-run common subexpression elimination after loop optimizations has been
5421 performed.
5422
5423 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5424
5425 @item -fgcse
5426 @opindex fgcse
5427 Perform a global common subexpression elimination pass.
5428 This pass also performs global constant and copy propagation.
5429
5430 @emph{Note:} When compiling a program using computed gotos, a GCC
5431 extension, you may get better runtime performance if you disable
5432 the global common subexpression elimination pass by adding
5433 @option{-fno-gcse} to the command line.
5434
5435 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5436
5437 @item -fgcse-lm
5438 @opindex fgcse-lm
5439 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
5440 attempt to move loads which are only killed by stores into themselves.  This
5441 allows a loop containing a load/store sequence to be changed to a load outside
5442 the loop, and a copy/store within the loop.
5443
5444 Enabled by default when gcse is enabled.
5445
5446 @item -fgcse-sm
5447 @opindex fgcse-sm
5448 When @option{-fgcse-sm} is enabled, a store motion pass is run after
5449 global common subexpression elimination.  This pass will attempt to move
5450 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
5451 loops containing a load/store sequence can be changed to a load before
5452 the loop and a store after the loop.
5453
5454 Not enabled at any optimization level.
5455
5456 @item -fgcse-las
5457 @opindex fgcse-las
5458 When @option{-fgcse-las} is enabled, the global common subexpression
5459 elimination pass eliminates redundant loads that come after stores to the
5460 same memory location (both partial and full redundancies).
5461
5462 Not enabled at any optimization level.
5463
5464 @item -fgcse-after-reload
5465 @opindex fgcse-after-reload
5466 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
5467 pass is performed after reload.  The purpose of this pass is to cleanup
5468 redundant spilling.
5469
5470 @item -funsafe-loop-optimizations
5471 @opindex funsafe-loop-optimizations
5472 If given, the loop optimizer will assume that loop indices do not
5473 overflow, and that the loops with nontrivial exit condition are not
5474 infinite.  This enables a wider range of loop optimizations even if
5475 the loop optimizer itself cannot prove that these assumptions are valid.
5476 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
5477 if it finds this kind of loop.
5478
5479 @item -fcrossjumping
5480 @opindex crossjumping
5481 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
5482 resulting code may or may not perform better than without cross-jumping.
5483
5484 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5485
5486 @item -fif-conversion
5487 @opindex if-conversion
5488 Attempt to transform conditional jumps into branch-less equivalents.  This
5489 include use of conditional moves, min, max, set flags and abs instructions, and
5490 some tricks doable by standard arithmetics.  The use of conditional execution
5491 on chips where it is available is controlled by @code{if-conversion2}.
5492
5493 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5494
5495 @item -fif-conversion2
5496 @opindex if-conversion2
5497 Use conditional execution (where available) to transform conditional jumps into
5498 branch-less equivalents.
5499
5500 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5501
5502 @item -fdelete-null-pointer-checks
5503 @opindex fdelete-null-pointer-checks
5504 Use global dataflow analysis to identify and eliminate useless checks
5505 for null pointers.  The compiler assumes that dereferencing a null
5506 pointer would have halted the program.  If a pointer is checked after
5507 it has already been dereferenced, it cannot be null.
5508
5509 In some environments, this assumption is not true, and programs can
5510 safely dereference null pointers.  Use
5511 @option{-fno-delete-null-pointer-checks} to disable this optimization
5512 for programs which depend on that behavior.
5513
5514 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5515
5516 @item -fexpensive-optimizations
5517 @opindex fexpensive-optimizations
5518 Perform a number of minor optimizations that are relatively expensive.
5519
5520 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5521
5522 @item -foptimize-register-move
5523 @itemx -fregmove
5524 @opindex foptimize-register-move
5525 @opindex fregmove
5526 Attempt to reassign register numbers in move instructions and as
5527 operands of other simple instructions in order to maximize the amount of
5528 register tying.  This is especially helpful on machines with two-operand
5529 instructions.
5530
5531 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
5532 optimization.
5533
5534 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5535
5536 @item -fdelayed-branch
5537 @opindex fdelayed-branch
5538 If supported for the target machine, attempt to reorder instructions
5539 to exploit instruction slots available after delayed branch
5540 instructions.
5541
5542 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5543
5544 @item -fschedule-insns
5545 @opindex fschedule-insns
5546 If supported for the target machine, attempt to reorder instructions to
5547 eliminate execution stalls due to required data being unavailable.  This
5548 helps machines that have slow floating point or memory load instructions
5549 by allowing other instructions to be issued until the result of the load
5550 or floating point instruction is required.
5551
5552 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5553
5554 @item -fschedule-insns2
5555 @opindex fschedule-insns2
5556 Similar to @option{-fschedule-insns}, but requests an additional pass of
5557 instruction scheduling after register allocation has been done.  This is
5558 especially useful on machines with a relatively small number of
5559 registers and where memory load instructions take more than one cycle.
5560
5561 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5562
5563 @item -fno-sched-interblock
5564 @opindex fno-sched-interblock
5565 Don't schedule instructions across basic blocks.  This is normally
5566 enabled by default when scheduling before register allocation, i.e.@:
5567 with @option{-fschedule-insns} or at @option{-O2} or higher.
5568
5569 @item -fno-sched-spec
5570 @opindex fno-sched-spec
5571 Don't allow speculative motion of non-load instructions.  This is normally
5572 enabled by default when scheduling before register allocation, i.e.@:
5573 with @option{-fschedule-insns} or at @option{-O2} or higher.
5574
5575 @item -fsched-spec-load
5576 @opindex fsched-spec-load
5577 Allow speculative motion of some load instructions.  This only makes
5578 sense when scheduling before register allocation, i.e.@: with
5579 @option{-fschedule-insns} or at @option{-O2} or higher.
5580
5581 @item -fsched-spec-load-dangerous
5582 @opindex fsched-spec-load-dangerous
5583 Allow speculative motion of more load instructions.  This only makes
5584 sense when scheduling before register allocation, i.e.@: with
5585 @option{-fschedule-insns} or at @option{-O2} or higher.
5586
5587 @item -fsched-stalled-insns=@var{n}
5588 @opindex fsched-stalled-insns
5589 Define how many insns (if any) can be moved prematurely from the queue
5590 of stalled insns into the ready list, during the second scheduling pass.
5591
5592 @item -fsched-stalled-insns-dep=@var{n}
5593 @opindex fsched-stalled-insns-dep
5594 Define how many insn groups (cycles) will be examined for a dependency
5595 on a stalled insn that is candidate for premature removal from the queue
5596 of stalled insns.  Has an effect only during the second scheduling pass,
5597 and only if @option{-fsched-stalled-insns} is used and its value is not zero.
5598
5599 @item -fsched2-use-superblocks
5600 @opindex fsched2-use-superblocks
5601 When scheduling after register allocation, do use superblock scheduling
5602 algorithm.  Superblock scheduling allows motion across basic block boundaries
5603 resulting on faster schedules.  This option is experimental, as not all machine
5604 descriptions used by GCC model the CPU closely enough to avoid unreliable
5605 results from the algorithm.
5606
5607 This only makes sense when scheduling after register allocation, i.e.@: with
5608 @option{-fschedule-insns2} or at @option{-O2} or higher.
5609
5610 @item -fsched2-use-traces
5611 @opindex fsched2-use-traces
5612 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
5613 allocation and additionally perform code duplication in order to increase the
5614 size of superblocks using tracer pass.  See @option{-ftracer} for details on
5615 trace formation.
5616
5617 This mode should produce faster but significantly longer programs.  Also
5618 without @option{-fbranch-probabilities} the traces constructed may not
5619 match the reality and hurt the performance.  This only makes
5620 sense when scheduling after register allocation, i.e.@: with
5621 @option{-fschedule-insns2} or at @option{-O2} or higher.
5622
5623 @item -fsee
5624 @opindex fsee
5625 Eliminates redundant extension instructions and move the non redundant
5626 ones to optimal placement using LCM.
5627
5628 @item -freschedule-modulo-scheduled-loops
5629 @opindex fscheduling-in-modulo-scheduled-loops
5630 The modulo scheduling comes before the traditional scheduling, if a loop
5631 was modulo scheduled we may want to prevent the later scheduling passes
5632 from changing its schedule, we use this option to control that.
5633
5634 @item -fcaller-saves
5635 @opindex fcaller-saves
5636 Enable values to be allocated in registers that will be clobbered by
5637 function calls, by emitting extra instructions to save and restore the
5638 registers around such calls.  Such allocation is done only when it
5639 seems to result in better code than would otherwise be produced.
5640
5641 This option is always enabled by default on certain machines, usually
5642 those which have no call-preserved registers to use instead.
5643
5644 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5645
5646 @item -ftree-reassoc
5647 Perform Reassociation on trees  This flag is enabled by default
5648 at @option{-O} and higher.
5649
5650 @item -ftree-pre
5651 Perform Partial Redundancy Elimination (PRE) on trees.  This flag is
5652 enabled by default at @option{-O2} and @option{-O3}.
5653
5654 @item -ftree-fre
5655 Perform Full Redundancy Elimination (FRE) on trees.  The difference
5656 between FRE and PRE is that FRE only considers expressions
5657 that are computed on all paths leading to the redundant computation.
5658 This analysis is faster than PRE, though it exposes fewer redundancies.
5659 This flag is enabled by default at @option{-O} and higher.
5660
5661 @item -ftree-copy-prop
5662 Perform copy propagation on trees.  This pass eliminates unnecessary
5663 copy operations.  This flag is enabled by default at @option{-O} and
5664 higher.
5665
5666 @item -ftree-store-copy-prop
5667 Perform copy propagation of memory loads and stores.  This pass
5668 eliminates unnecessary copy operations in memory references
5669 (structures, global variables, arrays, etc).  This flag is enabled by
5670 default at @option{-O2} and higher.
5671
5672 @item -ftree-salias
5673 Perform structural alias analysis on trees.  This flag
5674 is enabled by default at @option{-O} and higher.
5675
5676 @item -fipa-pta
5677 Perform interprocedural pointer analysis.
5678
5679 @item -ftree-sink
5680 Perform forward store motion  on trees.  This flag is
5681 enabled by default at @option{-O} and higher.
5682
5683 @item -ftree-ccp
5684 Perform sparse conditional constant propagation (CCP) on trees.  This
5685 pass only operates on local scalar variables and is enabled by default
5686 at @option{-O} and higher.
5687
5688 @item -ftree-store-ccp
5689 Perform sparse conditional constant propagation (CCP) on trees.  This
5690 pass operates on both local scalar variables and memory stores and
5691 loads (global variables, structures, arrays, etc).  This flag is
5692 enabled by default at @option{-O2} and higher.
5693
5694 @item -ftree-dce
5695 Perform dead code elimination (DCE) on trees.  This flag is enabled by
5696 default at @option{-O} and higher.
5697
5698 @item -ftree-dominator-opts
5699 Perform a variety of simple scalar cleanups (constant/copy
5700 propagation, redundancy elimination, range propagation and expression
5701 simplification) based on a dominator tree traversal.  This also
5702 performs jump threading (to reduce jumps to jumps). This flag is
5703 enabled by default at @option{-O} and higher.
5704
5705 @item -ftree-dse
5706 @opindex ftree-dse
5707 Perform dead store elimination (DSE) on trees.  A dead store is a store into
5708 a memory location which will later be overwritten by another store without
5709 any intervening loads.  In this case the earlier store can be deleted.  This
5710 flag is enabled by default at @option{-O} and higher.
5711
5712 @item -ftree-ch
5713 Perform loop header copying on trees.  This is beneficial since it increases
5714 effectiveness of code motion optimizations.  It also saves one jump.  This flag
5715 is enabled by default at @option{-O} and higher.  It is not enabled
5716 for @option{-Os}, since it usually increases code size.
5717
5718 @item -ftree-loop-optimize
5719 Perform loop optimizations on trees.  This flag is enabled by default
5720 at @option{-O} and higher.
5721
5722 @item -ftree-loop-linear
5723 Perform linear loop transformations on tree.  This flag can improve cache
5724 performance and allow further loop optimizations to take place.
5725
5726 @item -fcheck-data-deps
5727 Compare the results of several data dependence analyzers.  This option
5728 is used for debugging the data dependence analyzers.
5729
5730 @item -ftree-loop-im
5731 Perform loop invariant motion on trees.  This pass moves only invariants that
5732 would be hard to handle at RTL level (function calls, operations that expand to
5733 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
5734 operands of conditions that are invariant out of the loop, so that we can use
5735 just trivial invariantness analysis in loop unswitching.  The pass also includes
5736 store motion.
5737
5738 @item -ftree-loop-ivcanon
5739 Create a canonical counter for number of iterations in the loop for that
5740 determining number of iterations requires complicated analysis.  Later
5741 optimizations then may determine the number easily.  Useful especially
5742 in connection with unrolling.
5743
5744 @item -fivopts
5745 Perform induction variable optimizations (strength reduction, induction
5746 variable merging and induction variable elimination) on trees.
5747
5748 @item -ftree-parallelize-loops=n
5749 @opindex ftree-parallelize-loops=n
5750 Parallelize loops, i.e., split their iteration space to run in n threads.
5751 This is only possible for loops whose iterations are independent
5752 and can be arbitrarily reordered.  The optimization is only
5753 profitable on multiprocessor machines, for loops that are CPU-intensive,
5754 rather than constrained e.g. by memory bandwidth.
5755
5756 @item -ftree-sra
5757 Perform scalar replacement of aggregates.  This pass replaces structure
5758 references with scalars to prevent committing structures to memory too
5759 early.  This flag is enabled by default at @option{-O} and higher.
5760
5761 @item -ftree-copyrename
5762 Perform copy renaming on trees.  This pass attempts to rename compiler
5763 temporaries to other variables at copy locations, usually resulting in
5764 variable names which more closely resemble the original variables.  This flag
5765 is enabled by default at @option{-O} and higher.
5766
5767 @item -ftree-ter
5768 Perform temporary expression replacement during the SSA->normal phase.  Single
5769 use/single def temporaries are replaced at their use location with their
5770 defining expression.  This results in non-GIMPLE code, but gives the expanders
5771 much more complex trees to work on resulting in better RTL generation.  This is
5772 enabled by default at @option{-O} and higher.
5773
5774 @item -ftree-vectorize
5775 Perform loop vectorization on trees.
5776
5777 @item -ftree-vect-loop-version
5778 @opindex ftree-vect-loop-version
5779 Perform loop versioning when doing loop vectorization on trees.  When a loop
5780 appears to be vectorizable except that data alignment or data dependence cannot
5781 be determined at compile time then vectorized and non-vectorized versions of
5782 the loop are generated along with runtime checks for alignment or dependence
5783 to control which version is executed.  This option is enabled by default
5784 except at level @option{-Os} where it is disabled.
5785
5786 @item -fvect-cost-model
5787 Enable cost model for vectorization.
5788
5789 @item -ftree-vrp
5790 Perform Value Range Propagation on trees.  This is similar to the
5791 constant propagation pass, but instead of values, ranges of values are
5792 propagated.  This allows the optimizers to remove unnecessary range
5793 checks like array bound checks and null pointer checks.  This is
5794 enabled by default at @option{-O2} and higher.  Null pointer check
5795 elimination is only done if @option{-fdelete-null-pointer-checks} is
5796 enabled.
5797
5798 @item -ftracer
5799 @opindex ftracer
5800 Perform tail duplication to enlarge superblock size.  This transformation
5801 simplifies the control flow of the function allowing other optimizations to do
5802 better job.
5803
5804 @item -funroll-loops
5805 @opindex funroll-loops
5806 Unroll loops whose number of iterations can be determined at compile
5807 time or upon entry to the loop.  @option{-funroll-loops} implies
5808 @option{-frerun-cse-after-loop}.  This option makes code larger,
5809 and may or may not make it run faster.
5810
5811 @item -funroll-all-loops
5812 @opindex funroll-all-loops
5813 Unroll all loops, even if their number of iterations is uncertain when
5814 the loop is entered.  This usually makes programs run more slowly.
5815 @option{-funroll-all-loops} implies the same options as
5816 @option{-funroll-loops},
5817
5818 @item -fsplit-ivs-in-unroller
5819 @opindex fsplit-ivs-in-unroller
5820 Enables expressing of values of induction variables in later iterations
5821 of the unrolled loop using the value in the first iteration.  This breaks
5822 long dependency chains, thus improving efficiency of the scheduling passes.
5823
5824 Combination of @option{-fweb} and CSE is often sufficient to obtain the
5825 same effect.  However in cases the loop body is more complicated than
5826 a single basic block, this is not reliable.  It also does not work at all
5827 on some of the architectures due to restrictions in the CSE pass.
5828
5829 This optimization is enabled by default.
5830
5831 @item -fvariable-expansion-in-unroller
5832 @opindex fvariable-expansion-in-unroller
5833 With this option, the compiler will create multiple copies of some
5834 local variables when unrolling a loop which can result in superior code.
5835
5836 @item -fpredictive-commoning
5837 @opindex fpredictive-commoning
5838 Perform predictive commoning optimization, i.e., reusing computations
5839 (especially memory loads and stores) performed in previous
5840 iterations of loops.
5841
5842 This option is enabled at level @option{-O3}.
5843
5844 @item -fprefetch-loop-arrays
5845 @opindex fprefetch-loop-arrays
5846 If supported by the target machine, generate instructions to prefetch
5847 memory to improve the performance of loops that access large arrays.
5848
5849 This option may generate better or worse code; results are highly
5850 dependent on the structure of loops within the source code.
5851
5852 Disabled at level @option{-Os}.
5853
5854 @item -fno-peephole
5855 @itemx -fno-peephole2
5856 @opindex fno-peephole
5857 @opindex fno-peephole2
5858 Disable any machine-specific peephole optimizations.  The difference
5859 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
5860 are implemented in the compiler; some targets use one, some use the
5861 other, a few use both.
5862
5863 @option{-fpeephole} is enabled by default.
5864 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5865
5866 @item -fno-guess-branch-probability
5867 @opindex fno-guess-branch-probability
5868 Do not guess branch probabilities using heuristics.
5869
5870 GCC will use heuristics to guess branch probabilities if they are
5871 not provided by profiling feedback (@option{-fprofile-arcs}).  These
5872 heuristics are based on the control flow graph.  If some branch probabilities
5873 are specified by @samp{__builtin_expect}, then the heuristics will be
5874 used to guess branch probabilities for the rest of the control flow graph,
5875 taking the @samp{__builtin_expect} info into account.  The interactions
5876 between the heuristics and @samp{__builtin_expect} can be complex, and in
5877 some cases, it may be useful to disable the heuristics so that the effects
5878 of @samp{__builtin_expect} are easier to understand.
5879
5880 The default is @option{-fguess-branch-probability} at levels
5881 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5882
5883 @item -freorder-blocks
5884 @opindex freorder-blocks
5885 Reorder basic blocks in the compiled function in order to reduce number of
5886 taken branches and improve code locality.
5887
5888 Enabled at levels @option{-O2}, @option{-O3}.
5889
5890 @item -freorder-blocks-and-partition
5891 @opindex freorder-blocks-and-partition
5892 In addition to reordering basic blocks in the compiled function, in order
5893 to reduce number of taken branches, partitions hot and cold basic blocks
5894 into separate sections of the assembly and .o files, to improve
5895 paging and cache locality performance.
5896
5897 This optimization is automatically turned off in the presence of
5898 exception handling, for linkonce sections, for functions with a user-defined
5899 section attribute and on any architecture that does not support named
5900 sections.
5901
5902 @item -freorder-functions
5903 @opindex freorder-functions
5904 Reorder functions in the object file in order to
5905 improve code locality.  This is implemented by using special
5906 subsections @code{.text.hot} for most frequently executed functions and
5907 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
5908 the linker so object file format must support named sections and linker must
5909 place them in a reasonable way.
5910
5911 Also profile feedback must be available in to make this option effective.  See
5912 @option{-fprofile-arcs} for details.
5913
5914 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5915
5916 @item -fstrict-aliasing
5917 @opindex fstrict-aliasing
5918 Allows the compiler to assume the strictest aliasing rules applicable to
5919 the language being compiled.  For C (and C++), this activates
5920 optimizations based on the type of expressions.  In particular, an
5921 object of one type is assumed never to reside at the same address as an
5922 object of a different type, unless the types are almost the same.  For
5923 example, an @code{unsigned int} can alias an @code{int}, but not a
5924 @code{void*} or a @code{double}.  A character type may alias any other
5925 type.
5926
5927 Pay special attention to code like this:
5928 @smallexample
5929 union a_union @{
5930   int i;
5931   double d;
5932 @};
5933
5934 int f() @{
5935   a_union t;
5936   t.d = 3.0;
5937   return t.i;
5938 @}
5939 @end smallexample
5940 The practice of reading from a different union member than the one most
5941 recently written to (called ``type-punning'') is common.  Even with
5942 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
5943 is accessed through the union type.  So, the code above will work as
5944 expected.  However, this code might not:
5945 @smallexample
5946 int f() @{
5947   a_union t;
5948   int* ip;
5949   t.d = 3.0;
5950   ip = &t.i;
5951   return *ip;
5952 @}
5953 @end smallexample
5954
5955 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5956
5957 @item -fstrict-overflow
5958 @opindex fstrict-overflow
5959 Allow the compiler to assume strict signed overflow rules, depending
5960 on the language being compiled.  For C (and C++) this means that
5961 overflow when doing arithmetic with signed numbers is undefined, which
5962 means that the compiler may assume that it will not happen.  This
5963 permits various optimizations.  For example, the compiler will assume
5964 that an expression like @code{i + 10 > i} will always be true for
5965 signed @code{i}.  This assumption is only valid if signed overflow is
5966 undefined, as the expression is false if @code{i + 10} overflows when
5967 using twos complement arithmetic.  When this option is in effect any
5968 attempt to determine whether an operation on signed numbers will
5969 overflow must be written carefully to not actually involve overflow.
5970
5971 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
5972 that signed overflow is fully defined: it wraps.  When
5973 @option{-fwrapv} is used, there is no difference between
5974 @option{-fstrict-overflow} and @option{-fno-strict-overflow}.  With
5975 @option{-fwrapv} certain types of overflow are permitted.  For
5976 example, if the compiler gets an overflow when doing arithmetic on
5977 constants, the overflowed value can still be used with
5978 @option{-fwrapv}, but not otherwise.
5979
5980 The @option{-fstrict-overflow} option is enabled at levels
5981 @option{-O2}, @option{-O3}, @option{-Os}.
5982
5983 @item -falign-functions
5984 @itemx -falign-functions=@var{n}
5985 @opindex falign-functions
5986 Align the start of functions to the next power-of-two greater than
5987 @var{n}, skipping up to @var{n} bytes.  For instance,
5988 @option{-falign-functions=32} aligns functions to the next 32-byte
5989 boundary, but @option{-falign-functions=24} would align to the next
5990 32-byte boundary only if this can be done by skipping 23 bytes or less.
5991
5992 @option{-fno-align-functions} and @option{-falign-functions=1} are
5993 equivalent and mean that functions will not be aligned.
5994
5995 Some assemblers only support this flag when @var{n} is a power of two;
5996 in that case, it is rounded up.
5997
5998 If @var{n} is not specified or is zero, use a machine-dependent default.
5999
6000 Enabled at levels @option{-O2}, @option{-O3}.
6001
6002 @item -falign-labels
6003 @itemx -falign-labels=@var{n}
6004 @opindex falign-labels
6005 Align all branch targets to a power-of-two boundary, skipping up to
6006 @var{n} bytes like @option{-falign-functions}.  This option can easily
6007 make code slower, because it must insert dummy operations for when the
6008 branch target is reached in the usual flow of the code.
6009
6010 @option{-fno-align-labels} and @option{-falign-labels=1} are
6011 equivalent and mean that labels will not be aligned.
6012
6013 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
6014 are greater than this value, then their values are used instead.
6015
6016 If @var{n} is not specified or is zero, use a machine-dependent default
6017 which is very likely to be @samp{1}, meaning no alignment.
6018
6019 Enabled at levels @option{-O2}, @option{-O3}.
6020
6021 @item -falign-loops
6022 @itemx -falign-loops=@var{n}
6023 @opindex falign-loops
6024 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
6025 like @option{-falign-functions}.  The hope is that the loop will be
6026 executed many times, which will make up for any execution of the dummy
6027 operations.
6028
6029 @option{-fno-align-loops} and @option{-falign-loops=1} are
6030 equivalent and mean that loops will not be aligned.
6031
6032 If @var{n} is not specified or is zero, use a machine-dependent default.
6033
6034 Enabled at levels @option{-O2}, @option{-O3}.
6035
6036 @item -falign-jumps
6037 @itemx -falign-jumps=@var{n}
6038 @opindex falign-jumps
6039 Align branch targets to a power-of-two boundary, for branch targets
6040 where the targets can only be reached by jumping, skipping up to @var{n}
6041 bytes like @option{-falign-functions}.  In this case, no dummy operations
6042 need be executed.
6043
6044 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
6045 equivalent and mean that loops will not be aligned.
6046
6047 If @var{n} is not specified or is zero, use a machine-dependent default.
6048
6049 Enabled at levels @option{-O2}, @option{-O3}.
6050
6051 @item -funit-at-a-time
6052 @opindex funit-at-a-time
6053 Parse the whole compilation unit before starting to produce code.
6054 This allows some extra optimizations to take place but consumes
6055 more memory (in general).  There are some compatibility issues
6056 with @emph{unit-at-a-time} mode:
6057 @itemize @bullet
6058 @item
6059 enabling @emph{unit-at-a-time} mode may change the order
6060 in which functions, variables, and top-level @code{asm} statements
6061 are emitted, and will likely break code relying on some particular
6062 ordering.  The majority of such top-level @code{asm} statements,
6063 though, can be replaced by @code{section} attributes.  The
6064 @option{fno-toplevel-reorder} option may be used to keep the ordering
6065 used in the input file, at the cost of some optimizations.
6066
6067 @item
6068 @emph{unit-at-a-time} mode removes unreferenced static variables
6069 and functions.  This may result in undefined references
6070 when an @code{asm} statement refers directly to variables or functions
6071 that are otherwise unused.  In that case either the variable/function
6072 shall be listed as an operand of the @code{asm} statement operand or,
6073 in the case of top-level @code{asm} statements the attribute @code{used}
6074 shall be used on the declaration.
6075
6076 @item
6077 Static functions now can use non-standard passing conventions that
6078 may break @code{asm} statements calling functions directly.  Again,
6079 attribute @code{used} will prevent this behavior.
6080 @end itemize
6081
6082 As a temporary workaround, @option{-fno-unit-at-a-time} can be used,
6083 but this scheme may not be supported by future releases of GCC@.
6084
6085 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6086
6087 @item -fno-toplevel-reorder
6088 Do not reorder top-level functions, variables, and @code{asm}
6089 statements.  Output them in the same order that they appear in the
6090 input file.  When this option is used, unreferenced static variables
6091 will not be removed.  This option is intended to support existing code
6092 which relies on a particular ordering.  For new code, it is better to
6093 use attributes.
6094
6095 @item -fweb
6096 @opindex fweb
6097 Constructs webs as commonly used for register allocation purposes and assign
6098 each web individual pseudo register.  This allows the register allocation pass
6099 to operate on pseudos directly, but also strengthens several other optimization
6100 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
6101 however, make debugging impossible, since variables will no longer stay in a
6102 ``home register''.
6103
6104 Enabled by default with @option{-funroll-loops}.
6105
6106 @item -fwhole-program
6107 @opindex fwhole-program
6108 Assume that the current compilation unit represents whole program being
6109 compiled.  All public functions and variables with the exception of @code{main}
6110 and those merged by attribute @code{externally_visible} become static functions
6111 and in a affect gets more aggressively optimized by interprocedural optimizers.
6112 While this option is equivalent to proper use of @code{static} keyword for
6113 programs consisting of single file, in combination with option
6114 @option{--combine} this flag can be used to compile most of smaller scale C
6115 programs since the functions and variables become local for the whole combined
6116 compilation unit, not for the single source file itself.
6117
6118
6119 @item -fno-cprop-registers
6120 @opindex fno-cprop-registers
6121 After register allocation and post-register allocation instruction splitting,
6122 we perform a copy-propagation pass to try to reduce scheduling dependencies
6123 and occasionally eliminate the copy.
6124
6125 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6126
6127 @item -fprofile-generate
6128 @opindex fprofile-generate
6129
6130 Enable options usually used for instrumenting application to produce
6131 profile useful for later recompilation with profile feedback based
6132 optimization.  You must use @option{-fprofile-generate} both when
6133 compiling and when linking your program.
6134
6135 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
6136
6137 @item -fprofile-use
6138 @opindex fprofile-use
6139 Enable profile feedback directed optimizations, and optimizations
6140 generally profitable only with profile feedback available.
6141
6142 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
6143 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
6144
6145 By default, GCC emits an error message if the feedback profiles do not
6146 match the source code.  This error can be turned into a warning by using
6147 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
6148 code.
6149 @end table
6150
6151 The following options control compiler behavior regarding floating
6152 point arithmetic.  These options trade off between speed and
6153 correctness.  All must be specifically enabled.
6154
6155 @table @gcctabopt
6156 @item -ffloat-store
6157 @opindex ffloat-store
6158 Do not store floating point variables in registers, and inhibit other
6159 options that might change whether a floating point value is taken from a
6160 register or memory.
6161
6162 @cindex floating point precision
6163 This option prevents undesirable excess precision on machines such as
6164 the 68000 where the floating registers (of the 68881) keep more
6165 precision than a @code{double} is supposed to have.  Similarly for the
6166 x86 architecture.  For most programs, the excess precision does only
6167 good, but a few programs rely on the precise definition of IEEE floating
6168 point.  Use @option{-ffloat-store} for such programs, after modifying
6169 them to store all pertinent intermediate computations into variables.
6170
6171 @item -ffast-math
6172 @opindex ffast-math
6173 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations}, @*
6174 @option{-fno-trapping-math}, @option{-ffinite-math-only},
6175 @option{-fno-rounding-math}, @option{-fno-signaling-nans},
6176 @option{-fno-signed-zeros} and @option{fcx-limited-range}.
6177
6178 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
6179
6180 This option is not turned on by any @option{-O} option since
6181 it can result in incorrect output for programs which depend on
6182 an exact implementation of IEEE or ISO rules/specifications for
6183 math functions. It may, however, yield faster code for programs
6184 that do not require the guarantees of these specifications.
6185
6186 @item -fno-math-errno
6187 @opindex fno-math-errno
6188 Do not set ERRNO after calling math functions that are executed
6189 with a single instruction, e.g., sqrt.  A program that relies on
6190 IEEE exceptions for math error handling may want to use this flag
6191 for speed while maintaining IEEE arithmetic compatibility.
6192
6193 This option is not turned on by any @option{-O} option since
6194 it can result in incorrect output for programs which depend on
6195 an exact implementation of IEEE or ISO rules/specifications for
6196 math functions. It may, however, yield faster code for programs
6197 that do not require the guarantees of these specifications.
6198
6199 The default is @option{-fmath-errno}.
6200
6201 On Darwin systems, the math library never sets @code{errno}.  There is
6202 therefore no reason for the compiler to consider the possibility that
6203 it might, and @option{-fno-math-errno} is the default.
6204
6205 @item -funsafe-math-optimizations
6206 @opindex funsafe-math-optimizations
6207
6208 Allow optimizations for floating-point arithmetic that (a) assume
6209 that arguments and results are valid and (b) may violate IEEE or
6210 ANSI standards.  When used at link-time, it may include libraries
6211 or startup files that change the default FPU control word or other
6212 similar optimizations.
6213
6214 This option is not turned on by any @option{-O} option since
6215 it can result in incorrect output for programs which depend on
6216 an exact implementation of IEEE or ISO rules/specifications for
6217 math functions. It may, however, yield faster code for programs
6218 that do not require the guarantees of these specifications.
6219 Enables @option{-freciprocal-math} and @option{-fassociative-math}.
6220
6221 The default is @option{-fno-unsafe-math-optimizations}.
6222
6223 @item -fassociative-math
6224 @opindex -fassociative-math
6225
6226 Allow re-association of operands in series of floating-point operations.
6227 This violates the ISO C and C++ language standard by possibly changing
6228 computation result.  NOTE: re-ordering may change the sign of zero as
6229 well as ignore NaNs and inhibit or create underflow or overflow (and
6230 thus cannot be used on a code which relies on rounding behavior like
6231 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
6232 and thus may not be used when ordered comparisons are required.
6233 This flag doesn't make much sense without @option{-fno-signed-zeros}
6234 or @option{-fno-trapping-math} or with @option{-frounding-math}.
6235
6236 The default is @option{-fno-associative-math}.
6237
6238 @item -freciprocal-math
6239 @opindex -freciprocal-math
6240
6241 Allow the reciprocal of a value to be used instead of dividing by
6242 the value if this enables optimizations.  For example @code{x / y}
6243 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
6244 is subject to common subexpression elimination.  Note that this loses
6245 precision and increases the number of flops operating on the value.
6246
6247 The default is @option{-fno-reciprocal-math}.
6248
6249 @item -ffinite-math-only
6250 @opindex ffinite-math-only
6251 Allow optimizations for floating-point arithmetic that assume
6252 that arguments and results are not NaNs or +-Infs.
6253
6254 This option is not turned on by any @option{-O} option since
6255 it can result in incorrect output for programs which depend on
6256 an exact implementation of IEEE or ISO rules/specifications for
6257 math functions. It may, however, yield faster code for programs
6258 that do not require the guarantees of these specifications.
6259
6260 The default is @option{-fno-finite-math-only}.
6261
6262 @item -fno-signed-zeros
6263 @opindex fno-signed-zeros
6264 Allow optimizations for floating point arithmetic that ignore the
6265 signedness of zero.  IEEE arithmetic specifies the behavior of
6266 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
6267 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
6268 This option implies that the sign of a zero result isn't significant.
6269
6270 The default is @option{-fsigned-zeros}.
6271
6272 @item -fno-trapping-math
6273 @opindex fno-trapping-math
6274 Compile code assuming that floating-point operations cannot generate
6275 user-visible traps.  These traps include division by zero, overflow,
6276 underflow, inexact result and invalid operation.  This option implies
6277 @option{-fno-signaling-nans}.  Setting this option may allow faster
6278 code if one relies on ``non-stop'' IEEE arithmetic, for example.
6279
6280 This option should never be turned on by any @option{-O} option since
6281 it can result in incorrect output for programs which depend on
6282 an exact implementation of IEEE or ISO rules/specifications for
6283 math functions.
6284
6285 The default is @option{-ftrapping-math}.
6286
6287 @item -frounding-math
6288 @opindex frounding-math
6289 Disable transformations and optimizations that assume default floating
6290 point rounding behavior.  This is round-to-zero for all floating point
6291 to integer conversions, and round-to-nearest for all other arithmetic
6292 truncations.  This option should be specified for programs that change
6293 the FP rounding mode dynamically, or that may be executed with a
6294 non-default rounding mode.  This option disables constant folding of
6295 floating point expressions at compile-time (which may be affected by
6296 rounding mode) and arithmetic transformations that are unsafe in the
6297 presence of sign-dependent rounding modes.
6298
6299 The default is @option{-fno-rounding-math}.
6300
6301 This option is experimental and does not currently guarantee to
6302 disable all GCC optimizations that are affected by rounding mode.
6303 Future versions of GCC may provide finer control of this setting
6304 using C99's @code{FENV_ACCESS} pragma.  This command line option
6305 will be used to specify the default state for @code{FENV_ACCESS}.
6306
6307 @item -frtl-abstract-sequences
6308 @opindex frtl-abstract-sequences
6309 It is a size optimization method. This option is to find identical
6310 sequences of code, which can be turned into pseudo-procedures  and
6311 then  replace  all  occurrences with  calls to  the  newly created
6312 subroutine. It is kind of an opposite of @option{-finline-functions}.
6313 This optimization runs at RTL level.
6314
6315 @item -fsignaling-nans
6316 @opindex fsignaling-nans
6317 Compile code assuming that IEEE signaling NaNs may generate user-visible
6318 traps during floating-point operations.  Setting this option disables
6319 optimizations that may change the number of exceptions visible with
6320 signaling NaNs.  This option implies @option{-ftrapping-math}.
6321
6322 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
6323 be defined.
6324
6325 The default is @option{-fno-signaling-nans}.
6326
6327 This option is experimental and does not currently guarantee to
6328 disable all GCC optimizations that affect signaling NaN behavior.
6329
6330 @item -fsingle-precision-constant
6331 @opindex fsingle-precision-constant
6332 Treat floating point constant as single precision constant instead of
6333 implicitly converting it to double precision constant.
6334
6335 @item -fcx-limited-range
6336 @itemx -fno-cx-limited-range
6337 @opindex fcx-limited-range
6338 @opindex fno-cx-limited-range
6339 When enabled, this option states that a range reduction step is not
6340 needed when performing complex division.  The default is
6341 @option{-fno-cx-limited-range}, but is enabled by @option{-ffast-math}.
6342
6343 This option controls the default setting of the ISO C99
6344 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
6345 all languages.
6346
6347 @end table
6348
6349 The following options control optimizations that may improve
6350 performance, but are not enabled by any @option{-O} options.  This
6351 section includes experimental options that may produce broken code.
6352
6353 @table @gcctabopt
6354 @item -fbranch-probabilities
6355 @opindex fbranch-probabilities
6356 After running a program compiled with @option{-fprofile-arcs}
6357 (@pxref{Debugging Options,, Options for Debugging Your Program or
6358 @command{gcc}}), you can compile it a second time using
6359 @option{-fbranch-probabilities}, to improve optimizations based on
6360 the number of times each branch was taken.  When the program
6361 compiled with @option{-fprofile-arcs} exits it saves arc execution
6362 counts to a file called @file{@var{sourcename}.gcda} for each source
6363 file.  The information in this data file is very dependent on the
6364 structure of the generated code, so you must use the same source code
6365 and the same optimization options for both compilations.
6366
6367 With @option{-fbranch-probabilities}, GCC puts a
6368 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
6369 These can be used to improve optimization.  Currently, they are only
6370 used in one place: in @file{reorg.c}, instead of guessing which path a
6371 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
6372 exactly determine which path is taken more often.
6373
6374 @item -fprofile-values
6375 @opindex fprofile-values
6376 If combined with @option{-fprofile-arcs}, it adds code so that some
6377 data about values of expressions in the program is gathered.
6378
6379 With @option{-fbranch-probabilities}, it reads back the data gathered
6380 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
6381 notes to instructions for their later usage in optimizations.
6382
6383 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
6384
6385 @item -fvpt
6386 @opindex fvpt
6387 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
6388 a code to gather information about values of expressions.
6389
6390 With @option{-fbranch-probabilities}, it reads back the data gathered
6391 and actually performs the optimizations based on them.
6392 Currently the optimizations include specialization of division operation
6393 using the knowledge about the value of the denominator.
6394
6395 @item -frename-registers
6396 @opindex frename-registers
6397 Attempt to avoid false dependencies in scheduled code by making use
6398 of registers left over after register allocation.  This optimization
6399 will most benefit processors with lots of registers.  Depending on the
6400 debug information format adopted by the target, however, it can
6401 make debugging impossible, since variables will no longer stay in
6402 a ``home register''.
6403
6404 Enabled by default with @option{-funroll-loops}.
6405
6406 @item -ftracer
6407 @opindex ftracer
6408 Perform tail duplication to enlarge superblock size.  This transformation
6409 simplifies the control flow of the function allowing other optimizations to do
6410 better job.
6411
6412 Enabled with @option{-fprofile-use}.
6413
6414 @item -funroll-loops
6415 @opindex funroll-loops
6416 Unroll loops whose number of iterations can be determined at compile time or
6417 upon entry to the loop.  @option{-funroll-loops} implies
6418 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
6419 It also turns on complete loop peeling (i.e.@: complete removal of loops with
6420 small constant number of iterations).  This option makes code larger, and may
6421 or may not make it run faster.
6422
6423 Enabled with @option{-fprofile-use}.
6424
6425 @item -funroll-all-loops
6426 @opindex funroll-all-loops
6427 Unroll all loops, even if their number of iterations is uncertain when
6428 the loop is entered.  This usually makes programs run more slowly.
6429 @option{-funroll-all-loops} implies the same options as
6430 @option{-funroll-loops}.
6431
6432 @item -fpeel-loops
6433 @opindex fpeel-loops
6434 Peels the loops for that there is enough information that they do not
6435 roll much (from profile feedback).  It also turns on complete loop peeling
6436 (i.e.@: complete removal of loops with small constant number of iterations).
6437
6438 Enabled with @option{-fprofile-use}.
6439
6440 @item -fmove-loop-invariants
6441 @opindex fmove-loop-invariants
6442 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
6443 at level @option{-O1}
6444
6445 @item -funswitch-loops
6446 @opindex funswitch-loops
6447 Move branches with loop invariant conditions out of the loop, with duplicates
6448 of the loop on both branches (modified according to result of the condition).
6449
6450 @item -ffunction-sections
6451 @itemx -fdata-sections
6452 @opindex ffunction-sections
6453 @opindex fdata-sections
6454 Place each function or data item into its own section in the output
6455 file if the target supports arbitrary sections.  The name of the
6456 function or the name of the data item determines the section's name
6457 in the output file.
6458
6459 Use these options on systems where the linker can perform optimizations
6460 to improve locality of reference in the instruction space.  Most systems
6461 using the ELF object format and SPARC processors running Solaris 2 have
6462 linkers with such optimizations.  AIX may have these optimizations in
6463 the future.
6464
6465 Only use these options when there are significant benefits from doing
6466 so.  When you specify these options, the assembler and linker will
6467 create larger object and executable files and will also be slower.
6468 You will not be able to use @code{gprof} on all systems if you
6469 specify this option and you may have problems with debugging if
6470 you specify both this option and @option{-g}.
6471
6472 @item -fbranch-target-load-optimize
6473 @opindex fbranch-target-load-optimize
6474 Perform branch target register load optimization before prologue / epilogue
6475 threading.
6476 The use of target registers can typically be exposed only during reload,
6477 thus hoisting loads out of loops and doing inter-block scheduling needs
6478 a separate optimization pass.
6479
6480 @item -fbranch-target-load-optimize2
6481 @opindex fbranch-target-load-optimize2
6482 Perform branch target register load optimization after prologue / epilogue
6483 threading.
6484
6485 @item -fbtr-bb-exclusive
6486 @opindex fbtr-bb-exclusive
6487 When performing branch target register load optimization, don't reuse
6488 branch target registers in within any basic block.
6489
6490 @item -fstack-protector
6491 Emit extra code to check for buffer overflows, such as stack smashing
6492 attacks.  This is done by adding a guard variable to functions with
6493 vulnerable objects.  This includes functions that call alloca, and
6494 functions with buffers larger than 8 bytes.  The guards are initialized
6495 when a function is entered and then checked when the function exits.
6496 If a guard check fails, an error message is printed and the program exits.
6497
6498 @item -fstack-protector-all
6499 Like @option{-fstack-protector} except that all functions are protected.
6500
6501 @item -fsection-anchors
6502 @opindex fsection-anchors
6503 Try to reduce the number of symbolic address calculations by using
6504 shared ``anchor'' symbols to address nearby objects.  This transformation
6505 can help to reduce the number of GOT entries and GOT accesses on some
6506 targets.
6507
6508 For example, the implementation of the following function @code{foo}:
6509
6510 @smallexample
6511 static int a, b, c;
6512 int foo (void) @{ return a + b + c; @}
6513 @end smallexample
6514
6515 would usually calculate the addresses of all three variables, but if you
6516 compile it with @option{-fsection-anchors}, it will access the variables
6517 from a common anchor point instead.  The effect is similar to the
6518 following pseudocode (which isn't valid C):
6519
6520 @smallexample
6521 int foo (void)
6522 @{
6523   register int *xr = &x;
6524   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
6525 @}
6526 @end smallexample
6527
6528 Not all targets support this option.
6529
6530 @item --param @var{name}=@var{value}
6531 @opindex param
6532 In some places, GCC uses various constants to control the amount of
6533 optimization that is done.  For example, GCC will not inline functions
6534 that contain more that a certain number of instructions.  You can
6535 control some of these constants on the command-line using the
6536 @option{--param} option.
6537
6538 The names of specific parameters, and the meaning of the values, are
6539 tied to the internals of the compiler, and are subject to change
6540 without notice in future releases.
6541
6542 In each case, the @var{value} is an integer.  The allowable choices for
6543 @var{name} are given in the following table:
6544
6545 @table @gcctabopt
6546 @item salias-max-implicit-fields
6547 The maximum number of fields in a variable without direct
6548 structure accesses for which structure aliasing will consider trying
6549 to track each field.  The default is 5
6550
6551 @item salias-max-array-elements
6552 The maximum number of elements an array can have and its elements
6553 still be tracked individually by structure aliasing. The default is 4
6554
6555 @item sra-max-structure-size
6556 The maximum structure size, in bytes, at which the scalar replacement
6557 of aggregates (SRA) optimization will perform block copies.  The
6558 default value, 0, implies that GCC will select the most appropriate
6559 size itself.
6560
6561 @item sra-field-structure-ratio
6562 The threshold ratio (as a percentage) between instantiated fields and
6563 the complete structure size.  We say that if the ratio of the number
6564 of bytes in instantiated fields to the number of bytes in the complete
6565 structure exceeds this parameter, then block copies are not used.  The
6566 default is 75.
6567
6568 @item max-crossjump-edges
6569 The maximum number of incoming edges to consider for crossjumping.
6570 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
6571 the number of edges incoming to each block.  Increasing values mean
6572 more aggressive optimization, making the compile time increase with
6573 probably small improvement in executable size.
6574
6575 @item min-crossjump-insns
6576 The minimum number of instructions which must be matched at the end
6577 of two blocks before crossjumping will be performed on them.  This
6578 value is ignored in the case where all instructions in the block being
6579 crossjumped from are matched.  The default value is 5.
6580
6581 @item max-grow-copy-bb-insns
6582 The maximum code size expansion factor when copying basic blocks
6583 instead of jumping.  The expansion is relative to a jump instruction.
6584 The default value is 8.
6585
6586 @item max-goto-duplication-insns
6587 The maximum number of instructions to duplicate to a block that jumps
6588 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
6589 passes, GCC factors computed gotos early in the compilation process,
6590 and unfactors them as late as possible.  Only computed jumps at the
6591 end of a basic blocks with no more than max-goto-duplication-insns are
6592 unfactored.  The default value is 8.
6593
6594 @item max-delay-slot-insn-search
6595 The maximum number of instructions to consider when looking for an
6596 instruction to fill a delay slot.  If more than this arbitrary number of
6597 instructions is searched, the time savings from filling the delay slot
6598 will be minimal so stop searching.  Increasing values mean more
6599 aggressive optimization, making the compile time increase with probably
6600 small improvement in executable run time.
6601
6602 @item max-delay-slot-live-search
6603 When trying to fill delay slots, the maximum number of instructions to
6604 consider when searching for a block with valid live register
6605 information.  Increasing this arbitrarily chosen value means more
6606 aggressive optimization, increasing the compile time.  This parameter
6607 should be removed when the delay slot code is rewritten to maintain the
6608 control-flow graph.
6609
6610 @item max-gcse-memory
6611 The approximate maximum amount of memory that will be allocated in
6612 order to perform the global common subexpression elimination
6613 optimization.  If more memory than specified is required, the
6614 optimization will not be done.
6615
6616 @item max-gcse-passes
6617 The maximum number of passes of GCSE to run.  The default is 1.
6618
6619 @item max-pending-list-length
6620 The maximum number of pending dependencies scheduling will allow
6621 before flushing the current state and starting over.  Large functions
6622 with few branches or calls can create excessively large lists which
6623 needlessly consume memory and resources.
6624
6625 @item max-inline-insns-single
6626 Several parameters control the tree inliner used in gcc.
6627 This number sets the maximum number of instructions (counted in GCC's
6628 internal representation) in a single function that the tree inliner
6629 will consider for inlining.  This only affects functions declared
6630 inline and methods implemented in a class declaration (C++).
6631 The default value is 450.
6632
6633 @item max-inline-insns-auto
6634 When you use @option{-finline-functions} (included in @option{-O3}),
6635 a lot of functions that would otherwise not be considered for inlining
6636 by the compiler will be investigated.  To those functions, a different
6637 (more restrictive) limit compared to functions declared inline can
6638 be applied.
6639 The default value is 90.
6640
6641 @item large-function-insns
6642 The limit specifying really large functions.  For functions larger than this
6643 limit after inlining inlining is constrained by
6644 @option{--param large-function-growth}.  This parameter is useful primarily
6645 to avoid extreme compilation time caused by non-linear algorithms used by the
6646 backend.
6647 This parameter is ignored when @option{-funit-at-a-time} is not used.
6648 The default value is 2700.
6649
6650 @item large-function-growth
6651 Specifies maximal growth of large function caused by inlining in percents.
6652 This parameter is ignored when @option{-funit-at-a-time} is not used.
6653 The default value is 100 which limits large function growth to 2.0 times
6654 the original size.
6655
6656 @item large-unit-insns
6657 The limit specifying large translation unit.  Growth caused by inlining of
6658 units larger than this limit is limited by @option{--param inline-unit-growth}.
6659 For small units this might be too tight (consider unit consisting of function A
6660 that is inline and B that just calls A three time.  If B is small relative to
6661 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
6662 large units consisting of small inlininable functions however the overall unit
6663 growth limit is needed to avoid exponential explosion of code size.  Thus for
6664 smaller units, the size is increased to @option{--param large-unit-insns}
6665 before applying @option{--param inline-unit-growth}.  The default is 10000
6666
6667 @item inline-unit-growth
6668 Specifies maximal overall growth of the compilation unit caused by inlining.
6669 This parameter is ignored when @option{-funit-at-a-time} is not used.
6670 The default value is 30 which limits unit growth to 1.3 times the original
6671 size.
6672
6673 @item large-stack-frame
6674 The limit specifying large stack frames.  While inlining the algorithm is trying
6675 to not grow past this limit too much.  Default value is 256 bytes.
6676
6677 @item large-stack-frame-growth
6678 Specifies maximal growth of large stack frames caused by inlining in percents.
6679 The default value is 1000 which limits large stack frame growth to 11 times
6680 the original size.
6681
6682 @item max-inline-insns-recursive
6683 @itemx max-inline-insns-recursive-auto
6684 Specifies maximum number of instructions out-of-line copy of self recursive inline
6685 function can grow into by performing recursive inlining.
6686
6687 For functions declared inline @option{--param max-inline-insns-recursive} is
6688 taken into account.  For function not declared inline, recursive inlining
6689 happens only when @option{-finline-functions} (included in @option{-O3}) is
6690 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
6691 default value is 450.
6692
6693 @item max-inline-recursive-depth
6694 @itemx max-inline-recursive-depth-auto
6695 Specifies maximum recursion depth used by the recursive inlining.
6696
6697 For functions declared inline @option{--param max-inline-recursive-depth} is
6698 taken into account.  For function not declared inline, recursive inlining
6699 happens only when @option{-finline-functions} (included in @option{-O3}) is
6700 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
6701 default value is 450.
6702
6703 @item min-inline-recursive-probability
6704 Recursive inlining is profitable only for function having deep recursion
6705 in average and can hurt for function having little recursion depth by
6706 increasing the prologue size or complexity of function body to other
6707 optimizers.
6708
6709 When profile feedback is available (see @option{-fprofile-generate}) the actual
6710 recursion depth can be guessed from probability that function will recurse via
6711 given call expression.  This parameter limits inlining only to call expression
6712 whose probability exceeds given threshold (in percents).  The default value is
6713 10.
6714
6715 @item inline-call-cost
6716 Specify cost of call instruction relative to simple arithmetics operations
6717 (having cost of 1).  Increasing this cost disqualifies inlining of non-leaf
6718 functions and at the same time increases size of leaf function that is believed to
6719 reduce function size by being inlined.  In effect it increases amount of
6720 inlining for code having large abstraction penalty (many functions that just
6721 pass the arguments to other functions) and decrease inlining for code with low
6722 abstraction penalty.  The default value is 16.
6723
6724 @item min-vect-loop-bound
6725 The minimum number of iterations under which a loop will not get vectorized
6726 when @option{-ftree-vectorize} is used.  The number of iterations after
6727 vectorization needs to be greater than the value specified by this option
6728 to allow vectorization.  The default value is 0.
6729
6730 @item max-unrolled-insns
6731 The maximum number of instructions that a loop should have if that loop
6732 is unrolled, and if the loop is unrolled, it determines how many times
6733 the loop code is unrolled.
6734
6735 @item max-average-unrolled-insns
6736 The maximum number of instructions biased by probabilities of their execution
6737 that a loop should have if that loop is unrolled, and if the loop is unrolled,
6738 it determines how many times the loop code is unrolled.
6739
6740 @item max-unroll-times
6741 The maximum number of unrollings of a single loop.
6742
6743 @item max-peeled-insns
6744 The maximum number of instructions that a loop should have if that loop
6745 is peeled, and if the loop is peeled, it determines how many times
6746 the loop code is peeled.
6747
6748 @item max-peel-times
6749 The maximum number of peelings of a single loop.
6750
6751 @item max-completely-peeled-insns
6752 The maximum number of insns of a completely peeled loop.
6753
6754 @item max-completely-peel-times
6755 The maximum number of iterations of a loop to be suitable for complete peeling.
6756
6757 @item max-unswitch-insns
6758 The maximum number of insns of an unswitched loop.
6759
6760 @item max-unswitch-level
6761 The maximum number of branches unswitched in a single loop.
6762
6763 @item lim-expensive
6764 The minimum cost of an expensive expression in the loop invariant motion.
6765
6766 @item iv-consider-all-candidates-bound
6767 Bound on number of candidates for induction variables below that
6768 all candidates are considered for each use in induction variable
6769 optimizations.  Only the most relevant candidates are considered
6770 if there are more candidates, to avoid quadratic time complexity.
6771
6772 @item iv-max-considered-uses
6773 The induction variable optimizations give up on loops that contain more
6774 induction variable uses.
6775
6776 @item iv-always-prune-cand-set-bound
6777 If number of candidates in the set is smaller than this value,
6778 we always try to remove unnecessary ivs from the set during its
6779 optimization when a new iv is added to the set.
6780
6781 @item scev-max-expr-size
6782 Bound on size of expressions used in the scalar evolutions analyzer.
6783 Large expressions slow the analyzer.
6784
6785 @item omega-max-vars
6786 The maximum number of variables in an Omega constraint system.
6787 The default value is 128.
6788
6789 @item omega-max-geqs
6790 The maximum number of inequalities in an Omega constraint system.
6791 The default value is 256.
6792
6793 @item omega-max-eqs
6794 The maximum number of equalities in an Omega constraint system.
6795 The default value is 128.
6796
6797 @item omega-max-wild-cards
6798 The maximum number of wildcard variables that the Omega solver will
6799 be able to insert.  The default value is 18.
6800
6801 @item omega-hash-table-size
6802 The size of the hash table in the Omega solver.  The default value is
6803 550.
6804
6805 @item omega-max-keys
6806 The maximal number of keys used by the Omega solver.  The default
6807 value is 500.
6808
6809 @item omega-eliminate-redundant-constraints
6810 When set to 1, use expensive methods to eliminate all redundant
6811 constraints.  The default value is 0.
6812
6813 @item vect-max-version-for-alignment-checks
6814 The maximum number of runtime checks that can be performed when
6815 doing loop versioning for alignment in the vectorizer.  See option
6816 ftree-vect-loop-version for more information.
6817
6818 @item vect-max-version-for-alias-checks
6819 The maximum number of runtime checks that can be performed when
6820 doing loop versioning for alias in the vectorizer.  See option
6821 ftree-vect-loop-version for more information.
6822
6823 @item max-iterations-to-track
6824
6825 The maximum number of iterations of a loop the brute force algorithm
6826 for analysis of # of iterations of the loop tries to evaluate.
6827
6828 @item hot-bb-count-fraction
6829 Select fraction of the maximal count of repetitions of basic block in program
6830 given basic block needs to have to be considered hot.
6831
6832 @item hot-bb-frequency-fraction
6833 Select fraction of the maximal frequency of executions of basic block in
6834 function given basic block needs to have to be considered hot
6835
6836 @item max-predicted-iterations
6837 The maximum number of loop iterations we predict statically.  This is useful
6838 in cases where function contain single loop with known bound and other loop
6839 with unknown.  We predict the known number of iterations correctly, while
6840 the unknown number of iterations average to roughly 10.  This means that the
6841 loop without bounds would appear artificially cold relative to the other one.
6842
6843 @item tracer-dynamic-coverage
6844 @itemx tracer-dynamic-coverage-feedback
6845
6846 This value is used to limit superblock formation once the given percentage of
6847 executed instructions is covered.  This limits unnecessary code size
6848 expansion.
6849
6850 The @option{tracer-dynamic-coverage-feedback} is used only when profile
6851 feedback is available.  The real profiles (as opposed to statically estimated
6852 ones) are much less balanced allowing the threshold to be larger value.
6853
6854 @item tracer-max-code-growth
6855 Stop tail duplication once code growth has reached given percentage.  This is
6856 rather hokey argument, as most of the duplicates will be eliminated later in
6857 cross jumping, so it may be set to much higher values than is the desired code
6858 growth.
6859
6860 @item tracer-min-branch-ratio
6861
6862 Stop reverse growth when the reverse probability of best edge is less than this
6863 threshold (in percent).
6864
6865 @item tracer-min-branch-ratio
6866 @itemx tracer-min-branch-ratio-feedback
6867
6868 Stop forward growth if the best edge do have probability lower than this
6869 threshold.
6870
6871 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
6872 compilation for profile feedback and one for compilation without.  The value
6873 for compilation with profile feedback needs to be more conservative (higher) in
6874 order to make tracer effective.
6875
6876 @item max-cse-path-length
6877
6878 Maximum number of basic blocks on path that cse considers.  The default is 10.
6879
6880 @item max-cse-insns
6881 The maximum instructions CSE process before flushing. The default is 1000.
6882
6883 @item max-aliased-vops
6884
6885 Maximum number of virtual operands per function allowed to represent
6886 aliases before triggering the alias partitioning heuristic.  Alias
6887 partitioning reduces compile times and memory consumption needed for
6888 aliasing at the expense of precision loss in alias information.  The
6889 default value for this parameter is 100 for -O1, 500 for -O2 and 1000
6890 for -O3.
6891
6892 Notice that if a function contains more memory statements than the
6893 value of this parameter, it is not really possible to achieve this
6894 reduction.  In this case, the compiler will use the number of memory
6895 statements as the value for @option{max-aliased-vops}.
6896
6897 @item avg-aliased-vops
6898
6899 Average number of virtual operands per statement allowed to represent
6900 aliases before triggering the alias partitioning heuristic.  This
6901 works in conjunction with @option{max-aliased-vops}.  If a function
6902 contains more than @option{max-aliased-vops} virtual operators, then
6903 memory symbols will be grouped into memory partitions until either the
6904 total number of virtual operators is below @option{max-aliased-vops}
6905 or the average number of virtual operators per memory statement is
6906 below @option{avg-aliased-vops}.  The default value for this parameter
6907 is 1 for -O1 and -O2, and 3 for -O3.
6908
6909 @item ggc-min-expand
6910
6911 GCC uses a garbage collector to manage its own memory allocation.  This
6912 parameter specifies the minimum percentage by which the garbage
6913 collector's heap should be allowed to expand between collections.
6914 Tuning this may improve compilation speed; it has no effect on code
6915 generation.
6916
6917 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
6918 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
6919 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
6920 GCC is not able to calculate RAM on a particular platform, the lower
6921 bound of 30% is used.  Setting this parameter and
6922 @option{ggc-min-heapsize} to zero causes a full collection to occur at
6923 every opportunity.  This is extremely slow, but can be useful for
6924 debugging.
6925
6926 @item ggc-min-heapsize
6927
6928 Minimum size of the garbage collector's heap before it begins bothering
6929 to collect garbage.  The first collection occurs after the heap expands
6930 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
6931 tuning this may improve compilation speed, and has no effect on code
6932 generation.
6933
6934 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
6935 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
6936 with a lower bound of 4096 (four megabytes) and an upper bound of
6937 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
6938 particular platform, the lower bound is used.  Setting this parameter
6939 very large effectively disables garbage collection.  Setting this
6940 parameter and @option{ggc-min-expand} to zero causes a full collection
6941 to occur at every opportunity.
6942
6943 @item max-reload-search-insns
6944 The maximum number of instruction reload should look backward for equivalent
6945 register.  Increasing values mean more aggressive optimization, making the
6946 compile time increase with probably slightly better performance.  The default
6947 value is 100.
6948
6949 @item max-cselib-memory-locations
6950 The maximum number of memory locations cselib should take into account.
6951 Increasing values mean more aggressive optimization, making the compile time
6952 increase with probably slightly better performance.  The default value is 500.
6953
6954 @item max-flow-memory-locations
6955 Similar as @option{max-cselib-memory-locations} but for dataflow liveness.
6956 The default value is 100.
6957
6958 @item reorder-blocks-duplicate
6959 @itemx reorder-blocks-duplicate-feedback
6960
6961 Used by basic block reordering pass to decide whether to use unconditional
6962 branch or duplicate the code on its destination.  Code is duplicated when its
6963 estimated size is smaller than this value multiplied by the estimated size of
6964 unconditional jump in the hot spots of the program.
6965
6966 The @option{reorder-block-duplicate-feedback} is used only when profile
6967 feedback is available and may be set to higher values than
6968 @option{reorder-block-duplicate} since information about the hot spots is more
6969 accurate.
6970
6971 @item max-sched-ready-insns
6972 The maximum number of instructions ready to be issued the scheduler should
6973 consider at any given time during the first scheduling pass.  Increasing
6974 values mean more thorough searches, making the compilation time increase
6975 with probably little benefit.  The default value is 100.
6976
6977 @item max-sched-region-blocks
6978 The maximum number of blocks in a region to be considered for
6979 interblock scheduling.  The default value is 10.
6980
6981 @item max-sched-region-insns
6982 The maximum number of insns in a region to be considered for
6983 interblock scheduling.  The default value is 100.
6984
6985 @item min-spec-prob
6986 The minimum probability (in percents) of reaching a source block
6987 for interblock speculative scheduling.  The default value is 40.
6988
6989 @item max-sched-extend-regions-iters
6990 The maximum number of iterations through CFG to extend regions.
6991 0 - disable region extension,
6992 N - do at most N iterations.
6993 The default value is 0.
6994
6995 @item max-sched-insn-conflict-delay
6996 The maximum conflict delay for an insn to be considered for speculative motion.
6997 The default value is 3.
6998
6999 @item sched-spec-prob-cutoff
7000 The minimal probability of speculation success (in percents), so that
7001 speculative insn will be scheduled.
7002 The default value is 40.
7003
7004 @item max-last-value-rtl
7005
7006 The maximum size measured as number of RTLs that can be recorded in an expression
7007 in combiner for a pseudo register as last known value of that register.  The default
7008 is 10000.
7009
7010 @item integer-share-limit
7011 Small integer constants can use a shared data structure, reducing the
7012 compiler's memory usage and increasing its speed.  This sets the maximum
7013 value of a shared integer constant's.  The default value is 256.
7014
7015 @item min-virtual-mappings
7016 Specifies the minimum number of virtual mappings in the incremental
7017 SSA updater that should be registered to trigger the virtual mappings
7018 heuristic defined by virtual-mappings-ratio.  The default value is
7019 100.
7020
7021 @item virtual-mappings-ratio
7022 If the number of virtual mappings is virtual-mappings-ratio bigger
7023 than the number of virtual symbols to be updated, then the incremental
7024 SSA updater switches to a full update for those symbols.  The default
7025 ratio is 3.
7026
7027 @item ssp-buffer-size
7028 The minimum size of buffers (i.e. arrays) that will receive stack smashing
7029 protection when @option{-fstack-protection} is used.
7030
7031 @item max-jump-thread-duplication-stmts
7032 Maximum number of statements allowed in a block that needs to be
7033 duplicated when threading jumps.
7034
7035 @item max-fields-for-field-sensitive
7036 Maximum number of fields in a structure we will treat in
7037 a field sensitive manner during pointer analysis.
7038
7039 @item prefetch-latency
7040 Estimate on average number of instructions that are executed before
7041 prefetch finishes.  The distance we prefetch ahead is proportional
7042 to this constant.  Increasing this number may also lead to less
7043 streams being prefetched (see @option{simultaneous-prefetches}).
7044
7045 @item simultaneous-prefetches
7046 Maximum number of prefetches that can run at the same time.
7047
7048 @item l1-cache-line-size
7049 The size of cache line in L1 cache, in bytes.
7050
7051 @item l1-cache-size
7052 The size of L1 cache, in kilobytes.
7053
7054 @item l2-cache-size
7055 The size of L2 cache, in kilobytes.
7056
7057 @item use-canonical-types
7058 Whether the compiler should use the ``canonical'' type system.  By
7059 default, this should always be 1, which uses a more efficient internal
7060 mechanism for comparing types in C++ and Objective-C++.  However, if
7061 bugs in the canonical type system are causing compilation failures,
7062 set this value to 0 to disable canonical types.
7063
7064 @end table
7065 @end table
7066
7067 @node Preprocessor Options
7068 @section Options Controlling the Preprocessor
7069 @cindex preprocessor options
7070 @cindex options, preprocessor
7071
7072 These options control the C preprocessor, which is run on each C source
7073 file before actual compilation.
7074
7075 If you use the @option{-E} option, nothing is done except preprocessing.
7076 Some of these options make sense only together with @option{-E} because
7077 they cause the preprocessor output to be unsuitable for actual
7078 compilation.
7079
7080 @table @gcctabopt
7081 @opindex Wp
7082 You can use @option{-Wp,@var{option}} to bypass the compiler driver
7083 and pass @var{option} directly through to the preprocessor.  If
7084 @var{option} contains commas, it is split into multiple options at the
7085 commas.  However, many options are modified, translated or interpreted
7086 by the compiler driver before being passed to the preprocessor, and
7087 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
7088 interface is undocumented and subject to change, so whenever possible
7089 you should avoid using @option{-Wp} and let the driver handle the
7090 options instead.
7091
7092 @item -Xpreprocessor @var{option}
7093 @opindex preprocessor
7094 Pass @var{option} as an option to the preprocessor.  You can use this to
7095 supply system-specific preprocessor options which GCC does not know how to
7096 recognize.
7097
7098 If you want to pass an option that takes an argument, you must use
7099 @option{-Xpreprocessor} twice, once for the option and once for the argument.
7100 @end table
7101
7102 @include cppopts.texi
7103
7104 @node Assembler Options
7105 @section Passing Options to the Assembler
7106
7107 @c prevent bad page break with this line
7108 You can pass options to the assembler.
7109
7110 @table @gcctabopt
7111 @item -Wa,@var{option}
7112 @opindex Wa
7113 Pass @var{option} as an option to the assembler.  If @var{option}
7114 contains commas, it is split into multiple options at the commas.
7115
7116 @item -Xassembler @var{option}
7117 @opindex Xassembler
7118 Pass @var{option} as an option to the assembler.  You can use this to
7119 supply system-specific assembler options which GCC does not know how to
7120 recognize.
7121
7122 If you want to pass an option that takes an argument, you must use
7123 @option{-Xassembler} twice, once for the option and once for the argument.
7124
7125 @end table
7126
7127 @node Link Options
7128 @section Options for Linking
7129 @cindex link options
7130 @cindex options, linking
7131
7132 These options come into play when the compiler links object files into
7133 an executable output file.  They are meaningless if the compiler is
7134 not doing a link step.
7135
7136 @table @gcctabopt
7137 @cindex file names
7138 @item @var{object-file-name}
7139 A file name that does not end in a special recognized suffix is
7140 considered to name an object file or library.  (Object files are
7141 distinguished from libraries by the linker according to the file
7142 contents.)  If linking is done, these object files are used as input
7143 to the linker.
7144
7145 @item -c
7146 @itemx -S
7147 @itemx -E
7148 @opindex c
7149 @opindex S
7150 @opindex E
7151 If any of these options is used, then the linker is not run, and
7152 object file names should not be used as arguments.  @xref{Overall
7153 Options}.
7154
7155 @cindex Libraries
7156 @item -l@var{library}
7157 @itemx -l @var{library}
7158 @opindex l
7159 Search the library named @var{library} when linking.  (The second
7160 alternative with the library as a separate argument is only for
7161 POSIX compliance and is not recommended.)
7162
7163 It makes a difference where in the command you write this option; the
7164 linker searches and processes libraries and object files in the order they
7165 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
7166 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
7167 to functions in @samp{z}, those functions may not be loaded.
7168
7169 The linker searches a standard list of directories for the library,
7170 which is actually a file named @file{lib@var{library}.a}.  The linker
7171 then uses this file as if it had been specified precisely by name.
7172
7173 The directories searched include several standard system directories
7174 plus any that you specify with @option{-L}.
7175
7176 Normally the files found this way are library files---archive files
7177 whose members are object files.  The linker handles an archive file by
7178 scanning through it for members which define symbols that have so far
7179 been referenced but not defined.  But if the file that is found is an
7180 ordinary object file, it is linked in the usual fashion.  The only
7181 difference between using an @option{-l} option and specifying a file name
7182 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
7183 and searches several directories.
7184
7185 @item -lobjc
7186 @opindex lobjc
7187 You need this special case of the @option{-l} option in order to
7188 link an Objective-C or Objective-C++ program.
7189
7190 @item -nostartfiles
7191 @opindex nostartfiles
7192 Do not use the standard system startup files when linking.
7193 The standard system libraries are used normally, unless @option{-nostdlib}
7194 or @option{-nodefaultlibs} is used.
7195
7196 @item -nodefaultlibs
7197 @opindex nodefaultlibs
7198 Do not use the standard system libraries when linking.
7199 Only the libraries you specify will be passed to the linker.
7200 The standard startup files are used normally, unless @option{-nostartfiles}
7201 is used.  The compiler may generate calls to @code{memcmp},
7202 @code{memset}, @code{memcpy} and @code{memmove}.
7203 These entries are usually resolved by entries in
7204 libc.  These entry points should be supplied through some other
7205 mechanism when this option is specified.
7206
7207 @item -nostdlib
7208 @opindex nostdlib
7209 Do not use the standard system startup files or libraries when linking.
7210 No startup files and only the libraries you specify will be passed to
7211 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
7212 @code{memcpy} and @code{memmove}.
7213 These entries are usually resolved by entries in
7214 libc.  These entry points should be supplied through some other
7215 mechanism when this option is specified.
7216
7217 @cindex @option{-lgcc}, use with @option{-nostdlib}
7218 @cindex @option{-nostdlib} and unresolved references
7219 @cindex unresolved references and @option{-nostdlib}
7220 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
7221 @cindex @option{-nodefaultlibs} and unresolved references
7222 @cindex unresolved references and @option{-nodefaultlibs}
7223 One of the standard libraries bypassed by @option{-nostdlib} and
7224 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
7225 that GCC uses to overcome shortcomings of particular machines, or special
7226 needs for some languages.
7227 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
7228 Collection (GCC) Internals},
7229 for more discussion of @file{libgcc.a}.)
7230 In most cases, you need @file{libgcc.a} even when you want to avoid
7231 other standard libraries.  In other words, when you specify @option{-nostdlib}
7232 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
7233 This ensures that you have no unresolved references to internal GCC
7234 library subroutines.  (For example, @samp{__main}, used to ensure C++
7235 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
7236 GNU Compiler Collection (GCC) Internals}.)
7237
7238 @item -pie
7239 @opindex pie
7240 Produce a position independent executable on targets which support it.
7241 For predictable results, you must also specify the same set of options
7242 that were used to generate code (@option{-fpie}, @option{-fPIE},
7243 or model suboptions) when you specify this option.
7244
7245 @item -rdynamic
7246 @opindex rdynamic
7247 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
7248 that support it. This instructs the linker to add all symbols, not
7249 only used ones, to the dynamic symbol table. This option is needed
7250 for some uses of @code{dlopen} or to allow obtaining backtraces
7251 from within a program.
7252
7253 @item -s
7254 @opindex s
7255 Remove all symbol table and relocation information from the executable.
7256
7257 @item -static
7258 @opindex static
7259 On systems that support dynamic linking, this prevents linking with the shared
7260 libraries.  On other systems, this option has no effect.
7261
7262 @item -shared
7263 @opindex shared
7264 Produce a shared object which can then be linked with other objects to
7265 form an executable.  Not all systems support this option.  For predictable
7266 results, you must also specify the same set of options that were used to
7267 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
7268 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
7269 needs to build supplementary stub code for constructors to work.  On
7270 multi-libbed systems, @samp{gcc -shared} must select the correct support
7271 libraries to link against.  Failing to supply the correct flags may lead
7272 to subtle defects.  Supplying them in cases where they are not necessary
7273 is innocuous.}
7274
7275 @item -shared-libgcc
7276 @itemx -static-libgcc
7277 @opindex shared-libgcc
7278 @opindex static-libgcc
7279 On systems that provide @file{libgcc} as a shared library, these options
7280 force the use of either the shared or static version respectively.
7281 If no shared version of @file{libgcc} was built when the compiler was
7282 configured, these options have no effect.
7283
7284 There are several situations in which an application should use the
7285 shared @file{libgcc} instead of the static version.  The most common
7286 of these is when the application wishes to throw and catch exceptions
7287 across different shared libraries.  In that case, each of the libraries
7288 as well as the application itself should use the shared @file{libgcc}.
7289
7290 Therefore, the G++ and GCJ drivers automatically add
7291 @option{-shared-libgcc} whenever you build a shared library or a main
7292 executable, because C++ and Java programs typically use exceptions, so
7293 this is the right thing to do.
7294
7295 If, instead, you use the GCC driver to create shared libraries, you may
7296 find that they will not always be linked with the shared @file{libgcc}.
7297 If GCC finds, at its configuration time, that you have a non-GNU linker
7298 or a GNU linker that does not support option @option{--eh-frame-hdr},
7299 it will link the shared version of @file{libgcc} into shared libraries
7300 by default.  Otherwise, it will take advantage of the linker and optimize
7301 away the linking with the shared version of @file{libgcc}, linking with
7302 the static version of libgcc by default.  This allows exceptions to
7303 propagate through such shared libraries, without incurring relocation
7304 costs at library load time.
7305
7306 However, if a library or main executable is supposed to throw or catch
7307 exceptions, you must link it using the G++ or GCJ driver, as appropriate
7308 for the languages used in the program, or using the option
7309 @option{-shared-libgcc}, such that it is linked with the shared
7310 @file{libgcc}.
7311
7312 @item -symbolic
7313 @opindex symbolic
7314 Bind references to global symbols when building a shared object.  Warn
7315 about any unresolved references (unless overridden by the link editor
7316 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
7317 this option.
7318
7319 @item -Xlinker @var{option}
7320 @opindex Xlinker
7321 Pass @var{option} as an option to the linker.  You can use this to
7322 supply system-specific linker options which GCC does not know how to
7323 recognize.
7324
7325 If you want to pass an option that takes an argument, you must use
7326 @option{-Xlinker} twice, once for the option and once for the argument.
7327 For example, to pass @option{-assert definitions}, you must write
7328 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
7329 @option{-Xlinker "-assert definitions"}, because this passes the entire
7330 string as a single argument, which is not what the linker expects.
7331
7332 @item -Wl,@var{option}
7333 @opindex Wl
7334 Pass @var{option} as an option to the linker.  If @var{option} contains
7335 commas, it is split into multiple options at the commas.
7336
7337 @item -u @var{symbol}
7338 @opindex u
7339 Pretend the symbol @var{symbol} is undefined, to force linking of
7340 library modules to define it.  You can use @option{-u} multiple times with
7341 different symbols to force loading of additional library modules.
7342 @end table
7343
7344 @node Directory Options
7345 @section Options for Directory Search
7346 @cindex directory options
7347 @cindex options, directory search
7348 @cindex search path
7349
7350 These options specify directories to search for header files, for
7351 libraries and for parts of the compiler:
7352
7353 @table @gcctabopt
7354 @item -I@var{dir}
7355 @opindex I
7356 Add the directory @var{dir} to the head of the list of directories to be
7357 searched for header files.  This can be used to override a system header
7358 file, substituting your own version, since these directories are
7359 searched before the system header file directories.  However, you should
7360 not use this option to add directories that contain vendor-supplied
7361 system header files (use @option{-isystem} for that).  If you use more than
7362 one @option{-I} option, the directories are scanned in left-to-right
7363 order; the standard system directories come after.
7364
7365 If a standard system include directory, or a directory specified with
7366 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
7367 option will be ignored.  The directory will still be searched but as a
7368 system directory at its normal position in the system include chain.
7369 This is to ensure that GCC's procedure to fix buggy system headers and
7370 the ordering for the include_next directive are not inadvertently changed.
7371 If you really need to change the search order for system directories,
7372 use the @option{-nostdinc} and/or @option{-isystem} options.
7373
7374 @item -iquote@var{dir}
7375 @opindex iquote
7376 Add the directory @var{dir} to the head of the list of directories to
7377 be searched for header files only for the case of @samp{#include
7378 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
7379 otherwise just like @option{-I}.
7380
7381 @item -L@var{dir}
7382 @opindex L
7383 Add directory @var{dir} to the list of directories to be searched
7384 for @option{-l}.
7385
7386 @item -B@var{prefix}
7387 @opindex B
7388 This option specifies where to find the executables, libraries,
7389 include files, and data files of the compiler itself.
7390
7391 The compiler driver program runs one or more of the subprograms
7392 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
7393 @var{prefix} as a prefix for each program it tries to run, both with and
7394 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
7395
7396 For each subprogram to be run, the compiler driver first tries the
7397 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
7398 was not specified, the driver tries two standard prefixes, which are
7399 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
7400 those results in a file name that is found, the unmodified program
7401 name is searched for using the directories specified in your
7402 @env{PATH} environment variable.
7403
7404 The compiler will check to see if the path provided by the @option{-B}
7405 refers to a directory, and if necessary it will add a directory
7406 separator character at the end of the path.
7407
7408 @option{-B} prefixes that effectively specify directory names also apply
7409 to libraries in the linker, because the compiler translates these
7410 options into @option{-L} options for the linker.  They also apply to
7411 includes files in the preprocessor, because the compiler translates these
7412 options into @option{-isystem} options for the preprocessor.  In this case,
7413 the compiler appends @samp{include} to the prefix.
7414
7415 The run-time support file @file{libgcc.a} can also be searched for using
7416 the @option{-B} prefix, if needed.  If it is not found there, the two
7417 standard prefixes above are tried, and that is all.  The file is left
7418 out of the link if it is not found by those means.
7419
7420 Another way to specify a prefix much like the @option{-B} prefix is to use
7421 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
7422 Variables}.
7423
7424 As a special kludge, if the path provided by @option{-B} is
7425 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
7426 9, then it will be replaced by @file{[dir/]include}.  This is to help
7427 with boot-strapping the compiler.
7428
7429 @item -specs=@var{file}
7430 @opindex specs
7431 Process @var{file} after the compiler reads in the standard @file{specs}
7432 file, in order to override the defaults that the @file{gcc} driver
7433 program uses when determining what switches to pass to @file{cc1},
7434 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
7435 @option{-specs=@var{file}} can be specified on the command line, and they
7436 are processed in order, from left to right.
7437
7438 @item --sysroot=@var{dir}
7439 @opindex sysroot
7440 Use @var{dir} as the logical root directory for headers and libraries.
7441 For example, if the compiler would normally search for headers in
7442 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
7443 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
7444
7445 If you use both this option and the @option{-isysroot} option, then
7446 the @option{--sysroot} option will apply to libraries, but the
7447 @option{-isysroot} option will apply to header files.
7448
7449 The GNU linker (beginning with version 2.16) has the necessary support
7450 for this option.  If your linker does not support this option, the
7451 header file aspect of @option{--sysroot} will still work, but the
7452 library aspect will not.
7453
7454 @item -I-
7455 @opindex I-
7456 This option has been deprecated.  Please use @option{-iquote} instead for
7457 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
7458 Any directories you specify with @option{-I} options before the @option{-I-}
7459 option are searched only for the case of @samp{#include "@var{file}"};
7460 they are not searched for @samp{#include <@var{file}>}.
7461
7462 If additional directories are specified with @option{-I} options after
7463 the @option{-I-}, these directories are searched for all @samp{#include}
7464 directives.  (Ordinarily @emph{all} @option{-I} directories are used
7465 this way.)
7466
7467 In addition, the @option{-I-} option inhibits the use of the current
7468 directory (where the current input file came from) as the first search
7469 directory for @samp{#include "@var{file}"}.  There is no way to
7470 override this effect of @option{-I-}.  With @option{-I.} you can specify
7471 searching the directory which was current when the compiler was
7472 invoked.  That is not exactly the same as what the preprocessor does
7473 by default, but it is often satisfactory.
7474
7475 @option{-I-} does not inhibit the use of the standard system directories
7476 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
7477 independent.
7478 @end table
7479
7480 @c man end
7481
7482 @node Spec Files
7483 @section Specifying subprocesses and the switches to pass to them
7484 @cindex Spec Files
7485
7486 @command{gcc} is a driver program.  It performs its job by invoking a
7487 sequence of other programs to do the work of compiling, assembling and
7488 linking.  GCC interprets its command-line parameters and uses these to
7489 deduce which programs it should invoke, and which command-line options
7490 it ought to place on their command lines.  This behavior is controlled
7491 by @dfn{spec strings}.  In most cases there is one spec string for each
7492 program that GCC can invoke, but a few programs have multiple spec
7493 strings to control their behavior.  The spec strings built into GCC can
7494 be overridden by using the @option{-specs=} command-line switch to specify
7495 a spec file.
7496
7497 @dfn{Spec files} are plaintext files that are used to construct spec
7498 strings.  They consist of a sequence of directives separated by blank
7499 lines.  The type of directive is determined by the first non-whitespace
7500 character on the line and it can be one of the following:
7501
7502 @table @code
7503 @item %@var{command}
7504 Issues a @var{command} to the spec file processor.  The commands that can
7505 appear here are:
7506
7507 @table @code
7508 @item %include <@var{file}>
7509 @cindex %include
7510 Search for @var{file} and insert its text at the current point in the
7511 specs file.
7512
7513 @item %include_noerr <@var{file}>
7514 @cindex %include_noerr
7515 Just like @samp{%include}, but do not generate an error message if the include
7516 file cannot be found.
7517
7518 @item %rename @var{old_name} @var{new_name}
7519 @cindex %rename
7520 Rename the spec string @var{old_name} to @var{new_name}.
7521
7522 @end table
7523
7524 @item *[@var{spec_name}]:
7525 This tells the compiler to create, override or delete the named spec
7526 string.  All lines after this directive up to the next directive or
7527 blank line are considered to be the text for the spec string.  If this
7528 results in an empty string then the spec will be deleted.  (Or, if the
7529 spec did not exist, then nothing will happened.)  Otherwise, if the spec
7530 does not currently exist a new spec will be created.  If the spec does
7531 exist then its contents will be overridden by the text of this
7532 directive, unless the first character of that text is the @samp{+}
7533 character, in which case the text will be appended to the spec.
7534
7535 @item [@var{suffix}]:
7536 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
7537 and up to the next directive or blank line are considered to make up the
7538 spec string for the indicated suffix.  When the compiler encounters an
7539 input file with the named suffix, it will processes the spec string in
7540 order to work out how to compile that file.  For example:
7541
7542 @smallexample
7543 .ZZ:
7544 z-compile -input %i
7545 @end smallexample
7546
7547 This says that any input file whose name ends in @samp{.ZZ} should be
7548 passed to the program @samp{z-compile}, which should be invoked with the
7549 command-line switch @option{-input} and with the result of performing the
7550 @samp{%i} substitution.  (See below.)
7551
7552 As an alternative to providing a spec string, the text that follows a
7553 suffix directive can be one of the following:
7554
7555 @table @code
7556 @item @@@var{language}
7557 This says that the suffix is an alias for a known @var{language}.  This is
7558 similar to using the @option{-x} command-line switch to GCC to specify a
7559 language explicitly.  For example:
7560
7561 @smallexample
7562 .ZZ:
7563 @@c++
7564 @end smallexample
7565
7566 Says that .ZZ files are, in fact, C++ source files.
7567
7568 @item #@var{name}
7569 This causes an error messages saying:
7570
7571 @smallexample
7572 @var{name} compiler not installed on this system.
7573 @end smallexample
7574 @end table
7575
7576 GCC already has an extensive list of suffixes built into it.
7577 This directive will add an entry to the end of the list of suffixes, but
7578 since the list is searched from the end backwards, it is effectively
7579 possible to override earlier entries using this technique.
7580
7581 @end table
7582
7583 GCC has the following spec strings built into it.  Spec files can
7584 override these strings or create their own.  Note that individual
7585 targets can also add their own spec strings to this list.
7586
7587 @smallexample
7588 asm          Options to pass to the assembler
7589 asm_final    Options to pass to the assembler post-processor
7590 cpp          Options to pass to the C preprocessor
7591 cc1          Options to pass to the C compiler
7592 cc1plus      Options to pass to the C++ compiler
7593 endfile      Object files to include at the end of the link
7594 link         Options to pass to the linker
7595 lib          Libraries to include on the command line to the linker
7596 libgcc       Decides which GCC support library to pass to the linker
7597 linker       Sets the name of the linker
7598 predefines   Defines to be passed to the C preprocessor
7599 signed_char  Defines to pass to CPP to say whether @code{char} is signed
7600              by default
7601 startfile    Object files to include at the start of the link
7602 @end smallexample
7603
7604 Here is a small example of a spec file:
7605
7606 @smallexample
7607 %rename lib                 old_lib
7608
7609 *lib:
7610 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
7611 @end smallexample
7612
7613 This example renames the spec called @samp{lib} to @samp{old_lib} and
7614 then overrides the previous definition of @samp{lib} with a new one.
7615 The new definition adds in some extra command-line options before
7616 including the text of the old definition.
7617
7618 @dfn{Spec strings} are a list of command-line options to be passed to their
7619 corresponding program.  In addition, the spec strings can contain
7620 @samp{%}-prefixed sequences to substitute variable text or to
7621 conditionally insert text into the command line.  Using these constructs
7622 it is possible to generate quite complex command lines.
7623
7624 Here is a table of all defined @samp{%}-sequences for spec
7625 strings.  Note that spaces are not generated automatically around the
7626 results of expanding these sequences.  Therefore you can concatenate them
7627 together or combine them with constant text in a single argument.
7628
7629 @table @code
7630 @item %%
7631 Substitute one @samp{%} into the program name or argument.
7632
7633 @item %i
7634 Substitute the name of the input file being processed.
7635
7636 @item %b
7637 Substitute the basename of the input file being processed.
7638 This is the substring up to (and not including) the last period
7639 and not including the directory.
7640
7641 @item %B
7642 This is the same as @samp{%b}, but include the file suffix (text after
7643 the last period).
7644
7645 @item %d
7646 Marks the argument containing or following the @samp{%d} as a
7647 temporary file name, so that that file will be deleted if GCC exits
7648 successfully.  Unlike @samp{%g}, this contributes no text to the
7649 argument.
7650
7651 @item %g@var{suffix}
7652 Substitute a file name that has suffix @var{suffix} and is chosen
7653 once per compilation, and mark the argument in the same way as
7654 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
7655 name is now chosen in a way that is hard to predict even when previously
7656 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
7657 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
7658 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
7659 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
7660 was simply substituted with a file name chosen once per compilation,
7661 without regard to any appended suffix (which was therefore treated
7662 just like ordinary text), making such attacks more likely to succeed.
7663
7664 @item %u@var{suffix}
7665 Like @samp{%g}, but generates a new temporary file name even if
7666 @samp{%u@var{suffix}} was already seen.
7667
7668 @item %U@var{suffix}
7669 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
7670 new one if there is no such last file name.  In the absence of any
7671 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
7672 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
7673 would involve the generation of two distinct file names, one
7674 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
7675 simply substituted with a file name chosen for the previous @samp{%u},
7676 without regard to any appended suffix.
7677
7678 @item %j@var{suffix}
7679 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
7680 writable, and if save-temps is off; otherwise, substitute the name
7681 of a temporary file, just like @samp{%u}.  This temporary file is not
7682 meant for communication between processes, but rather as a junk
7683 disposal mechanism.
7684
7685 @item %|@var{suffix}
7686 @itemx %m@var{suffix}
7687 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
7688 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
7689 all.  These are the two most common ways to instruct a program that it
7690 should read from standard input or write to standard output.  If you
7691 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
7692 construct: see for example @file{f/lang-specs.h}.
7693
7694 @item %.@var{SUFFIX}
7695 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
7696 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
7697 terminated by the next space or %.
7698
7699 @item %w
7700 Marks the argument containing or following the @samp{%w} as the
7701 designated output file of this compilation.  This puts the argument
7702 into the sequence of arguments that @samp{%o} will substitute later.
7703
7704 @item %o
7705 Substitutes the names of all the output files, with spaces
7706 automatically placed around them.  You should write spaces
7707 around the @samp{%o} as well or the results are undefined.
7708 @samp{%o} is for use in the specs for running the linker.
7709 Input files whose names have no recognized suffix are not compiled
7710 at all, but they are included among the output files, so they will
7711 be linked.
7712
7713 @item %O
7714 Substitutes the suffix for object files.  Note that this is
7715 handled specially when it immediately follows @samp{%g, %u, or %U},
7716 because of the need for those to form complete file names.  The
7717 handling is such that @samp{%O} is treated exactly as if it had already
7718 been substituted, except that @samp{%g, %u, and %U} do not currently
7719 support additional @var{suffix} characters following @samp{%O} as they would
7720 following, for example, @samp{.o}.
7721
7722 @item %p
7723 Substitutes the standard macro predefinitions for the
7724 current target machine.  Use this when running @code{cpp}.
7725
7726 @item %P
7727 Like @samp{%p}, but puts @samp{__} before and after the name of each
7728 predefined macro, except for macros that start with @samp{__} or with
7729 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
7730 C@.
7731
7732 @item %I
7733 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
7734 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
7735 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
7736 and @option{-imultilib} as necessary.
7737
7738 @item %s
7739 Current argument is the name of a library or startup file of some sort.
7740 Search for that file in a standard list of directories and substitute
7741 the full name found.
7742
7743 @item %e@var{str}
7744 Print @var{str} as an error message.  @var{str} is terminated by a newline.
7745 Use this when inconsistent options are detected.
7746
7747 @item %(@var{name})
7748 Substitute the contents of spec string @var{name} at this point.
7749
7750 @item %[@var{name}]
7751 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
7752
7753 @item %x@{@var{option}@}
7754 Accumulate an option for @samp{%X}.
7755
7756 @item %X
7757 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
7758 spec string.
7759
7760 @item %Y
7761 Output the accumulated assembler options specified by @option{-Wa}.
7762
7763 @item %Z
7764 Output the accumulated preprocessor options specified by @option{-Wp}.
7765
7766 @item %a
7767 Process the @code{asm} spec.  This is used to compute the
7768 switches to be passed to the assembler.
7769
7770 @item %A
7771 Process the @code{asm_final} spec.  This is a spec string for
7772 passing switches to an assembler post-processor, if such a program is
7773 needed.
7774
7775 @item %l
7776 Process the @code{link} spec.  This is the spec for computing the
7777 command line passed to the linker.  Typically it will make use of the
7778 @samp{%L %G %S %D and %E} sequences.
7779
7780 @item %D
7781 Dump out a @option{-L} option for each directory that GCC believes might
7782 contain startup files.  If the target supports multilibs then the
7783 current multilib directory will be prepended to each of these paths.
7784
7785 @item %L
7786 Process the @code{lib} spec.  This is a spec string for deciding which
7787 libraries should be included on the command line to the linker.
7788
7789 @item %G
7790 Process the @code{libgcc} spec.  This is a spec string for deciding
7791 which GCC support library should be included on the command line to the linker.
7792
7793 @item %S
7794 Process the @code{startfile} spec.  This is a spec for deciding which
7795 object files should be the first ones passed to the linker.  Typically
7796 this might be a file named @file{crt0.o}.
7797
7798 @item %E
7799 Process the @code{endfile} spec.  This is a spec string that specifies
7800 the last object files that will be passed to the linker.
7801
7802 @item %C
7803 Process the @code{cpp} spec.  This is used to construct the arguments
7804 to be passed to the C preprocessor.
7805
7806 @item %1
7807 Process the @code{cc1} spec.  This is used to construct the options to be
7808 passed to the actual C compiler (@samp{cc1}).
7809
7810 @item %2
7811 Process the @code{cc1plus} spec.  This is used to construct the options to be
7812 passed to the actual C++ compiler (@samp{cc1plus}).
7813
7814 @item %*
7815 Substitute the variable part of a matched option.  See below.
7816 Note that each comma in the substituted string is replaced by
7817 a single space.
7818
7819 @item %<@code{S}
7820 Remove all occurrences of @code{-S} from the command line.  Note---this
7821 command is position dependent.  @samp{%} commands in the spec string
7822 before this one will see @code{-S}, @samp{%} commands in the spec string
7823 after this one will not.
7824
7825 @item %:@var{function}(@var{args})
7826 Call the named function @var{function}, passing it @var{args}.
7827 @var{args} is first processed as a nested spec string, then split
7828 into an argument vector in the usual fashion.  The function returns
7829 a string which is processed as if it had appeared literally as part
7830 of the current spec.
7831
7832 The following built-in spec functions are provided:
7833
7834 @table @code
7835 @item @code{getenv}
7836 The @code{getenv} spec function takes two arguments: an environment
7837 variable name and a string.  If the environment variable is not
7838 defined, a fatal error is issued.  Otherwise, the return value is the
7839 value of the environment variable concatenated with the string.  For
7840 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
7841
7842 @smallexample
7843 %:getenv(TOPDIR /include)
7844 @end smallexample
7845
7846 expands to @file{/path/to/top/include}.
7847
7848 @item @code{if-exists}
7849 The @code{if-exists} spec function takes one argument, an absolute
7850 pathname to a file.  If the file exists, @code{if-exists} returns the
7851 pathname.  Here is a small example of its usage:
7852
7853 @smallexample
7854 *startfile:
7855 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
7856 @end smallexample
7857
7858 @item @code{if-exists-else}
7859 The @code{if-exists-else} spec function is similar to the @code{if-exists}
7860 spec function, except that it takes two arguments.  The first argument is
7861 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
7862 returns the pathname.  If it does not exist, it returns the second argument.
7863 This way, @code{if-exists-else} can be used to select one file or another,
7864 based on the existence of the first.  Here is a small example of its usage:
7865
7866 @smallexample
7867 *startfile:
7868 crt0%O%s %:if-exists(crti%O%s) \
7869 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
7870 @end smallexample
7871
7872 @item @code{replace-outfile}
7873 The @code{replace-outfile} spec function takes two arguments.  It looks for the
7874 first argument in the outfiles array and replaces it with the second argument.  Here
7875 is a small example of its usage:
7876
7877 @smallexample
7878 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
7879 @end smallexample
7880
7881 @item @code{print-asm-header}
7882 The @code{print-asm-header} function takes no arguments and simply
7883 prints a banner like:
7884
7885 @smallexample
7886 Assembler options
7887 =================
7888
7889 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
7890 @end smallexample
7891
7892 It is used to separate compiler options from assembler options
7893 in the @option{--target-help} output.
7894 @end table
7895
7896 @item %@{@code{S}@}
7897 Substitutes the @code{-S} switch, if that switch was given to GCC@.
7898 If that switch was not specified, this substitutes nothing.  Note that
7899 the leading dash is omitted when specifying this option, and it is
7900 automatically inserted if the substitution is performed.  Thus the spec
7901 string @samp{%@{foo@}} would match the command-line option @option{-foo}
7902 and would output the command line option @option{-foo}.
7903
7904 @item %W@{@code{S}@}
7905 Like %@{@code{S}@} but mark last argument supplied within as a file to be
7906 deleted on failure.
7907
7908 @item %@{@code{S}*@}
7909 Substitutes all the switches specified to GCC whose names start
7910 with @code{-S}, but which also take an argument.  This is used for
7911 switches like @option{-o}, @option{-D}, @option{-I}, etc.
7912 GCC considers @option{-o foo} as being
7913 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
7914 text, including the space.  Thus two arguments would be generated.
7915
7916 @item %@{@code{S}*&@code{T}*@}
7917 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
7918 (the order of @code{S} and @code{T} in the spec is not significant).
7919 There can be any number of ampersand-separated variables; for each the
7920 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
7921
7922 @item %@{@code{S}:@code{X}@}
7923 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
7924
7925 @item %@{!@code{S}:@code{X}@}
7926 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
7927
7928 @item %@{@code{S}*:@code{X}@}
7929 Substitutes @code{X} if one or more switches whose names start with
7930 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
7931 once, no matter how many such switches appeared.  However, if @code{%*}
7932 appears somewhere in @code{X}, then @code{X} will be substituted once
7933 for each matching switch, with the @code{%*} replaced by the part of
7934 that switch that matched the @code{*}.
7935
7936 @item %@{.@code{S}:@code{X}@}
7937 Substitutes @code{X}, if processing a file with suffix @code{S}.
7938
7939 @item %@{!.@code{S}:@code{X}@}
7940 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
7941
7942 @item %@{,@code{S}:@code{X}@}
7943 Substitutes @code{X}, if processing a file for language @code{S}.
7944
7945 @item %@{!,@code{S}:@code{X}@}
7946 Substitutes @code{X}, if not processing a file for language @code{S}.
7947
7948 @item %@{@code{S}|@code{P}:@code{X}@}
7949 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
7950 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
7951 @code{*} sequences as well, although they have a stronger binding than
7952 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
7953 alternatives must be starred, and only the first matching alternative
7954 is substituted.
7955
7956 For example, a spec string like this:
7957
7958 @smallexample
7959 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
7960 @end smallexample
7961
7962 will output the following command-line options from the following input
7963 command-line options:
7964
7965 @smallexample
7966 fred.c        -foo -baz
7967 jim.d         -bar -boggle
7968 -d fred.c     -foo -baz -boggle
7969 -d jim.d      -bar -baz -boggle
7970 @end smallexample
7971
7972 @item %@{S:X; T:Y; :D@}
7973
7974 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
7975 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
7976 be as many clauses as you need.  This may be combined with @code{.},
7977 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
7978
7979
7980 @end table
7981
7982 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
7983 construct may contain other nested @samp{%} constructs or spaces, or
7984 even newlines.  They are processed as usual, as described above.
7985 Trailing white space in @code{X} is ignored.  White space may also
7986 appear anywhere on the left side of the colon in these constructs,
7987 except between @code{.} or @code{*} and the corresponding word.
7988
7989 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
7990 handled specifically in these constructs.  If another value of
7991 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
7992 @option{-W} switch is found later in the command line, the earlier
7993 switch value is ignored, except with @{@code{S}*@} where @code{S} is
7994 just one letter, which passes all matching options.
7995
7996 The character @samp{|} at the beginning of the predicate text is used to
7997 indicate that a command should be piped to the following command, but
7998 only if @option{-pipe} is specified.
7999
8000 It is built into GCC which switches take arguments and which do not.
8001 (You might think it would be useful to generalize this to allow each
8002 compiler's spec to say which switches take arguments.  But this cannot
8003 be done in a consistent fashion.  GCC cannot even decide which input
8004 files have been specified without knowing which switches take arguments,
8005 and it must know which input files to compile in order to tell which
8006 compilers to run).
8007
8008 GCC also knows implicitly that arguments starting in @option{-l} are to be
8009 treated as compiler output files, and passed to the linker in their
8010 proper position among the other output files.
8011
8012 @c man begin OPTIONS
8013
8014 @node Target Options
8015 @section Specifying Target Machine and Compiler Version
8016 @cindex target options
8017 @cindex cross compiling
8018 @cindex specifying machine version
8019 @cindex specifying compiler version and target machine
8020 @cindex compiler version, specifying
8021 @cindex target machine, specifying
8022
8023 The usual way to run GCC is to run the executable called @file{gcc}, or
8024 @file{<machine>-gcc} when cross-compiling, or
8025 @file{<machine>-gcc-<version>} to run a version other than the one that
8026 was installed last.  Sometimes this is inconvenient, so GCC provides
8027 options that will switch to another cross-compiler or version.
8028
8029 @table @gcctabopt
8030 @item -b @var{machine}
8031 @opindex b
8032 The argument @var{machine} specifies the target machine for compilation.
8033
8034 The value to use for @var{machine} is the same as was specified as the
8035 machine type when configuring GCC as a cross-compiler.  For
8036 example, if a cross-compiler was configured with @samp{configure
8037 arm-elf}, meaning to compile for an arm processor with elf binaries,
8038 then you would specify @option{-b arm-elf} to run that cross compiler.
8039 Because there are other options beginning with @option{-b}, the
8040 configuration must contain a hyphen.
8041
8042 @item -V @var{version}
8043 @opindex V
8044 The argument @var{version} specifies which version of GCC to run.
8045 This is useful when multiple versions are installed.  For example,
8046 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
8047 @end table
8048
8049 The @option{-V} and @option{-b} options work by running the
8050 @file{<machine>-gcc-<version>} executable, so there's no real reason to
8051 use them if you can just run that directly.
8052
8053 @node Submodel Options
8054 @section Hardware Models and Configurations
8055 @cindex submodel options
8056 @cindex specifying hardware config
8057 @cindex hardware models and configurations, specifying
8058 @cindex machine dependent options
8059
8060 Earlier we discussed the standard option @option{-b} which chooses among
8061 different installed compilers for completely different target
8062 machines, such as VAX vs.@: 68000 vs.@: 80386.
8063
8064 In addition, each of these target machine types can have its own
8065 special options, starting with @samp{-m}, to choose among various
8066 hardware models or configurations---for example, 68010 vs 68020,
8067 floating coprocessor or none.  A single installed version of the
8068 compiler can compile for any model or configuration, according to the
8069 options specified.
8070
8071 Some configurations of the compiler also support additional special
8072 options, usually for compatibility with other compilers on the same
8073 platform.
8074
8075 @c This list is ordered alphanumerically by subsection name.
8076 @c It should be the same order and spelling as these options are listed
8077 @c in Machine Dependent Options
8078
8079 @menu
8080 * ARC Options::
8081 * ARM Options::
8082 * AVR Options::
8083 * Blackfin Options::
8084 * CRIS Options::
8085 * CRX Options::
8086 * Darwin Options::
8087 * DEC Alpha Options::
8088 * DEC Alpha/VMS Options::
8089 * FRV Options::
8090 * GNU/Linux Options::
8091 * H8/300 Options::
8092 * HPPA Options::
8093 * i386 and x86-64 Options::
8094 * IA-64 Options::
8095 * M32C Options::
8096 * M32R/D Options::
8097 * M680x0 Options::
8098 * M68hc1x Options::
8099 * MCore Options::
8100 * MIPS Options::
8101 * MMIX Options::
8102 * MN10300 Options::
8103 * MT Options::
8104 * PDP-11 Options::
8105 * PowerPC Options::
8106 * RS/6000 and PowerPC Options::
8107 * S/390 and zSeries Options::
8108 * Score Options::
8109 * SH Options::
8110 * SPARC Options::
8111 * SPU Options::
8112 * System V Options::
8113 * TMS320C3x/C4x Options::
8114 * V850 Options::
8115 * VAX Options::
8116 * VxWorks Options::
8117 * x86-64 Options::
8118 * Xstormy16 Options::
8119 * Xtensa Options::
8120 * zSeries Options::
8121 @end menu
8122
8123 @node ARC Options
8124 @subsection ARC Options
8125 @cindex ARC Options
8126
8127 These options are defined for ARC implementations:
8128
8129 @table @gcctabopt
8130 @item -EL
8131 @opindex EL
8132 Compile code for little endian mode.  This is the default.
8133
8134 @item -EB
8135 @opindex EB
8136 Compile code for big endian mode.
8137
8138 @item -mmangle-cpu
8139 @opindex mmangle-cpu
8140 Prepend the name of the cpu to all public symbol names.
8141 In multiple-processor systems, there are many ARC variants with different
8142 instruction and register set characteristics.  This flag prevents code
8143 compiled for one cpu to be linked with code compiled for another.
8144 No facility exists for handling variants that are ``almost identical''.
8145 This is an all or nothing option.
8146
8147 @item -mcpu=@var{cpu}
8148 @opindex mcpu
8149 Compile code for ARC variant @var{cpu}.
8150 Which variants are supported depend on the configuration.
8151 All variants support @option{-mcpu=base}, this is the default.
8152
8153 @item -mtext=@var{text-section}
8154 @itemx -mdata=@var{data-section}
8155 @itemx -mrodata=@var{readonly-data-section}
8156 @opindex mtext
8157 @opindex mdata
8158 @opindex mrodata
8159 Put functions, data, and readonly data in @var{text-section},
8160 @var{data-section}, and @var{readonly-data-section} respectively
8161 by default.  This can be overridden with the @code{section} attribute.
8162 @xref{Variable Attributes}.
8163
8164 @end table
8165
8166 @node ARM Options
8167 @subsection ARM Options
8168 @cindex ARM options
8169
8170 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
8171 architectures:
8172
8173 @table @gcctabopt
8174 @item -mabi=@var{name}
8175 @opindex mabi
8176 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
8177 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
8178
8179 @item -mapcs-frame
8180 @opindex mapcs-frame
8181 Generate a stack frame that is compliant with the ARM Procedure Call
8182 Standard for all functions, even if this is not strictly necessary for
8183 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
8184 with this option will cause the stack frames not to be generated for
8185 leaf functions.  The default is @option{-mno-apcs-frame}.
8186
8187 @item -mapcs
8188 @opindex mapcs
8189 This is a synonym for @option{-mapcs-frame}.
8190
8191 @ignore
8192 @c not currently implemented
8193 @item -mapcs-stack-check
8194 @opindex mapcs-stack-check
8195 Generate code to check the amount of stack space available upon entry to
8196 every function (that actually uses some stack space).  If there is
8197 insufficient space available then either the function
8198 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
8199 called, depending upon the amount of stack space required.  The run time
8200 system is required to provide these functions.  The default is
8201 @option{-mno-apcs-stack-check}, since this produces smaller code.
8202
8203 @c not currently implemented
8204 @item -mapcs-float
8205 @opindex mapcs-float
8206 Pass floating point arguments using the float point registers.  This is
8207 one of the variants of the APCS@.  This option is recommended if the
8208 target hardware has a floating point unit or if a lot of floating point
8209 arithmetic is going to be performed by the code.  The default is
8210 @option{-mno-apcs-float}, since integer only code is slightly increased in
8211 size if @option{-mapcs-float} is used.
8212
8213 @c not currently implemented
8214 @item -mapcs-reentrant
8215 @opindex mapcs-reentrant
8216 Generate reentrant, position independent code.  The default is
8217 @option{-mno-apcs-reentrant}.
8218 @end ignore
8219
8220 @item -mthumb-interwork
8221 @opindex mthumb-interwork
8222 Generate code which supports calling between the ARM and Thumb
8223 instruction sets.  Without this option the two instruction sets cannot
8224 be reliably used inside one program.  The default is
8225 @option{-mno-thumb-interwork}, since slightly larger code is generated
8226 when @option{-mthumb-interwork} is specified.
8227
8228 @item -mno-sched-prolog
8229 @opindex mno-sched-prolog
8230 Prevent the reordering of instructions in the function prolog, or the
8231 merging of those instruction with the instructions in the function's
8232 body.  This means that all functions will start with a recognizable set
8233 of instructions (or in fact one of a choice from a small set of
8234 different function prologues), and this information can be used to
8235 locate the start if functions inside an executable piece of code.  The
8236 default is @option{-msched-prolog}.
8237
8238 @item -mhard-float
8239 @opindex mhard-float
8240 Generate output containing floating point instructions.  This is the
8241 default.
8242
8243 @item -msoft-float
8244 @opindex msoft-float
8245 Generate output containing library calls for floating point.
8246 @strong{Warning:} the requisite libraries are not available for all ARM
8247 targets.  Normally the facilities of the machine's usual C compiler are
8248 used, but this cannot be done directly in cross-compilation.  You must make
8249 your own arrangements to provide suitable library functions for
8250 cross-compilation.
8251
8252 @option{-msoft-float} changes the calling convention in the output file;
8253 therefore, it is only useful if you compile @emph{all} of a program with
8254 this option.  In particular, you need to compile @file{libgcc.a}, the
8255 library that comes with GCC, with @option{-msoft-float} in order for
8256 this to work.
8257
8258 @item -mfloat-abi=@var{name}
8259 @opindex mfloat-abi
8260 Specifies which ABI to use for floating point values.  Permissible values
8261 are: @samp{soft}, @samp{softfp} and @samp{hard}.
8262
8263 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
8264 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
8265 of floating point instructions, but still uses the soft-float calling
8266 conventions.
8267
8268 @item -mlittle-endian
8269 @opindex mlittle-endian
8270 Generate code for a processor running in little-endian mode.  This is
8271 the default for all standard configurations.
8272
8273 @item -mbig-endian
8274 @opindex mbig-endian
8275 Generate code for a processor running in big-endian mode; the default is
8276 to compile code for a little-endian processor.
8277
8278 @item -mwords-little-endian
8279 @opindex mwords-little-endian
8280 This option only applies when generating code for big-endian processors.
8281 Generate code for a little-endian word order but a big-endian byte
8282 order.  That is, a byte order of the form @samp{32107654}.  Note: this
8283 option should only be used if you require compatibility with code for
8284 big-endian ARM processors generated by versions of the compiler prior to
8285 2.8.
8286
8287 @item -mcpu=@var{name}
8288 @opindex mcpu
8289 This specifies the name of the target ARM processor.  GCC uses this name
8290 to determine what kind of instructions it can emit when generating
8291 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
8292 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
8293 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
8294 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
8295 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
8296 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
8297 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
8298 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
8299 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
8300 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
8301 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
8302 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
8303 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
8304 @samp{arm1156t2-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
8305 @samp{cortex-a8}, @samp{cortex-r4}, @samp{cortex-m3},
8306 @samp{xscale}, @samp{iwmmxt}, @samp{ep9312}.
8307
8308 @itemx -mtune=@var{name}
8309 @opindex mtune
8310 This option is very similar to the @option{-mcpu=} option, except that
8311 instead of specifying the actual target processor type, and hence
8312 restricting which instructions can be used, it specifies that GCC should
8313 tune the performance of the code as if the target were of the type
8314 specified in this option, but still choosing the instructions that it
8315 will generate based on the cpu specified by a @option{-mcpu=} option.
8316 For some ARM implementations better performance can be obtained by using
8317 this option.
8318
8319 @item -march=@var{name}
8320 @opindex march
8321 This specifies the name of the target ARM architecture.  GCC uses this
8322 name to determine what kind of instructions it can emit when generating
8323 assembly code.  This option can be used in conjunction with or instead
8324 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
8325 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
8326 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
8327 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv7}, @samp{armv7-a},
8328 @samp{armv7-r}, @samp{armv7-m}, @samp{iwmmxt}, @samp{ep9312}.
8329
8330 @item -mfpu=@var{name}
8331 @itemx -mfpe=@var{number}
8332 @itemx -mfp=@var{number}
8333 @opindex mfpu
8334 @opindex mfpe
8335 @opindex mfp
8336 This specifies what floating point hardware (or hardware emulation) is
8337 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
8338 @samp{fpe3}, @samp{maverick}, @samp{vfp}.  @option{-mfp} and @option{-mfpe}
8339 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
8340 with older versions of GCC@.
8341
8342 If @option{-msoft-float} is specified this specifies the format of
8343 floating point values.
8344
8345 @item -mstructure-size-boundary=@var{n}
8346 @opindex mstructure-size-boundary
8347 The size of all structures and unions will be rounded up to a multiple
8348 of the number of bits set by this option.  Permissible values are 8, 32
8349 and 64.  The default value varies for different toolchains.  For the COFF
8350 targeted toolchain the default value is 8.  A value of 64 is only allowed
8351 if the underlying ABI supports it.
8352
8353 Specifying the larger number can produce faster, more efficient code, but
8354 can also increase the size of the program.  Different values are potentially
8355 incompatible.  Code compiled with one value cannot necessarily expect to
8356 work with code or libraries compiled with another value, if they exchange
8357 information using structures or unions.
8358
8359 @item -mabort-on-noreturn
8360 @opindex mabort-on-noreturn
8361 Generate a call to the function @code{abort} at the end of a
8362 @code{noreturn} function.  It will be executed if the function tries to
8363 return.
8364
8365 @item -mlong-calls
8366 @itemx -mno-long-calls
8367 @opindex mlong-calls
8368 @opindex mno-long-calls
8369 Tells the compiler to perform function calls by first loading the
8370 address of the function into a register and then performing a subroutine
8371 call on this register.  This switch is needed if the target function
8372 will lie outside of the 64 megabyte addressing range of the offset based
8373 version of subroutine call instruction.
8374
8375 Even if this switch is enabled, not all function calls will be turned
8376 into long calls.  The heuristic is that static functions, functions
8377 which have the @samp{short-call} attribute, functions that are inside
8378 the scope of a @samp{#pragma no_long_calls} directive and functions whose
8379 definitions have already been compiled within the current compilation
8380 unit, will not be turned into long calls.  The exception to this rule is
8381 that weak function definitions, functions with the @samp{long-call}
8382 attribute or the @samp{section} attribute, and functions that are within
8383 the scope of a @samp{#pragma long_calls} directive, will always be
8384 turned into long calls.
8385
8386 This feature is not enabled by default.  Specifying
8387 @option{-mno-long-calls} will restore the default behavior, as will
8388 placing the function calls within the scope of a @samp{#pragma
8389 long_calls_off} directive.  Note these switches have no effect on how
8390 the compiler generates code to handle function calls via function
8391 pointers.
8392
8393 @item -mnop-fun-dllimport
8394 @opindex mnop-fun-dllimport
8395 Disable support for the @code{dllimport} attribute.
8396
8397 @item -msingle-pic-base
8398 @opindex msingle-pic-base
8399 Treat the register used for PIC addressing as read-only, rather than
8400 loading it in the prologue for each function.  The run-time system is
8401 responsible for initializing this register with an appropriate value
8402 before execution begins.
8403
8404 @item -mpic-register=@var{reg}
8405 @opindex mpic-register
8406 Specify the register to be used for PIC addressing.  The default is R10
8407 unless stack-checking is enabled, when R9 is used.
8408
8409 @item -mcirrus-fix-invalid-insns
8410 @opindex mcirrus-fix-invalid-insns
8411 @opindex mno-cirrus-fix-invalid-insns
8412 Insert NOPs into the instruction stream to in order to work around
8413 problems with invalid Maverick instruction combinations.  This option
8414 is only valid if the @option{-mcpu=ep9312} option has been used to
8415 enable generation of instructions for the Cirrus Maverick floating
8416 point co-processor.  This option is not enabled by default, since the
8417 problem is only present in older Maverick implementations.  The default
8418 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
8419 switch.
8420
8421 @item -mpoke-function-name
8422 @opindex mpoke-function-name
8423 Write the name of each function into the text section, directly
8424 preceding the function prologue.  The generated code is similar to this:
8425
8426 @smallexample
8427      t0
8428          .ascii "arm_poke_function_name", 0
8429          .align
8430      t1
8431          .word 0xff000000 + (t1 - t0)
8432      arm_poke_function_name
8433          mov     ip, sp
8434          stmfd   sp!, @{fp, ip, lr, pc@}
8435          sub     fp, ip, #4
8436 @end smallexample
8437
8438 When performing a stack backtrace, code can inspect the value of
8439 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
8440 location @code{pc - 12} and the top 8 bits are set, then we know that
8441 there is a function name embedded immediately preceding this location
8442 and has length @code{((pc[-3]) & 0xff000000)}.
8443
8444 @item -mthumb
8445 @opindex mthumb
8446 Generate code for the Thumb instruction set.  The default is to
8447 use the 32-bit ARM instruction set.
8448 This option automatically enables either 16-bit Thumb-1 or
8449 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
8450 and @option{-march=@var{name}} options.
8451
8452 @item -mtpcs-frame
8453 @opindex mtpcs-frame
8454 Generate a stack frame that is compliant with the Thumb Procedure Call
8455 Standard for all non-leaf functions.  (A leaf function is one that does
8456 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
8457
8458 @item -mtpcs-leaf-frame
8459 @opindex mtpcs-leaf-frame
8460 Generate a stack frame that is compliant with the Thumb Procedure Call
8461 Standard for all leaf functions.  (A leaf function is one that does
8462 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
8463
8464 @item -mcallee-super-interworking
8465 @opindex mcallee-super-interworking
8466 Gives all externally visible functions in the file being compiled an ARM
8467 instruction set header which switches to Thumb mode before executing the
8468 rest of the function.  This allows these functions to be called from
8469 non-interworking code.
8470
8471 @item -mcaller-super-interworking
8472 @opindex mcaller-super-interworking
8473 Allows calls via function pointers (including virtual functions) to
8474 execute correctly regardless of whether the target code has been
8475 compiled for interworking or not.  There is a small overhead in the cost
8476 of executing a function pointer if this option is enabled.
8477
8478 @item -mtp=@var{name}
8479 @opindex mtp
8480 Specify the access model for the thread local storage pointer.  The valid
8481 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
8482 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
8483 (supported in the arm6k architecture), and @option{auto}, which uses the
8484 best available method for the selected processor.  The default setting is
8485 @option{auto}.
8486
8487 @end table
8488
8489 @node AVR Options
8490 @subsection AVR Options
8491 @cindex AVR Options
8492
8493 These options are defined for AVR implementations:
8494
8495 @table @gcctabopt
8496 @item -mmcu=@var{mcu}
8497 @opindex mmcu
8498 Specify ATMEL AVR instruction set or MCU type.
8499
8500 Instruction set avr1 is for the minimal AVR core, not supported by the C
8501 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
8502 attiny11, attiny12, attiny15, attiny28).
8503
8504 Instruction set avr2 (default) is for the classic AVR core with up to
8505 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
8506 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
8507 at90c8534, at90s8535).
8508
8509 Instruction set avr3 is for the classic AVR core with up to 128K program
8510 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
8511
8512 Instruction set avr4 is for the enhanced AVR core with up to 8K program
8513 memory space (MCU types: atmega8, atmega83, atmega85).
8514
8515 Instruction set avr5 is for the enhanced AVR core with up to 128K program
8516 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
8517 atmega64, atmega128, at43usb355, at94k).
8518
8519 @item -msize
8520 @opindex msize
8521 Output instruction sizes to the asm file.
8522
8523 @item -minit-stack=@var{N}
8524 @opindex minit-stack
8525 Specify the initial stack address, which may be a symbol or numeric value,
8526 @samp{__stack} is the default.
8527
8528 @item -mno-interrupts
8529 @opindex mno-interrupts
8530 Generated code is not compatible with hardware interrupts.
8531 Code size will be smaller.
8532
8533 @item -mcall-prologues
8534 @opindex mcall-prologues
8535 Functions prologues/epilogues expanded as call to appropriate
8536 subroutines.  Code size will be smaller.
8537
8538 @item -mno-tablejump
8539 @opindex mno-tablejump
8540 Do not generate tablejump insns which sometimes increase code size.
8541
8542 @item -mtiny-stack
8543 @opindex mtiny-stack
8544 Change only the low 8 bits of the stack pointer.
8545
8546 @item -mint8
8547 @opindex mint8
8548 Assume int to be 8 bit integer.  This affects the sizes of all types: A
8549 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
8550 and long long will be 4 bytes.  Please note that this option does not
8551 comply to the C standards, but it will provide you with smaller code
8552 size.
8553 @end table
8554
8555 @node Blackfin Options
8556 @subsection Blackfin Options
8557 @cindex Blackfin Options
8558
8559 @table @gcctabopt
8560 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
8561 @opindex mcpu=
8562 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
8563 can be one of @samp{bf522}, @samp{bf525}, @samp{bf527},
8564 @samp{bf531}, @samp{bf532}, @samp{bf533}, @samp{bf534},
8565 @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
8566 @samp{bf542}, @samp{bf544}, @samp{bf548}, @samp{bf549},
8567 @samp{bf561}.
8568 The optional @var{sirevision} specifies the silicon revision of the target
8569 Blackfin processor.  Any workarounds available for the targeted silicon revision
8570 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
8571 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
8572 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
8573 hexadecimal digits representing the major and minor numbers in the silicon
8574 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
8575 is not defined.  If @var{sirevision} is @samp{any}, the
8576 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
8577 If this optional @var{sirevision} is not used, GCC assumes the latest known
8578 silicon revision of the targeted Blackfin processor.
8579
8580 Support for @samp{bf561} is incomplete.  For @samp{bf561},
8581 Only the processor macro is defined.
8582 Without this option, @samp{bf532} is used as the processor by default.
8583 The corresponding predefined processor macros for @var{cpu} is to
8584 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
8585 provided by libgloss to be linked in if @option{-msim} is not given.
8586
8587 @item -msim
8588 @opindex msim
8589 Specifies that the program will be run on the simulator.  This causes
8590 the simulator BSP provided by libgloss to be linked in.  This option
8591 has effect only for @samp{bfin-elf} toolchain.
8592
8593 @item -momit-leaf-frame-pointer
8594 @opindex momit-leaf-frame-pointer
8595 Don't keep the frame pointer in a register for leaf functions.  This
8596 avoids the instructions to save, set up and restore frame pointers and
8597 makes an extra register available in leaf functions.  The option
8598 @option{-fomit-frame-pointer} removes the frame pointer for all functions
8599 which might make debugging harder.
8600
8601 @item -mspecld-anomaly
8602 @opindex mspecld-anomaly
8603 When enabled, the compiler will ensure that the generated code does not
8604 contain speculative loads after jump instructions. If this option is used,
8605 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
8606
8607 @item -mno-specld-anomaly
8608 @opindex mno-specld-anomaly
8609 Don't generate extra code to prevent speculative loads from occurring.
8610
8611 @item -mcsync-anomaly
8612 @opindex mcsync-anomaly
8613 When enabled, the compiler will ensure that the generated code does not
8614 contain CSYNC or SSYNC instructions too soon after conditional branches.
8615 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
8616
8617 @item -mno-csync-anomaly
8618 @opindex mno-csync-anomaly
8619 Don't generate extra code to prevent CSYNC or SSYNC instructions from
8620 occurring too soon after a conditional branch.
8621
8622 @item -mlow-64k
8623 @opindex mlow-64k
8624 When enabled, the compiler is free to take advantage of the knowledge that
8625 the entire program fits into the low 64k of memory.
8626
8627 @item -mno-low-64k
8628 @opindex mno-low-64k
8629 Assume that the program is arbitrarily large.  This is the default.
8630
8631 @item -mstack-check-l1
8632 @opindex mstack-check-l1
8633 Do stack checking using information placed into L1 scratchpad memory by the
8634 uClinux kernel.
8635
8636 @item -mid-shared-library
8637 @opindex mid-shared-library
8638 Generate code that supports shared libraries via the library ID method.
8639 This allows for execute in place and shared libraries in an environment
8640 without virtual memory management.  This option implies @option{-fPIC}.
8641
8642 @item -mno-id-shared-library
8643 @opindex mno-id-shared-library
8644 Generate code that doesn't assume ID based shared libraries are being used.
8645 This is the default.
8646
8647 @item -mleaf-id-shared-library
8648 @opindex mleaf-id-shared-library
8649 Generate code that supports shared libraries via the library ID method,
8650 but assumes that this library or executable won't link against any other
8651 ID shared libraries.  That allows the compiler to use faster code for jumps
8652 and calls.
8653
8654 @item -mno-leaf-id-shared-library
8655 @opindex mno-leaf-id-shared-library
8656 Do not assume that the code being compiled won't link against any ID shared
8657 libraries.  Slower code will be generated for jump and call insns.
8658
8659 @item -mshared-library-id=n
8660 @opindex mshared-library-id
8661 Specified the identification number of the ID based shared library being
8662 compiled.  Specifying a value of 0 will generate more compact code, specifying
8663 other values will force the allocation of that number to the current
8664 library but is no more space or time efficient than omitting this option.
8665
8666 @item -msep-data
8667 @opindex msep-data
8668 Generate code that allows the data segment to be located in a different
8669 area of memory from the text segment.  This allows for execute in place in
8670 an environment without virtual memory management by eliminating relocations
8671 against the text section.
8672
8673 @item -mno-sep-data
8674 @opindex mno-sep-data
8675 Generate code that assumes that the data segment follows the text segment.
8676 This is the default.
8677
8678 @item -mlong-calls
8679 @itemx -mno-long-calls
8680 @opindex mlong-calls
8681 @opindex mno-long-calls
8682 Tells the compiler to perform function calls by first loading the
8683 address of the function into a register and then performing a subroutine
8684 call on this register.  This switch is needed if the target function
8685 will lie outside of the 24 bit addressing range of the offset based
8686 version of subroutine call instruction.
8687
8688 This feature is not enabled by default.  Specifying
8689 @option{-mno-long-calls} will restore the default behavior.  Note these
8690 switches have no effect on how the compiler generates code to handle
8691 function calls via function pointers.
8692
8693 @item -mfast-fp
8694 @opindex mfast-fp
8695 Link with the fast floating-point library. This library relaxes some of
8696 the IEEE floating-point standard's rules for checking inputs against
8697 Not-a-Number (NAN), in the interest of performance.
8698
8699 @item -minline-plt
8700 @opindex minline-plt
8701 Enable inlining of PLT entries in function calls to functions that are
8702 not known to bind locally.  It has no effect without @option{-mfdpic}.
8703 @end table
8704
8705 @node CRIS Options
8706 @subsection CRIS Options
8707 @cindex CRIS Options
8708
8709 These options are defined specifically for the CRIS ports.
8710
8711 @table @gcctabopt
8712 @item -march=@var{architecture-type}
8713 @itemx -mcpu=@var{architecture-type}
8714 @opindex march
8715 @opindex mcpu
8716 Generate code for the specified architecture.  The choices for
8717 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
8718 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
8719 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
8720 @samp{v10}.
8721
8722 @item -mtune=@var{architecture-type}
8723 @opindex mtune
8724 Tune to @var{architecture-type} everything applicable about the generated
8725 code, except for the ABI and the set of available instructions.  The
8726 choices for @var{architecture-type} are the same as for
8727 @option{-march=@var{architecture-type}}.
8728
8729 @item -mmax-stack-frame=@var{n}
8730 @opindex mmax-stack-frame
8731 Warn when the stack frame of a function exceeds @var{n} bytes.
8732
8733 @item -melinux-stacksize=@var{n}
8734 @opindex melinux-stacksize
8735 Only available with the @samp{cris-axis-aout} target.  Arranges for
8736 indications in the program to the kernel loader that the stack of the
8737 program should be set to @var{n} bytes.
8738
8739 @item -metrax4
8740 @itemx -metrax100
8741 @opindex metrax4
8742 @opindex metrax100
8743 The options @option{-metrax4} and @option{-metrax100} are synonyms for
8744 @option{-march=v3} and @option{-march=v8} respectively.
8745
8746 @item -mmul-bug-workaround
8747 @itemx -mno-mul-bug-workaround
8748 @opindex mmul-bug-workaround
8749 @opindex mno-mul-bug-workaround
8750 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
8751 models where it applies.  This option is active by default.
8752
8753 @item -mpdebug
8754 @opindex mpdebug
8755 Enable CRIS-specific verbose debug-related information in the assembly
8756 code.  This option also has the effect to turn off the @samp{#NO_APP}
8757 formatted-code indicator to the assembler at the beginning of the
8758 assembly file.
8759
8760 @item -mcc-init
8761 @opindex mcc-init
8762 Do not use condition-code results from previous instruction; always emit
8763 compare and test instructions before use of condition codes.
8764
8765 @item -mno-side-effects
8766 @opindex mno-side-effects
8767 Do not emit instructions with side-effects in addressing modes other than
8768 post-increment.
8769
8770 @item -mstack-align
8771 @itemx -mno-stack-align
8772 @itemx -mdata-align
8773 @itemx -mno-data-align
8774 @itemx -mconst-align
8775 @itemx -mno-const-align
8776 @opindex mstack-align
8777 @opindex mno-stack-align
8778 @opindex mdata-align
8779 @opindex mno-data-align
8780 @opindex mconst-align
8781 @opindex mno-const-align
8782 These options (no-options) arranges (eliminate arrangements) for the
8783 stack-frame, individual data and constants to be aligned for the maximum
8784 single data access size for the chosen CPU model.  The default is to
8785 arrange for 32-bit alignment.  ABI details such as structure layout are
8786 not affected by these options.
8787
8788 @item -m32-bit
8789 @itemx -m16-bit
8790 @itemx -m8-bit
8791 @opindex m32-bit
8792 @opindex m16-bit
8793 @opindex m8-bit
8794 Similar to the stack- data- and const-align options above, these options
8795 arrange for stack-frame, writable data and constants to all be 32-bit,
8796 16-bit or 8-bit aligned.  The default is 32-bit alignment.
8797
8798 @item -mno-prologue-epilogue
8799 @itemx -mprologue-epilogue
8800 @opindex mno-prologue-epilogue
8801 @opindex mprologue-epilogue
8802 With @option{-mno-prologue-epilogue}, the normal function prologue and
8803 epilogue that sets up the stack-frame are omitted and no return
8804 instructions or return sequences are generated in the code.  Use this
8805 option only together with visual inspection of the compiled code: no
8806 warnings or errors are generated when call-saved registers must be saved,
8807 or storage for local variable needs to be allocated.
8808
8809 @item -mno-gotplt
8810 @itemx -mgotplt
8811 @opindex mno-gotplt
8812 @opindex mgotplt
8813 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
8814 instruction sequences that load addresses for functions from the PLT part
8815 of the GOT rather than (traditional on other architectures) calls to the
8816 PLT@.  The default is @option{-mgotplt}.
8817
8818 @item -maout
8819 @opindex maout
8820 Legacy no-op option only recognized with the cris-axis-aout target.
8821
8822 @item -melf
8823 @opindex melf
8824 Legacy no-op option only recognized with the cris-axis-elf and
8825 cris-axis-linux-gnu targets.
8826
8827 @item -melinux
8828 @opindex melinux
8829 Only recognized with the cris-axis-aout target, where it selects a
8830 GNU/linux-like multilib, include files and instruction set for
8831 @option{-march=v8}.
8832
8833 @item -mlinux
8834 @opindex mlinux
8835 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
8836
8837 @item -sim
8838 @opindex sim
8839 This option, recognized for the cris-axis-aout and cris-axis-elf arranges
8840 to link with input-output functions from a simulator library.  Code,
8841 initialized data and zero-initialized data are allocated consecutively.
8842
8843 @item -sim2
8844 @opindex sim2
8845 Like @option{-sim}, but pass linker options to locate initialized data at
8846 0x40000000 and zero-initialized data at 0x80000000.
8847 @end table
8848
8849 @node CRX Options
8850 @subsection CRX Options
8851 @cindex CRX Options
8852
8853 These options are defined specifically for the CRX ports.
8854
8855 @table @gcctabopt
8856
8857 @item -mmac
8858 @opindex mmac
8859 Enable the use of multiply-accumulate instructions. Disabled by default.
8860
8861 @item -mpush-args
8862 @opindex mpush-args
8863 Push instructions will be used to pass outgoing arguments when functions
8864 are called. Enabled by default.
8865 @end table
8866
8867 @node Darwin Options
8868 @subsection Darwin Options
8869 @cindex Darwin options
8870
8871 These options are defined for all architectures running the Darwin operating
8872 system.
8873
8874 FSF GCC on Darwin does not create ``fat'' object files; it will create
8875 an object file for the single architecture that it was built to
8876 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
8877 @option{-arch} options are used; it does so by running the compiler or
8878 linker multiple times and joining the results together with
8879 @file{lipo}.
8880
8881 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
8882 @samp{i686}) is determined by the flags that specify the ISA
8883 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
8884 @option{-force_cpusubtype_ALL} option can be used to override this.
8885
8886 The Darwin tools vary in their behavior when presented with an ISA
8887 mismatch.  The assembler, @file{as}, will only permit instructions to
8888 be used that are valid for the subtype of the file it is generating,
8889 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
8890 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
8891 and print an error if asked to create a shared library with a less
8892 restrictive subtype than its input files (for instance, trying to put
8893 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
8894 for executables, @file{ld}, will quietly give the executable the most
8895 restrictive subtype of any of its input files.
8896
8897 @table @gcctabopt
8898 @item -F@var{dir}
8899 @opindex F
8900 Add the framework directory @var{dir} to the head of the list of
8901 directories to be searched for header files.  These directories are
8902 interleaved with those specified by @option{-I} options and are
8903 scanned in a left-to-right order.
8904
8905 A framework directory is a directory with frameworks in it.  A
8906 framework is a directory with a @samp{"Headers"} and/or
8907 @samp{"PrivateHeaders"} directory contained directly in it that ends
8908 in @samp{".framework"}.  The name of a framework is the name of this
8909 directory excluding the @samp{".framework"}.  Headers associated with
8910 the framework are found in one of those two directories, with
8911 @samp{"Headers"} being searched first.  A subframework is a framework
8912 directory that is in a framework's @samp{"Frameworks"} directory.
8913 Includes of subframework headers can only appear in a header of a
8914 framework that contains the subframework, or in a sibling subframework
8915 header.  Two subframeworks are siblings if they occur in the same
8916 framework.  A subframework should not have the same name as a
8917 framework, a warning will be issued if this is violated.  Currently a
8918 subframework cannot have subframeworks, in the future, the mechanism
8919 may be extended to support this.  The standard frameworks can be found
8920 in @samp{"/System/Library/Frameworks"} and
8921 @samp{"/Library/Frameworks"}.  An example include looks like
8922 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
8923 the name of the framework and header.h is found in the
8924 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
8925
8926 @item -iframework@var{dir}
8927 @opindex iframework
8928 Like @option{-F} except the directory is a treated as a system
8929 directory.  The main difference between this @option{-iframework} and
8930 @option{-F} is that with @option{-iframework} the compiler does not
8931 warn about constructs contained within header files found via
8932 @var{dir}.  This option is valid only for the C family of languages.
8933
8934 @item -gused
8935 @opindex gused
8936 Emit debugging information for symbols that are used.  For STABS
8937 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
8938 This is by default ON@.
8939
8940 @item -gfull
8941 @opindex gfull
8942 Emit debugging information for all symbols and types.
8943
8944 @item -mmacosx-version-min=@var{version}
8945 The earliest version of MacOS X that this executable will run on
8946 is @var{version}.  Typical values of @var{version} include @code{10.1},
8947 @code{10.2}, and @code{10.3.9}.
8948
8949 If the compiler was built to use the system's headers by default,
8950 then the default for this option is the system version on which the
8951 compiler is running, otherwise the default is to make choices which
8952 are compatible with as many systems and code bases as possible.
8953
8954 @item -mkernel
8955 @opindex mkernel
8956 Enable kernel development mode.  The @option{-mkernel} option sets
8957 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
8958 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
8959 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
8960 applicable.  This mode also sets @option{-mno-altivec},
8961 @option{-msoft-float}, @option{-fno-builtin} and
8962 @option{-mlong-branch} for PowerPC targets.
8963
8964 @item -mone-byte-bool
8965 @opindex mone-byte-bool
8966 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
8967 By default @samp{sizeof(bool)} is @samp{4} when compiling for
8968 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
8969 option has no effect on x86.
8970
8971 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
8972 to generate code that is not binary compatible with code generated
8973 without that switch.  Using this switch may require recompiling all
8974 other modules in a program, including system libraries.  Use this
8975 switch to conform to a non-default data model.
8976
8977 @item -mfix-and-continue
8978 @itemx -ffix-and-continue
8979 @itemx -findirect-data
8980 @opindex mfix-and-continue
8981 @opindex ffix-and-continue
8982 @opindex findirect-data
8983 Generate code suitable for fast turn around development.  Needed to
8984 enable gdb to dynamically load @code{.o} files into already running
8985 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
8986 are provided for backwards compatibility.
8987
8988 @item -all_load
8989 @opindex all_load
8990 Loads all members of static archive libraries.
8991 See man ld(1) for more information.
8992
8993 @item -arch_errors_fatal
8994 @opindex arch_errors_fatal
8995 Cause the errors having to do with files that have the wrong architecture
8996 to be fatal.
8997
8998 @item -bind_at_load
8999 @opindex bind_at_load
9000 Causes the output file to be marked such that the dynamic linker will
9001 bind all undefined references when the file is loaded or launched.
9002
9003 @item -bundle
9004 @opindex bundle
9005 Produce a Mach-o bundle format file.
9006 See man ld(1) for more information.
9007
9008 @item -bundle_loader @var{executable}
9009 @opindex bundle_loader
9010 This option specifies the @var{executable} that will be loading the build
9011 output file being linked.  See man ld(1) for more information.
9012
9013 @item -dynamiclib
9014 @opindex dynamiclib
9015 When passed this option, GCC will produce a dynamic library instead of
9016 an executable when linking, using the Darwin @file{libtool} command.
9017
9018 @item -force_cpusubtype_ALL
9019 @opindex force_cpusubtype_ALL
9020 This causes GCC's output file to have the @var{ALL} subtype, instead of
9021 one controlled by the @option{-mcpu} or @option{-march} option.
9022
9023 @item -allowable_client  @var{client_name}
9024 @itemx -client_name
9025 @itemx -compatibility_version
9026 @itemx -current_version
9027 @itemx -dead_strip
9028 @itemx -dependency-file
9029 @itemx -dylib_file
9030 @itemx -dylinker_install_name
9031 @itemx -dynamic
9032 @itemx -exported_symbols_list
9033 @itemx -filelist
9034 @itemx -flat_namespace
9035 @itemx -force_flat_namespace
9036 @itemx -headerpad_max_install_names
9037 @itemx -image_base
9038 @itemx -init
9039 @itemx -install_name
9040 @itemx -keep_private_externs
9041 @itemx -multi_module
9042 @itemx -multiply_defined
9043 @itemx -multiply_defined_unused
9044 @itemx -noall_load
9045 @itemx -no_dead_strip_inits_and_terms
9046 @itemx -nofixprebinding
9047 @itemx -nomultidefs
9048 @itemx -noprebind
9049 @itemx -noseglinkedit
9050 @itemx -pagezero_size
9051 @itemx -prebind
9052 @itemx -prebind_all_twolevel_modules
9053 @itemx -private_bundle
9054 @itemx -read_only_relocs
9055 @itemx -sectalign
9056 @itemx -sectobjectsymbols
9057 @itemx -whyload
9058 @itemx -seg1addr
9059 @itemx -sectcreate
9060 @itemx -sectobjectsymbols
9061 @itemx -sectorder
9062 @itemx -segaddr
9063 @itemx -segs_read_only_addr
9064 @itemx -segs_read_write_addr
9065 @itemx -seg_addr_table
9066 @itemx -seg_addr_table_filename
9067 @itemx -seglinkedit
9068 @itemx -segprot
9069 @itemx -segs_read_only_addr
9070 @itemx -segs_read_write_addr
9071 @itemx -single_module
9072 @itemx -static
9073 @itemx -sub_library
9074 @itemx -sub_umbrella
9075 @itemx -twolevel_namespace
9076 @itemx -umbrella
9077 @itemx -undefined
9078 @itemx -unexported_symbols_list
9079 @itemx -weak_reference_mismatches
9080 @itemx -whatsloaded
9081
9082 @opindex allowable_client
9083 @opindex client_name
9084 @opindex compatibility_version
9085 @opindex current_version
9086 @opindex dead_strip
9087 @opindex dependency-file
9088 @opindex dylib_file
9089 @opindex dylinker_install_name
9090 @opindex dynamic
9091 @opindex exported_symbols_list
9092 @opindex filelist
9093 @opindex flat_namespace
9094 @opindex force_flat_namespace
9095 @opindex headerpad_max_install_names
9096 @opindex image_base
9097 @opindex init
9098 @opindex install_name
9099 @opindex keep_private_externs
9100 @opindex multi_module
9101 @opindex multiply_defined
9102 @opindex multiply_defined_unused
9103 @opindex noall_load
9104 @opindex no_dead_strip_inits_and_terms
9105 @opindex nofixprebinding
9106 @opindex nomultidefs
9107 @opindex noprebind
9108 @opindex noseglinkedit
9109 @opindex pagezero_size
9110 @opindex prebind
9111 @opindex prebind_all_twolevel_modules
9112 @opindex private_bundle
9113 @opindex read_only_relocs
9114 @opindex sectalign
9115 @opindex sectobjectsymbols
9116 @opindex whyload
9117 @opindex seg1addr
9118 @opindex sectcreate
9119 @opindex sectobjectsymbols
9120 @opindex sectorder
9121 @opindex segaddr
9122 @opindex segs_read_only_addr
9123 @opindex segs_read_write_addr
9124 @opindex seg_addr_table
9125 @opindex seg_addr_table_filename
9126 @opindex seglinkedit
9127 @opindex segprot
9128 @opindex segs_read_only_addr
9129 @opindex segs_read_write_addr
9130 @opindex single_module
9131 @opindex static
9132 @opindex sub_library
9133 @opindex sub_umbrella
9134 @opindex twolevel_namespace
9135 @opindex umbrella
9136 @opindex undefined
9137 @opindex unexported_symbols_list
9138 @opindex weak_reference_mismatches
9139 @opindex whatsloaded
9140
9141 These options are passed to the Darwin linker.  The Darwin linker man page
9142 describes them in detail.
9143 @end table
9144
9145 @node DEC Alpha Options
9146 @subsection DEC Alpha Options
9147
9148 These @samp{-m} options are defined for the DEC Alpha implementations:
9149
9150 @table @gcctabopt
9151 @item -mno-soft-float
9152 @itemx -msoft-float
9153 @opindex mno-soft-float
9154 @opindex msoft-float
9155 Use (do not use) the hardware floating-point instructions for
9156 floating-point operations.  When @option{-msoft-float} is specified,
9157 functions in @file{libgcc.a} will be used to perform floating-point
9158 operations.  Unless they are replaced by routines that emulate the
9159 floating-point operations, or compiled in such a way as to call such
9160 emulations routines, these routines will issue floating-point
9161 operations.   If you are compiling for an Alpha without floating-point
9162 operations, you must ensure that the library is built so as not to call
9163 them.
9164
9165 Note that Alpha implementations without floating-point operations are
9166 required to have floating-point registers.
9167
9168 @item -mfp-reg
9169 @itemx -mno-fp-regs
9170 @opindex mfp-reg
9171 @opindex mno-fp-regs
9172 Generate code that uses (does not use) the floating-point register set.
9173 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
9174 register set is not used, floating point operands are passed in integer
9175 registers as if they were integers and floating-point results are passed
9176 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
9177 so any function with a floating-point argument or return value called by code
9178 compiled with @option{-mno-fp-regs} must also be compiled with that
9179 option.
9180
9181 A typical use of this option is building a kernel that does not use,
9182 and hence need not save and restore, any floating-point registers.
9183
9184 @item -mieee
9185 @opindex mieee
9186 The Alpha architecture implements floating-point hardware optimized for
9187 maximum performance.  It is mostly compliant with the IEEE floating
9188 point standard.  However, for full compliance, software assistance is
9189 required.  This option generates code fully IEEE compliant code
9190 @emph{except} that the @var{inexact-flag} is not maintained (see below).
9191 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
9192 defined during compilation.  The resulting code is less efficient but is
9193 able to correctly support denormalized numbers and exceptional IEEE
9194 values such as not-a-number and plus/minus infinity.  Other Alpha
9195 compilers call this option @option{-ieee_with_no_inexact}.
9196
9197 @item -mieee-with-inexact
9198 @opindex mieee-with-inexact
9199 This is like @option{-mieee} except the generated code also maintains
9200 the IEEE @var{inexact-flag}.  Turning on this option causes the
9201 generated code to implement fully-compliant IEEE math.  In addition to
9202 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
9203 macro.  On some Alpha implementations the resulting code may execute
9204 significantly slower than the code generated by default.  Since there is
9205 very little code that depends on the @var{inexact-flag}, you should
9206 normally not specify this option.  Other Alpha compilers call this
9207 option @option{-ieee_with_inexact}.
9208
9209 @item -mfp-trap-mode=@var{trap-mode}
9210 @opindex mfp-trap-mode
9211 This option controls what floating-point related traps are enabled.
9212 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
9213 The trap mode can be set to one of four values:
9214
9215 @table @samp
9216 @item n
9217 This is the default (normal) setting.  The only traps that are enabled
9218 are the ones that cannot be disabled in software (e.g., division by zero
9219 trap).
9220
9221 @item u
9222 In addition to the traps enabled by @samp{n}, underflow traps are enabled
9223 as well.
9224
9225 @item su
9226 Like @samp{u}, but the instructions are marked to be safe for software
9227 completion (see Alpha architecture manual for details).
9228
9229 @item sui
9230 Like @samp{su}, but inexact traps are enabled as well.
9231 @end table
9232
9233 @item -mfp-rounding-mode=@var{rounding-mode}
9234 @opindex mfp-rounding-mode
9235 Selects the IEEE rounding mode.  Other Alpha compilers call this option
9236 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
9237 of:
9238
9239 @table @samp
9240 @item n
9241 Normal IEEE rounding mode.  Floating point numbers are rounded towards
9242 the nearest machine number or towards the even machine number in case
9243 of a tie.
9244
9245 @item m
9246 Round towards minus infinity.
9247
9248 @item c
9249 Chopped rounding mode.  Floating point numbers are rounded towards zero.
9250
9251 @item d
9252 Dynamic rounding mode.  A field in the floating point control register
9253 (@var{fpcr}, see Alpha architecture reference manual) controls the
9254 rounding mode in effect.  The C library initializes this register for
9255 rounding towards plus infinity.  Thus, unless your program modifies the
9256 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
9257 @end table
9258
9259 @item -mtrap-precision=@var{trap-precision}
9260 @opindex mtrap-precision
9261 In the Alpha architecture, floating point traps are imprecise.  This
9262 means without software assistance it is impossible to recover from a
9263 floating trap and program execution normally needs to be terminated.
9264 GCC can generate code that can assist operating system trap handlers
9265 in determining the exact location that caused a floating point trap.
9266 Depending on the requirements of an application, different levels of
9267 precisions can be selected:
9268
9269 @table @samp
9270 @item p
9271 Program precision.  This option is the default and means a trap handler
9272 can only identify which program caused a floating point exception.
9273
9274 @item f
9275 Function precision.  The trap handler can determine the function that
9276 caused a floating point exception.
9277
9278 @item i
9279 Instruction precision.  The trap handler can determine the exact
9280 instruction that caused a floating point exception.
9281 @end table
9282
9283 Other Alpha compilers provide the equivalent options called
9284 @option{-scope_safe} and @option{-resumption_safe}.
9285
9286 @item -mieee-conformant
9287 @opindex mieee-conformant
9288 This option marks the generated code as IEEE conformant.  You must not
9289 use this option unless you also specify @option{-mtrap-precision=i} and either
9290 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
9291 is to emit the line @samp{.eflag 48} in the function prologue of the
9292 generated assembly file.  Under DEC Unix, this has the effect that
9293 IEEE-conformant math library routines will be linked in.
9294
9295 @item -mbuild-constants
9296 @opindex mbuild-constants
9297 Normally GCC examines a 32- or 64-bit integer constant to
9298 see if it can construct it from smaller constants in two or three
9299 instructions.  If it cannot, it will output the constant as a literal and
9300 generate code to load it from the data segment at runtime.
9301
9302 Use this option to require GCC to construct @emph{all} integer constants
9303 using code, even if it takes more instructions (the maximum is six).
9304
9305 You would typically use this option to build a shared library dynamic
9306 loader.  Itself a shared library, it must relocate itself in memory
9307 before it can find the variables and constants in its own data segment.
9308
9309 @item -malpha-as
9310 @itemx -mgas
9311 @opindex malpha-as
9312 @opindex mgas
9313 Select whether to generate code to be assembled by the vendor-supplied
9314 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
9315
9316 @item -mbwx
9317 @itemx -mno-bwx
9318 @itemx -mcix
9319 @itemx -mno-cix
9320 @itemx -mfix
9321 @itemx -mno-fix
9322 @itemx -mmax
9323 @itemx -mno-max
9324 @opindex mbwx
9325 @opindex mno-bwx
9326 @opindex mcix
9327 @opindex mno-cix
9328 @opindex mfix
9329 @opindex mno-fix
9330 @opindex mmax
9331 @opindex mno-max
9332 Indicate whether GCC should generate code to use the optional BWX,
9333 CIX, FIX and MAX instruction sets.  The default is to use the instruction
9334 sets supported by the CPU type specified via @option{-mcpu=} option or that
9335 of the CPU on which GCC was built if none was specified.
9336
9337 @item -mfloat-vax
9338 @itemx -mfloat-ieee
9339 @opindex mfloat-vax
9340 @opindex mfloat-ieee
9341 Generate code that uses (does not use) VAX F and G floating point
9342 arithmetic instead of IEEE single and double precision.
9343
9344 @item -mexplicit-relocs
9345 @itemx -mno-explicit-relocs
9346 @opindex mexplicit-relocs
9347 @opindex mno-explicit-relocs
9348 Older Alpha assemblers provided no way to generate symbol relocations
9349 except via assembler macros.  Use of these macros does not allow
9350 optimal instruction scheduling.  GNU binutils as of version 2.12
9351 supports a new syntax that allows the compiler to explicitly mark
9352 which relocations should apply to which instructions.  This option
9353 is mostly useful for debugging, as GCC detects the capabilities of
9354 the assembler when it is built and sets the default accordingly.
9355
9356 @item -msmall-data
9357 @itemx -mlarge-data
9358 @opindex msmall-data
9359 @opindex mlarge-data
9360 When @option{-mexplicit-relocs} is in effect, static data is
9361 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
9362 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
9363 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
9364 16-bit relocations off of the @code{$gp} register.  This limits the
9365 size of the small data area to 64KB, but allows the variables to be
9366 directly accessed via a single instruction.
9367
9368 The default is @option{-mlarge-data}.  With this option the data area
9369 is limited to just below 2GB@.  Programs that require more than 2GB of
9370 data must use @code{malloc} or @code{mmap} to allocate the data in the
9371 heap instead of in the program's data segment.
9372
9373 When generating code for shared libraries, @option{-fpic} implies
9374 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
9375
9376 @item -msmall-text
9377 @itemx -mlarge-text
9378 @opindex msmall-text
9379 @opindex mlarge-text
9380 When @option{-msmall-text} is used, the compiler assumes that the
9381 code of the entire program (or shared library) fits in 4MB, and is
9382 thus reachable with a branch instruction.  When @option{-msmall-data}
9383 is used, the compiler can assume that all local symbols share the
9384 same @code{$gp} value, and thus reduce the number of instructions
9385 required for a function call from 4 to 1.
9386
9387 The default is @option{-mlarge-text}.
9388
9389 @item -mcpu=@var{cpu_type}
9390 @opindex mcpu
9391 Set the instruction set and instruction scheduling parameters for
9392 machine type @var{cpu_type}.  You can specify either the @samp{EV}
9393 style name or the corresponding chip number.  GCC supports scheduling
9394 parameters for the EV4, EV5 and EV6 family of processors and will
9395 choose the default values for the instruction set from the processor
9396 you specify.  If you do not specify a processor type, GCC will default
9397 to the processor on which the compiler was built.
9398
9399 Supported values for @var{cpu_type} are
9400
9401 @table @samp
9402 @item ev4
9403 @itemx ev45
9404 @itemx 21064
9405 Schedules as an EV4 and has no instruction set extensions.
9406
9407 @item ev5
9408 @itemx 21164
9409 Schedules as an EV5 and has no instruction set extensions.
9410
9411 @item ev56
9412 @itemx 21164a
9413 Schedules as an EV5 and supports the BWX extension.
9414
9415 @item pca56
9416 @itemx 21164pc
9417 @itemx 21164PC
9418 Schedules as an EV5 and supports the BWX and MAX extensions.
9419
9420 @item ev6
9421 @itemx 21264
9422 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
9423
9424 @item ev67
9425 @itemx 21264a
9426 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
9427 @end table
9428
9429 @item -mtune=@var{cpu_type}
9430 @opindex mtune
9431 Set only the instruction scheduling parameters for machine type
9432 @var{cpu_type}.  The instruction set is not changed.
9433
9434 @item -mmemory-latency=@var{time}
9435 @opindex mmemory-latency
9436 Sets the latency the scheduler should assume for typical memory
9437 references as seen by the application.  This number is highly
9438 dependent on the memory access patterns used by the application
9439 and the size of the external cache on the machine.
9440
9441 Valid options for @var{time} are
9442
9443 @table @samp
9444 @item @var{number}
9445 A decimal number representing clock cycles.
9446
9447 @item L1
9448 @itemx L2
9449 @itemx L3
9450 @itemx main
9451 The compiler contains estimates of the number of clock cycles for
9452 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
9453 (also called Dcache, Scache, and Bcache), as well as to main memory.
9454 Note that L3 is only valid for EV5.
9455
9456 @end table
9457 @end table
9458
9459 @node DEC Alpha/VMS Options
9460 @subsection DEC Alpha/VMS Options
9461
9462 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
9463
9464 @table @gcctabopt
9465 @item -mvms-return-codes
9466 @opindex mvms-return-codes
9467 Return VMS condition codes from main.  The default is to return POSIX
9468 style condition (e.g.@: error) codes.
9469 @end table
9470
9471 @node FRV Options
9472 @subsection FRV Options
9473 @cindex FRV Options
9474
9475 @table @gcctabopt
9476 @item -mgpr-32
9477 @opindex mgpr-32
9478
9479 Only use the first 32 general purpose registers.
9480
9481 @item -mgpr-64
9482 @opindex mgpr-64
9483
9484 Use all 64 general purpose registers.
9485
9486 @item -mfpr-32
9487 @opindex mfpr-32
9488
9489 Use only the first 32 floating point registers.
9490
9491 @item -mfpr-64
9492 @opindex mfpr-64
9493
9494 Use all 64 floating point registers
9495
9496 @item -mhard-float
9497 @opindex mhard-float
9498
9499 Use hardware instructions for floating point operations.
9500
9501 @item -msoft-float
9502 @opindex msoft-float
9503
9504 Use library routines for floating point operations.
9505
9506 @item -malloc-cc
9507 @opindex malloc-cc
9508
9509 Dynamically allocate condition code registers.
9510
9511 @item -mfixed-cc
9512 @opindex mfixed-cc
9513
9514 Do not try to dynamically allocate condition code registers, only
9515 use @code{icc0} and @code{fcc0}.
9516
9517 @item -mdword
9518 @opindex mdword
9519
9520 Change ABI to use double word insns.
9521
9522 @item -mno-dword
9523 @opindex mno-dword
9524
9525 Do not use double word instructions.
9526
9527 @item -mdouble
9528 @opindex mdouble
9529
9530 Use floating point double instructions.
9531
9532 @item -mno-double
9533 @opindex mno-double
9534
9535 Do not use floating point double instructions.
9536
9537 @item -mmedia
9538 @opindex mmedia
9539
9540 Use media instructions.
9541
9542 @item -mno-media
9543 @opindex mno-media
9544
9545 Do not use media instructions.
9546
9547 @item -mmuladd
9548 @opindex mmuladd
9549
9550 Use multiply and add/subtract instructions.
9551
9552 @item -mno-muladd
9553 @opindex mno-muladd
9554
9555 Do not use multiply and add/subtract instructions.
9556
9557 @item -mfdpic
9558 @opindex mfdpic
9559
9560 Select the FDPIC ABI, that uses function descriptors to represent
9561 pointers to functions.  Without any PIC/PIE-related options, it
9562 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
9563 assumes GOT entries and small data are within a 12-bit range from the
9564 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
9565 are computed with 32 bits.
9566
9567 @item -minline-plt
9568 @opindex minline-plt
9569
9570 Enable inlining of PLT entries in function calls to functions that are
9571 not known to bind locally.  It has no effect without @option{-mfdpic}.
9572 It's enabled by default if optimizing for speed and compiling for
9573 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
9574 optimization option such as @option{-O3} or above is present in the
9575 command line.
9576
9577 @item -mTLS
9578 @opindex TLS
9579
9580 Assume a large TLS segment when generating thread-local code.
9581
9582 @item -mtls
9583 @opindex tls
9584
9585 Do not assume a large TLS segment when generating thread-local code.
9586
9587 @item -mgprel-ro
9588 @opindex mgprel-ro
9589
9590 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
9591 that is known to be in read-only sections.  It's enabled by default,
9592 except for @option{-fpic} or @option{-fpie}: even though it may help
9593 make the global offset table smaller, it trades 1 instruction for 4.
9594 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
9595 one of which may be shared by multiple symbols, and it avoids the need
9596 for a GOT entry for the referenced symbol, so it's more likely to be a
9597 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
9598
9599 @item -multilib-library-pic
9600 @opindex multilib-library-pic
9601
9602 Link with the (library, not FD) pic libraries.  It's implied by
9603 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
9604 @option{-fpic} without @option{-mfdpic}.  You should never have to use
9605 it explicitly.
9606
9607 @item -mlinked-fp
9608 @opindex mlinked-fp
9609
9610 Follow the EABI requirement of always creating a frame pointer whenever
9611 a stack frame is allocated.  This option is enabled by default and can
9612 be disabled with @option{-mno-linked-fp}.
9613
9614 @item -mlong-calls
9615 @opindex mlong-calls
9616
9617 Use indirect addressing to call functions outside the current
9618 compilation unit.  This allows the functions to be placed anywhere
9619 within the 32-bit address space.
9620
9621 @item -malign-labels
9622 @opindex malign-labels
9623
9624 Try to align labels to an 8-byte boundary by inserting nops into the
9625 previous packet.  This option only has an effect when VLIW packing
9626 is enabled.  It doesn't create new packets; it merely adds nops to
9627 existing ones.
9628
9629 @item -mlibrary-pic
9630 @opindex mlibrary-pic
9631
9632 Generate position-independent EABI code.
9633
9634 @item -macc-4
9635 @opindex macc-4
9636
9637 Use only the first four media accumulator registers.
9638
9639 @item -macc-8
9640 @opindex macc-8
9641
9642 Use all eight media accumulator registers.
9643
9644 @item -mpack
9645 @opindex mpack
9646
9647 Pack VLIW instructions.
9648
9649 @item -mno-pack
9650 @opindex mno-pack
9651
9652 Do not pack VLIW instructions.
9653
9654 @item -mno-eflags
9655 @opindex mno-eflags
9656
9657 Do not mark ABI switches in e_flags.
9658
9659 @item -mcond-move
9660 @opindex mcond-move
9661
9662 Enable the use of conditional-move instructions (default).
9663
9664 This switch is mainly for debugging the compiler and will likely be removed
9665 in a future version.
9666
9667 @item -mno-cond-move
9668 @opindex mno-cond-move
9669
9670 Disable the use of conditional-move instructions.
9671
9672 This switch is mainly for debugging the compiler and will likely be removed
9673 in a future version.
9674
9675 @item -mscc
9676 @opindex mscc
9677
9678 Enable the use of conditional set instructions (default).
9679
9680 This switch is mainly for debugging the compiler and will likely be removed
9681 in a future version.
9682
9683 @item -mno-scc
9684 @opindex mno-scc
9685
9686 Disable the use of conditional set instructions.
9687
9688 This switch is mainly for debugging the compiler and will likely be removed
9689 in a future version.
9690
9691 @item -mcond-exec
9692 @opindex mcond-exec
9693
9694 Enable the use of conditional execution (default).
9695
9696 This switch is mainly for debugging the compiler and will likely be removed
9697 in a future version.
9698
9699 @item -mno-cond-exec
9700 @opindex mno-cond-exec
9701
9702 Disable the use of conditional execution.
9703
9704 This switch is mainly for debugging the compiler and will likely be removed
9705 in a future version.
9706
9707 @item -mvliw-branch
9708 @opindex mvliw-branch
9709
9710 Run a pass to pack branches into VLIW instructions (default).
9711
9712 This switch is mainly for debugging the compiler and will likely be removed
9713 in a future version.
9714
9715 @item -mno-vliw-branch
9716 @opindex mno-vliw-branch
9717
9718 Do not run a pass to pack branches into VLIW instructions.
9719
9720 This switch is mainly for debugging the compiler and will likely be removed
9721 in a future version.
9722
9723 @item -mmulti-cond-exec
9724 @opindex mmulti-cond-exec
9725
9726 Enable optimization of @code{&&} and @code{||} in conditional execution
9727 (default).
9728
9729 This switch is mainly for debugging the compiler and will likely be removed
9730 in a future version.
9731
9732 @item -mno-multi-cond-exec
9733 @opindex mno-multi-cond-exec
9734
9735 Disable optimization of @code{&&} and @code{||} in conditional execution.
9736
9737 This switch is mainly for debugging the compiler and will likely be removed
9738 in a future version.
9739
9740 @item -mnested-cond-exec
9741 @opindex mnested-cond-exec
9742
9743 Enable nested conditional execution optimizations (default).
9744
9745 This switch is mainly for debugging the compiler and will likely be removed
9746 in a future version.
9747
9748 @item -mno-nested-cond-exec
9749 @opindex mno-nested-cond-exec
9750
9751 Disable nested conditional execution optimizations.
9752
9753 This switch is mainly for debugging the compiler and will likely be removed
9754 in a future version.
9755
9756 @item -moptimize-membar
9757 @opindex moptimize-membar
9758
9759 This switch removes redundant @code{membar} instructions from the
9760 compiler generated code.  It is enabled by default.
9761
9762 @item -mno-optimize-membar
9763 @opindex mno-optimize-membar
9764
9765 This switch disables the automatic removal of redundant @code{membar}
9766 instructions from the generated code.
9767
9768 @item -mtomcat-stats
9769 @opindex mtomcat-stats
9770
9771 Cause gas to print out tomcat statistics.
9772
9773 @item -mcpu=@var{cpu}
9774 @opindex mcpu
9775
9776 Select the processor type for which to generate code.  Possible values are
9777 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
9778 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
9779
9780 @end table
9781
9782 @node GNU/Linux Options
9783 @subsection GNU/Linux Options
9784
9785 These @samp{-m} options are defined for GNU/Linux targets:
9786
9787 @table @gcctabopt
9788 @item -mglibc
9789 @opindex mglibc
9790 Use the GNU C library instead of uClibc.  This is the default except
9791 on @samp{*-*-linux-*uclibc*} targets.
9792
9793 @item -muclibc
9794 @opindex muclibc
9795 Use uClibc instead of the GNU C library.  This is the default on
9796 @samp{*-*-linux-*uclibc*} targets.
9797 @end table
9798
9799 @node H8/300 Options
9800 @subsection H8/300 Options
9801
9802 These @samp{-m} options are defined for the H8/300 implementations:
9803
9804 @table @gcctabopt
9805 @item -mrelax
9806 @opindex mrelax
9807 Shorten some address references at link time, when possible; uses the
9808 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
9809 ld, Using ld}, for a fuller description.
9810
9811 @item -mh
9812 @opindex mh
9813 Generate code for the H8/300H@.
9814
9815 @item -ms
9816 @opindex ms
9817 Generate code for the H8S@.
9818
9819 @item -mn
9820 @opindex mn
9821 Generate code for the H8S and H8/300H in the normal mode.  This switch
9822 must be used either with @option{-mh} or @option{-ms}.
9823
9824 @item -ms2600
9825 @opindex ms2600
9826 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
9827
9828 @item -mint32
9829 @opindex mint32
9830 Make @code{int} data 32 bits by default.
9831
9832 @item -malign-300
9833 @opindex malign-300
9834 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
9835 The default for the H8/300H and H8S is to align longs and floats on 4
9836 byte boundaries.
9837 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
9838 This option has no effect on the H8/300.
9839 @end table
9840
9841 @node HPPA Options
9842 @subsection HPPA Options
9843 @cindex HPPA Options
9844
9845 These @samp{-m} options are defined for the HPPA family of computers:
9846
9847 @table @gcctabopt
9848 @item -march=@var{architecture-type}
9849 @opindex march
9850 Generate code for the specified architecture.  The choices for
9851 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
9852 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
9853 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
9854 architecture option for your machine.  Code compiled for lower numbered
9855 architectures will run on higher numbered architectures, but not the
9856 other way around.
9857
9858 @item -mpa-risc-1-0
9859 @itemx -mpa-risc-1-1
9860 @itemx -mpa-risc-2-0
9861 @opindex mpa-risc-1-0
9862 @opindex mpa-risc-1-1
9863 @opindex mpa-risc-2-0
9864 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
9865
9866 @item -mbig-switch
9867 @opindex mbig-switch
9868 Generate code suitable for big switch tables.  Use this option only if
9869 the assembler/linker complain about out of range branches within a switch
9870 table.
9871
9872 @item -mjump-in-delay
9873 @opindex mjump-in-delay
9874 Fill delay slots of function calls with unconditional jump instructions
9875 by modifying the return pointer for the function call to be the target
9876 of the conditional jump.
9877
9878 @item -mdisable-fpregs
9879 @opindex mdisable-fpregs
9880 Prevent floating point registers from being used in any manner.  This is
9881 necessary for compiling kernels which perform lazy context switching of
9882 floating point registers.  If you use this option and attempt to perform
9883 floating point operations, the compiler will abort.
9884
9885 @item -mdisable-indexing
9886 @opindex mdisable-indexing
9887 Prevent the compiler from using indexing address modes.  This avoids some
9888 rather obscure problems when compiling MIG generated code under MACH@.
9889
9890 @item -mno-space-regs
9891 @opindex mno-space-regs
9892 Generate code that assumes the target has no space registers.  This allows
9893 GCC to generate faster indirect calls and use unscaled index address modes.
9894
9895 Such code is suitable for level 0 PA systems and kernels.
9896
9897 @item -mfast-indirect-calls
9898 @opindex mfast-indirect-calls
9899 Generate code that assumes calls never cross space boundaries.  This
9900 allows GCC to emit code which performs faster indirect calls.
9901
9902 This option will not work in the presence of shared libraries or nested
9903 functions.
9904
9905 @item -mfixed-range=@var{register-range}
9906 @opindex mfixed-range
9907 Generate code treating the given register range as fixed registers.
9908 A fixed register is one that the register allocator can not use.  This is
9909 useful when compiling kernel code.  A register range is specified as
9910 two registers separated by a dash.  Multiple register ranges can be
9911 specified separated by a comma.
9912
9913 @item -mlong-load-store
9914 @opindex mlong-load-store
9915 Generate 3-instruction load and store sequences as sometimes required by
9916 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
9917 the HP compilers.
9918
9919 @item -mportable-runtime
9920 @opindex mportable-runtime
9921 Use the portable calling conventions proposed by HP for ELF systems.
9922
9923 @item -mgas
9924 @opindex mgas
9925 Enable the use of assembler directives only GAS understands.
9926
9927 @item -mschedule=@var{cpu-type}
9928 @opindex mschedule
9929 Schedule code according to the constraints for the machine type
9930 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
9931 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
9932 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
9933 proper scheduling option for your machine.  The default scheduling is
9934 @samp{8000}.
9935
9936 @item -mlinker-opt
9937 @opindex mlinker-opt
9938 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
9939 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
9940 linkers in which they give bogus error messages when linking some programs.
9941
9942 @item -msoft-float
9943 @opindex msoft-float
9944 Generate output containing library calls for floating point.
9945 @strong{Warning:} the requisite libraries are not available for all HPPA
9946 targets.  Normally the facilities of the machine's usual C compiler are
9947 used, but this cannot be done directly in cross-compilation.  You must make
9948 your own arrangements to provide suitable library functions for
9949 cross-compilation.  The embedded target @samp{hppa1.1-*-pro}
9950 does provide software floating point support.
9951
9952 @option{-msoft-float} changes the calling convention in the output file;
9953 therefore, it is only useful if you compile @emph{all} of a program with
9954 this option.  In particular, you need to compile @file{libgcc.a}, the
9955 library that comes with GCC, with @option{-msoft-float} in order for
9956 this to work.
9957
9958 @item -msio
9959 @opindex msio
9960 Generate the predefine, @code{_SIO}, for server IO@.  The default is
9961 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
9962 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
9963 options are available under HP-UX and HI-UX@.
9964
9965 @item -mgnu-ld
9966 @opindex gnu-ld
9967 Use GNU ld specific options.  This passes @option{-shared} to ld when
9968 building a shared library.  It is the default when GCC is configured,
9969 explicitly or implicitly, with the GNU linker.  This option does not
9970 have any affect on which ld is called, it only changes what parameters
9971 are passed to that ld.  The ld that is called is determined by the
9972 @option{--with-ld} configure option, GCC's program search path, and
9973 finally by the user's @env{PATH}.  The linker used by GCC can be printed
9974 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
9975 on the 64 bit HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
9976
9977 @item -mhp-ld
9978 @opindex hp-ld
9979 Use HP ld specific options.  This passes @option{-b} to ld when building
9980 a shared library and passes @option{+Accept TypeMismatch} to ld on all
9981 links.  It is the default when GCC is configured, explicitly or
9982 implicitly, with the HP linker.  This option does not have any affect on
9983 which ld is called, it only changes what parameters are passed to that
9984 ld.  The ld that is called is determined by the @option{--with-ld}
9985 configure option, GCC's program search path, and finally by the user's
9986 @env{PATH}.  The linker used by GCC can be printed using @samp{which
9987 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
9988 HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
9989
9990 @item -mlong-calls
9991 @opindex mno-long-calls
9992 Generate code that uses long call sequences.  This ensures that a call
9993 is always able to reach linker generated stubs.  The default is to generate
9994 long calls only when the distance from the call site to the beginning
9995 of the function or translation unit, as the case may be, exceeds a
9996 predefined limit set by the branch type being used.  The limits for
9997 normal calls are 7,600,000 and 240,000 bytes, respectively for the
9998 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
9999 240,000 bytes.
10000
10001 Distances are measured from the beginning of functions when using the
10002 @option{-ffunction-sections} option, or when using the @option{-mgas}
10003 and @option{-mno-portable-runtime} options together under HP-UX with
10004 the SOM linker.
10005
10006 It is normally not desirable to use this option as it will degrade
10007 performance.  However, it may be useful in large applications,
10008 particularly when partial linking is used to build the application.
10009
10010 The types of long calls used depends on the capabilities of the
10011 assembler and linker, and the type of code being generated.  The
10012 impact on systems that support long absolute calls, and long pic
10013 symbol-difference or pc-relative calls should be relatively small.
10014 However, an indirect call is used on 32-bit ELF systems in pic code
10015 and it is quite long.
10016
10017 @item -munix=@var{unix-std}
10018 @opindex march
10019 Generate compiler predefines and select a startfile for the specified
10020 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
10021 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
10022 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
10023 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
10024 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
10025 and later.
10026
10027 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
10028 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
10029 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
10030 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
10031 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
10032 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
10033
10034 It is @emph{important} to note that this option changes the interfaces
10035 for various library routines.  It also affects the operational behavior
10036 of the C library.  Thus, @emph{extreme} care is needed in using this
10037 option.
10038
10039 Library code that is intended to operate with more than one UNIX
10040 standard must test, set and restore the variable @var{__xpg4_extended_mask}
10041 as appropriate.  Most GNU software doesn't provide this capability.
10042
10043 @item -nolibdld
10044 @opindex nolibdld
10045 Suppress the generation of link options to search libdld.sl when the
10046 @option{-static} option is specified on HP-UX 10 and later.
10047
10048 @item -static
10049 @opindex static
10050 The HP-UX implementation of setlocale in libc has a dependency on
10051 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
10052 when the @option{-static} option is specified, special link options
10053 are needed to resolve this dependency.
10054
10055 On HP-UX 10 and later, the GCC driver adds the necessary options to
10056 link with libdld.sl when the @option{-static} option is specified.
10057 This causes the resulting binary to be dynamic.  On the 64-bit port,
10058 the linkers generate dynamic binaries by default in any case.  The
10059 @option{-nolibdld} option can be used to prevent the GCC driver from
10060 adding these link options.
10061
10062 @item -threads
10063 @opindex threads
10064 Add support for multithreading with the @dfn{dce thread} library
10065 under HP-UX@.  This option sets flags for both the preprocessor and
10066 linker.
10067 @end table
10068
10069 @node i386 and x86-64 Options
10070 @subsection Intel 386 and AMD x86-64 Options
10071 @cindex i386 Options
10072 @cindex x86-64 Options
10073 @cindex Intel 386 Options
10074 @cindex AMD x86-64 Options
10075
10076 These @samp{-m} options are defined for the i386 and x86-64 family of
10077 computers:
10078
10079 @table @gcctabopt
10080 @item -mtune=@var{cpu-type}
10081 @opindex mtune
10082 Tune to @var{cpu-type} everything applicable about the generated code, except
10083 for the ABI and the set of available instructions.  The choices for
10084 @var{cpu-type} are:
10085 @table @emph
10086 @item generic
10087 Produce code optimized for the most common IA32/AMD64/EM64T processors.
10088 If you know the CPU on which your code will run, then you should use
10089 the corresponding @option{-mtune} option instead of
10090 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
10091 of your application will have, then you should use this option.
10092
10093 As new processors are deployed in the marketplace, the behavior of this
10094 option will change.  Therefore, if you upgrade to a newer version of
10095 GCC, the code generated option will change to reflect the processors
10096 that were most common when that version of GCC was released.
10097
10098 There is no @option{-march=generic} option because @option{-march}
10099 indicates the instruction set the compiler can use, and there is no
10100 generic instruction set applicable to all processors.  In contrast,
10101 @option{-mtune} indicates the processor (or, in this case, collection of
10102 processors) for which the code is optimized.
10103 @item native
10104 This selects the CPU to tune for at compilation time by determining
10105 the processor type of the compiling machine.  Using @option{-mtune=native}
10106 will produce code optimized for the local machine under the constraints
10107 of the selected instruction set.  Using @option{-march=native} will
10108 enable all instruction subsets supported by the local machine (hence
10109 the result might not run on different machines).
10110 @item i386
10111 Original Intel's i386 CPU@.
10112 @item i486
10113 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
10114 @item i586, pentium
10115 Intel Pentium CPU with no MMX support.
10116 @item pentium-mmx
10117 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
10118 @item pentiumpro
10119 Intel PentiumPro CPU@.
10120 @item i686
10121 Same as @code{generic}, but when used as @code{march} option, PentiumPro
10122 instruction set will be used, so the code will run on all i686 family chips.
10123 @item pentium2
10124 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
10125 @item pentium3, pentium3m
10126 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
10127 support.
10128 @item pentium-m
10129 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
10130 support.  Used by Centrino notebooks.
10131 @item pentium4, pentium4m
10132 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
10133 @item prescott
10134 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
10135 set support.
10136 @item nocona
10137 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
10138 SSE2 and SSE3 instruction set support.
10139 @item core2
10140 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
10141 instruction set support.
10142 @item k6
10143 AMD K6 CPU with MMX instruction set support.
10144 @item k6-2, k6-3
10145 Improved versions of AMD K6 CPU with MMX and 3dNOW! instruction set support.
10146 @item athlon, athlon-tbird
10147 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch instructions
10148 support.
10149 @item athlon-4, athlon-xp, athlon-mp
10150 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE
10151 instruction set support.
10152 @item k8, opteron, athlon64, athlon-fx
10153 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
10154 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW! and 64-bit instruction set extensions.)
10155 @item k8-sse3, opteron-sse3, athlon64-sse3
10156 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
10157 @item amdfam10, barcelona
10158 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
10159 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3dNOW!, enhanced 3dNOW!, ABM and 64-bit
10160 instruction set extensions.)
10161 @item winchip-c6
10162 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
10163 set support.
10164 @item winchip2
10165 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!
10166 instruction set support.
10167 @item c3
10168 Via C3 CPU with MMX and 3dNOW! instruction set support.  (No scheduling is
10169 implemented for this chip.)
10170 @item c3-2
10171 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
10172 implemented for this chip.)
10173 @item geode
10174 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
10175 @end table
10176
10177 While picking a specific @var{cpu-type} will schedule things appropriately
10178 for that particular chip, the compiler will not generate any code that
10179 does not run on the i386 without the @option{-march=@var{cpu-type}} option
10180 being used.
10181
10182 @item -march=@var{cpu-type}
10183 @opindex march
10184 Generate instructions for the machine type @var{cpu-type}.  The choices
10185 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
10186 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
10187
10188 @item -mcpu=@var{cpu-type}
10189 @opindex mcpu
10190 A deprecated synonym for @option{-mtune}.
10191
10192 @item -mfpmath=@var{unit}
10193 @opindex march
10194 Generate floating point arithmetics for selected unit @var{unit}.  The choices
10195 for @var{unit} are:
10196
10197 @table @samp
10198 @item 387
10199 Use the standard 387 floating point coprocessor present majority of chips and
10200 emulated otherwise.  Code compiled with this option will run almost everywhere.
10201 The temporary results are computed in 80bit precision instead of precision
10202 specified by the type resulting in slightly different results compared to most
10203 of other chips.  See @option{-ffloat-store} for more detailed description.
10204
10205 This is the default choice for i386 compiler.
10206
10207 @item sse
10208 Use scalar floating point instructions present in the SSE instruction set.
10209 This instruction set is supported by Pentium3 and newer chips, in the AMD line
10210 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
10211 instruction set supports only single precision arithmetics, thus the double and
10212 extended precision arithmetics is still done using 387.  Later version, present
10213 only in Pentium4 and the future AMD x86-64 chips supports double precision
10214 arithmetics too.
10215
10216 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
10217 or @option{-msse2} switches to enable SSE extensions and make this option
10218 effective.  For the x86-64 compiler, these extensions are enabled by default.
10219
10220 The resulting code should be considerably faster in the majority of cases and avoid
10221 the numerical instability problems of 387 code, but may break some existing
10222 code that expects temporaries to be 80bit.
10223
10224 This is the default choice for the x86-64 compiler.
10225
10226 @item sse,387
10227 Attempt to utilize both instruction sets at once.  This effectively double the
10228 amount of available registers and on chips with separate execution units for
10229 387 and SSE the execution resources too.  Use this option with care, as it is
10230 still experimental, because the GCC register allocator does not model separate
10231 functional units well resulting in instable performance.
10232 @end table
10233
10234 @item -masm=@var{dialect}
10235 @opindex masm=@var{dialect}
10236 Output asm instructions using selected @var{dialect}.  Supported
10237 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
10238 not support @samp{intel}.
10239
10240 @item -mieee-fp
10241 @itemx -mno-ieee-fp
10242 @opindex mieee-fp
10243 @opindex mno-ieee-fp
10244 Control whether or not the compiler uses IEEE floating point
10245 comparisons.  These handle correctly the case where the result of a
10246 comparison is unordered.
10247
10248 @item -msoft-float
10249 @opindex msoft-float
10250 Generate output containing library calls for floating point.
10251 @strong{Warning:} the requisite libraries are not part of GCC@.
10252 Normally the facilities of the machine's usual C compiler are used, but
10253 this can't be done directly in cross-compilation.  You must make your
10254 own arrangements to provide suitable library functions for
10255 cross-compilation.
10256
10257 On machines where a function returns floating point results in the 80387
10258 register stack, some floating point opcodes may be emitted even if
10259 @option{-msoft-float} is used.
10260
10261 @item -mno-fp-ret-in-387
10262 @opindex mno-fp-ret-in-387
10263 Do not use the FPU registers for return values of functions.
10264
10265 The usual calling convention has functions return values of types
10266 @code{float} and @code{double} in an FPU register, even if there
10267 is no FPU@.  The idea is that the operating system should emulate
10268 an FPU@.
10269
10270 The option @option{-mno-fp-ret-in-387} causes such values to be returned
10271 in ordinary CPU registers instead.
10272
10273 @item -mno-fancy-math-387
10274 @opindex mno-fancy-math-387
10275 Some 387 emulators do not support the @code{sin}, @code{cos} and
10276 @code{sqrt} instructions for the 387.  Specify this option to avoid
10277 generating those instructions.  This option is the default on FreeBSD,
10278 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
10279 indicates that the target cpu will always have an FPU and so the
10280 instruction will not need emulation.  As of revision 2.6.1, these
10281 instructions are not generated unless you also use the
10282 @option{-funsafe-math-optimizations} switch.
10283
10284 @item -malign-double
10285 @itemx -mno-align-double
10286 @opindex malign-double
10287 @opindex mno-align-double
10288 Control whether GCC aligns @code{double}, @code{long double}, and
10289 @code{long long} variables on a two word boundary or a one word
10290 boundary.  Aligning @code{double} variables on a two word boundary will
10291 produce code that runs somewhat faster on a @samp{Pentium} at the
10292 expense of more memory.
10293
10294 On x86-64, @option{-malign-double} is enabled by default.
10295
10296 @strong{Warning:} if you use the @option{-malign-double} switch,
10297 structures containing the above types will be aligned differently than
10298 the published application binary interface specifications for the 386
10299 and will not be binary compatible with structures in code compiled
10300 without that switch.
10301
10302 @item -m96bit-long-double
10303 @itemx -m128bit-long-double
10304 @opindex m96bit-long-double
10305 @opindex m128bit-long-double
10306 These switches control the size of @code{long double} type.  The i386
10307 application binary interface specifies the size to be 96 bits,
10308 so @option{-m96bit-long-double} is the default in 32 bit mode.
10309
10310 Modern architectures (Pentium and newer) would prefer @code{long double}
10311 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
10312 conforming to the ABI, this would not be possible.  So specifying a
10313 @option{-m128bit-long-double} will align @code{long double}
10314 to a 16 byte boundary by padding the @code{long double} with an additional
10315 32 bit zero.
10316
10317 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
10318 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
10319
10320 Notice that neither of these options enable any extra precision over the x87
10321 standard of 80 bits for a @code{long double}.
10322
10323 @strong{Warning:} if you override the default value for your target ABI, the
10324 structures and arrays containing @code{long double} variables will change
10325 their size as well as function calling convention for function taking
10326 @code{long double} will be modified.  Hence they will not be binary
10327 compatible with arrays or structures in code compiled without that switch.
10328
10329 @item -mmlarge-data-threshold=@var{number}
10330 @opindex mlarge-data-threshold=@var{number}
10331 When @option{-mcmodel=medium} is specified, the data greater than
10332 @var{threshold} are placed in large data section.  This value must be the
10333 same across all object linked into the binary and defaults to 65535.
10334
10335 @item -mrtd
10336 @opindex mrtd
10337 Use a different function-calling convention, in which functions that
10338 take a fixed number of arguments return with the @code{ret} @var{num}
10339 instruction, which pops their arguments while returning.  This saves one
10340 instruction in the caller since there is no need to pop the arguments
10341 there.
10342
10343 You can specify that an individual function is called with this calling
10344 sequence with the function attribute @samp{stdcall}.  You can also
10345 override the @option{-mrtd} option by using the function attribute
10346 @samp{cdecl}.  @xref{Function Attributes}.
10347
10348 @strong{Warning:} this calling convention is incompatible with the one
10349 normally used on Unix, so you cannot use it if you need to call
10350 libraries compiled with the Unix compiler.
10351
10352 Also, you must provide function prototypes for all functions that
10353 take variable numbers of arguments (including @code{printf});
10354 otherwise incorrect code will be generated for calls to those
10355 functions.
10356
10357 In addition, seriously incorrect code will result if you call a
10358 function with too many arguments.  (Normally, extra arguments are
10359 harmlessly ignored.)
10360
10361 @item -mregparm=@var{num}
10362 @opindex mregparm
10363 Control how many registers are used to pass integer arguments.  By
10364 default, no registers are used to pass arguments, and at most 3
10365 registers can be used.  You can control this behavior for a specific
10366 function by using the function attribute @samp{regparm}.
10367 @xref{Function Attributes}.
10368
10369 @strong{Warning:} if you use this switch, and
10370 @var{num} is nonzero, then you must build all modules with the same
10371 value, including any libraries.  This includes the system libraries and
10372 startup modules.
10373
10374 @item -msseregparm
10375 @opindex msseregparm
10376 Use SSE register passing conventions for float and double arguments
10377 and return values.  You can control this behavior for a specific
10378 function by using the function attribute @samp{sseregparm}.
10379 @xref{Function Attributes}.
10380
10381 @strong{Warning:} if you use this switch then you must build all
10382 modules with the same value, including any libraries.  This includes
10383 the system libraries and startup modules.
10384
10385 @item -mpc32
10386 @itemx -mpc64
10387 @itemx -mpc80
10388 @opindex mpc32
10389 @opindex mpc64
10390 @opindex mpc80
10391
10392 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
10393 is specified, the significands of results of floating-point operations are
10394 rounded to 24 bits (single precision); @option{-mpc64} rounds the the
10395 significands of results of floating-point operations to 53 bits (double
10396 precision) and @option{-mpc80} rounds the significands of results of
10397 floating-point operations to 64 bits (extended double precision), which is
10398 the default.  When this option is used, floating-point operations in higher
10399 precisions are not available to the programmer without setting the FPU
10400 control word explicitly.
10401
10402 Setting the rounding of floating-point operations to less than the default
10403 80 bits can speed some programs by 2% or more.  Note that some mathematical
10404 libraries assume that extended precision (80 bit) floating-point operations
10405 are enabled by default; routines in such libraries could suffer significant
10406 loss of accuracy, typically through so-called "catastrophic cancellation",
10407 when this option is used to set the precision to less than extended precision. 
10408
10409 @item -mstackrealign
10410 @opindex mstackrealign
10411 Realign the stack at entry.  On the Intel x86, the
10412 @option{-mstackrealign} option will generate an alternate prologue and
10413 epilogue that realigns the runtime stack.  This supports mixing legacy
10414 codes that keep a 4-byte aligned stack with modern codes that keep a
10415 16-byte stack for SSE compatibility.  The alternate prologue and
10416 epilogue are slower and bigger than the regular ones, and the
10417 alternate prologue requires an extra scratch register; this lowers the
10418 number of registers available if used in conjunction with the
10419 @code{regparm} attribute.  The @option{-mstackrealign} option is
10420 incompatible with the nested function prologue; this is considered a
10421 hard error.  See also the attribute @code{force_align_arg_pointer},
10422 applicable to individual functions.
10423
10424 @item -mpreferred-stack-boundary=@var{num}
10425 @opindex mpreferred-stack-boundary
10426 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
10427 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
10428 the default is 4 (16 bytes or 128 bits).
10429
10430 On Pentium and PentiumPro, @code{double} and @code{long double} values
10431 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
10432 suffer significant run time performance penalties.  On Pentium III, the
10433 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
10434 properly if it is not 16 byte aligned.
10435
10436 To ensure proper alignment of this values on the stack, the stack boundary
10437 must be as aligned as that required by any value stored on the stack.
10438 Further, every function must be generated such that it keeps the stack
10439 aligned.  Thus calling a function compiled with a higher preferred
10440 stack boundary from a function compiled with a lower preferred stack
10441 boundary will most likely misalign the stack.  It is recommended that
10442 libraries that use callbacks always use the default setting.
10443
10444 This extra alignment does consume extra stack space, and generally
10445 increases code size.  Code that is sensitive to stack space usage, such
10446 as embedded systems and operating system kernels, may want to reduce the
10447 preferred alignment to @option{-mpreferred-stack-boundary=2}.
10448
10449 @item -mmmx
10450 @itemx -mno-mmx
10451 @item -msse
10452 @itemx -mno-sse
10453 @item -msse2
10454 @itemx -mno-sse2
10455 @item -msse3
10456 @itemx -mno-sse3
10457 @item -mssse3
10458 @itemx -mno-ssse3
10459 @item -msse4.1
10460 @itemx -mno-sse4.1
10461 @item -msse4.2
10462 @itemx -mno-sse4.2
10463 @item -msse4
10464 @itemx -mno-sse4
10465 @item -msse4a
10466 @item -mno-sse4a
10467 @item -msse5
10468 @itemx -mno-sse5
10469 @item -m3dnow
10470 @itemx -mno-3dnow
10471 @item -mpopcnt
10472 @itemx -mno-popcnt
10473 @item -mabm
10474 @itemx -mno-abm
10475 @opindex mmmx
10476 @opindex mno-mmx
10477 @opindex msse
10478 @opindex mno-sse
10479 @opindex m3dnow
10480 @opindex mno-3dnow
10481 These switches enable or disable the use of instructions in the MMX,
10482 SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4A, SSE5, ABM or 3DNow! extended
10483 instruction sets.
10484 These extensions are also available as built-in functions: see
10485 @ref{X86 Built-in Functions}, for details of the functions enabled and
10486 disabled by these switches.
10487
10488 To have SSE/SSE2 instructions generated automatically from floating-point
10489 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
10490
10491 These options will enable GCC to use these extended instructions in
10492 generated code, even without @option{-mfpmath=sse}.  Applications which
10493 perform runtime CPU detection must compile separate files for each
10494 supported architecture, using the appropriate flags.  In particular,
10495 the file containing the CPU detection code should be compiled without
10496 these options.
10497
10498 @item -mcx16
10499 @opindex mcx16
10500 This option will enable GCC to use CMPXCHG16B instruction in generated code.
10501 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
10502 data types.  This is useful for high resolution counters that could be updated
10503 by multiple processors (or cores).  This instruction is generated as part of
10504 atomic built-in functions: see @ref{Atomic Builtins} for details.
10505
10506 @item -msahf
10507 @opindex msahf
10508 This option will enable GCC to use SAHF instruction in generated 64-bit code.
10509 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
10510 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
10511 SAHF are load and store instructions, respectively, for certain status flags.
10512 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
10513 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
10514
10515 @item -mrecip
10516 @opindex mrecip
10517 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
10518 vectorized variants RCPPS and RSQRTPS) instead of DIVSS and SQRTSS (and their
10519 vectorized variants).  These instructions will be generated only when
10520 @option{-funsafe-math-optimizations} is enabled.
10521
10522 @item -mveclibabi=@var{type}
10523 @opindex mveclibabi
10524 Specifies the ABI type to use for vectorizing intrinsics using an
10525 external library.  Supported types are @code{acml} for the AMD
10526 math core library style of interfacing.  GCC will currently emit
10527 calls to @code{__vrd2_sin}, @code{__vrd2_cos}, @code{__vrd2_exp},
10528 @code{__vrd2_log}, @code{__vrd2_log2}, @code{__vrd2_log10},
10529 @code{__vrs4_sinf}, @code{__vrs4_cosf}, @code{__vrs4_expf},
10530 @code{__vrs4_logf}, @code{__vrs4_log2f}, @code{__vrs4_log10f}
10531 and @code{__vrs4_powf} when using this type and @option{-ftree-vectorize}
10532 is enabled.  A ACML ABI compatible library will have to be specified
10533 at link time.
10534
10535 @item -mpush-args
10536 @itemx -mno-push-args
10537 @opindex mpush-args
10538 @opindex mno-push-args
10539 Use PUSH operations to store outgoing parameters.  This method is shorter
10540 and usually equally fast as method using SUB/MOV operations and is enabled
10541 by default.  In some cases disabling it may improve performance because of
10542 improved scheduling and reduced dependencies.
10543
10544 @item -maccumulate-outgoing-args
10545 @opindex maccumulate-outgoing-args
10546 If enabled, the maximum amount of space required for outgoing arguments will be
10547 computed in the function prologue.  This is faster on most modern CPUs
10548 because of reduced dependencies, improved scheduling and reduced stack usage
10549 when preferred stack boundary is not equal to 2.  The drawback is a notable
10550 increase in code size.  This switch implies @option{-mno-push-args}.
10551
10552 @item -mthreads
10553 @opindex mthreads
10554 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
10555 on thread-safe exception handling must compile and link all code with the
10556 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
10557 @option{-D_MT}; when linking, it links in a special thread helper library
10558 @option{-lmingwthrd} which cleans up per thread exception handling data.
10559
10560 @item -mno-align-stringops
10561 @opindex mno-align-stringops
10562 Do not align destination of inlined string operations.  This switch reduces
10563 code size and improves performance in case the destination is already aligned,
10564 but GCC doesn't know about it.
10565
10566 @item -minline-all-stringops
10567 @opindex minline-all-stringops
10568 By default GCC inlines string operations only when destination is known to be
10569 aligned at least to 4 byte boundary.  This enables more inlining, increase code
10570 size, but may improve performance of code that depends on fast memcpy, strlen
10571 and memset for short lengths.
10572
10573 @item -minline-stringops-dynamically
10574 @opindex minline-stringops-dynamically
10575 For string operation of unknown size, inline runtime checks so for small
10576 blocks inline code is used, while for large blocks library call is used.
10577
10578 @item -mstringop-strategy=@var{alg}
10579 @opindex mstringop-strategy=@var{alg}
10580 Overwrite internal decision heuristic about particular algorithm to inline
10581 string operation with.  The allowed values are @code{rep_byte},
10582 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
10583 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
10584 expanding inline loop, @code{libcall} for always expanding library call.
10585
10586 @item -momit-leaf-frame-pointer
10587 @opindex momit-leaf-frame-pointer
10588 Don't keep the frame pointer in a register for leaf functions.  This
10589 avoids the instructions to save, set up and restore frame pointers and
10590 makes an extra register available in leaf functions.  The option
10591 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10592 which might make debugging harder.
10593
10594 @item -mtls-direct-seg-refs
10595 @itemx -mno-tls-direct-seg-refs
10596 @opindex mtls-direct-seg-refs
10597 Controls whether TLS variables may be accessed with offsets from the
10598 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
10599 or whether the thread base pointer must be added.  Whether or not this
10600 is legal depends on the operating system, and whether it maps the
10601 segment to cover the entire TLS area.
10602
10603 For systems that use GNU libc, the default is on.
10604
10605 @item -mfused-madd
10606 @itemx -mno-fused-madd
10607 @opindex mfused-madd
10608 Enable automatic generation of fused floating point multiply-add instructions
10609 if the ISA supports such instructions.  The -mfused-madd option is on by
10610 default.  The fused multiply-add instructions have a different
10611 rounding behavior compared to executing a multiply followed by an add.
10612 @end table
10613
10614 These @samp{-m} switches are supported in addition to the above
10615 on AMD x86-64 processors in 64-bit environments.
10616
10617 @table @gcctabopt
10618 @item -m32
10619 @itemx -m64
10620 @opindex m32
10621 @opindex m64
10622 Generate code for a 32-bit or 64-bit environment.
10623 The 32-bit environment sets int, long and pointer to 32 bits and
10624 generates code that runs on any i386 system.
10625 The 64-bit environment sets int to 32 bits and long and pointer
10626 to 64 bits and generates code for AMD's x86-64 architecture. For
10627 darwin only the -m64 option turns off the @option{-fno-pic} and
10628 @option{-mdynamic-no-pic} options.
10629
10630 @item -mno-red-zone
10631 @opindex no-red-zone
10632 Do not use a so called red zone for x86-64 code.  The red zone is mandated
10633 by the x86-64 ABI, it is a 128-byte area beyond the location of the
10634 stack pointer that will not be modified by signal or interrupt handlers
10635 and therefore can be used for temporary data without adjusting the stack
10636 pointer.  The flag @option{-mno-red-zone} disables this red zone.
10637
10638 @item -mcmodel=small
10639 @opindex mcmodel=small
10640 Generate code for the small code model: the program and its symbols must
10641 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
10642 Programs can be statically or dynamically linked.  This is the default
10643 code model.
10644
10645 @item -mcmodel=kernel
10646 @opindex mcmodel=kernel
10647 Generate code for the kernel code model.  The kernel runs in the
10648 negative 2 GB of the address space.
10649 This model has to be used for Linux kernel code.
10650
10651 @item -mcmodel=medium
10652 @opindex mcmodel=medium
10653 Generate code for the medium model: The program is linked in the lower 2
10654 GB of the address space but symbols can be located anywhere in the
10655 address space.  Programs can be statically or dynamically linked, but
10656 building of shared libraries are not supported with the medium model.
10657
10658 @item -mcmodel=large
10659 @opindex mcmodel=large
10660 Generate code for the large model: This model makes no assumptions
10661 about addresses and sizes of sections.
10662 @end table
10663
10664 @node IA-64 Options
10665 @subsection IA-64 Options
10666 @cindex IA-64 Options
10667
10668 These are the @samp{-m} options defined for the Intel IA-64 architecture.
10669
10670 @table @gcctabopt
10671 @item -mbig-endian
10672 @opindex mbig-endian
10673 Generate code for a big endian target.  This is the default for HP-UX@.
10674
10675 @item -mlittle-endian
10676 @opindex mlittle-endian
10677 Generate code for a little endian target.  This is the default for AIX5
10678 and GNU/Linux.
10679
10680 @item -mgnu-as
10681 @itemx -mno-gnu-as
10682 @opindex mgnu-as
10683 @opindex mno-gnu-as
10684 Generate (or don't) code for the GNU assembler.  This is the default.
10685 @c Also, this is the default if the configure option @option{--with-gnu-as}
10686 @c is used.
10687
10688 @item -mgnu-ld
10689 @itemx -mno-gnu-ld
10690 @opindex mgnu-ld
10691 @opindex mno-gnu-ld
10692 Generate (or don't) code for the GNU linker.  This is the default.
10693 @c Also, this is the default if the configure option @option{--with-gnu-ld}
10694 @c is used.
10695
10696 @item -mno-pic
10697 @opindex mno-pic
10698 Generate code that does not use a global pointer register.  The result
10699 is not position independent code, and violates the IA-64 ABI@.
10700
10701 @item -mvolatile-asm-stop
10702 @itemx -mno-volatile-asm-stop
10703 @opindex mvolatile-asm-stop
10704 @opindex mno-volatile-asm-stop
10705 Generate (or don't) a stop bit immediately before and after volatile asm
10706 statements.
10707
10708 @item -mregister-names
10709 @itemx -mno-register-names
10710 @opindex mregister-names
10711 @opindex mno-register-names
10712 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
10713 the stacked registers.  This may make assembler output more readable.
10714
10715 @item -mno-sdata
10716 @itemx -msdata
10717 @opindex mno-sdata
10718 @opindex msdata
10719 Disable (or enable) optimizations that use the small data section.  This may
10720 be useful for working around optimizer bugs.
10721
10722 @item -mconstant-gp
10723 @opindex mconstant-gp
10724 Generate code that uses a single constant global pointer value.  This is
10725 useful when compiling kernel code.
10726
10727 @item -mauto-pic
10728 @opindex mauto-pic
10729 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
10730 This is useful when compiling firmware code.
10731
10732 @item -minline-float-divide-min-latency
10733 @opindex minline-float-divide-min-latency
10734 Generate code for inline divides of floating point values
10735 using the minimum latency algorithm.
10736
10737 @item -minline-float-divide-max-throughput
10738 @opindex minline-float-divide-max-throughput
10739 Generate code for inline divides of floating point values
10740 using the maximum throughput algorithm.
10741
10742 @item -minline-int-divide-min-latency
10743 @opindex minline-int-divide-min-latency
10744 Generate code for inline divides of integer values
10745 using the minimum latency algorithm.
10746
10747 @item -minline-int-divide-max-throughput
10748 @opindex minline-int-divide-max-throughput
10749 Generate code for inline divides of integer values
10750 using the maximum throughput algorithm.
10751
10752 @item -minline-sqrt-min-latency
10753 @opindex minline-sqrt-min-latency
10754 Generate code for inline square roots
10755 using the minimum latency algorithm.
10756
10757 @item -minline-sqrt-max-throughput
10758 @opindex minline-sqrt-max-throughput
10759 Generate code for inline square roots
10760 using the maximum throughput algorithm.
10761
10762 @item -mno-dwarf2-asm
10763 @itemx -mdwarf2-asm
10764 @opindex mno-dwarf2-asm
10765 @opindex mdwarf2-asm
10766 Don't (or do) generate assembler code for the DWARF2 line number debugging
10767 info.  This may be useful when not using the GNU assembler.
10768
10769 @item -mearly-stop-bits
10770 @itemx -mno-early-stop-bits
10771 @opindex mearly-stop-bits
10772 @opindex mno-early-stop-bits
10773 Allow stop bits to be placed earlier than immediately preceding the
10774 instruction that triggered the stop bit.  This can improve instruction
10775 scheduling, but does not always do so.
10776
10777 @item -mfixed-range=@var{register-range}
10778 @opindex mfixed-range
10779 Generate code treating the given register range as fixed registers.
10780 A fixed register is one that the register allocator can not use.  This is
10781 useful when compiling kernel code.  A register range is specified as
10782 two registers separated by a dash.  Multiple register ranges can be
10783 specified separated by a comma.
10784
10785 @item -mtls-size=@var{tls-size}
10786 @opindex mtls-size
10787 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
10788 64.
10789
10790 @item -mtune=@var{cpu-type}
10791 @opindex mtune
10792 Tune the instruction scheduling for a particular CPU, Valid values are
10793 itanium, itanium1, merced, itanium2, and mckinley.
10794
10795 @item -mt
10796 @itemx -pthread
10797 @opindex mt
10798 @opindex pthread
10799 Add support for multithreading using the POSIX threads library.  This
10800 option sets flags for both the preprocessor and linker.  It does
10801 not affect the thread safety of object code produced by the compiler or
10802 that of libraries supplied with it.  These are HP-UX specific flags.
10803
10804 @item -milp32
10805 @itemx -mlp64
10806 @opindex milp32
10807 @opindex mlp64
10808 Generate code for a 32-bit or 64-bit environment.
10809 The 32-bit environment sets int, long and pointer to 32 bits.
10810 The 64-bit environment sets int to 32 bits and long and pointer
10811 to 64 bits.  These are HP-UX specific flags.
10812
10813 @item -mno-sched-br-data-spec
10814 @itemx -msched-br-data-spec
10815 @opindex mno-sched-br-data-spec
10816 @opindex msched-br-data-spec
10817 (Dis/En)able data speculative scheduling before reload.
10818 This will result in generation of the ld.a instructions and
10819 the corresponding check instructions (ld.c / chk.a).
10820 The default is 'disable'.
10821
10822 @item -msched-ar-data-spec
10823 @itemx -mno-sched-ar-data-spec
10824 @opindex msched-ar-data-spec
10825 @opindex mno-sched-ar-data-spec
10826 (En/Dis)able data speculative scheduling after reload.
10827 This will result in generation of the ld.a instructions and
10828 the corresponding check instructions (ld.c / chk.a).
10829 The default is 'enable'.
10830
10831 @item -mno-sched-control-spec
10832 @itemx -msched-control-spec
10833 @opindex mno-sched-control-spec
10834 @opindex msched-control-spec
10835 (Dis/En)able control speculative scheduling.  This feature is
10836 available only during region scheduling (i.e. before reload).
10837 This will result in generation of the ld.s instructions and
10838 the corresponding check instructions chk.s .
10839 The default is 'disable'.
10840
10841 @item -msched-br-in-data-spec
10842 @itemx -mno-sched-br-in-data-spec
10843 @opindex msched-br-in-data-spec
10844 @opindex mno-sched-br-in-data-spec
10845 (En/Dis)able speculative scheduling of the instructions that
10846 are dependent on the data speculative loads before reload.
10847 This is effective only with @option{-msched-br-data-spec} enabled.
10848 The default is 'enable'.
10849
10850 @item -msched-ar-in-data-spec
10851 @itemx -mno-sched-ar-in-data-spec
10852 @opindex msched-ar-in-data-spec
10853 @opindex mno-sched-ar-in-data-spec
10854 (En/Dis)able speculative scheduling of the instructions that
10855 are dependent on the data speculative loads after reload.
10856 This is effective only with @option{-msched-ar-data-spec} enabled.
10857 The default is 'enable'.
10858
10859 @item -msched-in-control-spec
10860 @itemx -mno-sched-in-control-spec
10861 @opindex msched-in-control-spec
10862 @opindex mno-sched-in-control-spec
10863 (En/Dis)able speculative scheduling of the instructions that
10864 are dependent on the control speculative loads.
10865 This is effective only with @option{-msched-control-spec} enabled.
10866 The default is 'enable'.
10867
10868 @item -msched-ldc
10869 @itemx -mno-sched-ldc
10870 @opindex msched-ldc
10871 @opindex mno-sched-ldc
10872 (En/Dis)able use of simple data speculation checks ld.c .
10873 If disabled, only chk.a instructions will be emitted to check
10874 data speculative loads.
10875 The default is 'enable'.
10876
10877 @item -mno-sched-control-ldc
10878 @itemx -msched-control-ldc
10879 @opindex mno-sched-control-ldc
10880 @opindex msched-control-ldc
10881 (Dis/En)able use of ld.c instructions to check control speculative loads.
10882 If enabled, in case of control speculative load with no speculatively
10883 scheduled dependent instructions this load will be emitted as ld.sa and
10884 ld.c will be used to check it.
10885 The default is 'disable'.
10886
10887 @item -mno-sched-spec-verbose
10888 @itemx -msched-spec-verbose
10889 @opindex mno-sched-spec-verbose
10890 @opindex msched-spec-verbose
10891 (Dis/En)able printing of the information about speculative motions.
10892
10893 @item -mno-sched-prefer-non-data-spec-insns
10894 @itemx -msched-prefer-non-data-spec-insns
10895 @opindex mno-sched-prefer-non-data-spec-insns
10896 @opindex msched-prefer-non-data-spec-insns
10897 If enabled, data speculative instructions will be chosen for schedule
10898 only if there are no other choices at the moment.  This will make
10899 the use of the data speculation much more conservative.
10900 The default is 'disable'.
10901
10902 @item -mno-sched-prefer-non-control-spec-insns
10903 @itemx -msched-prefer-non-control-spec-insns
10904 @opindex mno-sched-prefer-non-control-spec-insns
10905 @opindex msched-prefer-non-control-spec-insns
10906 If enabled, control speculative instructions will be chosen for schedule
10907 only if there are no other choices at the moment.  This will make
10908 the use of the control speculation much more conservative.
10909 The default is 'disable'.
10910
10911 @item -mno-sched-count-spec-in-critical-path
10912 @itemx -msched-count-spec-in-critical-path
10913 @opindex mno-sched-count-spec-in-critical-path
10914 @opindex msched-count-spec-in-critical-path
10915 If enabled, speculative dependencies will be considered during
10916 computation of the instructions priorities.  This will make the use of the
10917 speculation a bit more conservative.
10918 The default is 'disable'.
10919
10920 @end table
10921
10922 @node M32C Options
10923 @subsection M32C Options
10924 @cindex M32C options
10925
10926 @table @gcctabopt
10927 @item -mcpu=@var{name}
10928 @opindex mcpu=
10929 Select the CPU for which code is generated.  @var{name} may be one of
10930 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
10931 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
10932 the M32C/80 series.
10933
10934 @item -msim
10935 @opindex msim
10936 Specifies that the program will be run on the simulator.  This causes
10937 an alternate runtime library to be linked in which supports, for
10938 example, file I/O.  You must not use this option when generating
10939 programs that will run on real hardware; you must provide your own
10940 runtime library for whatever I/O functions are needed.
10941
10942 @item -memregs=@var{number}
10943 @opindex memregs=
10944 Specifies the number of memory-based pseudo-registers GCC will use
10945 during code generation.  These pseudo-registers will be used like real
10946 registers, so there is a tradeoff between GCC's ability to fit the
10947 code into available registers, and the performance penalty of using
10948 memory instead of registers.  Note that all modules in a program must
10949 be compiled with the same value for this option.  Because of that, you
10950 must not use this option with the default runtime libraries gcc
10951 builds.
10952
10953 @end table
10954
10955 @node M32R/D Options
10956 @subsection M32R/D Options
10957 @cindex M32R/D options
10958
10959 These @option{-m} options are defined for Renesas M32R/D architectures:
10960
10961 @table @gcctabopt
10962 @item -m32r2
10963 @opindex m32r2
10964 Generate code for the M32R/2@.
10965
10966 @item -m32rx
10967 @opindex m32rx
10968 Generate code for the M32R/X@.
10969
10970 @item -m32r
10971 @opindex m32r
10972 Generate code for the M32R@.  This is the default.
10973
10974 @item -mmodel=small
10975 @opindex mmodel=small
10976 Assume all objects live in the lower 16MB of memory (so that their addresses
10977 can be loaded with the @code{ld24} instruction), and assume all subroutines
10978 are reachable with the @code{bl} instruction.
10979 This is the default.
10980
10981 The addressability of a particular object can be set with the
10982 @code{model} attribute.
10983
10984 @item -mmodel=medium
10985 @opindex mmodel=medium
10986 Assume objects may be anywhere in the 32-bit address space (the compiler
10987 will generate @code{seth/add3} instructions to load their addresses), and
10988 assume all subroutines are reachable with the @code{bl} instruction.
10989
10990 @item -mmodel=large
10991 @opindex mmodel=large
10992 Assume objects may be anywhere in the 32-bit address space (the compiler
10993 will generate @code{seth/add3} instructions to load their addresses), and
10994 assume subroutines may not be reachable with the @code{bl} instruction
10995 (the compiler will generate the much slower @code{seth/add3/jl}
10996 instruction sequence).
10997
10998 @item -msdata=none
10999 @opindex msdata=none
11000 Disable use of the small data area.  Variables will be put into
11001 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
11002 @code{section} attribute has been specified).
11003 This is the default.
11004
11005 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
11006 Objects may be explicitly put in the small data area with the
11007 @code{section} attribute using one of these sections.
11008
11009 @item -msdata=sdata
11010 @opindex msdata=sdata
11011 Put small global and static data in the small data area, but do not
11012 generate special code to reference them.
11013
11014 @item -msdata=use
11015 @opindex msdata=use
11016 Put small global and static data in the small data area, and generate
11017 special instructions to reference them.
11018
11019 @item -G @var{num}
11020 @opindex G
11021 @cindex smaller data references
11022 Put global and static objects less than or equal to @var{num} bytes
11023 into the small data or bss sections instead of the normal data or bss
11024 sections.  The default value of @var{num} is 8.
11025 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
11026 for this option to have any effect.
11027
11028 All modules should be compiled with the same @option{-G @var{num}} value.
11029 Compiling with different values of @var{num} may or may not work; if it
11030 doesn't the linker will give an error message---incorrect code will not be
11031 generated.
11032
11033 @item -mdebug
11034 @opindex mdebug
11035 Makes the M32R specific code in the compiler display some statistics
11036 that might help in debugging programs.
11037
11038 @item -malign-loops
11039 @opindex malign-loops
11040 Align all loops to a 32-byte boundary.
11041
11042 @item -mno-align-loops
11043 @opindex mno-align-loops
11044 Do not enforce a 32-byte alignment for loops.  This is the default.
11045
11046 @item -missue-rate=@var{number}
11047 @opindex missue-rate=@var{number}
11048 Issue @var{number} instructions per cycle.  @var{number} can only be 1
11049 or 2.
11050
11051 @item -mbranch-cost=@var{number}
11052 @opindex mbranch-cost=@var{number}
11053 @var{number} can only be 1 or 2.  If it is 1 then branches will be
11054 preferred over conditional code, if it is 2, then the opposite will
11055 apply.
11056
11057 @item -mflush-trap=@var{number}
11058 @opindex mflush-trap=@var{number}
11059 Specifies the trap number to use to flush the cache.  The default is
11060 12.  Valid numbers are between 0 and 15 inclusive.
11061
11062 @item -mno-flush-trap
11063 @opindex mno-flush-trap
11064 Specifies that the cache cannot be flushed by using a trap.
11065
11066 @item -mflush-func=@var{name}
11067 @opindex mflush-func=@var{name}
11068 Specifies the name of the operating system function to call to flush
11069 the cache.  The default is @emph{_flush_cache}, but a function call
11070 will only be used if a trap is not available.
11071
11072 @item -mno-flush-func
11073 @opindex mno-flush-func
11074 Indicates that there is no OS function for flushing the cache.
11075
11076 @end table
11077
11078 @node M680x0 Options
11079 @subsection M680x0 Options
11080 @cindex M680x0 options
11081
11082 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
11083 The default settings depend on which architecture was selected when
11084 the compiler was configured; the defaults for the most common choices
11085 are given below.
11086
11087 @table @gcctabopt
11088 @item -march=@var{arch}
11089 @opindex march
11090 Generate code for a specific M680x0 or ColdFire instruction set
11091 architecture.  Permissible values of @var{arch} for M680x0
11092 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
11093 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
11094 architectures are selected according to Freescale's ISA classification
11095 and the permissible values are: @samp{isaa}, @samp{isaaplus},
11096 @samp{isab} and @samp{isac}.
11097
11098 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
11099 code for a ColdFire target.  The @var{arch} in this macro is one of the
11100 @option{-march} arguments given above.
11101
11102 When used together, @option{-march} and @option{-mtune} select code
11103 that runs on a family of similar processors but that is optimized
11104 for a particular microarchitecture.
11105
11106 @item -mcpu=@var{cpu}
11107 @opindex mcpu
11108 Generate code for a specific M680x0 or ColdFire processor.
11109 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
11110 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
11111 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
11112 below, which also classifies the CPUs into families:
11113
11114 @multitable @columnfractions 0.20 0.80
11115 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
11116 @item @samp{51qe} @tab @samp{51qe}
11117 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
11118 @item @samp{5206e} @tab @samp{5206e}
11119 @item @samp{5208} @tab @samp{5207} @samp{5208}
11120 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
11121 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
11122 @item @samp{5216} @tab @samp{5214} @samp{5216}
11123 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
11124 @item @samp{5225} @tab @samp{5224} @samp{5225}
11125 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
11126 @item @samp{5249} @tab @samp{5249}
11127 @item @samp{5250} @tab @samp{5250}
11128 @item @samp{5271} @tab @samp{5270} @samp{5271}
11129 @item @samp{5272} @tab @samp{5272}
11130 @item @samp{5275} @tab @samp{5274} @samp{5275}
11131 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
11132 @item @samp{5307} @tab @samp{5307}
11133 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
11134 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
11135 @item @samp{5407} @tab @samp{5407}
11136 @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}
11137 @end multitable
11138
11139 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
11140 @var{arch} is compatible with @var{cpu}.  Other combinations of
11141 @option{-mcpu} and @option{-march} are rejected.
11142
11143 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
11144 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
11145 where the value of @var{family} is given by the table above.
11146
11147 @item -mtune=@var{tune}
11148 @opindex mtune
11149 Tune the code for a particular microarchitecture, within the
11150 constraints set by @option{-march} and @option{-mcpu}.
11151 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
11152 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
11153 and @samp{cpu32}.  The ColdFire microarchitectures
11154 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
11155
11156 You can also use @option{-mtune=68020-40} for code that needs
11157 to run relatively well on 68020, 68030 and 68040 targets.
11158 @option{-mtune=68020-60} is similar but includes 68060 targets
11159 as well.  These two options select the same tuning decisions as
11160 @option{-m68020-40} and @option{-m68020-60} respectively.
11161
11162 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
11163 when tuning for 680x0 architecture @var{arch}.  It also defines
11164 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
11165 option is used.  If gcc is tuning for a range of architectures,
11166 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
11167 it defines the macros for every architecture in the range.
11168
11169 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
11170 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
11171 of the arguments given above.
11172
11173 @item -m68000
11174 @itemx -mc68000
11175 @opindex m68000
11176 @opindex mc68000
11177 Generate output for a 68000.  This is the default
11178 when the compiler is configured for 68000-based systems.
11179 It is equivalent to @option{-march=68000}.
11180
11181 Use this option for microcontrollers with a 68000 or EC000 core,
11182 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
11183
11184 @item -m68010
11185 @opindex m68010
11186 Generate output for a 68010.  This is the default
11187 when the compiler is configured for 68010-based systems.
11188 It is equivalent to @option{-march=68010}.
11189
11190 @item -m68020
11191 @itemx -mc68020
11192 @opindex m68020
11193 @opindex mc68020
11194 Generate output for a 68020.  This is the default
11195 when the compiler is configured for 68020-based systems.
11196 It is equivalent to @option{-march=68020}.
11197
11198 @item -m68030
11199 @opindex m68030
11200 Generate output for a 68030.  This is the default when the compiler is
11201 configured for 68030-based systems.  It is equivalent to
11202 @option{-march=68030}.
11203
11204 @item -m68040
11205 @opindex m68040
11206 Generate output for a 68040.  This is the default when the compiler is
11207 configured for 68040-based systems.  It is equivalent to
11208 @option{-march=68040}.
11209
11210 This option inhibits the use of 68881/68882 instructions that have to be
11211 emulated by software on the 68040.  Use this option if your 68040 does not
11212 have code to emulate those instructions.
11213
11214 @item -m68060
11215 @opindex m68060
11216 Generate output for a 68060.  This is the default when the compiler is
11217 configured for 68060-based systems.  It is equivalent to
11218 @option{-march=68060}.
11219
11220 This option inhibits the use of 68020 and 68881/68882 instructions that
11221 have to be emulated by software on the 68060.  Use this option if your 68060
11222 does not have code to emulate those instructions.
11223
11224 @item -mcpu32
11225 @opindex mcpu32
11226 Generate output for a CPU32.  This is the default
11227 when the compiler is configured for CPU32-based systems.
11228 It is equivalent to @option{-march=cpu32}.
11229
11230 Use this option for microcontrollers with a
11231 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
11232 68336, 68340, 68341, 68349 and 68360.
11233
11234 @item -m5200
11235 @opindex m5200
11236 Generate output for a 520X ColdFire CPU.  This is the default
11237 when the compiler is configured for 520X-based systems.
11238 It is equivalent to @option{-mcpu=5206}, and is now deprecated
11239 in favor of that option.
11240
11241 Use this option for microcontroller with a 5200 core, including
11242 the MCF5202, MCF5203, MCF5204 and MCF5206.
11243
11244 @item -m5206e
11245 @opindex m5206e
11246 Generate output for a 5206e ColdFire CPU.  The option is now
11247 deprecated in favor of the equivalent @option{-mcpu=5206e}.
11248
11249 @item -m528x
11250 @opindex m528x
11251 Generate output for a member of the ColdFire 528X family.
11252 The option is now deprecated in favor of the equivalent
11253 @option{-mcpu=528x}.
11254
11255 @item -m5307
11256 @opindex m5307
11257 Generate output for a ColdFire 5307 CPU.  The option is now deprecated
11258 in favor of the equivalent @option{-mcpu=5307}.
11259
11260 @item -m5407
11261 @opindex m5407
11262 Generate output for a ColdFire 5407 CPU.  The option is now deprecated
11263 in favor of the equivalent @option{-mcpu=5407}.
11264
11265 @item -mcfv4e
11266 @opindex mcfv4e
11267 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
11268 This includes use of hardware floating point instructions.
11269 The option is equivalent to @option{-mcpu=547x}, and is now
11270 deprecated in favor of that option.
11271
11272 @item -m68020-40
11273 @opindex m68020-40
11274 Generate output for a 68040, without using any of the new instructions.
11275 This results in code which can run relatively efficiently on either a
11276 68020/68881 or a 68030 or a 68040.  The generated code does use the
11277 68881 instructions that are emulated on the 68040.
11278
11279 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
11280
11281 @item -m68020-60
11282 @opindex m68020-60
11283 Generate output for a 68060, without using any of the new instructions.
11284 This results in code which can run relatively efficiently on either a
11285 68020/68881 or a 68030 or a 68040.  The generated code does use the
11286 68881 instructions that are emulated on the 68060.
11287
11288 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
11289
11290 @item -mhard-float
11291 @itemx -m68881
11292 @opindex mhard-float
11293 @opindex m68881
11294 Generate floating-point instructions.  This is the default for 68020
11295 and above, and for ColdFire devices that have an FPU.  It defines the
11296 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
11297 on ColdFire targets.
11298
11299 @item -msoft-float
11300 @opindex msoft-float
11301 Do not generate floating-point instructions; use library calls instead.
11302 This is the default for 68000, 68010, and 68832 targets.  It is also
11303 the default for ColdFire devices that have no FPU.
11304
11305 @item -mdiv
11306 @itemx -mno-div
11307 @opindex mdiv
11308 @opindex mno-div
11309 Generate (do not generate) ColdFire hardware divide and remainder
11310 instructions.  If @option{-march} is used without @option{-mcpu},
11311 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
11312 architectures.  Otherwise, the default is taken from the target CPU
11313 (either the default CPU, or the one specified by @option{-mcpu}).  For
11314 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
11315 @option{-mcpu=5206e}.
11316
11317 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
11318
11319 @item -mshort
11320 @opindex mshort
11321 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11322 Additionally, parameters passed on the stack are also aligned to a
11323 16-bit boundary even on targets whose API mandates promotion to 32-bit.
11324
11325 @item -mno-short
11326 @opindex mno-short
11327 Do not consider type @code{int} to be 16 bits wide.  This is the default.
11328
11329 @item -mnobitfield
11330 @itemx -mno-bitfield
11331 @opindex mnobitfield
11332 @opindex mno-bitfield
11333 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
11334 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
11335
11336 @item -mbitfield
11337 @opindex mbitfield
11338 Do use the bit-field instructions.  The @option{-m68020} option implies
11339 @option{-mbitfield}.  This is the default if you use a configuration
11340 designed for a 68020.
11341
11342 @item -mrtd
11343 @opindex mrtd
11344 Use a different function-calling convention, in which functions
11345 that take a fixed number of arguments return with the @code{rtd}
11346 instruction, which pops their arguments while returning.  This
11347 saves one instruction in the caller since there is no need to pop
11348 the arguments there.
11349
11350 This calling convention is incompatible with the one normally
11351 used on Unix, so you cannot use it if you need to call libraries
11352 compiled with the Unix compiler.
11353
11354 Also, you must provide function prototypes for all functions that
11355 take variable numbers of arguments (including @code{printf});
11356 otherwise incorrect code will be generated for calls to those
11357 functions.
11358
11359 In addition, seriously incorrect code will result if you call a
11360 function with too many arguments.  (Normally, extra arguments are
11361 harmlessly ignored.)
11362
11363 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
11364 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
11365
11366 @item -mno-rtd
11367 @opindex mno-rtd
11368 Do not use the calling conventions selected by @option{-mrtd}.
11369 This is the default.
11370
11371 @item -malign-int
11372 @itemx -mno-align-int
11373 @opindex malign-int
11374 @opindex mno-align-int
11375 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
11376 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
11377 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
11378 Aligning variables on 32-bit boundaries produces code that runs somewhat
11379 faster on processors with 32-bit busses at the expense of more memory.
11380
11381 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
11382 align structures containing the above types  differently than
11383 most published application binary interface specifications for the m68k.
11384
11385 @item -mpcrel
11386 @opindex mpcrel
11387 Use the pc-relative addressing mode of the 68000 directly, instead of
11388 using a global offset table.  At present, this option implies @option{-fpic},
11389 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
11390 not presently supported with @option{-mpcrel}, though this could be supported for
11391 68020 and higher processors.
11392
11393 @item -mno-strict-align
11394 @itemx -mstrict-align
11395 @opindex mno-strict-align
11396 @opindex mstrict-align
11397 Do not (do) assume that unaligned memory references will be handled by
11398 the system.
11399
11400 @item -msep-data
11401 Generate code that allows the data segment to be located in a different
11402 area of memory from the text segment.  This allows for execute in place in
11403 an environment without virtual memory management.  This option implies
11404 @option{-fPIC}.
11405
11406 @item -mno-sep-data
11407 Generate code that assumes that the data segment follows the text segment.
11408 This is the default.
11409
11410 @item -mid-shared-library
11411 Generate code that supports shared libraries via the library ID method.
11412 This allows for execute in place and shared libraries in an environment
11413 without virtual memory management.  This option implies @option{-fPIC}.
11414
11415 @item -mno-id-shared-library
11416 Generate code that doesn't assume ID based shared libraries are being used.
11417 This is the default.
11418
11419 @item -mshared-library-id=n
11420 Specified the identification number of the ID based shared library being
11421 compiled.  Specifying a value of 0 will generate more compact code, specifying
11422 other values will force the allocation of that number to the current
11423 library but is no more space or time efficient than omitting this option.
11424
11425 @end table
11426
11427 @node M68hc1x Options
11428 @subsection M68hc1x Options
11429 @cindex M68hc1x options
11430
11431 These are the @samp{-m} options defined for the 68hc11 and 68hc12
11432 microcontrollers.  The default values for these options depends on
11433 which style of microcontroller was selected when the compiler was configured;
11434 the defaults for the most common choices are given below.
11435
11436 @table @gcctabopt
11437 @item -m6811
11438 @itemx -m68hc11
11439 @opindex m6811
11440 @opindex m68hc11
11441 Generate output for a 68HC11.  This is the default
11442 when the compiler is configured for 68HC11-based systems.
11443
11444 @item -m6812
11445 @itemx -m68hc12
11446 @opindex m6812
11447 @opindex m68hc12
11448 Generate output for a 68HC12.  This is the default
11449 when the compiler is configured for 68HC12-based systems.
11450
11451 @item -m68S12
11452 @itemx -m68hcs12
11453 @opindex m68S12
11454 @opindex m68hcs12
11455 Generate output for a 68HCS12.
11456
11457 @item -mauto-incdec
11458 @opindex mauto-incdec
11459 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
11460 addressing modes.
11461
11462 @item -minmax
11463 @itemx -nominmax
11464 @opindex minmax
11465 @opindex mnominmax
11466 Enable the use of 68HC12 min and max instructions.
11467
11468 @item -mlong-calls
11469 @itemx -mno-long-calls
11470 @opindex mlong-calls
11471 @opindex mno-long-calls
11472 Treat all calls as being far away (near).  If calls are assumed to be
11473 far away, the compiler will use the @code{call} instruction to
11474 call a function and the @code{rtc} instruction for returning.
11475
11476 @item -mshort
11477 @opindex mshort
11478 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11479
11480 @item -msoft-reg-count=@var{count}
11481 @opindex msoft-reg-count
11482 Specify the number of pseudo-soft registers which are used for the
11483 code generation.  The maximum number is 32.  Using more pseudo-soft
11484 register may or may not result in better code depending on the program.
11485 The default is 4 for 68HC11 and 2 for 68HC12.
11486
11487 @end table
11488
11489 @node MCore Options
11490 @subsection MCore Options
11491 @cindex MCore options
11492
11493 These are the @samp{-m} options defined for the Motorola M*Core
11494 processors.
11495
11496 @table @gcctabopt
11497
11498 @item -mhardlit
11499 @itemx -mno-hardlit
11500 @opindex mhardlit
11501 @opindex mno-hardlit
11502 Inline constants into the code stream if it can be done in two
11503 instructions or less.
11504
11505 @item -mdiv
11506 @itemx -mno-div
11507 @opindex mdiv
11508 @opindex mno-div
11509 Use the divide instruction.  (Enabled by default).
11510
11511 @item -mrelax-immediate
11512 @itemx -mno-relax-immediate
11513 @opindex mrelax-immediate
11514 @opindex mno-relax-immediate
11515 Allow arbitrary sized immediates in bit operations.
11516
11517 @item -mwide-bitfields
11518 @itemx -mno-wide-bitfields
11519 @opindex mwide-bitfields
11520 @opindex mno-wide-bitfields
11521 Always treat bit-fields as int-sized.
11522
11523 @item -m4byte-functions
11524 @itemx -mno-4byte-functions
11525 @opindex m4byte-functions
11526 @opindex mno-4byte-functions
11527 Force all functions to be aligned to a four byte boundary.
11528
11529 @item -mcallgraph-data
11530 @itemx -mno-callgraph-data
11531 @opindex mcallgraph-data
11532 @opindex mno-callgraph-data
11533 Emit callgraph information.
11534
11535 @item -mslow-bytes
11536 @itemx -mno-slow-bytes
11537 @opindex mslow-bytes
11538 @opindex mno-slow-bytes
11539 Prefer word access when reading byte quantities.
11540
11541 @item -mlittle-endian
11542 @itemx -mbig-endian
11543 @opindex mlittle-endian
11544 @opindex mbig-endian
11545 Generate code for a little endian target.
11546
11547 @item -m210
11548 @itemx -m340
11549 @opindex m210
11550 @opindex m340
11551 Generate code for the 210 processor.
11552 @end table
11553
11554 @node MIPS Options
11555 @subsection MIPS Options
11556 @cindex MIPS options
11557
11558 @table @gcctabopt
11559
11560 @item -EB
11561 @opindex EB
11562 Generate big-endian code.
11563
11564 @item -EL
11565 @opindex EL
11566 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
11567 configurations.
11568
11569 @item -march=@var{arch}
11570 @opindex march
11571 Generate code that will run on @var{arch}, which can be the name of a
11572 generic MIPS ISA, or the name of a particular processor.
11573 The ISA names are:
11574 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
11575 @samp{mips32}, @samp{mips32r2}, and @samp{mips64}.
11576 The processor names are:
11577 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
11578 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
11579 @samp{5kc}, @samp{5kf},
11580 @samp{20kc},
11581 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
11582 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
11583 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
11584 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
11585 @samp{m4k},
11586 @samp{orion},
11587 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
11588 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
11589 @samp{rm7000}, @samp{rm9000},
11590 @samp{sb1},
11591 @samp{sr71000},
11592 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
11593 @samp{vr5000}, @samp{vr5400} and @samp{vr5500}.
11594 The special value @samp{from-abi} selects the
11595 most compatible architecture for the selected ABI (that is,
11596 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
11597
11598 In processor names, a final @samp{000} can be abbreviated as @samp{k}
11599 (for example, @samp{-march=r2k}).  Prefixes are optional, and
11600 @samp{vr} may be written @samp{r}.
11601
11602 Names of the form @samp{@var{n}f2_1} refer to processors with
11603 FPUs clocked at half the rate of the core, names of the form
11604 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
11605 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
11606 processors with FPUs clocked a ratio of 3:2 with respect to the core.
11607 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
11608 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
11609 accepted as synonyms for @samp{@var{n}f1_1}.
11610
11611 GCC defines two macros based on the value of this option.  The first
11612 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
11613 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
11614 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
11615 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
11616 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
11617
11618 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
11619 above.  In other words, it will have the full prefix and will not
11620 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
11621 the macro names the resolved architecture (either @samp{"mips1"} or
11622 @samp{"mips3"}).  It names the default architecture when no
11623 @option{-march} option is given.
11624
11625 @item -mtune=@var{arch}
11626 @opindex mtune
11627 Optimize for @var{arch}.  Among other things, this option controls
11628 the way instructions are scheduled, and the perceived cost of arithmetic
11629 operations.  The list of @var{arch} values is the same as for
11630 @option{-march}.
11631
11632 When this option is not used, GCC will optimize for the processor
11633 specified by @option{-march}.  By using @option{-march} and
11634 @option{-mtune} together, it is possible to generate code that will
11635 run on a family of processors, but optimize the code for one
11636 particular member of that family.
11637
11638 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
11639 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
11640 @samp{-march} ones described above.
11641
11642 @item -mips1
11643 @opindex mips1
11644 Equivalent to @samp{-march=mips1}.
11645
11646 @item -mips2
11647 @opindex mips2
11648 Equivalent to @samp{-march=mips2}.
11649
11650 @item -mips3
11651 @opindex mips3
11652 Equivalent to @samp{-march=mips3}.
11653
11654 @item -mips4
11655 @opindex mips4
11656 Equivalent to @samp{-march=mips4}.
11657
11658 @item -mips32
11659 @opindex mips32
11660 Equivalent to @samp{-march=mips32}.
11661
11662 @item -mips32r2
11663 @opindex mips32r2
11664 Equivalent to @samp{-march=mips32r2}.
11665
11666 @item -mips64
11667 @opindex mips64
11668 Equivalent to @samp{-march=mips64}.
11669
11670 @item -mips16
11671 @itemx -mno-mips16
11672 @opindex mips16
11673 @opindex mno-mips16
11674 Generate (do not generate) MIPS16 code.  If GCC is targetting a
11675 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
11676
11677 MIPS16 code generation can also be controlled on a per-function basis
11678 by means of @code{mips16} and @code{nomips16} attributes.  
11679 @xref{Function Attributes}, for more information.
11680
11681 @item -mflip-mips16
11682 @opindex mflip-mips16
11683 Generate MIPS16 code on alternating functions.  This option is provided
11684 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
11685 not intended for ordinary use in compiling user code.
11686
11687 @item -mabi=32
11688 @itemx -mabi=o64
11689 @itemx -mabi=n32
11690 @itemx -mabi=64
11691 @itemx -mabi=eabi
11692 @opindex mabi=32
11693 @opindex mabi=o64
11694 @opindex mabi=n32
11695 @opindex mabi=64
11696 @opindex mabi=eabi
11697 Generate code for the given ABI@.
11698
11699 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
11700 generates 64-bit code when you select a 64-bit architecture, but you
11701 can use @option{-mgp32} to get 32-bit code instead.
11702
11703 For information about the O64 ABI, see
11704 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
11705
11706 GCC supports a variant of the o32 ABI in which floating-point registers
11707 are 64 rather than 32 bits wide.  You can select this combination with
11708 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
11709 and @samp{mfhc1} instructions and is therefore only supported for
11710 MIPS32R2 processors.
11711
11712 The register assignments for arguments and return values remain the
11713 same, but each scalar value is passed in a single 64-bit register
11714 rather than a pair of 32-bit registers.  For example, scalar
11715 floating-point values are returned in @samp{$f0} only, not a
11716 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
11717 remains the same, but all 64 bits are saved.
11718
11719 @item -mabicalls
11720 @itemx -mno-abicalls
11721 @opindex mabicalls
11722 @opindex mno-abicalls
11723 Generate (do not generate) code that is suitable for SVR4-style
11724 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
11725 systems.
11726
11727 @item -mshared
11728 @itemx -mno-shared
11729 Generate (do not generate) code that is fully position-independent,
11730 and that can therefore be linked into shared libraries.  This option
11731 only affects @option{-mabicalls}.
11732
11733 All @option{-mabicalls} code has traditionally been position-independent,
11734 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
11735 as an extension, the GNU toolchain allows executables to use absolute
11736 accesses for locally-binding symbols.  It can also use shorter GP
11737 initialization sequences and generate direct calls to locally-defined
11738 functions.  This mode is selected by @option{-mno-shared}.
11739
11740 @option{-mno-shared} depends on binutils 2.16 or higher and generates
11741 objects that can only be linked by the GNU linker.  However, the option
11742 does not affect the ABI of the final executable; it only affects the ABI
11743 of relocatable objects.  Using @option{-mno-shared} will generally make
11744 executables both smaller and quicker.
11745
11746 @option{-mshared} is the default.
11747
11748 @item -mxgot
11749 @itemx -mno-xgot
11750 @opindex mxgot
11751 @opindex mno-xgot
11752 Lift (do not lift) the usual restrictions on the size of the global
11753 offset table.
11754
11755 GCC normally uses a single instruction to load values from the GOT@.
11756 While this is relatively efficient, it will only work if the GOT
11757 is smaller than about 64k.  Anything larger will cause the linker
11758 to report an error such as:
11759
11760 @cindex relocation truncated to fit (MIPS)
11761 @smallexample
11762 relocation truncated to fit: R_MIPS_GOT16 foobar
11763 @end smallexample
11764
11765 If this happens, you should recompile your code with @option{-mxgot}.
11766 It should then work with very large GOTs, although it will also be
11767 less efficient, since it will take three instructions to fetch the
11768 value of a global symbol.
11769
11770 Note that some linkers can create multiple GOTs.  If you have such a
11771 linker, you should only need to use @option{-mxgot} when a single object
11772 file accesses more than 64k's worth of GOT entries.  Very few do.
11773
11774 These options have no effect unless GCC is generating position
11775 independent code.
11776
11777 @item -mgp32
11778 @opindex mgp32
11779 Assume that general-purpose registers are 32 bits wide.
11780
11781 @item -mgp64
11782 @opindex mgp64
11783 Assume that general-purpose registers are 64 bits wide.
11784
11785 @item -mfp32
11786 @opindex mfp32
11787 Assume that floating-point registers are 32 bits wide.
11788
11789 @item -mfp64
11790 @opindex mfp64
11791 Assume that floating-point registers are 64 bits wide.
11792
11793 @item -mhard-float
11794 @opindex mhard-float
11795 Use floating-point coprocessor instructions.
11796
11797 @item -msoft-float
11798 @opindex msoft-float
11799 Do not use floating-point coprocessor instructions.  Implement
11800 floating-point calculations using library calls instead.
11801
11802 @item -msingle-float
11803 @opindex msingle-float
11804 Assume that the floating-point coprocessor only supports single-precision
11805 operations.
11806
11807 @item -mdouble-float
11808 @opindex mdouble-float
11809 Assume that the floating-point coprocessor supports double-precision
11810 operations.  This is the default.
11811
11812 @item -mllsc
11813 @itemx -mno-llsc
11814 @opindex mllsc
11815 @opindex mno-llsc
11816 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
11817 implement atomic memory built-in functions.  When neither option is
11818 specified, GCC will use the instructions if the target architecture
11819 supports them.
11820
11821 @option{-mllsc} is useful if the runtime environment can emulate the
11822 instructions and @option{-mno-llsc} can be useful when compiling for
11823 nonstandard ISAs.  You can make either option the default by
11824 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
11825 respectively.  @option{--with-llsc} is the default for some
11826 configurations; see the installation documentation for details.
11827
11828 @item -mdsp
11829 @itemx -mno-dsp
11830 @opindex mdsp
11831 @opindex mno-dsp
11832 Use (do not use) revision 1 of the MIPS DSP ASE.
11833 @xref{MIPS DSP Built-in Functions}.  This option defines the
11834 preprocessor macro @samp{__mips_dsp}.  It also defines
11835 @samp{__mips_dsp_rev} to 1.
11836
11837 @item -mdspr2
11838 @itemx -mno-dspr2
11839 @opindex mdspr2
11840 @opindex mno-dspr2
11841 Use (do not use) revision 2 of the MIPS DSP ASE.
11842 @xref{MIPS DSP Built-in Functions}.  This option defines the
11843 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
11844 It also defines @samp{__mips_dsp_rev} to 2.
11845
11846 @item -msmartmips
11847 @itemx -mno-smartmips
11848 @opindex msmartmips
11849 @opindex mno-smartmips
11850 Use (do not use) the MIPS SmartMIPS ASE.
11851
11852 @item -mpaired-single
11853 @itemx -mno-paired-single
11854 @opindex mpaired-single
11855 @opindex mno-paired-single
11856 Use (do not use) paired-single floating-point instructions.
11857 @xref{MIPS Paired-Single Support}.  This option can only be used
11858 when generating 64-bit code and requires hardware floating-point
11859 support to be enabled.
11860
11861 @item -mdmx
11862 @itemx -mno-mdmx
11863 @opindex mdmx
11864 @opindex mno-mdmx
11865 Use (do not use) MIPS Digital Media Extension instructions.
11866 This option can only be used when generating 64-bit code and requires
11867 hardware floating-point support to be enabled.
11868
11869 @item -mips3d
11870 @itemx -mno-mips3d
11871 @opindex mips3d
11872 @opindex mno-mips3d
11873 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
11874 The option @option{-mips3d} implies @option{-mpaired-single}.
11875
11876 @item -mmt
11877 @itemx -mno-mt
11878 @opindex mmt
11879 @opindex mno-mt
11880 Use (do not use) MT Multithreading instructions.
11881
11882 @item -mlong64
11883 @opindex mlong64
11884 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
11885 an explanation of the default and the way that the pointer size is
11886 determined.
11887
11888 @item -mlong32
11889 @opindex mlong32
11890 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
11891
11892 The default size of @code{int}s, @code{long}s and pointers depends on
11893 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
11894 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
11895 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
11896 or the same size as integer registers, whichever is smaller.
11897
11898 @item -msym32
11899 @itemx -mno-sym32
11900 @opindex msym32
11901 @opindex mno-sym32
11902 Assume (do not assume) that all symbols have 32-bit values, regardless
11903 of the selected ABI@.  This option is useful in combination with
11904 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
11905 to generate shorter and faster references to symbolic addresses.
11906
11907 @item -G @var{num}
11908 @opindex G
11909 Put definitions of externally-visible data in a small data section
11910 if that data is no bigger than @var{num} bytes.  GCC can then access
11911 the data more efficiently; see @option{-mgpopt} for details.
11912
11913 The default @option{-G} option depends on the configuration.
11914
11915 @item -mlocal-sdata
11916 @itemx -mno-local-sdata
11917 @opindex mlocal-sdata
11918 @opindex mno-local-sdata
11919 Extend (do not extend) the @option{-G} behavior to local data too,
11920 such as to static variables in C.  @option{-mlocal-sdata} is the
11921 default for all configurations.
11922
11923 If the linker complains that an application is using too much small data,
11924 you might want to try rebuilding the less performance-critical parts with
11925 @option{-mno-local-sdata}.  You might also want to build large
11926 libraries with @option{-mno-local-sdata}, so that the libraries leave
11927 more room for the main program.
11928
11929 @item -mextern-sdata
11930 @itemx -mno-extern-sdata
11931 @opindex mextern-sdata
11932 @opindex mno-extern-sdata
11933 Assume (do not assume) that externally-defined data will be in
11934 a small data section if that data is within the @option{-G} limit.
11935 @option{-mextern-sdata} is the default for all configurations.
11936
11937 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
11938 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
11939 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
11940 is placed in a small data section.  If @var{Var} is defined by another
11941 module, you must either compile that module with a high-enough
11942 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
11943 definition.  If @var{Var} is common, you must link the application
11944 with a high-enough @option{-G} setting.
11945
11946 The easiest way of satisfying these restrictions is to compile
11947 and link every module with the same @option{-G} option.  However,
11948 you may wish to build a library that supports several different
11949 small data limits.  You can do this by compiling the library with
11950 the highest supported @option{-G} setting and additionally using
11951 @option{-mno-extern-sdata} to stop the library from making assumptions
11952 about externally-defined data.
11953
11954 @item -mgpopt
11955 @itemx -mno-gpopt
11956 @opindex mgpopt
11957 @opindex mno-gpopt
11958 Use (do not use) GP-relative accesses for symbols that are known to be
11959 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
11960 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
11961 configurations.
11962
11963 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
11964 might not hold the value of @code{_gp}.  For example, if the code is
11965 part of a library that might be used in a boot monitor, programs that
11966 call boot monitor routines will pass an unknown value in @code{$gp}.
11967 (In such situations, the boot monitor itself would usually be compiled
11968 with @option{-G0}.)
11969
11970 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
11971 @option{-mno-extern-sdata}.
11972
11973 @item -membedded-data
11974 @itemx -mno-embedded-data
11975 @opindex membedded-data
11976 @opindex mno-embedded-data
11977 Allocate variables to the read-only data section first if possible, then
11978 next in the small data section if possible, otherwise in data.  This gives
11979 slightly slower code than the default, but reduces the amount of RAM required
11980 when executing, and thus may be preferred for some embedded systems.
11981
11982 @item -muninit-const-in-rodata
11983 @itemx -mno-uninit-const-in-rodata
11984 @opindex muninit-const-in-rodata
11985 @opindex mno-uninit-const-in-rodata
11986 Put uninitialized @code{const} variables in the read-only data section.
11987 This option is only meaningful in conjunction with @option{-membedded-data}.
11988
11989 @item -mcode-readable=@var{setting}
11990 @opindex mcode-readable
11991 Specify whether GCC may generate code that reads from executable sections.
11992 There are three possible settings:
11993
11994 @table @gcctabopt
11995 @item -mcode-readable=yes
11996 Instructions may freely access executable sections.  This is the
11997 default setting.
11998
11999 @item -mcode-readable=pcrel
12000 MIPS16 PC-relative load instructions can access executable sections,
12001 but other instructions must not do so.  This option is useful on 4KSc
12002 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
12003 It is also useful on processors that can be configured to have a dual
12004 instruction/data SRAM interface and that, like the M4K, automatically
12005 redirect PC-relative loads to the instruction RAM.
12006
12007 @item -mcode-readable=no
12008 Instructions must not access executable sections.  This option can be
12009 useful on targets that are configured to have a dual instruction/data
12010 SRAM interface but that (unlike the M4K) do not automatically redirect
12011 PC-relative loads to the instruction RAM.
12012 @end table
12013
12014 @item -msplit-addresses
12015 @itemx -mno-split-addresses
12016 @opindex msplit-addresses
12017 @opindex mno-split-addresses
12018 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
12019 relocation operators.  This option has been superseded by
12020 @option{-mexplicit-relocs} but is retained for backwards compatibility.
12021
12022 @item -mexplicit-relocs
12023 @itemx -mno-explicit-relocs
12024 @opindex mexplicit-relocs
12025 @opindex mno-explicit-relocs
12026 Use (do not use) assembler relocation operators when dealing with symbolic
12027 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
12028 is to use assembler macros instead.
12029
12030 @option{-mexplicit-relocs} is the default if GCC was configured
12031 to use an assembler that supports relocation operators.
12032
12033 @item -mcheck-zero-division
12034 @itemx -mno-check-zero-division
12035 @opindex mcheck-zero-division
12036 @opindex mno-check-zero-division
12037 Trap (do not trap) on integer division by zero.
12038
12039 The default is @option{-mcheck-zero-division}.
12040
12041 @item -mdivide-traps
12042 @itemx -mdivide-breaks
12043 @opindex mdivide-traps
12044 @opindex mdivide-breaks
12045 MIPS systems check for division by zero by generating either a
12046 conditional trap or a break instruction.  Using traps results in
12047 smaller code, but is only supported on MIPS II and later.  Also, some
12048 versions of the Linux kernel have a bug that prevents trap from
12049 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
12050 allow conditional traps on architectures that support them and
12051 @option{-mdivide-breaks} to force the use of breaks.
12052
12053 The default is usually @option{-mdivide-traps}, but this can be
12054 overridden at configure time using @option{--with-divide=breaks}.
12055 Divide-by-zero checks can be completely disabled using
12056 @option{-mno-check-zero-division}.
12057
12058 @item -mmemcpy
12059 @itemx -mno-memcpy
12060 @opindex mmemcpy
12061 @opindex mno-memcpy
12062 Force (do not force) the use of @code{memcpy()} for non-trivial block
12063 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
12064 most constant-sized copies.
12065
12066 @item -mlong-calls
12067 @itemx -mno-long-calls
12068 @opindex mlong-calls
12069 @opindex mno-long-calls
12070 Disable (do not disable) use of the @code{jal} instruction.  Calling
12071 functions using @code{jal} is more efficient but requires the caller
12072 and callee to be in the same 256 megabyte segment.
12073
12074 This option has no effect on abicalls code.  The default is
12075 @option{-mno-long-calls}.
12076
12077 @item -mmad
12078 @itemx -mno-mad
12079 @opindex mmad
12080 @opindex mno-mad
12081 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
12082 instructions, as provided by the R4650 ISA@.
12083
12084 @item -mfused-madd
12085 @itemx -mno-fused-madd
12086 @opindex mfused-madd
12087 @opindex mno-fused-madd
12088 Enable (disable) use of the floating point multiply-accumulate
12089 instructions, when they are available.  The default is
12090 @option{-mfused-madd}.
12091
12092 When multiply-accumulate instructions are used, the intermediate
12093 product is calculated to infinite precision and is not subject to
12094 the FCSR Flush to Zero bit.  This may be undesirable in some
12095 circumstances.
12096
12097 @item -nocpp
12098 @opindex nocpp
12099 Tell the MIPS assembler to not run its preprocessor over user
12100 assembler files (with a @samp{.s} suffix) when assembling them.
12101
12102 @item -mfix-r4000
12103 @itemx -mno-fix-r4000
12104 @opindex mfix-r4000
12105 @opindex mno-fix-r4000
12106 Work around certain R4000 CPU errata:
12107 @itemize @minus
12108 @item
12109 A double-word or a variable shift may give an incorrect result if executed
12110 immediately after starting an integer division.
12111 @item
12112 A double-word or a variable shift may give an incorrect result if executed
12113 while an integer multiplication is in progress.
12114 @item
12115 An integer division may give an incorrect result if started in a delay slot
12116 of a taken branch or a jump.
12117 @end itemize
12118
12119 @item -mfix-r4400
12120 @itemx -mno-fix-r4400
12121 @opindex mfix-r4400
12122 @opindex mno-fix-r4400
12123 Work around certain R4400 CPU errata:
12124 @itemize @minus
12125 @item
12126 A double-word or a variable shift may give an incorrect result if executed
12127 immediately after starting an integer division.
12128 @end itemize
12129
12130 @item -mfix-vr4120
12131 @itemx -mno-fix-vr4120
12132 @opindex mfix-vr4120
12133 Work around certain VR4120 errata:
12134 @itemize @minus
12135 @item
12136 @code{dmultu} does not always produce the correct result.
12137 @item
12138 @code{div} and @code{ddiv} do not always produce the correct result if one
12139 of the operands is negative.
12140 @end itemize
12141 The workarounds for the division errata rely on special functions in
12142 @file{libgcc.a}.  At present, these functions are only provided by
12143 the @code{mips64vr*-elf} configurations.
12144
12145 Other VR4120 errata require a nop to be inserted between certain pairs of
12146 instructions.  These errata are handled by the assembler, not by GCC itself.
12147
12148 @item -mfix-vr4130
12149 @opindex mfix-vr4130
12150 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
12151 workarounds are implemented by the assembler rather than by GCC,
12152 although GCC will avoid using @code{mflo} and @code{mfhi} if the
12153 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
12154 instructions are available instead.
12155
12156 @item -mfix-sb1
12157 @itemx -mno-fix-sb1
12158 @opindex mfix-sb1
12159 Work around certain SB-1 CPU core errata.
12160 (This flag currently works around the SB-1 revision 2
12161 ``F1'' and ``F2'' floating point errata.)
12162
12163 @item -mflush-func=@var{func}
12164 @itemx -mno-flush-func
12165 @opindex mflush-func
12166 Specifies the function to call to flush the I and D caches, or to not
12167 call any such function.  If called, the function must take the same
12168 arguments as the common @code{_flush_func()}, that is, the address of the
12169 memory range for which the cache is being flushed, the size of the
12170 memory range, and the number 3 (to flush both caches).  The default
12171 depends on the target GCC was configured for, but commonly is either
12172 @samp{_flush_func} or @samp{__cpu_flush}.
12173
12174 @item mbranch-cost=@var{num}
12175 @opindex mbranch-cost
12176 Set the cost of branches to roughly @var{num} ``simple'' instructions.
12177 This cost is only a heuristic and is not guaranteed to produce
12178 consistent results across releases.  A zero cost redundantly selects
12179 the default, which is based on the @option{-mtune} setting.
12180
12181 @item -mbranch-likely
12182 @itemx -mno-branch-likely
12183 @opindex mbranch-likely
12184 @opindex mno-branch-likely
12185 Enable or disable use of Branch Likely instructions, regardless of the
12186 default for the selected architecture.  By default, Branch Likely
12187 instructions may be generated if they are supported by the selected
12188 architecture.  An exception is for the MIPS32 and MIPS64 architectures
12189 and processors which implement those architectures; for those, Branch
12190 Likely instructions will not be generated by default because the MIPS32
12191 and MIPS64 architectures specifically deprecate their use.
12192
12193 @item -mfp-exceptions
12194 @itemx -mno-fp-exceptions
12195 @opindex mfp-exceptions
12196 Specifies whether FP exceptions are enabled.  This affects how we schedule
12197 FP instructions for some processors.  The default is that FP exceptions are
12198 enabled.
12199
12200 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
12201 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
12202 FP pipe.
12203
12204 @item -mvr4130-align
12205 @itemx -mno-vr4130-align
12206 @opindex mvr4130-align
12207 The VR4130 pipeline is two-way superscalar, but can only issue two
12208 instructions together if the first one is 8-byte aligned.  When this
12209 option is enabled, GCC will align pairs of instructions that it
12210 thinks should execute in parallel.
12211
12212 This option only has an effect when optimizing for the VR4130.
12213 It normally makes code faster, but at the expense of making it bigger.
12214 It is enabled by default at optimization level @option{-O3}.
12215 @end table
12216
12217 @node MMIX Options
12218 @subsection MMIX Options
12219 @cindex MMIX Options
12220
12221 These options are defined for the MMIX:
12222
12223 @table @gcctabopt
12224 @item -mlibfuncs
12225 @itemx -mno-libfuncs
12226 @opindex mlibfuncs
12227 @opindex mno-libfuncs
12228 Specify that intrinsic library functions are being compiled, passing all
12229 values in registers, no matter the size.
12230
12231 @item -mepsilon
12232 @itemx -mno-epsilon
12233 @opindex mepsilon
12234 @opindex mno-epsilon
12235 Generate floating-point comparison instructions that compare with respect
12236 to the @code{rE} epsilon register.
12237
12238 @item -mabi=mmixware
12239 @itemx -mabi=gnu
12240 @opindex mabi-mmixware
12241 @opindex mabi=gnu
12242 Generate code that passes function parameters and return values that (in
12243 the called function) are seen as registers @code{$0} and up, as opposed to
12244 the GNU ABI which uses global registers @code{$231} and up.
12245
12246 @item -mzero-extend
12247 @itemx -mno-zero-extend
12248 @opindex mzero-extend
12249 @opindex mno-zero-extend
12250 When reading data from memory in sizes shorter than 64 bits, use (do not
12251 use) zero-extending load instructions by default, rather than
12252 sign-extending ones.
12253
12254 @item -mknuthdiv
12255 @itemx -mno-knuthdiv
12256 @opindex mknuthdiv
12257 @opindex mno-knuthdiv
12258 Make the result of a division yielding a remainder have the same sign as
12259 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
12260 remainder follows the sign of the dividend.  Both methods are
12261 arithmetically valid, the latter being almost exclusively used.
12262
12263 @item -mtoplevel-symbols
12264 @itemx -mno-toplevel-symbols
12265 @opindex mtoplevel-symbols
12266 @opindex mno-toplevel-symbols
12267 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
12268 code can be used with the @code{PREFIX} assembly directive.
12269
12270 @item -melf
12271 @opindex melf
12272 Generate an executable in the ELF format, rather than the default
12273 @samp{mmo} format used by the @command{mmix} simulator.
12274
12275 @item -mbranch-predict
12276 @itemx -mno-branch-predict
12277 @opindex mbranch-predict
12278 @opindex mno-branch-predict
12279 Use (do not use) the probable-branch instructions, when static branch
12280 prediction indicates a probable branch.
12281
12282 @item -mbase-addresses
12283 @itemx -mno-base-addresses
12284 @opindex mbase-addresses
12285 @opindex mno-base-addresses
12286 Generate (do not generate) code that uses @emph{base addresses}.  Using a
12287 base address automatically generates a request (handled by the assembler
12288 and the linker) for a constant to be set up in a global register.  The
12289 register is used for one or more base address requests within the range 0
12290 to 255 from the value held in the register.  The generally leads to short
12291 and fast code, but the number of different data items that can be
12292 addressed is limited.  This means that a program that uses lots of static
12293 data may require @option{-mno-base-addresses}.
12294
12295 @item -msingle-exit
12296 @itemx -mno-single-exit
12297 @opindex msingle-exit
12298 @opindex mno-single-exit
12299 Force (do not force) generated code to have a single exit point in each
12300 function.
12301 @end table
12302
12303 @node MN10300 Options
12304 @subsection MN10300 Options
12305 @cindex MN10300 options
12306
12307 These @option{-m} options are defined for Matsushita MN10300 architectures:
12308
12309 @table @gcctabopt
12310 @item -mmult-bug
12311 @opindex mmult-bug
12312 Generate code to avoid bugs in the multiply instructions for the MN10300
12313 processors.  This is the default.
12314
12315 @item -mno-mult-bug
12316 @opindex mno-mult-bug
12317 Do not generate code to avoid bugs in the multiply instructions for the
12318 MN10300 processors.
12319
12320 @item -mam33
12321 @opindex mam33
12322 Generate code which uses features specific to the AM33 processor.
12323
12324 @item -mno-am33
12325 @opindex mno-am33
12326 Do not generate code which uses features specific to the AM33 processor.  This
12327 is the default.
12328
12329 @item -mreturn-pointer-on-d0
12330 @opindex mreturn-pointer-on-d0
12331 When generating a function which returns a pointer, return the pointer
12332 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
12333 only in a0, and attempts to call such functions without a prototype
12334 would result in errors.  Note that this option is on by default; use
12335 @option{-mno-return-pointer-on-d0} to disable it.
12336
12337 @item -mno-crt0
12338 @opindex mno-crt0
12339 Do not link in the C run-time initialization object file.
12340
12341 @item -mrelax
12342 @opindex mrelax
12343 Indicate to the linker that it should perform a relaxation optimization pass
12344 to shorten branches, calls and absolute memory addresses.  This option only
12345 has an effect when used on the command line for the final link step.
12346
12347 This option makes symbolic debugging impossible.
12348 @end table
12349
12350 @node MT Options
12351 @subsection MT Options
12352 @cindex MT options
12353
12354 These @option{-m} options are defined for Morpho MT architectures:
12355
12356 @table @gcctabopt
12357
12358 @item -march=@var{cpu-type}
12359 @opindex march
12360 Generate code that will run on @var{cpu-type}, which is the name of a system
12361 representing a certain processor type.  Possible values for
12362 @var{cpu-type} are @samp{ms1-64-001}, @samp{ms1-16-002},
12363 @samp{ms1-16-003} and @samp{ms2}.
12364
12365 When this option is not used, the default is @option{-march=ms1-16-002}.
12366
12367 @item -mbacc
12368 @opindex mbacc
12369 Use byte loads and stores when generating code.
12370
12371 @item -mno-bacc
12372 @opindex mno-bacc
12373 Do not use byte loads and stores when generating code.
12374
12375 @item -msim
12376 @opindex msim
12377 Use simulator runtime
12378
12379 @item -mno-crt0
12380 @opindex mno-crt0
12381 Do not link in the C run-time initialization object file
12382 @file{crti.o}.  Other run-time initialization and termination files
12383 such as @file{startup.o} and @file{exit.o} are still included on the
12384 linker command line.
12385
12386 @end table
12387
12388 @node PDP-11 Options
12389 @subsection PDP-11 Options
12390 @cindex PDP-11 Options
12391
12392 These options are defined for the PDP-11:
12393
12394 @table @gcctabopt
12395 @item -mfpu
12396 @opindex mfpu
12397 Use hardware FPP floating point.  This is the default.  (FIS floating
12398 point on the PDP-11/40 is not supported.)
12399
12400 @item -msoft-float
12401 @opindex msoft-float
12402 Do not use hardware floating point.
12403
12404 @item -mac0
12405 @opindex mac0
12406 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
12407
12408 @item -mno-ac0
12409 @opindex mno-ac0
12410 Return floating-point results in memory.  This is the default.
12411
12412 @item -m40
12413 @opindex m40
12414 Generate code for a PDP-11/40.
12415
12416 @item -m45
12417 @opindex m45
12418 Generate code for a PDP-11/45.  This is the default.
12419
12420 @item -m10
12421 @opindex m10
12422 Generate code for a PDP-11/10.
12423
12424 @item -mbcopy-builtin
12425 @opindex bcopy-builtin
12426 Use inline @code{movmemhi} patterns for copying memory.  This is the
12427 default.
12428
12429 @item -mbcopy
12430 @opindex mbcopy
12431 Do not use inline @code{movmemhi} patterns for copying memory.
12432
12433 @item -mint16
12434 @itemx -mno-int32
12435 @opindex mint16
12436 @opindex mno-int32
12437 Use 16-bit @code{int}.  This is the default.
12438
12439 @item -mint32
12440 @itemx -mno-int16
12441 @opindex mint32
12442 @opindex mno-int16
12443 Use 32-bit @code{int}.
12444
12445 @item -mfloat64
12446 @itemx -mno-float32
12447 @opindex mfloat64
12448 @opindex mno-float32
12449 Use 64-bit @code{float}.  This is the default.
12450
12451 @item -mfloat32
12452 @itemx -mno-float64
12453 @opindex mfloat32
12454 @opindex mno-float64
12455 Use 32-bit @code{float}.
12456
12457 @item -mabshi
12458 @opindex mabshi
12459 Use @code{abshi2} pattern.  This is the default.
12460
12461 @item -mno-abshi
12462 @opindex mno-abshi
12463 Do not use @code{abshi2} pattern.
12464
12465 @item -mbranch-expensive
12466 @opindex mbranch-expensive
12467 Pretend that branches are expensive.  This is for experimenting with
12468 code generation only.
12469
12470 @item -mbranch-cheap
12471 @opindex mbranch-cheap
12472 Do not pretend that branches are expensive.  This is the default.
12473
12474 @item -msplit
12475 @opindex msplit
12476 Generate code for a system with split I&D@.
12477
12478 @item -mno-split
12479 @opindex mno-split
12480 Generate code for a system without split I&D@.  This is the default.
12481
12482 @item -munix-asm
12483 @opindex munix-asm
12484 Use Unix assembler syntax.  This is the default when configured for
12485 @samp{pdp11-*-bsd}.
12486
12487 @item -mdec-asm
12488 @opindex mdec-asm
12489 Use DEC assembler syntax.  This is the default when configured for any
12490 PDP-11 target other than @samp{pdp11-*-bsd}.
12491 @end table
12492
12493 @node PowerPC Options
12494 @subsection PowerPC Options
12495 @cindex PowerPC options
12496
12497 These are listed under @xref{RS/6000 and PowerPC Options}.
12498
12499 @node RS/6000 and PowerPC Options
12500 @subsection IBM RS/6000 and PowerPC Options
12501 @cindex RS/6000 and PowerPC Options
12502 @cindex IBM RS/6000 and PowerPC Options
12503
12504 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
12505 @table @gcctabopt
12506 @item -mpower
12507 @itemx -mno-power
12508 @itemx -mpower2
12509 @itemx -mno-power2
12510 @itemx -mpowerpc
12511 @itemx -mno-powerpc
12512 @itemx -mpowerpc-gpopt
12513 @itemx -mno-powerpc-gpopt
12514 @itemx -mpowerpc-gfxopt
12515 @itemx -mno-powerpc-gfxopt
12516 @itemx -mpowerpc64
12517 @itemx -mno-powerpc64
12518 @itemx -mmfcrf
12519 @itemx -mno-mfcrf
12520 @itemx -mpopcntb
12521 @itemx -mno-popcntb
12522 @itemx -mfprnd
12523 @itemx -mno-fprnd
12524 @itemx -mcmpb
12525 @itemx -mno-cmpb
12526 @itemx -mmfpgpr
12527 @itemx -mno-mfpgpr
12528 @itemx -mdfp
12529 @itemx -mno-dfp
12530 @opindex mpower
12531 @opindex mno-power
12532 @opindex mpower2
12533 @opindex mno-power2
12534 @opindex mpowerpc
12535 @opindex mno-powerpc
12536 @opindex mpowerpc-gpopt
12537 @opindex mno-powerpc-gpopt
12538 @opindex mpowerpc-gfxopt
12539 @opindex mno-powerpc-gfxopt
12540 @opindex mpowerpc64
12541 @opindex mno-powerpc64
12542 @opindex mmfcrf
12543 @opindex mno-mfcrf
12544 @opindex mpopcntb
12545 @opindex mno-popcntb
12546 @opindex mfprnd
12547 @opindex mno-fprnd
12548 @opindex mcmpb
12549 @opindex mno-cmpb
12550 @opindex mmfpgpr
12551 @opindex mno-mfpgpr
12552 @opindex mdfp
12553 @opindex mno-dfp
12554 GCC supports two related instruction set architectures for the
12555 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
12556 instructions supported by the @samp{rios} chip set used in the original
12557 RS/6000 systems and the @dfn{PowerPC} instruction set is the
12558 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
12559 the IBM 4xx, 6xx, and follow-on microprocessors.
12560
12561 Neither architecture is a subset of the other.  However there is a
12562 large common subset of instructions supported by both.  An MQ
12563 register is included in processors supporting the POWER architecture.
12564
12565 You use these options to specify which instructions are available on the
12566 processor you are using.  The default value of these options is
12567 determined when configuring GCC@.  Specifying the
12568 @option{-mcpu=@var{cpu_type}} overrides the specification of these
12569 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
12570 rather than the options listed above.
12571
12572 The @option{-mpower} option allows GCC to generate instructions that
12573 are found only in the POWER architecture and to use the MQ register.
12574 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
12575 to generate instructions that are present in the POWER2 architecture but
12576 not the original POWER architecture.
12577
12578 The @option{-mpowerpc} option allows GCC to generate instructions that
12579 are found only in the 32-bit subset of the PowerPC architecture.
12580 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
12581 GCC to use the optional PowerPC architecture instructions in the
12582 General Purpose group, including floating-point square root.  Specifying
12583 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
12584 use the optional PowerPC architecture instructions in the Graphics
12585 group, including floating-point select.
12586
12587 The @option{-mmfcrf} option allows GCC to generate the move from
12588 condition register field instruction implemented on the POWER4
12589 processor and other processors that support the PowerPC V2.01
12590 architecture.
12591 The @option{-mpopcntb} option allows GCC to generate the popcount and
12592 double precision FP reciprocal estimate instruction implemented on the
12593 POWER5 processor and other processors that support the PowerPC V2.02
12594 architecture.
12595 The @option{-mfprnd} option allows GCC to generate the FP round to
12596 integer instructions implemented on the POWER5+ processor and other
12597 processors that support the PowerPC V2.03 architecture.
12598 The @option{-mcmpb} option allows GCC to generate the compare bytes
12599 instruction implemented on the POWER6 processor and other processors
12600 that support the PowerPC V2.05 architecture.
12601 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
12602 general purpose register instructions implemented on the POWER6X
12603 processor and other processors that support the extended PowerPC V2.05
12604 architecture.
12605 The @option{-mdfp} option allows GCC to generate the decimal floating
12606 point instructions implemented on some POWER processors.
12607
12608 The @option{-mpowerpc64} option allows GCC to generate the additional
12609 64-bit instructions that are found in the full PowerPC64 architecture
12610 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
12611 @option{-mno-powerpc64}.
12612
12613 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
12614 will use only the instructions in the common subset of both
12615 architectures plus some special AIX common-mode calls, and will not use
12616 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
12617 permits GCC to use any instruction from either architecture and to
12618 allow use of the MQ register; specify this for the Motorola MPC601.
12619
12620 @item -mnew-mnemonics
12621 @itemx -mold-mnemonics
12622 @opindex mnew-mnemonics
12623 @opindex mold-mnemonics
12624 Select which mnemonics to use in the generated assembler code.  With
12625 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
12626 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
12627 assembler mnemonics defined for the POWER architecture.  Instructions
12628 defined in only one architecture have only one mnemonic; GCC uses that
12629 mnemonic irrespective of which of these options is specified.
12630
12631 GCC defaults to the mnemonics appropriate for the architecture in
12632 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
12633 value of these option.  Unless you are building a cross-compiler, you
12634 should normally not specify either @option{-mnew-mnemonics} or
12635 @option{-mold-mnemonics}, but should instead accept the default.
12636
12637 @item -mcpu=@var{cpu_type}
12638 @opindex mcpu
12639 Set architecture type, register usage, choice of mnemonics, and
12640 instruction scheduling parameters for machine type @var{cpu_type}.
12641 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
12642 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{505},
12643 @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
12644 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
12645 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
12646 @samp{860}, @samp{970}, @samp{8540}, @samp{ec603e}, @samp{G3},
12647 @samp{G4}, @samp{G5}, @samp{power}, @samp{power2}, @samp{power3},
12648 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6},
12649 @samp{power6x}, @samp{common}, @samp{powerpc}, @samp{powerpc64},
12650 @samp{rios}, @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
12651
12652 @option{-mcpu=common} selects a completely generic processor.  Code
12653 generated under this option will run on any POWER or PowerPC processor.
12654 GCC will use only the instructions in the common subset of both
12655 architectures, and will not use the MQ register.  GCC assumes a generic
12656 processor model for scheduling purposes.
12657
12658 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
12659 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
12660 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
12661 types, with an appropriate, generic processor model assumed for
12662 scheduling purposes.
12663
12664 The other options specify a specific processor.  Code generated under
12665 those options will run best on that processor, and may not run at all on
12666 others.
12667
12668 The @option{-mcpu} options automatically enable or disable the
12669 following options:
12670
12671 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
12672 -mnew-mnemonics  -mpopcntb  -mpower  -mpower2  -mpowerpc64 @gol
12673 -mpowerpc-gpopt  -mpowerpc-gfxopt  -mstring  -mmulhw  -mdlmzb  -mmfpgpr}
12674
12675 The particular options set for any particular CPU will vary between
12676 compiler versions, depending on what setting seems to produce optimal
12677 code for that CPU; it doesn't necessarily reflect the actual hardware's
12678 capabilities.  If you wish to set an individual option to a particular
12679 value, you may specify it after the @option{-mcpu} option, like
12680 @samp{-mcpu=970 -mno-altivec}.
12681
12682 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
12683 not enabled or disabled by the @option{-mcpu} option at present because
12684 AIX does not have full support for these options.  You may still
12685 enable or disable them individually if you're sure it'll work in your
12686 environment.
12687
12688 @item -mtune=@var{cpu_type}
12689 @opindex mtune
12690 Set the instruction scheduling parameters for machine type
12691 @var{cpu_type}, but do not set the architecture type, register usage, or
12692 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
12693 values for @var{cpu_type} are used for @option{-mtune} as for
12694 @option{-mcpu}.  If both are specified, the code generated will use the
12695 architecture, registers, and mnemonics set by @option{-mcpu}, but the
12696 scheduling parameters set by @option{-mtune}.
12697
12698 @item -mswdiv
12699 @itemx -mno-swdiv
12700 @opindex mswdiv
12701 @opindex mno-swdiv
12702 Generate code to compute division as reciprocal estimate and iterative
12703 refinement, creating opportunities for increased throughput.  This
12704 feature requires: optional PowerPC Graphics instruction set for single
12705 precision and FRE instruction for double precision, assuming divides
12706 cannot generate user-visible traps, and the domain values not include
12707 Infinities, denormals or zero denominator.
12708
12709 @item -maltivec
12710 @itemx -mno-altivec
12711 @opindex maltivec
12712 @opindex mno-altivec
12713 Generate code that uses (does not use) AltiVec instructions, and also
12714 enable the use of built-in functions that allow more direct access to
12715 the AltiVec instruction set.  You may also need to set
12716 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
12717 enhancements.
12718
12719 @item -mvrsave
12720 @item -mno-vrsave
12721 @opindex mvrsave
12722 @opindex mno-vrsave
12723 Generate VRSAVE instructions when generating AltiVec code.
12724
12725 @item -msecure-plt
12726 @opindex msecure-plt
12727 Generate code that allows ld and ld.so to build executables and shared
12728 libraries with non-exec .plt and .got sections.  This is a PowerPC
12729 32-bit SYSV ABI option.
12730
12731 @item -mbss-plt
12732 @opindex mbss-plt
12733 Generate code that uses a BSS .plt section that ld.so fills in, and
12734 requires .plt and .got sections that are both writable and executable.
12735 This is a PowerPC 32-bit SYSV ABI option.
12736
12737 @item -misel
12738 @itemx -mno-isel
12739 @opindex misel
12740 @opindex mno-isel
12741 This switch enables or disables the generation of ISEL instructions.
12742
12743 @item -misel=@var{yes/no}
12744 This switch has been deprecated.  Use @option{-misel} and
12745 @option{-mno-isel} instead.
12746
12747 @item -mspe
12748 @itemx -mno-spe
12749 @opindex mspe
12750 @opindex mno-spe
12751 This switch enables or disables the generation of SPE simd
12752 instructions.
12753
12754 @item -mpaired
12755 @itemx -mno-paired
12756 @opindex mpaired
12757 @opindex mno-paired
12758 This switch enables or disables the generation of PAIRED simd
12759 instructions.
12760
12761 @item -mspe=@var{yes/no}
12762 This option has been deprecated.  Use @option{-mspe} and
12763 @option{-mno-spe} instead.
12764
12765 @item -mfloat-gprs=@var{yes/single/double/no}
12766 @itemx -mfloat-gprs
12767 @opindex mfloat-gprs
12768 This switch enables or disables the generation of floating point
12769 operations on the general purpose registers for architectures that
12770 support it.
12771
12772 The argument @var{yes} or @var{single} enables the use of
12773 single-precision floating point operations.
12774
12775 The argument @var{double} enables the use of single and
12776 double-precision floating point operations.
12777
12778 The argument @var{no} disables floating point operations on the
12779 general purpose registers.
12780
12781 This option is currently only available on the MPC854x.
12782
12783 @item -m32
12784 @itemx -m64
12785 @opindex m32
12786 @opindex m64
12787 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
12788 targets (including GNU/Linux).  The 32-bit environment sets int, long
12789 and pointer to 32 bits and generates code that runs on any PowerPC
12790 variant.  The 64-bit environment sets int to 32 bits and long and
12791 pointer to 64 bits, and generates code for PowerPC64, as for
12792 @option{-mpowerpc64}.
12793
12794 @item -mfull-toc
12795 @itemx -mno-fp-in-toc
12796 @itemx -mno-sum-in-toc
12797 @itemx -mminimal-toc
12798 @opindex mfull-toc
12799 @opindex mno-fp-in-toc
12800 @opindex mno-sum-in-toc
12801 @opindex mminimal-toc
12802 Modify generation of the TOC (Table Of Contents), which is created for
12803 every executable file.  The @option{-mfull-toc} option is selected by
12804 default.  In that case, GCC will allocate at least one TOC entry for
12805 each unique non-automatic variable reference in your program.  GCC
12806 will also place floating-point constants in the TOC@.  However, only
12807 16,384 entries are available in the TOC@.
12808
12809 If you receive a linker error message that saying you have overflowed
12810 the available TOC space, you can reduce the amount of TOC space used
12811 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
12812 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
12813 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
12814 generate code to calculate the sum of an address and a constant at
12815 run-time instead of putting that sum into the TOC@.  You may specify one
12816 or both of these options.  Each causes GCC to produce very slightly
12817 slower and larger code at the expense of conserving TOC space.
12818
12819 If you still run out of space in the TOC even when you specify both of
12820 these options, specify @option{-mminimal-toc} instead.  This option causes
12821 GCC to make only one TOC entry for every file.  When you specify this
12822 option, GCC will produce code that is slower and larger but which
12823 uses extremely little TOC space.  You may wish to use this option
12824 only on files that contain less frequently executed code.
12825
12826 @item -maix64
12827 @itemx -maix32
12828 @opindex maix64
12829 @opindex maix32
12830 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
12831 @code{long} type, and the infrastructure needed to support them.
12832 Specifying @option{-maix64} implies @option{-mpowerpc64} and
12833 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
12834 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
12835
12836 @item -mxl-compat
12837 @itemx -mno-xl-compat
12838 @opindex mxl-compat
12839 @opindex mno-xl-compat
12840 Produce code that conforms more closely to IBM XL compiler semantics
12841 when using AIX-compatible ABI.  Pass floating-point arguments to
12842 prototyped functions beyond the register save area (RSA) on the stack
12843 in addition to argument FPRs.  Do not assume that most significant
12844 double in 128-bit long double value is properly rounded when comparing
12845 values and converting to double.  Use XL symbol names for long double
12846 support routines.
12847
12848 The AIX calling convention was extended but not initially documented to
12849 handle an obscure K&R C case of calling a function that takes the
12850 address of its arguments with fewer arguments than declared.  IBM XL
12851 compilers access floating point arguments which do not fit in the
12852 RSA from the stack when a subroutine is compiled without
12853 optimization.  Because always storing floating-point arguments on the
12854 stack is inefficient and rarely needed, this option is not enabled by
12855 default and only is necessary when calling subroutines compiled by IBM
12856 XL compilers without optimization.
12857
12858 @item -mpe
12859 @opindex mpe
12860 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
12861 application written to use message passing with special startup code to
12862 enable the application to run.  The system must have PE installed in the
12863 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
12864 must be overridden with the @option{-specs=} option to specify the
12865 appropriate directory location.  The Parallel Environment does not
12866 support threads, so the @option{-mpe} option and the @option{-pthread}
12867 option are incompatible.
12868
12869 @item -malign-natural
12870 @itemx -malign-power
12871 @opindex malign-natural
12872 @opindex malign-power
12873 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
12874 @option{-malign-natural} overrides the ABI-defined alignment of larger
12875 types, such as floating-point doubles, on their natural size-based boundary.
12876 The option @option{-malign-power} instructs GCC to follow the ABI-specified
12877 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
12878
12879 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
12880 is not supported.
12881
12882 @item -msoft-float
12883 @itemx -mhard-float
12884 @opindex msoft-float
12885 @opindex mhard-float
12886 Generate code that does not use (uses) the floating-point register set.
12887 Software floating point emulation is provided if you use the
12888 @option{-msoft-float} option, and pass the option to GCC when linking.
12889
12890 @item -mmultiple
12891 @itemx -mno-multiple
12892 @opindex mmultiple
12893 @opindex mno-multiple
12894 Generate code that uses (does not use) the load multiple word
12895 instructions and the store multiple word instructions.  These
12896 instructions are generated by default on POWER systems, and not
12897 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
12898 endian PowerPC systems, since those instructions do not work when the
12899 processor is in little endian mode.  The exceptions are PPC740 and
12900 PPC750 which permit the instructions usage in little endian mode.
12901
12902 @item -mstring
12903 @itemx -mno-string
12904 @opindex mstring
12905 @opindex mno-string
12906 Generate code that uses (does not use) the load string instructions
12907 and the store string word instructions to save multiple registers and
12908 do small block moves.  These instructions are generated by default on
12909 POWER systems, and not generated on PowerPC systems.  Do not use
12910 @option{-mstring} on little endian PowerPC systems, since those
12911 instructions do not work when the processor is in little endian mode.
12912 The exceptions are PPC740 and PPC750 which permit the instructions
12913 usage in little endian mode.
12914
12915 @item -mupdate
12916 @itemx -mno-update
12917 @opindex mupdate
12918 @opindex mno-update
12919 Generate code that uses (does not use) the load or store instructions
12920 that update the base register to the address of the calculated memory
12921 location.  These instructions are generated by default.  If you use
12922 @option{-mno-update}, there is a small window between the time that the
12923 stack pointer is updated and the address of the previous frame is
12924 stored, which means code that walks the stack frame across interrupts or
12925 signals may get corrupted data.
12926
12927 @item -mfused-madd
12928 @itemx -mno-fused-madd
12929 @opindex mfused-madd
12930 @opindex mno-fused-madd
12931 Generate code that uses (does not use) the floating point multiply and
12932 accumulate instructions.  These instructions are generated by default if
12933 hardware floating is used.
12934
12935 @item -mmulhw
12936 @itemx -mno-mulhw
12937 @opindex mmulhw
12938 @opindex mno-mulhw
12939 Generate code that uses (does not use) the half-word multiply and
12940 multiply-accumulate instructions on the IBM 405 and 440 processors.
12941 These instructions are generated by default when targetting those
12942 processors.
12943
12944 @item -mdlmzb
12945 @itemx -mno-dlmzb
12946 @opindex mdlmzb
12947 @opindex mno-dlmzb
12948 Generate code that uses (does not use) the string-search @samp{dlmzb}
12949 instruction on the IBM 405 and 440 processors.  This instruction is
12950 generated by default when targetting those processors.
12951
12952 @item -mno-bit-align
12953 @itemx -mbit-align
12954 @opindex mno-bit-align
12955 @opindex mbit-align
12956 On System V.4 and embedded PowerPC systems do not (do) force structures
12957 and unions that contain bit-fields to be aligned to the base type of the
12958 bit-field.
12959
12960 For example, by default a structure containing nothing but 8
12961 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
12962 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
12963 the structure would be aligned to a 1 byte boundary and be one byte in
12964 size.
12965
12966 @item -mno-strict-align
12967 @itemx -mstrict-align
12968 @opindex mno-strict-align
12969 @opindex mstrict-align
12970 On System V.4 and embedded PowerPC systems do not (do) assume that
12971 unaligned memory references will be handled by the system.
12972
12973 @item -mrelocatable
12974 @itemx -mno-relocatable
12975 @opindex mrelocatable
12976 @opindex mno-relocatable
12977 On embedded PowerPC systems generate code that allows (does not allow)
12978 the program to be relocated to a different address at runtime.  If you
12979 use @option{-mrelocatable} on any module, all objects linked together must
12980 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
12981
12982 @item -mrelocatable-lib
12983 @itemx -mno-relocatable-lib
12984 @opindex mrelocatable-lib
12985 @opindex mno-relocatable-lib
12986 On embedded PowerPC systems generate code that allows (does not allow)
12987 the program to be relocated to a different address at runtime.  Modules
12988 compiled with @option{-mrelocatable-lib} can be linked with either modules
12989 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
12990 with modules compiled with the @option{-mrelocatable} options.
12991
12992 @item -mno-toc
12993 @itemx -mtoc
12994 @opindex mno-toc
12995 @opindex mtoc
12996 On System V.4 and embedded PowerPC systems do not (do) assume that
12997 register 2 contains a pointer to a global area pointing to the addresses
12998 used in the program.
12999
13000 @item -mlittle
13001 @itemx -mlittle-endian
13002 @opindex mlittle
13003 @opindex mlittle-endian
13004 On System V.4 and embedded PowerPC systems compile code for the
13005 processor in little endian mode.  The @option{-mlittle-endian} option is
13006 the same as @option{-mlittle}.
13007
13008 @item -mbig
13009 @itemx -mbig-endian
13010 @opindex mbig
13011 @opindex mbig-endian
13012 On System V.4 and embedded PowerPC systems compile code for the
13013 processor in big endian mode.  The @option{-mbig-endian} option is
13014 the same as @option{-mbig}.
13015
13016 @item -mdynamic-no-pic
13017 @opindex mdynamic-no-pic
13018 On Darwin and Mac OS X systems, compile code so that it is not
13019 relocatable, but that its external references are relocatable.  The
13020 resulting code is suitable for applications, but not shared
13021 libraries.
13022
13023 @item -mprioritize-restricted-insns=@var{priority}
13024 @opindex mprioritize-restricted-insns
13025 This option controls the priority that is assigned to
13026 dispatch-slot restricted instructions during the second scheduling
13027 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
13028 @var{no/highest/second-highest} priority to dispatch slot restricted
13029 instructions.
13030
13031 @item -msched-costly-dep=@var{dependence_type}
13032 @opindex msched-costly-dep
13033 This option controls which dependences are considered costly
13034 by the target during instruction scheduling.  The argument
13035 @var{dependence_type} takes one of the following values:
13036 @var{no}: no dependence is costly,
13037 @var{all}: all dependences are costly,
13038 @var{true_store_to_load}: a true dependence from store to load is costly,
13039 @var{store_to_load}: any dependence from store to load is costly,
13040 @var{number}: any dependence which latency >= @var{number} is costly.
13041
13042 @item -minsert-sched-nops=@var{scheme}
13043 @opindex minsert-sched-nops
13044 This option controls which nop insertion scheme will be used during
13045 the second scheduling pass.  The argument @var{scheme} takes one of the
13046 following values:
13047 @var{no}: Don't insert nops.
13048 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
13049 according to the scheduler's grouping.
13050 @var{regroup_exact}: Insert nops to force costly dependent insns into
13051 separate groups.  Insert exactly as many nops as needed to force an insn
13052 to a new group, according to the estimated processor grouping.
13053 @var{number}: Insert nops to force costly dependent insns into
13054 separate groups.  Insert @var{number} nops to force an insn to a new group.
13055
13056 @item -mcall-sysv
13057 @opindex mcall-sysv
13058 On System V.4 and embedded PowerPC systems compile code using calling
13059 conventions that adheres to the March 1995 draft of the System V
13060 Application Binary Interface, PowerPC processor supplement.  This is the
13061 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
13062
13063 @item -mcall-sysv-eabi
13064 @opindex mcall-sysv-eabi
13065 Specify both @option{-mcall-sysv} and @option{-meabi} options.
13066
13067 @item -mcall-sysv-noeabi
13068 @opindex mcall-sysv-noeabi
13069 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
13070
13071 @item -mcall-solaris
13072 @opindex mcall-solaris
13073 On System V.4 and embedded PowerPC systems compile code for the Solaris
13074 operating system.
13075
13076 @item -mcall-linux
13077 @opindex mcall-linux
13078 On System V.4 and embedded PowerPC systems compile code for the
13079 Linux-based GNU system.
13080
13081 @item -mcall-gnu
13082 @opindex mcall-gnu
13083 On System V.4 and embedded PowerPC systems compile code for the
13084 Hurd-based GNU system.
13085
13086 @item -mcall-netbsd
13087 @opindex mcall-netbsd
13088 On System V.4 and embedded PowerPC systems compile code for the
13089 NetBSD operating system.
13090
13091 @item -maix-struct-return
13092 @opindex maix-struct-return
13093 Return all structures in memory (as specified by the AIX ABI)@.
13094
13095 @item -msvr4-struct-return
13096 @opindex msvr4-struct-return
13097 Return structures smaller than 8 bytes in registers (as specified by the
13098 SVR4 ABI)@.
13099
13100 @item -mabi=@var{abi-type}
13101 @opindex mabi
13102 Extend the current ABI with a particular extension, or remove such extension.
13103 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
13104 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
13105
13106 @item -mabi=spe
13107 @opindex mabi=spe
13108 Extend the current ABI with SPE ABI extensions.  This does not change
13109 the default ABI, instead it adds the SPE ABI extensions to the current
13110 ABI@.
13111
13112 @item -mabi=no-spe
13113 @opindex mabi=no-spe
13114 Disable Booke SPE ABI extensions for the current ABI@.
13115
13116 @item -mabi=ibmlongdouble
13117 @opindex mabi=ibmlongdouble
13118 Change the current ABI to use IBM extended precision long double.
13119 This is a PowerPC 32-bit SYSV ABI option.
13120
13121 @item -mabi=ieeelongdouble
13122 @opindex mabi=ieeelongdouble
13123 Change the current ABI to use IEEE extended precision long double.
13124 This is a PowerPC 32-bit Linux ABI option.
13125
13126 @item -mprototype
13127 @itemx -mno-prototype
13128 @opindex mprototype
13129 @opindex mno-prototype
13130 On System V.4 and embedded PowerPC systems assume that all calls to
13131 variable argument functions are properly prototyped.  Otherwise, the
13132 compiler must insert an instruction before every non prototyped call to
13133 set or clear bit 6 of the condition code register (@var{CR}) to
13134 indicate whether floating point values were passed in the floating point
13135 registers in case the function takes a variable arguments.  With
13136 @option{-mprototype}, only calls to prototyped variable argument functions
13137 will set or clear the bit.
13138
13139 @item -msim
13140 @opindex msim
13141 On embedded PowerPC systems, assume that the startup module is called
13142 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
13143 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}.
13144 configurations.
13145
13146 @item -mmvme
13147 @opindex mmvme
13148 On embedded PowerPC systems, assume that the startup module is called
13149 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
13150 @file{libc.a}.
13151
13152 @item -mads
13153 @opindex mads
13154 On embedded PowerPC systems, assume that the startup module is called
13155 @file{crt0.o} and the standard C libraries are @file{libads.a} and
13156 @file{libc.a}.
13157
13158 @item -myellowknife
13159 @opindex myellowknife
13160 On embedded PowerPC systems, assume that the startup module is called
13161 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
13162 @file{libc.a}.
13163
13164 @item -mvxworks
13165 @opindex mvxworks
13166 On System V.4 and embedded PowerPC systems, specify that you are
13167 compiling for a VxWorks system.
13168
13169 @item -mwindiss
13170 @opindex mwindiss
13171 Specify that you are compiling for the WindISS simulation environment.
13172
13173 @item -memb
13174 @opindex memb
13175 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
13176 header to indicate that @samp{eabi} extended relocations are used.
13177
13178 @item -meabi
13179 @itemx -mno-eabi
13180 @opindex meabi
13181 @opindex mno-eabi
13182 On System V.4 and embedded PowerPC systems do (do not) adhere to the
13183 Embedded Applications Binary Interface (eabi) which is a set of
13184 modifications to the System V.4 specifications.  Selecting @option{-meabi}
13185 means that the stack is aligned to an 8 byte boundary, a function
13186 @code{__eabi} is called to from @code{main} to set up the eabi
13187 environment, and the @option{-msdata} option can use both @code{r2} and
13188 @code{r13} to point to two separate small data areas.  Selecting
13189 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
13190 do not call an initialization function from @code{main}, and the
13191 @option{-msdata} option will only use @code{r13} to point to a single
13192 small data area.  The @option{-meabi} option is on by default if you
13193 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
13194
13195 @item -msdata=eabi
13196 @opindex msdata=eabi
13197 On System V.4 and embedded PowerPC systems, put small initialized
13198 @code{const} global and static data in the @samp{.sdata2} section, which
13199 is pointed to by register @code{r2}.  Put small initialized
13200 non-@code{const} global and static data in the @samp{.sdata} section,
13201 which is pointed to by register @code{r13}.  Put small uninitialized
13202 global and static data in the @samp{.sbss} section, which is adjacent to
13203 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
13204 incompatible with the @option{-mrelocatable} option.  The
13205 @option{-msdata=eabi} option also sets the @option{-memb} option.
13206
13207 @item -msdata=sysv
13208 @opindex msdata=sysv
13209 On System V.4 and embedded PowerPC systems, put small global and static
13210 data in the @samp{.sdata} section, which is pointed to by register
13211 @code{r13}.  Put small uninitialized global and static data in the
13212 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
13213 The @option{-msdata=sysv} option is incompatible with the
13214 @option{-mrelocatable} option.
13215
13216 @item -msdata=default
13217 @itemx -msdata
13218 @opindex msdata=default
13219 @opindex msdata
13220 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
13221 compile code the same as @option{-msdata=eabi}, otherwise compile code the
13222 same as @option{-msdata=sysv}.
13223
13224 @item -msdata-data
13225 @opindex msdata-data
13226 On System V.4 and embedded PowerPC systems, put small global
13227 data in the @samp{.sdata} section.  Put small uninitialized global
13228 data in the @samp{.sbss} section.  Do not use register @code{r13}
13229 to address small data however.  This is the default behavior unless
13230 other @option{-msdata} options are used.
13231
13232 @item -msdata=none
13233 @itemx -mno-sdata
13234 @opindex msdata=none
13235 @opindex mno-sdata
13236 On embedded PowerPC systems, put all initialized global and static data
13237 in the @samp{.data} section, and all uninitialized data in the
13238 @samp{.bss} section.
13239
13240 @item -G @var{num}
13241 @opindex G
13242 @cindex smaller data references (PowerPC)
13243 @cindex .sdata/.sdata2 references (PowerPC)
13244 On embedded PowerPC systems, put global and static items less than or
13245 equal to @var{num} bytes into the small data or bss sections instead of
13246 the normal data or bss section.  By default, @var{num} is 8.  The
13247 @option{-G @var{num}} switch is also passed to the linker.
13248 All modules should be compiled with the same @option{-G @var{num}} value.
13249
13250 @item -mregnames
13251 @itemx -mno-regnames
13252 @opindex mregnames
13253 @opindex mno-regnames
13254 On System V.4 and embedded PowerPC systems do (do not) emit register
13255 names in the assembly language output using symbolic forms.
13256
13257 @item -mlongcall
13258 @itemx -mno-longcall
13259 @opindex mlongcall
13260 @opindex mno-longcall
13261 By default assume that all calls are far away so that a longer more
13262 expensive calling sequence is required.  This is required for calls
13263 further than 32 megabytes (33,554,432 bytes) from the current location.
13264 A short call will be generated if the compiler knows
13265 the call cannot be that far away.  This setting can be overridden by
13266 the @code{shortcall} function attribute, or by @code{#pragma
13267 longcall(0)}.
13268
13269 Some linkers are capable of detecting out-of-range calls and generating
13270 glue code on the fly.  On these systems, long calls are unnecessary and
13271 generate slower code.  As of this writing, the AIX linker can do this,
13272 as can the GNU linker for PowerPC/64.  It is planned to add this feature
13273 to the GNU linker for 32-bit PowerPC systems as well.
13274
13275 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
13276 callee, L42'', plus a ``branch island'' (glue code).  The two target
13277 addresses represent the callee and the ``branch island''.  The
13278 Darwin/PPC linker will prefer the first address and generate a ``bl
13279 callee'' if the PPC ``bl'' instruction will reach the callee directly;
13280 otherwise, the linker will generate ``bl L42'' to call the ``branch
13281 island''.  The ``branch island'' is appended to the body of the
13282 calling function; it computes the full 32-bit address of the callee
13283 and jumps to it.
13284
13285 On Mach-O (Darwin) systems, this option directs the compiler emit to
13286 the glue for every direct call, and the Darwin linker decides whether
13287 to use or discard it.
13288
13289 In the future, we may cause GCC to ignore all longcall specifications
13290 when the linker is known to generate glue.
13291
13292 @item -pthread
13293 @opindex pthread
13294 Adds support for multithreading with the @dfn{pthreads} library.
13295 This option sets flags for both the preprocessor and linker.
13296
13297 @end table
13298
13299 @node S/390 and zSeries Options
13300 @subsection S/390 and zSeries Options
13301 @cindex S/390 and zSeries Options
13302
13303 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
13304
13305 @table @gcctabopt
13306 @item -mhard-float
13307 @itemx -msoft-float
13308 @opindex mhard-float
13309 @opindex msoft-float
13310 Use (do not use) the hardware floating-point instructions and registers
13311 for floating-point operations.  When @option{-msoft-float} is specified,
13312 functions in @file{libgcc.a} will be used to perform floating-point
13313 operations.  When @option{-mhard-float} is specified, the compiler
13314 generates IEEE floating-point instructions.  This is the default.
13315
13316 @item -mlong-double-64
13317 @itemx -mlong-double-128
13318 @opindex mlong-double-64
13319 @opindex mlong-double-128
13320 These switches control the size of @code{long double} type. A size
13321 of 64bit makes the @code{long double} type equivalent to the @code{double}
13322 type. This is the default.
13323
13324 @item -mbackchain
13325 @itemx -mno-backchain
13326 @opindex mbackchain
13327 @opindex mno-backchain
13328 Store (do not store) the address of the caller's frame as backchain pointer
13329 into the callee's stack frame.
13330 A backchain may be needed to allow debugging using tools that do not understand
13331 DWARF-2 call frame information.
13332 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
13333 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
13334 the backchain is placed into the topmost word of the 96/160 byte register
13335 save area.
13336
13337 In general, code compiled with @option{-mbackchain} is call-compatible with
13338 code compiled with @option{-mmo-backchain}; however, use of the backchain
13339 for debugging purposes usually requires that the whole binary is built with
13340 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
13341 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13342 to build a linux kernel use @option{-msoft-float}.
13343
13344 The default is to not maintain the backchain.
13345
13346 @item -mpacked-stack
13347 @item -mno-packed-stack
13348 @opindex mpacked-stack
13349 @opindex mno-packed-stack
13350 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
13351 specified, the compiler uses the all fields of the 96/160 byte register save
13352 area only for their default purpose; unused fields still take up stack space.
13353 When @option{-mpacked-stack} is specified, register save slots are densely
13354 packed at the top of the register save area; unused space is reused for other
13355 purposes, allowing for more efficient use of the available stack space.
13356 However, when @option{-mbackchain} is also in effect, the topmost word of
13357 the save area is always used to store the backchain, and the return address
13358 register is always saved two words below the backchain.
13359
13360 As long as the stack frame backchain is not used, code generated with
13361 @option{-mpacked-stack} is call-compatible with code generated with
13362 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
13363 S/390 or zSeries generated code that uses the stack frame backchain at run
13364 time, not just for debugging purposes.  Such code is not call-compatible
13365 with code compiled with @option{-mpacked-stack}.  Also, note that the
13366 combination of @option{-mbackchain},
13367 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13368 to build a linux kernel use @option{-msoft-float}.
13369
13370 The default is to not use the packed stack layout.
13371
13372 @item -msmall-exec
13373 @itemx -mno-small-exec
13374 @opindex msmall-exec
13375 @opindex mno-small-exec
13376 Generate (or do not generate) code using the @code{bras} instruction
13377 to do subroutine calls.
13378 This only works reliably if the total executable size does not
13379 exceed 64k.  The default is to use the @code{basr} instruction instead,
13380 which does not have this limitation.
13381
13382 @item -m64
13383 @itemx -m31
13384 @opindex m64
13385 @opindex m31
13386 When @option{-m31} is specified, generate code compliant to the
13387 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
13388 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
13389 particular to generate 64-bit instructions.  For the @samp{s390}
13390 targets, the default is @option{-m31}, while the @samp{s390x}
13391 targets default to @option{-m64}.
13392
13393 @item -mzarch
13394 @itemx -mesa
13395 @opindex mzarch
13396 @opindex mesa
13397 When @option{-mzarch} is specified, generate code using the
13398 instructions available on z/Architecture.
13399 When @option{-mesa} is specified, generate code using the
13400 instructions available on ESA/390.  Note that @option{-mesa} is
13401 not possible with @option{-m64}.
13402 When generating code compliant to the GNU/Linux for S/390 ABI,
13403 the default is @option{-mesa}.  When generating code compliant
13404 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
13405
13406 @item -mmvcle
13407 @itemx -mno-mvcle
13408 @opindex mmvcle
13409 @opindex mno-mvcle
13410 Generate (or do not generate) code using the @code{mvcle} instruction
13411 to perform block moves.  When @option{-mno-mvcle} is specified,
13412 use a @code{mvc} loop instead.  This is the default unless optimizing for
13413 size.
13414
13415 @item -mdebug
13416 @itemx -mno-debug
13417 @opindex mdebug
13418 @opindex mno-debug
13419 Print (or do not print) additional debug information when compiling.
13420 The default is to not print debug information.
13421
13422 @item -march=@var{cpu-type}
13423 @opindex march
13424 Generate code that will run on @var{cpu-type}, which is the name of a system
13425 representing a certain processor type.  Possible values for
13426 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
13427 When generating code using the instructions available on z/Architecture,
13428 the default is @option{-march=z900}.  Otherwise, the default is
13429 @option{-march=g5}.
13430
13431 @item -mtune=@var{cpu-type}
13432 @opindex mtune
13433 Tune to @var{cpu-type} everything applicable about the generated code,
13434 except for the ABI and the set of available instructions.
13435 The list of @var{cpu-type} values is the same as for @option{-march}.
13436 The default is the value used for @option{-march}.
13437
13438 @item -mtpf-trace
13439 @itemx -mno-tpf-trace
13440 @opindex mtpf-trace
13441 @opindex mno-tpf-trace
13442 Generate code that adds (does not add) in TPF OS specific branches to trace
13443 routines in the operating system.  This option is off by default, even
13444 when compiling for the TPF OS@.
13445
13446 @item -mfused-madd
13447 @itemx -mno-fused-madd
13448 @opindex mfused-madd
13449 @opindex mno-fused-madd
13450 Generate code that uses (does not use) the floating point multiply and
13451 accumulate instructions.  These instructions are generated by default if
13452 hardware floating point is used.
13453
13454 @item -mwarn-framesize=@var{framesize}
13455 @opindex mwarn-framesize
13456 Emit a warning if the current function exceeds the given frame size.  Because
13457 this is a compile time check it doesn't need to be a real problem when the program
13458 runs.  It is intended to identify functions which most probably cause
13459 a stack overflow.  It is useful to be used in an environment with limited stack
13460 size e.g.@: the linux kernel.
13461
13462 @item -mwarn-dynamicstack
13463 @opindex mwarn-dynamicstack
13464 Emit a warning if the function calls alloca or uses dynamically
13465 sized arrays.  This is generally a bad idea with a limited stack size.
13466
13467 @item -mstack-guard=@var{stack-guard}
13468 @item -mstack-size=@var{stack-size}
13469 @opindex mstack-guard
13470 @opindex mstack-size
13471 If these options are provided the s390 back end emits additional instructions in
13472 the function prologue which trigger a trap if the stack size is @var{stack-guard}
13473 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
13474 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
13475 the frame size of the compiled function is chosen.
13476 These options are intended to be used to help debugging stack overflow problems.
13477 The additionally emitted code causes only little overhead and hence can also be
13478 used in production like systems without greater performance degradation.  The given
13479 values have to be exact powers of 2 and @var{stack-size} has to be greater than
13480 @var{stack-guard} without exceeding 64k.
13481 In order to be efficient the extra code makes the assumption that the stack starts
13482 at an address aligned to the value given by @var{stack-size}.
13483 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
13484 @end table
13485
13486 @node Score Options
13487 @subsection Score Options
13488 @cindex Score Options
13489
13490 These options are defined for Score implementations:
13491
13492 @table @gcctabopt
13493 @item -meb
13494 @opindex meb
13495 Compile code for big endian mode.  This is the default.
13496
13497 @item -mel
13498 @opindex mel
13499 Compile code for little endian mode. 
13500
13501 @item -mnhwloop
13502 @opindex mnhwloop
13503 Disable generate bcnz instruction.
13504
13505 @item -muls
13506 @opindex muls
13507 Enable generate unaligned load and store instruction.
13508
13509 @item -mmac
13510 @opindex mmac
13511 Enable the use of multiply-accumulate instructions. Disabled by default. 
13512
13513 @item -mscore5
13514 @opindex mscore5
13515 Specify the SCORE5 as the target architecture.
13516
13517 @item -mscore5u
13518 @opindex mscore5u
13519 Specify the SCORE5U of the target architecture.
13520
13521 @item -mscore7
13522 @opindex mscore7
13523 Specify the SCORE7 as the target architecture. This is the default.
13524
13525 @item -mscore7d
13526 @opindex mscore7d
13527 Specify the SCORE7D as the target architecture.
13528 @end table
13529
13530 @node SH Options
13531 @subsection SH Options
13532
13533 These @samp{-m} options are defined for the SH implementations:
13534
13535 @table @gcctabopt
13536 @item -m1
13537 @opindex m1
13538 Generate code for the SH1.
13539
13540 @item -m2
13541 @opindex m2
13542 Generate code for the SH2.
13543
13544 @item -m2e
13545 Generate code for the SH2e.
13546
13547 @item -m3
13548 @opindex m3
13549 Generate code for the SH3.
13550
13551 @item -m3e
13552 @opindex m3e
13553 Generate code for the SH3e.
13554
13555 @item -m4-nofpu
13556 @opindex m4-nofpu
13557 Generate code for the SH4 without a floating-point unit.
13558
13559 @item -m4-single-only
13560 @opindex m4-single-only
13561 Generate code for the SH4 with a floating-point unit that only
13562 supports single-precision arithmetic.
13563
13564 @item -m4-single
13565 @opindex m4-single
13566 Generate code for the SH4 assuming the floating-point unit is in
13567 single-precision mode by default.
13568
13569 @item -m4
13570 @opindex m4
13571 Generate code for the SH4.
13572
13573 @item -m4a-nofpu
13574 @opindex m4a-nofpu
13575 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
13576 floating-point unit is not used.
13577
13578 @item -m4a-single-only
13579 @opindex m4a-single-only
13580 Generate code for the SH4a, in such a way that no double-precision
13581 floating point operations are used.
13582
13583 @item -m4a-single
13584 @opindex m4a-single
13585 Generate code for the SH4a assuming the floating-point unit is in
13586 single-precision mode by default.
13587
13588 @item -m4a
13589 @opindex m4a
13590 Generate code for the SH4a.
13591
13592 @item -m4al
13593 @opindex m4al
13594 Same as @option{-m4a-nofpu}, except that it implicitly passes
13595 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
13596 instructions at the moment.
13597
13598 @item -mb
13599 @opindex mb
13600 Compile code for the processor in big endian mode.
13601
13602 @item -ml
13603 @opindex ml
13604 Compile code for the processor in little endian mode.
13605
13606 @item -mdalign
13607 @opindex mdalign
13608 Align doubles at 64-bit boundaries.  Note that this changes the calling
13609 conventions, and thus some functions from the standard C library will
13610 not work unless you recompile it first with @option{-mdalign}.
13611
13612 @item -mrelax
13613 @opindex mrelax
13614 Shorten some address references at link time, when possible; uses the
13615 linker option @option{-relax}.
13616
13617 @item -mbigtable
13618 @opindex mbigtable
13619 Use 32-bit offsets in @code{switch} tables.  The default is to use
13620 16-bit offsets.
13621
13622 @item -mfmovd
13623 @opindex mfmovd
13624 Enable the use of the instruction @code{fmovd}.
13625
13626 @item -mhitachi
13627 @opindex mhitachi
13628 Comply with the calling conventions defined by Renesas.
13629
13630 @item -mrenesas
13631 @opindex mhitachi
13632 Comply with the calling conventions defined by Renesas.
13633
13634 @item -mno-renesas
13635 @opindex mhitachi
13636 Comply with the calling conventions defined for GCC before the Renesas
13637 conventions were available.  This option is the default for all
13638 targets of the SH toolchain except for @samp{sh-symbianelf}.
13639
13640 @item -mnomacsave
13641 @opindex mnomacsave
13642 Mark the @code{MAC} register as call-clobbered, even if
13643 @option{-mhitachi} is given.
13644
13645 @item -mieee
13646 @opindex mieee
13647 Increase IEEE-compliance of floating-point code.
13648 At the moment, this is equivalent to @option{-fno-finite-math-only}.
13649 When generating 16 bit SH opcodes, getting IEEE-conforming results for
13650 comparisons of NANs / infinities incurs extra overhead in every
13651 floating point comparison, therefore the default is set to
13652 @option{-ffinite-math-only}.
13653
13654 @item -minline-ic_invalidate
13655 @opindex minline-ic_invalidate
13656 Inline code to invalidate instruction cache entries after setting up
13657 nested function trampolines.
13658 This option has no effect if -musermode is in effect and the selected
13659 code generation option (e.g. -m4) does not allow the use of the icbi
13660 instruction.
13661 If the selected code generation option does not allow the use of the icbi
13662 instruction, and -musermode is not in effect, the inlined code will
13663 manipulate the instruction cache address array directly with an associative
13664 write.  This not only requires privileged mode, but it will also
13665 fail if the cache line had been mapped via the TLB and has become unmapped.
13666
13667 @item -misize
13668 @opindex misize
13669 Dump instruction size and location in the assembly code.
13670
13671 @item -mpadstruct
13672 @opindex mpadstruct
13673 This option is deprecated.  It pads structures to multiple of 4 bytes,
13674 which is incompatible with the SH ABI@.
13675
13676 @item -mspace
13677 @opindex mspace
13678 Optimize for space instead of speed.  Implied by @option{-Os}.
13679
13680 @item -mprefergot
13681 @opindex mprefergot
13682 When generating position-independent code, emit function calls using
13683 the Global Offset Table instead of the Procedure Linkage Table.
13684
13685 @item -musermode
13686 @opindex musermode
13687 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
13688 if the inlined code would not work in user mode.
13689 This is the default when the target is @code{sh-*-linux*}.
13690
13691 @item -multcost=@var{number}
13692 @opindex multcost=@var{number}
13693 Set the cost to assume for a multiply insn.
13694
13695 @item -mdiv=@var{strategy}
13696 @opindex mdiv=@var{strategy}
13697 Set the division strategy to use for SHmedia code.  @var{strategy} must be
13698 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
13699 inv:call2, inv:fp .
13700 "fp" performs the operation in floating point.  This has a very high latency,
13701 but needs only a few instructions, so it might be a good choice if
13702 your code has enough easily exploitable ILP to allow the compiler to
13703 schedule the floating point instructions together with other instructions.
13704 Division by zero causes a floating point exception.
13705 "inv" uses integer operations to calculate the inverse of the divisor,
13706 and then multiplies the dividend with the inverse.  This strategy allows
13707 cse and hoisting of the inverse calculation.  Division by zero calculates
13708 an unspecified result, but does not trap.
13709 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
13710 have been found, or if the entire operation has been hoisted to the same
13711 place, the last stages of the inverse calculation are intertwined with the
13712 final multiply to reduce the overall latency, at the expense of using a few
13713 more instructions, and thus offering fewer scheduling opportunities with
13714 other code.
13715 "call" calls a library function that usually implements the inv:minlat
13716 strategy.
13717 This gives high code density for m5-*media-nofpu compilations.
13718 "call2" uses a different entry point of the same library function, where it
13719 assumes that a pointer to a lookup table has already been set up, which
13720 exposes the pointer load to cse / code hoisting optimizations.
13721 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
13722 code generation, but if the code stays unoptimized, revert to the "call",
13723 "call2", or "fp" strategies, respectively.  Note that the
13724 potentially-trapping side effect of division by zero is carried by a
13725 separate instruction, so it is possible that all the integer instructions
13726 are hoisted out, but the marker for the side effect stays where it is.
13727 A recombination to fp operations or a call is not possible in that case.
13728 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
13729 that the inverse calculation was nor separated from the multiply, they speed
13730 up division where the dividend fits into 20 bits (plus sign where applicable),
13731 by inserting a test to skip a number of operations in this case; this test
13732 slows down the case of larger dividends.  inv20u assumes the case of a such
13733 a small dividend to be unlikely, and inv20l assumes it to be likely.
13734
13735 @item -mdivsi3_libfunc=@var{name}
13736 @opindex mdivsi3_libfunc=@var{name}
13737 Set the name of the library function used for 32 bit signed division to
13738 @var{name}.  This only affect the name used in the call and inv:call
13739 division strategies, and the compiler will still expect the same
13740 sets of input/output/clobbered registers as if this option was not present.
13741
13742 @item -madjust-unroll
13743 @opindex madjust-unroll
13744 Throttle unrolling to avoid thrashing target registers.
13745 This option only has an effect if the gcc code base supports the
13746 TARGET_ADJUST_UNROLL_MAX target hook.
13747
13748 @item -mindexed-addressing
13749 @opindex mindexed-addressing
13750 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
13751 This is only safe if the hardware and/or OS implement 32 bit wrap-around
13752 semantics for the indexed addressing mode.  The architecture allows the
13753 implementation of processors with 64 bit MMU, which the OS could use to
13754 get 32 bit addressing, but since no current hardware implementation supports
13755 this or any other way to make the indexed addressing mode safe to use in
13756 the 32 bit ABI, the default is -mno-indexed-addressing.
13757
13758 @item -mgettrcost=@var{number}
13759 @opindex mgettrcost=@var{number}
13760 Set the cost assumed for the gettr instruction to @var{number}.
13761 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
13762
13763 @item -mpt-fixed
13764 @opindex mpt-fixed
13765 Assume pt* instructions won't trap.  This will generally generate better
13766 scheduled code, but is unsafe on current hardware.  The current architecture
13767 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
13768 This has the unintentional effect of making it unsafe to schedule ptabs /
13769 ptrel before a branch, or hoist it out of a loop.  For example,
13770 __do_global_ctors, a part of libgcc that runs constructors at program
13771 startup, calls functions in a list which is delimited by @minus{}1.  With the
13772 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
13773 That means that all the constructors will be run a bit quicker, but when
13774 the loop comes to the end of the list, the program crashes because ptabs
13775 loads @minus{}1 into a target register.  Since this option is unsafe for any
13776 hardware implementing the current architecture specification, the default
13777 is -mno-pt-fixed.  Unless the user specifies a specific cost with
13778 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
13779 this deters register allocation using target registers for storing
13780 ordinary integers.
13781
13782 @item -minvalid-symbols
13783 @opindex minvalid-symbols
13784 Assume symbols might be invalid.  Ordinary function symbols generated by
13785 the compiler will always be valid to load with movi/shori/ptabs or
13786 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
13787 to generate symbols that will cause ptabs / ptrel to trap.
13788 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
13789 It will then prevent cross-basic-block cse, hoisting and most scheduling
13790 of symbol loads.  The default is @option{-mno-invalid-symbols}.
13791 @end table
13792
13793 @node SPARC Options
13794 @subsection SPARC Options
13795 @cindex SPARC options
13796
13797 These @samp{-m} options are supported on the SPARC:
13798
13799 @table @gcctabopt
13800 @item -mno-app-regs
13801 @itemx -mapp-regs
13802 @opindex mno-app-regs
13803 @opindex mapp-regs
13804 Specify @option{-mapp-regs} to generate output using the global registers
13805 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
13806 is the default.
13807
13808 To be fully SVR4 ABI compliant at the cost of some performance loss,
13809 specify @option{-mno-app-regs}.  You should compile libraries and system
13810 software with this option.
13811
13812 @item -mfpu
13813 @itemx -mhard-float
13814 @opindex mfpu
13815 @opindex mhard-float
13816 Generate output containing floating point instructions.  This is the
13817 default.
13818
13819 @item -mno-fpu
13820 @itemx -msoft-float
13821 @opindex mno-fpu
13822 @opindex msoft-float
13823 Generate output containing library calls for floating point.
13824 @strong{Warning:} the requisite libraries are not available for all SPARC
13825 targets.  Normally the facilities of the machine's usual C compiler are
13826 used, but this cannot be done directly in cross-compilation.  You must make
13827 your own arrangements to provide suitable library functions for
13828 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
13829 @samp{sparclite-*-*} do provide software floating point support.
13830
13831 @option{-msoft-float} changes the calling convention in the output file;
13832 therefore, it is only useful if you compile @emph{all} of a program with
13833 this option.  In particular, you need to compile @file{libgcc.a}, the
13834 library that comes with GCC, with @option{-msoft-float} in order for
13835 this to work.
13836
13837 @item -mhard-quad-float
13838 @opindex mhard-quad-float
13839 Generate output containing quad-word (long double) floating point
13840 instructions.
13841
13842 @item -msoft-quad-float
13843 @opindex msoft-quad-float
13844 Generate output containing library calls for quad-word (long double)
13845 floating point instructions.  The functions called are those specified
13846 in the SPARC ABI@.  This is the default.
13847
13848 As of this writing, there are no SPARC implementations that have hardware
13849 support for the quad-word floating point instructions.  They all invoke
13850 a trap handler for one of these instructions, and then the trap handler
13851 emulates the effect of the instruction.  Because of the trap handler overhead,
13852 this is much slower than calling the ABI library routines.  Thus the
13853 @option{-msoft-quad-float} option is the default.
13854
13855 @item -mno-unaligned-doubles
13856 @itemx -munaligned-doubles
13857 @opindex mno-unaligned-doubles
13858 @opindex munaligned-doubles
13859 Assume that doubles have 8 byte alignment.  This is the default.
13860
13861 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
13862 alignment only if they are contained in another type, or if they have an
13863 absolute address.  Otherwise, it assumes they have 4 byte alignment.
13864 Specifying this option avoids some rare compatibility problems with code
13865 generated by other compilers.  It is not the default because it results
13866 in a performance loss, especially for floating point code.
13867
13868 @item -mno-faster-structs
13869 @itemx -mfaster-structs
13870 @opindex mno-faster-structs
13871 @opindex mfaster-structs
13872 With @option{-mfaster-structs}, the compiler assumes that structures
13873 should have 8 byte alignment.  This enables the use of pairs of
13874 @code{ldd} and @code{std} instructions for copies in structure
13875 assignment, in place of twice as many @code{ld} and @code{st} pairs.
13876 However, the use of this changed alignment directly violates the SPARC
13877 ABI@.  Thus, it's intended only for use on targets where the developer
13878 acknowledges that their resulting code will not be directly in line with
13879 the rules of the ABI@.
13880
13881 @item -mimpure-text
13882 @opindex mimpure-text
13883 @option{-mimpure-text}, used in addition to @option{-shared}, tells
13884 the compiler to not pass @option{-z text} to the linker when linking a
13885 shared object.  Using this option, you can link position-dependent
13886 code into a shared object.
13887
13888 @option{-mimpure-text} suppresses the ``relocations remain against
13889 allocatable but non-writable sections'' linker error message.
13890 However, the necessary relocations will trigger copy-on-write, and the
13891 shared object is not actually shared across processes.  Instead of
13892 using @option{-mimpure-text}, you should compile all source code with
13893 @option{-fpic} or @option{-fPIC}.
13894
13895 This option is only available on SunOS and Solaris.
13896
13897 @item -mcpu=@var{cpu_type}
13898 @opindex mcpu
13899 Set the instruction set, register set, and instruction scheduling parameters
13900 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
13901 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
13902 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
13903 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
13904 @samp{ultrasparc3}, and @samp{niagara}.
13905
13906 Default instruction scheduling parameters are used for values that select
13907 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
13908 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
13909
13910 Here is a list of each supported architecture and their supported
13911 implementations.
13912
13913 @smallexample
13914     v7:             cypress
13915     v8:             supersparc, hypersparc
13916     sparclite:      f930, f934, sparclite86x
13917     sparclet:       tsc701
13918     v9:             ultrasparc, ultrasparc3, niagara
13919 @end smallexample
13920
13921 By default (unless configured otherwise), GCC generates code for the V7
13922 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
13923 additionally optimizes it for the Cypress CY7C602 chip, as used in the
13924 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
13925 SPARCStation 1, 2, IPX etc.
13926
13927 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
13928 architecture.  The only difference from V7 code is that the compiler emits
13929 the integer multiply and integer divide instructions which exist in SPARC-V8
13930 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
13931 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
13932 2000 series.
13933
13934 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
13935 the SPARC architecture.  This adds the integer multiply, integer divide step
13936 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
13937 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
13938 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
13939 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
13940 MB86934 chip, which is the more recent SPARClite with FPU@.
13941
13942 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
13943 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
13944 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
13945 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
13946 optimizes it for the TEMIC SPARClet chip.
13947
13948 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
13949 architecture.  This adds 64-bit integer and floating-point move instructions,
13950 3 additional floating-point condition code registers and conditional move
13951 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
13952 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
13953 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
13954 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
13955 @option{-mcpu=niagara}, the compiler additionally optimizes it for
13956 Sun UltraSPARC T1 chips.
13957
13958 @item -mtune=@var{cpu_type}
13959 @opindex mtune
13960 Set the instruction scheduling parameters for machine type
13961 @var{cpu_type}, but do not set the instruction set or register set that the
13962 option @option{-mcpu=@var{cpu_type}} would.
13963
13964 The same values for @option{-mcpu=@var{cpu_type}} can be used for
13965 @option{-mtune=@var{cpu_type}}, but the only useful values are those
13966 that select a particular cpu implementation.  Those are @samp{cypress},
13967 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
13968 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
13969 @samp{ultrasparc3}, and @samp{niagara}.
13970
13971 @item -mv8plus
13972 @itemx -mno-v8plus
13973 @opindex mv8plus
13974 @opindex mno-v8plus
13975 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
13976 difference from the V8 ABI is that the global and out registers are
13977 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
13978 mode for all SPARC-V9 processors.
13979
13980 @item -mvis
13981 @itemx -mno-vis
13982 @opindex mvis
13983 @opindex mno-vis
13984 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
13985 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
13986 @end table
13987
13988 These @samp{-m} options are supported in addition to the above
13989 on SPARC-V9 processors in 64-bit environments:
13990
13991 @table @gcctabopt
13992 @item -mlittle-endian
13993 @opindex mlittle-endian
13994 Generate code for a processor running in little-endian mode.  It is only
13995 available for a few configurations and most notably not on Solaris and Linux.
13996
13997 @item -m32
13998 @itemx -m64
13999 @opindex m32
14000 @opindex m64
14001 Generate code for a 32-bit or 64-bit environment.
14002 The 32-bit environment sets int, long and pointer to 32 bits.
14003 The 64-bit environment sets int to 32 bits and long and pointer
14004 to 64 bits.
14005
14006 @item -mcmodel=medlow
14007 @opindex mcmodel=medlow
14008 Generate code for the Medium/Low code model: 64-bit addresses, programs
14009 must be linked in the low 32 bits of memory.  Programs can be statically
14010 or dynamically linked.
14011
14012 @item -mcmodel=medmid
14013 @opindex mcmodel=medmid
14014 Generate code for the Medium/Middle code model: 64-bit addresses, programs
14015 must be linked in the low 44 bits of memory, the text and data segments must
14016 be less than 2GB in size and the data segment must be located within 2GB of
14017 the text segment.
14018
14019 @item -mcmodel=medany
14020 @opindex mcmodel=medany
14021 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
14022 may be linked anywhere in memory, the text and data segments must be less
14023 than 2GB in size and the data segment must be located within 2GB of the
14024 text segment.
14025
14026 @item -mcmodel=embmedany
14027 @opindex mcmodel=embmedany
14028 Generate code for the Medium/Anywhere code model for embedded systems:
14029 64-bit addresses, the text and data segments must be less than 2GB in
14030 size, both starting anywhere in memory (determined at link time).  The
14031 global register %g4 points to the base of the data segment.  Programs
14032 are statically linked and PIC is not supported.
14033
14034 @item -mstack-bias
14035 @itemx -mno-stack-bias
14036 @opindex mstack-bias
14037 @opindex mno-stack-bias
14038 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
14039 frame pointer if present, are offset by @minus{}2047 which must be added back
14040 when making stack frame references.  This is the default in 64-bit mode.
14041 Otherwise, assume no such offset is present.
14042 @end table
14043
14044 These switches are supported in addition to the above on Solaris:
14045
14046 @table @gcctabopt
14047 @item -threads
14048 @opindex threads
14049 Add support for multithreading using the Solaris threads library.  This
14050 option sets flags for both the preprocessor and linker.  This option does
14051 not affect the thread safety of object code produced by the compiler or
14052 that of libraries supplied with it.
14053
14054 @item -pthreads
14055 @opindex pthreads
14056 Add support for multithreading using the POSIX threads library.  This
14057 option sets flags for both the preprocessor and linker.  This option does
14058 not affect the thread safety of object code produced  by the compiler or
14059 that of libraries supplied with it.
14060
14061 @item -pthread
14062 @opindex pthread
14063 This is a synonym for @option{-pthreads}.
14064 @end table
14065
14066 @node SPU Options
14067 @subsection SPU Options
14068 @cindex SPU options
14069
14070 These @samp{-m} options are supported on the SPU:
14071
14072 @table @gcctabopt
14073 @item -mwarn-reloc
14074 @itemx -merror-reloc
14075 @opindex mwarn-reloc
14076 @opindex merror-reloc
14077
14078 The loader for SPU does not handle dynamic relocations.  By default, GCC
14079 will give an error when it generates code that requires a dynamic
14080 relocation.  @option{-mno-error-reloc} disables the error,
14081 @option{-mwarn-reloc} will generate a warning instead.
14082
14083 @item -msafe-dma
14084 @itemx -munsafe-dma
14085 @opindex msafe-dma
14086 @opindex munsafe-dma
14087
14088 Instructions which initiate or test completion of DMA must not be
14089 reordered with respect to loads and stores of the memory which is being
14090 accessed.  Users typically address this problem using the volatile
14091 keyword, but that can lead to inefficient code in places where the
14092 memory is known to not change.  Rather than mark the memory as volatile
14093 we treat the DMA instructions as potentially effecting all memory.  With
14094 @option{-munsafe-dma} users must use the volatile keyword to protect
14095 memory accesses.
14096
14097 @item -mbranch-hints
14098 @opindex mbranch-hints
14099
14100 By default, GCC will generate a branch hint instruction to avoid
14101 pipeline stalls for always taken or probably taken branches.  A hint
14102 will not be generated closer than 8 instructions away from its branch.
14103 There is little reason to disable them, except for debugging purposes,
14104 or to make an object a little bit smaller.
14105
14106 @item -msmall-mem
14107 @itemx -mlarge-mem
14108 @opindex msmall-mem
14109 @opindex mlarge-mem
14110
14111 By default, GCC generates code assuming that addresses are never larger
14112 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
14113 a full 32 bit address.
14114
14115 @item -mstdmain
14116 @opindex mstdmain
14117
14118 By default, GCC links against startup code that assumes the SPU-style
14119 main function interface (which has an unconventional parameter list).
14120 With @option{-mstdmain}, GCC will link your program against startup
14121 code that assumes a C99-style interface to @code{main}, including a
14122 local copy of @code{argv} strings.
14123
14124 @item -mfixed-range=@var{register-range}
14125 @opindex mfixed-range
14126 Generate code treating the given register range as fixed registers.
14127 A fixed register is one that the register allocator can not use.  This is
14128 useful when compiling kernel code.  A register range is specified as
14129 two registers separated by a dash.  Multiple register ranges can be
14130 specified separated by a comma.
14131
14132 @end table
14133
14134 @node System V Options
14135 @subsection Options for System V
14136
14137 These additional options are available on System V Release 4 for
14138 compatibility with other compilers on those systems:
14139
14140 @table @gcctabopt
14141 @item -G
14142 @opindex G
14143 Create a shared object.
14144 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
14145
14146 @item -Qy
14147 @opindex Qy
14148 Identify the versions of each tool used by the compiler, in a
14149 @code{.ident} assembler directive in the output.
14150
14151 @item -Qn
14152 @opindex Qn
14153 Refrain from adding @code{.ident} directives to the output file (this is
14154 the default).
14155
14156 @item -YP,@var{dirs}
14157 @opindex YP
14158 Search the directories @var{dirs}, and no others, for libraries
14159 specified with @option{-l}.
14160
14161 @item -Ym,@var{dir}
14162 @opindex Ym
14163 Look in the directory @var{dir} to find the M4 preprocessor.
14164 The assembler uses this option.
14165 @c This is supposed to go with a -Yd for predefined M4 macro files, but
14166 @c the generic assembler that comes with Solaris takes just -Ym.
14167 @end table
14168
14169 @node TMS320C3x/C4x Options
14170 @subsection TMS320C3x/C4x Options
14171 @cindex TMS320C3x/C4x Options
14172
14173 These @samp{-m} options are defined for TMS320C3x/C4x implementations:
14174
14175 @table @gcctabopt
14176
14177 @item -mcpu=@var{cpu_type}
14178 @opindex mcpu
14179 Set the instruction set, register set, and instruction scheduling
14180 parameters for machine type @var{cpu_type}.  Supported values for
14181 @var{cpu_type} are @samp{c30}, @samp{c31}, @samp{c32}, @samp{c40}, and
14182 @samp{c44}.  The default is @samp{c40} to generate code for the
14183 TMS320C40.
14184
14185 @item -mbig-memory
14186 @itemx -mbig
14187 @itemx -msmall-memory
14188 @itemx -msmall
14189 @opindex mbig-memory
14190 @opindex mbig
14191 @opindex msmall-memory
14192 @opindex msmall
14193 Generates code for the big or small memory model.  The small memory
14194 model assumed that all data fits into one 64K word page.  At run-time
14195 the data page (DP) register must be set to point to the 64K page
14196 containing the .bss and .data program sections.  The big memory model is
14197 the default and requires reloading of the DP register for every direct
14198 memory access.
14199
14200 @item -mbk
14201 @itemx -mno-bk
14202 @opindex mbk
14203 @opindex mno-bk
14204 Allow (disallow) allocation of general integer operands into the block
14205 count register BK@.
14206
14207 @item -mdb
14208 @itemx -mno-db
14209 @opindex mdb
14210 @opindex mno-db
14211 Enable (disable) generation of code using decrement and branch,
14212 DBcond(D), instructions.  This is enabled by default for the C4x.  To be
14213 on the safe side, this is disabled for the C3x, since the maximum
14214 iteration count on the C3x is @math{2^{23} + 1} (but who iterates loops more than
14215 @math{2^{23}} times on the C3x?).  Note that GCC will try to reverse a loop so
14216 that it can utilize the decrement and branch instruction, but will give
14217 up if there is more than one memory reference in the loop.  Thus a loop
14218 where the loop counter is decremented can generate slightly more
14219 efficient code, in cases where the RPTB instruction cannot be utilized.
14220
14221 @item -mdp-isr-reload
14222 @itemx -mparanoid
14223 @opindex mdp-isr-reload
14224 @opindex mparanoid
14225 Force the DP register to be saved on entry to an interrupt service
14226 routine (ISR), reloaded to point to the data section, and restored on
14227 exit from the ISR@.  This should not be required unless someone has
14228 violated the small memory model by modifying the DP register, say within
14229 an object library.
14230
14231 @item -mmpyi
14232 @itemx -mno-mpyi
14233 @opindex mmpyi
14234 @opindex mno-mpyi
14235 For the C3x use the 24-bit MPYI instruction for integer multiplies
14236 instead of a library call to guarantee 32-bit results.  Note that if one
14237 of the operands is a constant, then the multiplication will be performed
14238 using shifts and adds.  If the @option{-mmpyi} option is not specified for the C3x,
14239 then squaring operations are performed inline instead of a library call.
14240
14241 @item -mfast-fix
14242 @itemx -mno-fast-fix
14243 @opindex mfast-fix
14244 @opindex mno-fast-fix
14245 The C3x/C4x FIX instruction to convert a floating point value to an
14246 integer value chooses the nearest integer less than or equal to the
14247 floating point value rather than to the nearest integer.  Thus if the
14248 floating point number is negative, the result will be incorrectly
14249 truncated an additional code is necessary to detect and correct this
14250 case.  This option can be used to disable generation of the additional
14251 code required to correct the result.
14252
14253 @item -mrptb
14254 @itemx -mno-rptb
14255 @opindex mrptb
14256 @opindex mno-rptb
14257 Enable (disable) generation of repeat block sequences using the RPTB
14258 instruction for zero overhead looping.  The RPTB construct is only used
14259 for innermost loops that do not call functions or jump across the loop
14260 boundaries.  There is no advantage having nested RPTB loops due to the
14261 overhead required to save and restore the RC, RS, and RE registers.
14262 This is enabled by default with @option{-O2}.
14263
14264 @item -mrpts=@var{count}
14265 @itemx -mno-rpts
14266 @opindex mrpts
14267 @opindex mno-rpts
14268 Enable (disable) the use of the single instruction repeat instruction
14269 RPTS@.  If a repeat block contains a single instruction, and the loop
14270 count can be guaranteed to be less than the value @var{count}, GCC will
14271 emit a RPTS instruction instead of a RPTB@.  If no value is specified,
14272 then a RPTS will be emitted even if the loop count cannot be determined
14273 at compile time.  Note that the repeated instruction following RPTS does
14274 not have to be reloaded from memory each iteration, thus freeing up the
14275 CPU buses for operands.  However, since interrupts are blocked by this
14276 instruction, it is disabled by default.
14277
14278 @item -mloop-unsigned
14279 @itemx -mno-loop-unsigned
14280 @opindex mloop-unsigned
14281 @opindex mno-loop-unsigned
14282 The maximum iteration count when using RPTS and RPTB (and DB on the C40)
14283 is @math{2^{31} + 1} since these instructions test if the iteration count is
14284 negative to terminate the loop.  If the iteration count is unsigned
14285 there is a possibility than the @math{2^{31} + 1} maximum iteration count may be
14286 exceeded.  This switch allows an unsigned iteration count.
14287
14288 @item -mti
14289 @opindex mti
14290 Try to emit an assembler syntax that the TI assembler (asm30) is happy
14291 with.  This also enforces compatibility with the API employed by the TI
14292 C3x C compiler.  For example, long doubles are passed as structures
14293 rather than in floating point registers.
14294
14295 @item -mregparm
14296 @itemx -mmemparm
14297 @opindex mregparm
14298 @opindex mmemparm
14299 Generate code that uses registers (stack) for passing arguments to functions.
14300 By default, arguments are passed in registers where possible rather
14301 than by pushing arguments on to the stack.
14302
14303 @item -mparallel-insns
14304 @itemx -mno-parallel-insns
14305 @opindex mparallel-insns
14306 @opindex mno-parallel-insns
14307 Allow the generation of parallel instructions.  This is enabled by
14308 default with @option{-O2}.
14309
14310 @item -mparallel-mpy
14311 @itemx -mno-parallel-mpy
14312 @opindex mparallel-mpy
14313 @opindex mno-parallel-mpy
14314 Allow the generation of MPY||ADD and MPY||SUB parallel instructions,
14315 provided @option{-mparallel-insns} is also specified.  These instructions have
14316 tight register constraints which can pessimize the code generation
14317 of large functions.
14318
14319 @end table
14320
14321 @node V850 Options
14322 @subsection V850 Options
14323 @cindex V850 Options
14324
14325 These @samp{-m} options are defined for V850 implementations:
14326
14327 @table @gcctabopt
14328 @item -mlong-calls
14329 @itemx -mno-long-calls
14330 @opindex mlong-calls
14331 @opindex mno-long-calls
14332 Treat all calls as being far away (near).  If calls are assumed to be
14333 far away, the compiler will always load the functions address up into a
14334 register, and call indirect through the pointer.
14335
14336 @item -mno-ep
14337 @itemx -mep
14338 @opindex mno-ep
14339 @opindex mep
14340 Do not optimize (do optimize) basic blocks that use the same index
14341 pointer 4 or more times to copy pointer into the @code{ep} register, and
14342 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
14343 option is on by default if you optimize.
14344
14345 @item -mno-prolog-function
14346 @itemx -mprolog-function
14347 @opindex mno-prolog-function
14348 @opindex mprolog-function
14349 Do not use (do use) external functions to save and restore registers
14350 at the prologue and epilogue of a function.  The external functions
14351 are slower, but use less code space if more than one function saves
14352 the same number of registers.  The @option{-mprolog-function} option
14353 is on by default if you optimize.
14354
14355 @item -mspace
14356 @opindex mspace
14357 Try to make the code as small as possible.  At present, this just turns
14358 on the @option{-mep} and @option{-mprolog-function} options.
14359
14360 @item -mtda=@var{n}
14361 @opindex mtda
14362 Put static or global variables whose size is @var{n} bytes or less into
14363 the tiny data area that register @code{ep} points to.  The tiny data
14364 area can hold up to 256 bytes in total (128 bytes for byte references).
14365
14366 @item -msda=@var{n}
14367 @opindex msda
14368 Put static or global variables whose size is @var{n} bytes or less into
14369 the small data area that register @code{gp} points to.  The small data
14370 area can hold up to 64 kilobytes.
14371
14372 @item -mzda=@var{n}
14373 @opindex mzda
14374 Put static or global variables whose size is @var{n} bytes or less into
14375 the first 32 kilobytes of memory.
14376
14377 @item -mv850
14378 @opindex mv850
14379 Specify that the target processor is the V850.
14380
14381 @item -mbig-switch
14382 @opindex mbig-switch
14383 Generate code suitable for big switch tables.  Use this option only if
14384 the assembler/linker complain about out of range branches within a switch
14385 table.
14386
14387 @item -mapp-regs
14388 @opindex mapp-regs
14389 This option will cause r2 and r5 to be used in the code generated by
14390 the compiler.  This setting is the default.
14391
14392 @item -mno-app-regs
14393 @opindex mno-app-regs
14394 This option will cause r2 and r5 to be treated as fixed registers.
14395
14396 @item -mv850e1
14397 @opindex mv850e1
14398 Specify that the target processor is the V850E1.  The preprocessor
14399 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
14400 this option is used.
14401
14402 @item -mv850e
14403 @opindex mv850e
14404 Specify that the target processor is the V850E@.  The preprocessor
14405 constant @samp{__v850e__} will be defined if this option is used.
14406
14407 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
14408 are defined then a default target processor will be chosen and the
14409 relevant @samp{__v850*__} preprocessor constant will be defined.
14410
14411 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
14412 defined, regardless of which processor variant is the target.
14413
14414 @item -mdisable-callt
14415 @opindex mdisable-callt
14416 This option will suppress generation of the CALLT instruction for the
14417 v850e and v850e1 flavors of the v850 architecture.  The default is
14418 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
14419
14420 @end table
14421
14422 @node VAX Options
14423 @subsection VAX Options
14424 @cindex VAX options
14425
14426 These @samp{-m} options are defined for the VAX:
14427
14428 @table @gcctabopt
14429 @item -munix
14430 @opindex munix
14431 Do not output certain jump instructions (@code{aobleq} and so on)
14432 that the Unix assembler for the VAX cannot handle across long
14433 ranges.
14434
14435 @item -mgnu
14436 @opindex mgnu
14437 Do output those jump instructions, on the assumption that you
14438 will assemble with the GNU assembler.
14439
14440 @item -mg
14441 @opindex mg
14442 Output code for g-format floating point numbers instead of d-format.
14443 @end table
14444
14445 @node VxWorks Options
14446 @subsection VxWorks Options
14447 @cindex VxWorks Options
14448
14449 The options in this section are defined for all VxWorks targets.
14450 Options specific to the target hardware are listed with the other
14451 options for that target.
14452
14453 @table @gcctabopt
14454 @item -mrtp
14455 @opindex mrtp
14456 GCC can generate code for both VxWorks kernels and real time processes
14457 (RTPs).  This option switches from the former to the latter.  It also
14458 defines the preprocessor macro @code{__RTP__}.
14459
14460 @item -non-static
14461 @opindex non-static
14462 Link an RTP executable against shared libraries rather than static
14463 libraries.  The options @option{-static} and @option{-shared} can
14464 also be used for RTPs (@pxref{Link Options}); @option{-static}
14465 is the default.
14466
14467 @item -Bstatic
14468 @itemx -Bdynamic
14469 @opindex Bstatic
14470 @opindex Bdynamic
14471 These options are passed down to the linker.  They are defined for
14472 compatibility with Diab.
14473
14474 @item -Xbind-lazy
14475 @opindex Xbind-lazy
14476 Enable lazy binding of function calls.  This option is equivalent to
14477 @option{-Wl,-z,now} and is defined for compatibility with Diab.
14478
14479 @item -Xbind-now
14480 @opindex Xbind-now
14481 Disable lazy binding of function calls.  This option is the default and
14482 is defined for compatibility with Diab.
14483 @end table
14484
14485 @node x86-64 Options
14486 @subsection x86-64 Options
14487 @cindex x86-64 options
14488
14489 These are listed under @xref{i386 and x86-64 Options}.
14490
14491 @node Xstormy16 Options
14492 @subsection Xstormy16 Options
14493 @cindex Xstormy16 Options
14494
14495 These options are defined for Xstormy16:
14496
14497 @table @gcctabopt
14498 @item -msim
14499 @opindex msim
14500 Choose startup files and linker script suitable for the simulator.
14501 @end table
14502
14503 @node Xtensa Options
14504 @subsection Xtensa Options
14505 @cindex Xtensa Options
14506
14507 These options are supported for Xtensa targets:
14508
14509 @table @gcctabopt
14510 @item -mconst16
14511 @itemx -mno-const16
14512 @opindex mconst16
14513 @opindex mno-const16
14514 Enable or disable use of @code{CONST16} instructions for loading
14515 constant values.  The @code{CONST16} instruction is currently not a
14516 standard option from Tensilica.  When enabled, @code{CONST16}
14517 instructions are always used in place of the standard @code{L32R}
14518 instructions.  The use of @code{CONST16} is enabled by default only if
14519 the @code{L32R} instruction is not available.
14520
14521 @item -mfused-madd
14522 @itemx -mno-fused-madd
14523 @opindex mfused-madd
14524 @opindex mno-fused-madd
14525 Enable or disable use of fused multiply/add and multiply/subtract
14526 instructions in the floating-point option.  This has no effect if the
14527 floating-point option is not also enabled.  Disabling fused multiply/add
14528 and multiply/subtract instructions forces the compiler to use separate
14529 instructions for the multiply and add/subtract operations.  This may be
14530 desirable in some cases where strict IEEE 754-compliant results are
14531 required: the fused multiply add/subtract instructions do not round the
14532 intermediate result, thereby producing results with @emph{more} bits of
14533 precision than specified by the IEEE standard.  Disabling fused multiply
14534 add/subtract instructions also ensures that the program output is not
14535 sensitive to the compiler's ability to combine multiply and add/subtract
14536 operations.
14537
14538 @item -mtext-section-literals
14539 @itemx -mno-text-section-literals
14540 @opindex mtext-section-literals
14541 @opindex mno-text-section-literals
14542 Control the treatment of literal pools.  The default is
14543 @option{-mno-text-section-literals}, which places literals in a separate
14544 section in the output file.  This allows the literal pool to be placed
14545 in a data RAM/ROM, and it also allows the linker to combine literal
14546 pools from separate object files to remove redundant literals and
14547 improve code size.  With @option{-mtext-section-literals}, the literals
14548 are interspersed in the text section in order to keep them as close as
14549 possible to their references.  This may be necessary for large assembly
14550 files.
14551
14552 @item -mtarget-align
14553 @itemx -mno-target-align
14554 @opindex mtarget-align
14555 @opindex mno-target-align
14556 When this option is enabled, GCC instructs the assembler to
14557 automatically align instructions to reduce branch penalties at the
14558 expense of some code density.  The assembler attempts to widen density
14559 instructions to align branch targets and the instructions following call
14560 instructions.  If there are not enough preceding safe density
14561 instructions to align a target, no widening will be performed.  The
14562 default is @option{-mtarget-align}.  These options do not affect the
14563 treatment of auto-aligned instructions like @code{LOOP}, which the
14564 assembler will always align, either by widening density instructions or
14565 by inserting no-op instructions.
14566
14567 @item -mlongcalls
14568 @itemx -mno-longcalls
14569 @opindex mlongcalls
14570 @opindex mno-longcalls
14571 When this option is enabled, GCC instructs the assembler to translate
14572 direct calls to indirect calls unless it can determine that the target
14573 of a direct call is in the range allowed by the call instruction.  This
14574 translation typically occurs for calls to functions in other source
14575 files.  Specifically, the assembler translates a direct @code{CALL}
14576 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
14577 The default is @option{-mno-longcalls}.  This option should be used in
14578 programs where the call target can potentially be out of range.  This
14579 option is implemented in the assembler, not the compiler, so the
14580 assembly code generated by GCC will still show direct call
14581 instructions---look at the disassembled object code to see the actual
14582 instructions.  Note that the assembler will use an indirect call for
14583 every cross-file call, not just those that really will be out of range.
14584 @end table
14585
14586 @node zSeries Options
14587 @subsection zSeries Options
14588 @cindex zSeries options
14589
14590 These are listed under @xref{S/390 and zSeries Options}.
14591
14592 @node Code Gen Options
14593 @section Options for Code Generation Conventions
14594 @cindex code generation conventions
14595 @cindex options, code generation
14596 @cindex run-time options
14597
14598 These machine-independent options control the interface conventions
14599 used in code generation.
14600
14601 Most of them have both positive and negative forms; the negative form
14602 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
14603 one of the forms is listed---the one which is not the default.  You
14604 can figure out the other form by either removing @samp{no-} or adding
14605 it.
14606
14607 @table @gcctabopt
14608 @item -fbounds-check
14609 @opindex fbounds-check
14610 For front-ends that support it, generate additional code to check that
14611 indices used to access arrays are within the declared range.  This is
14612 currently only supported by the Java and Fortran front-ends, where
14613 this option defaults to true and false respectively.
14614
14615 @item -ftrapv
14616 @opindex ftrapv
14617 This option generates traps for signed overflow on addition, subtraction,
14618 multiplication operations.
14619
14620 @item -fwrapv
14621 @opindex fwrapv
14622 This option instructs the compiler to assume that signed arithmetic
14623 overflow of addition, subtraction and multiplication wraps around
14624 using twos-complement representation.  This flag enables some optimizations
14625 and disables others.  This option is enabled by default for the Java
14626 front-end, as required by the Java language specification.
14627
14628 @item -fexceptions
14629 @opindex fexceptions
14630 Enable exception handling.  Generates extra code needed to propagate
14631 exceptions.  For some targets, this implies GCC will generate frame
14632 unwind information for all functions, which can produce significant data
14633 size overhead, although it does not affect execution.  If you do not
14634 specify this option, GCC will enable it by default for languages like
14635 C++ which normally require exception handling, and disable it for
14636 languages like C that do not normally require it.  However, you may need
14637 to enable this option when compiling C code that needs to interoperate
14638 properly with exception handlers written in C++.  You may also wish to
14639 disable this option if you are compiling older C++ programs that don't
14640 use exception handling.
14641
14642 @item -fnon-call-exceptions
14643 @opindex fnon-call-exceptions
14644 Generate code that allows trapping instructions to throw exceptions.
14645 Note that this requires platform-specific runtime support that does
14646 not exist everywhere.  Moreover, it only allows @emph{trapping}
14647 instructions to throw exceptions, i.e.@: memory references or floating
14648 point instructions.  It does not allow exceptions to be thrown from
14649 arbitrary signal handlers such as @code{SIGALRM}.
14650
14651 @item -funwind-tables
14652 @opindex funwind-tables
14653 Similar to @option{-fexceptions}, except that it will just generate any needed
14654 static data, but will not affect the generated code in any other way.
14655 You will normally not enable this option; instead, a language processor
14656 that needs this handling would enable it on your behalf.
14657
14658 @item -fasynchronous-unwind-tables
14659 @opindex fasynchronous-unwind-tables
14660 Generate unwind table in dwarf2 format, if supported by target machine.  The
14661 table is exact at each instruction boundary, so it can be used for stack
14662 unwinding from asynchronous events (such as debugger or garbage collector).
14663
14664 @item -fpcc-struct-return
14665 @opindex fpcc-struct-return
14666 Return ``short'' @code{struct} and @code{union} values in memory like
14667 longer ones, rather than in registers.  This convention is less
14668 efficient, but it has the advantage of allowing intercallability between
14669 GCC-compiled files and files compiled with other compilers, particularly
14670 the Portable C Compiler (pcc).
14671
14672 The precise convention for returning structures in memory depends
14673 on the target configuration macros.
14674
14675 Short structures and unions are those whose size and alignment match
14676 that of some integer type.
14677
14678 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
14679 switch is not binary compatible with code compiled with the
14680 @option{-freg-struct-return} switch.
14681 Use it to conform to a non-default application binary interface.
14682
14683 @item -freg-struct-return
14684 @opindex freg-struct-return
14685 Return @code{struct} and @code{union} values in registers when possible.
14686 This is more efficient for small structures than
14687 @option{-fpcc-struct-return}.
14688
14689 If you specify neither @option{-fpcc-struct-return} nor
14690 @option{-freg-struct-return}, GCC defaults to whichever convention is
14691 standard for the target.  If there is no standard convention, GCC
14692 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
14693 the principal compiler.  In those cases, we can choose the standard, and
14694 we chose the more efficient register return alternative.
14695
14696 @strong{Warning:} code compiled with the @option{-freg-struct-return}
14697 switch is not binary compatible with code compiled with the
14698 @option{-fpcc-struct-return} switch.
14699 Use it to conform to a non-default application binary interface.
14700
14701 @item -fshort-enums
14702 @opindex fshort-enums
14703 Allocate to an @code{enum} type only as many bytes as it needs for the
14704 declared range of possible values.  Specifically, the @code{enum} type
14705 will be equivalent to the smallest integer type which has enough room.
14706
14707 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
14708 code that is not binary compatible with code generated without that switch.
14709 Use it to conform to a non-default application binary interface.
14710
14711 @item -fshort-double
14712 @opindex fshort-double
14713 Use the same size for @code{double} as for @code{float}.
14714
14715 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
14716 code that is not binary compatible with code generated without that switch.
14717 Use it to conform to a non-default application binary interface.
14718
14719 @item -fshort-wchar
14720 @opindex fshort-wchar
14721 Override the underlying type for @samp{wchar_t} to be @samp{short
14722 unsigned int} instead of the default for the target.  This option is
14723 useful for building programs to run under WINE@.
14724
14725 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
14726 code that is not binary compatible with code generated without that switch.
14727 Use it to conform to a non-default application binary interface.
14728
14729 @item -fno-common
14730 @opindex fno-common
14731 In C, allocate even uninitialized global variables in the data section of the
14732 object file, rather than generating them as common blocks.  This has the
14733 effect that if the same variable is declared (without @code{extern}) in
14734 two different compilations, you will get an error when you link them.
14735 The only reason this might be useful is if you wish to verify that the
14736 program will work on other systems which always work this way.
14737
14738 @item -fno-ident
14739 @opindex fno-ident
14740 Ignore the @samp{#ident} directive.
14741
14742 @item -finhibit-size-directive
14743 @opindex finhibit-size-directive
14744 Don't output a @code{.size} assembler directive, or anything else that
14745 would cause trouble if the function is split in the middle, and the
14746 two halves are placed at locations far apart in memory.  This option is
14747 used when compiling @file{crtstuff.c}; you should not need to use it
14748 for anything else.
14749
14750 @item -fverbose-asm
14751 @opindex fverbose-asm
14752 Put extra commentary information in the generated assembly code to
14753 make it more readable.  This option is generally only of use to those
14754 who actually need to read the generated assembly code (perhaps while
14755 debugging the compiler itself).
14756
14757 @option{-fno-verbose-asm}, the default, causes the
14758 extra information to be omitted and is useful when comparing two assembler
14759 files.
14760
14761 @item -frecord-gcc-switches
14762 @opindex frecord-gcc-switches
14763 This switch causes the command line that was used to invoke the
14764 compiler to be recorded into the object file that is being created.
14765 This switch is only implemented on some targets and the exact format
14766 of the recording is target and binary file format dependent, but it
14767 usually takes the form of a section containing ASCII text.  This
14768 switch is related to the @option{-fverbose-asm} switch, but that
14769 switch only records information in the assembler output file as
14770 comments, so it never reaches the object file.
14771
14772 @item -fpic
14773 @opindex fpic
14774 @cindex global offset table
14775 @cindex PIC
14776 Generate position-independent code (PIC) suitable for use in a shared
14777 library, if supported for the target machine.  Such code accesses all
14778 constant addresses through a global offset table (GOT)@.  The dynamic
14779 loader resolves the GOT entries when the program starts (the dynamic
14780 loader is not part of GCC; it is part of the operating system).  If
14781 the GOT size for the linked executable exceeds a machine-specific
14782 maximum size, you get an error message from the linker indicating that
14783 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
14784 instead.  (These maximums are 8k on the SPARC and 32k
14785 on the m68k and RS/6000.  The 386 has no such limit.)
14786
14787 Position-independent code requires special support, and therefore works
14788 only on certain machines.  For the 386, GCC supports PIC for System V
14789 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
14790 position-independent.
14791
14792 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14793 are defined to 1.
14794
14795 @item -fPIC
14796 @opindex fPIC
14797 If supported for the target machine, emit position-independent code,
14798 suitable for dynamic linking and avoiding any limit on the size of the
14799 global offset table.  This option makes a difference on the m68k,
14800 PowerPC and SPARC@.
14801
14802 Position-independent code requires special support, and therefore works
14803 only on certain machines.
14804
14805 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14806 are defined to 2.
14807
14808 @item -fpie
14809 @itemx -fPIE
14810 @opindex fpie
14811 @opindex fPIE
14812 These options are similar to @option{-fpic} and @option{-fPIC}, but
14813 generated position independent code can be only linked into executables.
14814 Usually these options are used when @option{-pie} GCC option will be
14815 used during linking.
14816
14817 @option{-fpie} and @option{-fPIE} both define the macros
14818 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
14819 for @option{-fpie} and 2 for @option{-fPIE}.
14820
14821 @item -fno-jump-tables
14822 @opindex fno-jump-tables
14823 Do not use jump tables for switch statements even where it would be
14824 more efficient than other code generation strategies.  This option is
14825 of use in conjunction with @option{-fpic} or @option{-fPIC} for
14826 building code which forms part of a dynamic linker and cannot
14827 reference the address of a jump table.  On some targets, jump tables
14828 do not require a GOT and this option is not needed.
14829
14830 @item -ffixed-@var{reg}
14831 @opindex ffixed
14832 Treat the register named @var{reg} as a fixed register; generated code
14833 should never refer to it (except perhaps as a stack pointer, frame
14834 pointer or in some other fixed role).
14835
14836 @var{reg} must be the name of a register.  The register names accepted
14837 are machine-specific and are defined in the @code{REGISTER_NAMES}
14838 macro in the machine description macro file.
14839
14840 This flag does not have a negative form, because it specifies a
14841 three-way choice.
14842
14843 @item -fcall-used-@var{reg}
14844 @opindex fcall-used
14845 Treat the register named @var{reg} as an allocable register that is
14846 clobbered by function calls.  It may be allocated for temporaries or
14847 variables that do not live across a call.  Functions compiled this way
14848 will not save and restore the register @var{reg}.
14849
14850 It is an error to used this flag with the frame pointer or stack pointer.
14851 Use of this flag for other registers that have fixed pervasive roles in
14852 the machine's execution model will produce disastrous results.
14853
14854 This flag does not have a negative form, because it specifies a
14855 three-way choice.
14856
14857 @item -fcall-saved-@var{reg}
14858 @opindex fcall-saved
14859 Treat the register named @var{reg} as an allocable register saved by
14860 functions.  It may be allocated even for temporaries or variables that
14861 live across a call.  Functions compiled this way will save and restore
14862 the register @var{reg} if they use it.
14863
14864 It is an error to used this flag with the frame pointer or stack pointer.
14865 Use of this flag for other registers that have fixed pervasive roles in
14866 the machine's execution model will produce disastrous results.
14867
14868 A different sort of disaster will result from the use of this flag for
14869 a register in which function values may be returned.
14870
14871 This flag does not have a negative form, because it specifies a
14872 three-way choice.
14873
14874 @item -fpack-struct[=@var{n}]
14875 @opindex fpack-struct
14876 Without a value specified, pack all structure members together without
14877 holes.  When a value is specified (which must be a small power of two), pack
14878 structure members according to this value, representing the maximum
14879 alignment (that is, objects with default alignment requirements larger than
14880 this will be output potentially unaligned at the next fitting location.
14881
14882 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
14883 code that is not binary compatible with code generated without that switch.
14884 Additionally, it makes the code suboptimal.
14885 Use it to conform to a non-default application binary interface.
14886
14887 @item -finstrument-functions
14888 @opindex finstrument-functions
14889 Generate instrumentation calls for entry and exit to functions.  Just
14890 after function entry and just before function exit, the following
14891 profiling functions will be called with the address of the current
14892 function and its call site.  (On some platforms,
14893 @code{__builtin_return_address} does not work beyond the current
14894 function, so the call site information may not be available to the
14895 profiling functions otherwise.)
14896
14897 @smallexample
14898 void __cyg_profile_func_enter (void *this_fn,
14899                                void *call_site);
14900 void __cyg_profile_func_exit  (void *this_fn,
14901                                void *call_site);
14902 @end smallexample
14903
14904 The first argument is the address of the start of the current function,
14905 which may be looked up exactly in the symbol table.
14906
14907 This instrumentation is also done for functions expanded inline in other
14908 functions.  The profiling calls will indicate where, conceptually, the
14909 inline function is entered and exited.  This means that addressable
14910 versions of such functions must be available.  If all your uses of a
14911 function are expanded inline, this may mean an additional expansion of
14912 code size.  If you use @samp{extern inline} in your C code, an
14913 addressable version of such functions must be provided.  (This is
14914 normally the case anyways, but if you get lucky and the optimizer always
14915 expands the functions inline, you might have gotten away without
14916 providing static copies.)
14917
14918 A function may be given the attribute @code{no_instrument_function}, in
14919 which case this instrumentation will not be done.  This can be used, for
14920 example, for the profiling functions listed above, high-priority
14921 interrupt routines, and any functions from which the profiling functions
14922 cannot safely be called (perhaps signal handlers, if the profiling
14923 routines generate output or allocate memory).
14924
14925 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
14926 @opindex finstrument-functions-exclude-file-list
14927
14928 Set the list of functions that are excluded from instrumentation (see
14929 the description of @code{-finstrument-functions}).  If the file that
14930 contains a function definition matches with one of @var{file}, then
14931 that function is not instrumented.  The match is done on substrings:
14932 if the @var{file} parameter is a substring of the file name, it is
14933 considered to be a match.
14934
14935 For example,
14936 @code{-finstrument-functions-exclude-file-list=/bits/stl,include/sys}
14937 will exclude any inline function defined in files whose pathnames
14938 contain @code{/bits/stl} or @code{include/sys}.
14939
14940 If, for some reason, you want to include letter @code{','} in one of
14941 @var{sym}, write @code{'\,'}. For example,
14942 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
14943 (note the single quote surrounding the option).
14944
14945 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
14946 @opindex finstrument-functions-exclude-function-list
14947
14948 This is similar to @code{-finstrument-functions-exclude-file-list},
14949 but this option sets the list of function names to be excluded from
14950 instrumentation.  The function name to be matched is its user-visible
14951 name, such as @code{vector<int> blah(const vector<int> &)}, not the
14952 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
14953 match is done on substrings: if the @var{sym} parameter is a substring
14954 of the function name, it is considered to be a match.
14955
14956 @item -fstack-check
14957 @opindex fstack-check
14958 Generate code to verify that you do not go beyond the boundary of the
14959 stack.  You should specify this flag if you are running in an
14960 environment with multiple threads, but only rarely need to specify it in
14961 a single-threaded environment since stack overflow is automatically
14962 detected on nearly all systems if there is only one stack.
14963
14964 Note that this switch does not actually cause checking to be done; the
14965 operating system must do that.  The switch causes generation of code
14966 to ensure that the operating system sees the stack being extended.
14967
14968 @item -fstack-limit-register=@var{reg}
14969 @itemx -fstack-limit-symbol=@var{sym}
14970 @itemx -fno-stack-limit
14971 @opindex fstack-limit-register
14972 @opindex fstack-limit-symbol
14973 @opindex fno-stack-limit
14974 Generate code to ensure that the stack does not grow beyond a certain value,
14975 either the value of a register or the address of a symbol.  If the stack
14976 would grow beyond the value, a signal is raised.  For most targets,
14977 the signal is raised before the stack overruns the boundary, so
14978 it is possible to catch the signal without taking special precautions.
14979
14980 For instance, if the stack starts at absolute address @samp{0x80000000}
14981 and grows downwards, you can use the flags
14982 @option{-fstack-limit-symbol=__stack_limit} and
14983 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
14984 of 128KB@.  Note that this may only work with the GNU linker.
14985
14986 @cindex aliasing of parameters
14987 @cindex parameters, aliased
14988 @item -fargument-alias
14989 @itemx -fargument-noalias
14990 @itemx -fargument-noalias-global
14991 @itemx -fargument-noalias-anything
14992 @opindex fargument-alias
14993 @opindex fargument-noalias
14994 @opindex fargument-noalias-global
14995 @opindex fargument-noalias-anything
14996 Specify the possible relationships among parameters and between
14997 parameters and global data.
14998
14999 @option{-fargument-alias} specifies that arguments (parameters) may
15000 alias each other and may alias global storage.@*
15001 @option{-fargument-noalias} specifies that arguments do not alias
15002 each other, but may alias global storage.@*
15003 @option{-fargument-noalias-global} specifies that arguments do not
15004 alias each other and do not alias global storage.
15005 @option{-fargument-noalias-anything} specifies that arguments do not
15006 alias any other storage.
15007
15008 Each language will automatically use whatever option is required by
15009 the language standard.  You should not need to use these options yourself.
15010
15011 @item -fleading-underscore
15012 @opindex fleading-underscore
15013 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
15014 change the way C symbols are represented in the object file.  One use
15015 is to help link with legacy assembly code.
15016
15017 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
15018 generate code that is not binary compatible with code generated without that
15019 switch.  Use it to conform to a non-default application binary interface.
15020 Not all targets provide complete support for this switch.
15021
15022 @item -ftls-model=@var{model}
15023 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
15024 The @var{model} argument should be one of @code{global-dynamic},
15025 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
15026
15027 The default without @option{-fpic} is @code{initial-exec}; with
15028 @option{-fpic} the default is @code{global-dynamic}.
15029
15030 @item -fvisibility=@var{default|internal|hidden|protected}
15031 @opindex fvisibility
15032 Set the default ELF image symbol visibility to the specified option---all
15033 symbols will be marked with this unless overridden within the code.
15034 Using this feature can very substantially improve linking and
15035 load times of shared object libraries, produce more optimized
15036 code, provide near-perfect API export and prevent symbol clashes.
15037 It is @strong{strongly} recommended that you use this in any shared objects
15038 you distribute.
15039
15040 Despite the nomenclature, @code{default} always means public ie;
15041 available to be linked against from outside the shared object.
15042 @code{protected} and @code{internal} are pretty useless in real-world
15043 usage so the only other commonly used option will be @code{hidden}.
15044 The default if @option{-fvisibility} isn't specified is
15045 @code{default}, i.e., make every
15046 symbol public---this causes the same behavior as previous versions of
15047 GCC@.
15048
15049 A good explanation of the benefits offered by ensuring ELF
15050 symbols have the correct visibility is given by ``How To Write
15051 Shared Libraries'' by Ulrich Drepper (which can be found at
15052 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
15053 solution made possible by this option to marking things hidden when
15054 the default is public is to make the default hidden and mark things
15055 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
15056 and @code{__attribute__ ((visibility("default")))} instead of
15057 @code{__declspec(dllexport)} you get almost identical semantics with
15058 identical syntax.  This is a great boon to those working with
15059 cross-platform projects.
15060
15061 For those adding visibility support to existing code, you may find
15062 @samp{#pragma GCC visibility} of use.  This works by you enclosing
15063 the declarations you wish to set visibility for with (for example)
15064 @samp{#pragma GCC visibility push(hidden)} and
15065 @samp{#pragma GCC visibility pop}.
15066 Bear in mind that symbol visibility should be viewed @strong{as
15067 part of the API interface contract} and thus all new code should
15068 always specify visibility when it is not the default ie; declarations
15069 only for use within the local DSO should @strong{always} be marked explicitly
15070 as hidden as so to avoid PLT indirection overheads---making this
15071 abundantly clear also aids readability and self-documentation of the code.
15072 Note that due to ISO C++ specification requirements, operator new and
15073 operator delete must always be of default visibility.
15074
15075 Be aware that headers from outside your project, in particular system
15076 headers and headers from any other library you use, may not be
15077 expecting to be compiled with visibility other than the default.  You
15078 may need to explicitly say @samp{#pragma GCC visibility push(default)}
15079 before including any such headers.
15080
15081 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
15082 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
15083 no modifications.  However, this means that calls to @samp{extern}
15084 functions with no explicit visibility will use the PLT, so it is more
15085 effective to use @samp{__attribute ((visibility))} and/or
15086 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
15087 declarations should be treated as hidden.
15088
15089 Note that @samp{-fvisibility} does affect C++ vague linkage
15090 entities. This means that, for instance, an exception class that will
15091 be thrown between DSOs must be explicitly marked with default
15092 visibility so that the @samp{type_info} nodes will be unified between
15093 the DSOs.
15094
15095 An overview of these techniques, their benefits and how to use them
15096 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
15097
15098 @end table
15099
15100 @c man end
15101
15102 @node Environment Variables
15103 @section Environment Variables Affecting GCC
15104 @cindex environment variables
15105
15106 @c man begin ENVIRONMENT
15107 This section describes several environment variables that affect how GCC
15108 operates.  Some of them work by specifying directories or prefixes to use
15109 when searching for various kinds of files.  Some are used to specify other
15110 aspects of the compilation environment.
15111
15112 Note that you can also specify places to search using options such as
15113 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
15114 take precedence over places specified using environment variables, which
15115 in turn take precedence over those specified by the configuration of GCC@.
15116 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
15117 GNU Compiler Collection (GCC) Internals}.
15118
15119 @table @env
15120 @item LANG
15121 @itemx LC_CTYPE
15122 @c @itemx LC_COLLATE
15123 @itemx LC_MESSAGES
15124 @c @itemx LC_MONETARY
15125 @c @itemx LC_NUMERIC
15126 @c @itemx LC_TIME
15127 @itemx LC_ALL
15128 @findex LANG
15129 @findex LC_CTYPE
15130 @c @findex LC_COLLATE
15131 @findex LC_MESSAGES
15132 @c @findex LC_MONETARY
15133 @c @findex LC_NUMERIC
15134 @c @findex LC_TIME
15135 @findex LC_ALL
15136 @cindex locale
15137 These environment variables control the way that GCC uses
15138 localization information that allow GCC to work with different
15139 national conventions.  GCC inspects the locale categories
15140 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
15141 so.  These locale categories can be set to any value supported by your
15142 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
15143 Kingdom encoded in UTF-8.
15144
15145 The @env{LC_CTYPE} environment variable specifies character
15146 classification.  GCC uses it to determine the character boundaries in
15147 a string; this is needed for some multibyte encodings that contain quote
15148 and escape characters that would otherwise be interpreted as a string
15149 end or escape.
15150
15151 The @env{LC_MESSAGES} environment variable specifies the language to
15152 use in diagnostic messages.
15153
15154 If the @env{LC_ALL} environment variable is set, it overrides the value
15155 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
15156 and @env{LC_MESSAGES} default to the value of the @env{LANG}
15157 environment variable.  If none of these variables are set, GCC
15158 defaults to traditional C English behavior.
15159
15160 @item TMPDIR
15161 @findex TMPDIR
15162 If @env{TMPDIR} is set, it specifies the directory to use for temporary
15163 files.  GCC uses temporary files to hold the output of one stage of
15164 compilation which is to be used as input to the next stage: for example,
15165 the output of the preprocessor, which is the input to the compiler
15166 proper.
15167
15168 @item GCC_EXEC_PREFIX
15169 @findex GCC_EXEC_PREFIX
15170 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
15171 names of the subprograms executed by the compiler.  No slash is added
15172 when this prefix is combined with the name of a subprogram, but you can
15173 specify a prefix that ends with a slash if you wish.
15174
15175 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
15176 an appropriate prefix to use based on the pathname it was invoked with.
15177
15178 If GCC cannot find the subprogram using the specified prefix, it
15179 tries looking in the usual places for the subprogram.
15180
15181 The default value of @env{GCC_EXEC_PREFIX} is
15182 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
15183 the installed compiler. In many cases @var{prefix} is the value
15184 of @code{prefix} when you ran the @file{configure} script.
15185
15186 Other prefixes specified with @option{-B} take precedence over this prefix.
15187
15188 This prefix is also used for finding files such as @file{crt0.o} that are
15189 used for linking.
15190
15191 In addition, the prefix is used in an unusual way in finding the
15192 directories to search for header files.  For each of the standard
15193 directories whose name normally begins with @samp{/usr/local/lib/gcc}
15194 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
15195 replacing that beginning with the specified prefix to produce an
15196 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
15197 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
15198 These alternate directories are searched first; the standard directories
15199 come next. If a standard directory begins with the configured
15200 @var{prefix} then the value of @var{prefix} is replaced by
15201 @env{GCC_EXEC_PREFIX} when looking for header files.
15202
15203 @item COMPILER_PATH
15204 @findex COMPILER_PATH
15205 The value of @env{COMPILER_PATH} is a colon-separated list of
15206 directories, much like @env{PATH}.  GCC tries the directories thus
15207 specified when searching for subprograms, if it can't find the
15208 subprograms using @env{GCC_EXEC_PREFIX}.
15209
15210 @item LIBRARY_PATH
15211 @findex LIBRARY_PATH
15212 The value of @env{LIBRARY_PATH} is a colon-separated list of
15213 directories, much like @env{PATH}.  When configured as a native compiler,
15214 GCC tries the directories thus specified when searching for special
15215 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
15216 using GCC also uses these directories when searching for ordinary
15217 libraries for the @option{-l} option (but directories specified with
15218 @option{-L} come first).
15219
15220 @item LANG
15221 @findex LANG
15222 @cindex locale definition
15223 This variable is used to pass locale information to the compiler.  One way in
15224 which this information is used is to determine the character set to be used
15225 when character literals, string literals and comments are parsed in C and C++.
15226 When the compiler is configured to allow multibyte characters,
15227 the following values for @env{LANG} are recognized:
15228
15229 @table @samp
15230 @item C-JIS
15231 Recognize JIS characters.
15232 @item C-SJIS
15233 Recognize SJIS characters.
15234 @item C-EUCJP
15235 Recognize EUCJP characters.
15236 @end table
15237
15238 If @env{LANG} is not defined, or if it has some other value, then the
15239 compiler will use mblen and mbtowc as defined by the default locale to
15240 recognize and translate multibyte characters.
15241 @end table
15242
15243 @noindent
15244 Some additional environments variables affect the behavior of the
15245 preprocessor.
15246
15247 @include cppenv.texi
15248
15249 @c man end
15250
15251 @node Precompiled Headers
15252 @section Using Precompiled Headers
15253 @cindex precompiled headers
15254 @cindex speed of compilation
15255
15256 Often large projects have many header files that are included in every
15257 source file.  The time the compiler takes to process these header files
15258 over and over again can account for nearly all of the time required to
15259 build the project.  To make builds faster, GCC allows users to
15260 `precompile' a header file; then, if builds can use the precompiled
15261 header file they will be much faster.
15262
15263 To create a precompiled header file, simply compile it as you would any
15264 other file, if necessary using the @option{-x} option to make the driver
15265 treat it as a C or C++ header file.  You will probably want to use a
15266 tool like @command{make} to keep the precompiled header up-to-date when
15267 the headers it contains change.
15268
15269 A precompiled header file will be searched for when @code{#include} is
15270 seen in the compilation.  As it searches for the included file
15271 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
15272 compiler looks for a precompiled header in each directory just before it
15273 looks for the include file in that directory.  The name searched for is
15274 the name specified in the @code{#include} with @samp{.gch} appended.  If
15275 the precompiled header file can't be used, it is ignored.
15276
15277 For instance, if you have @code{#include "all.h"}, and you have
15278 @file{all.h.gch} in the same directory as @file{all.h}, then the
15279 precompiled header file will be used if possible, and the original
15280 header will be used otherwise.
15281
15282 Alternatively, you might decide to put the precompiled header file in a
15283 directory and use @option{-I} to ensure that directory is searched
15284 before (or instead of) the directory containing the original header.
15285 Then, if you want to check that the precompiled header file is always
15286 used, you can put a file of the same name as the original header in this
15287 directory containing an @code{#error} command.
15288
15289 This also works with @option{-include}.  So yet another way to use
15290 precompiled headers, good for projects not designed with precompiled
15291 header files in mind, is to simply take most of the header files used by
15292 a project, include them from another header file, precompile that header
15293 file, and @option{-include} the precompiled header.  If the header files
15294 have guards against multiple inclusion, they will be skipped because
15295 they've already been included (in the precompiled header).
15296
15297 If you need to precompile the same header file for different
15298 languages, targets, or compiler options, you can instead make a
15299 @emph{directory} named like @file{all.h.gch}, and put each precompiled
15300 header in the directory, perhaps using @option{-o}.  It doesn't matter
15301 what you call the files in the directory, every precompiled header in
15302 the directory will be considered.  The first precompiled header
15303 encountered in the directory that is valid for this compilation will
15304 be used; they're searched in no particular order.
15305
15306 There are many other possibilities, limited only by your imagination,
15307 good sense, and the constraints of your build system.
15308
15309 A precompiled header file can be used only when these conditions apply:
15310
15311 @itemize
15312 @item
15313 Only one precompiled header can be used in a particular compilation.
15314
15315 @item
15316 A precompiled header can't be used once the first C token is seen.  You
15317 can have preprocessor directives before a precompiled header; you can
15318 even include a precompiled header from inside another header, so long as
15319 there are no C tokens before the @code{#include}.
15320
15321 @item
15322 The precompiled header file must be produced for the same language as
15323 the current compilation.  You can't use a C precompiled header for a C++
15324 compilation.
15325
15326 @item
15327 The precompiled header file must have been produced by the same compiler
15328 binary as the current compilation is using.
15329
15330 @item
15331 Any macros defined before the precompiled header is included must
15332 either be defined in the same way as when the precompiled header was
15333 generated, or must not affect the precompiled header, which usually
15334 means that they don't appear in the precompiled header at all.
15335
15336 The @option{-D} option is one way to define a macro before a
15337 precompiled header is included; using a @code{#define} can also do it.
15338 There are also some options that define macros implicitly, like
15339 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
15340 defined this way.
15341
15342 @item If debugging information is output when using the precompiled
15343 header, using @option{-g} or similar, the same kind of debugging information
15344 must have been output when building the precompiled header.  However,
15345 a precompiled header built using @option{-g} can be used in a compilation
15346 when no debugging information is being output.
15347
15348 @item The same @option{-m} options must generally be used when building
15349 and using the precompiled header.  @xref{Submodel Options},
15350 for any cases where this rule is relaxed.
15351
15352 @item Each of the following options must be the same when building and using
15353 the precompiled header:
15354
15355 @gccoptlist{-fexceptions -funit-at-a-time}
15356
15357 @item
15358 Some other command-line options starting with @option{-f},
15359 @option{-p}, or @option{-O} must be defined in the same way as when
15360 the precompiled header was generated.  At present, it's not clear
15361 which options are safe to change and which are not; the safest choice
15362 is to use exactly the same options when generating and using the
15363 precompiled header.  The following are known to be safe:
15364
15365 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
15366 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
15367 -fsched-verbose=<number>  -fschedule-insns  -fvisibility= @gol
15368 -pedantic-errors}
15369
15370 @end itemize
15371
15372 For all of these except the last, the compiler will automatically
15373 ignore the precompiled header if the conditions aren't met.  If you
15374 find an option combination that doesn't work and doesn't cause the
15375 precompiled header to be ignored, please consider filing a bug report,
15376 see @ref{Bugs}.
15377
15378 If you do use differing options when generating and using the
15379 precompiled header, the actual behavior will be a mixture of the
15380 behavior for the options.  For instance, if you use @option{-g} to
15381 generate the precompiled header but not when using it, you may or may
15382 not get debugging information for routines in the precompiled header.
15383
15384 @node Running Protoize
15385 @section Running Protoize
15386
15387 The program @code{protoize} is an optional part of GCC@.  You can use
15388 it to add prototypes to a program, thus converting the program to ISO
15389 C in one respect.  The companion program @code{unprotoize} does the
15390 reverse: it removes argument types from any prototypes that are found.
15391
15392 When you run these programs, you must specify a set of source files as
15393 command line arguments.  The conversion programs start out by compiling
15394 these files to see what functions they define.  The information gathered
15395 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
15396
15397 After scanning comes actual conversion.  The specified files are all
15398 eligible to be converted; any files they include (whether sources or
15399 just headers) are eligible as well.
15400
15401 But not all the eligible files are converted.  By default,
15402 @code{protoize} and @code{unprotoize} convert only source and header
15403 files in the current directory.  You can specify additional directories
15404 whose files should be converted with the @option{-d @var{directory}}
15405 option.  You can also specify particular files to exclude with the
15406 @option{-x @var{file}} option.  A file is converted if it is eligible, its
15407 directory name matches one of the specified directory names, and its
15408 name within the directory has not been excluded.
15409
15410 Basic conversion with @code{protoize} consists of rewriting most
15411 function definitions and function declarations to specify the types of
15412 the arguments.  The only ones not rewritten are those for varargs
15413 functions.
15414
15415 @code{protoize} optionally inserts prototype declarations at the
15416 beginning of the source file, to make them available for any calls that
15417 precede the function's definition.  Or it can insert prototype
15418 declarations with block scope in the blocks where undeclared functions
15419 are called.
15420
15421 Basic conversion with @code{unprotoize} consists of rewriting most
15422 function declarations to remove any argument types, and rewriting
15423 function definitions to the old-style pre-ISO form.
15424
15425 Both conversion programs print a warning for any function declaration or
15426 definition that they can't convert.  You can suppress these warnings
15427 with @option{-q}.
15428
15429 The output from @code{protoize} or @code{unprotoize} replaces the
15430 original source file.  The original file is renamed to a name ending
15431 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
15432 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
15433 for DOS) file already exists, then the source file is simply discarded.
15434
15435 @code{protoize} and @code{unprotoize} both depend on GCC itself to
15436 scan the program and collect information about the functions it uses.
15437 So neither of these programs will work until GCC is installed.
15438
15439 Here is a table of the options you can use with @code{protoize} and
15440 @code{unprotoize}.  Each option works with both programs unless
15441 otherwise stated.
15442
15443 @table @code
15444 @item -B @var{directory}
15445 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
15446 usual directory (normally @file{/usr/local/lib}).  This file contains
15447 prototype information about standard system functions.  This option
15448 applies only to @code{protoize}.
15449
15450 @item -c @var{compilation-options}
15451 Use @var{compilation-options} as the options when running @command{gcc} to
15452 produce the @samp{.X} files.  The special option @option{-aux-info} is
15453 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
15454
15455 Note that the compilation options must be given as a single argument to
15456 @code{protoize} or @code{unprotoize}.  If you want to specify several
15457 @command{gcc} options, you must quote the entire set of compilation options
15458 to make them a single word in the shell.
15459
15460 There are certain @command{gcc} arguments that you cannot use, because they
15461 would produce the wrong kind of output.  These include @option{-g},
15462 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
15463 the @var{compilation-options}, they are ignored.
15464
15465 @item -C
15466 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
15467 systems) instead of @samp{.c}.  This is convenient if you are converting
15468 a C program to C++.  This option applies only to @code{protoize}.
15469
15470 @item -g
15471 Add explicit global declarations.  This means inserting explicit
15472 declarations at the beginning of each source file for each function
15473 that is called in the file and was not declared.  These declarations
15474 precede the first function definition that contains a call to an
15475 undeclared function.  This option applies only to @code{protoize}.
15476
15477 @item -i @var{string}
15478 Indent old-style parameter declarations with the string @var{string}.
15479 This option applies only to @code{protoize}.
15480
15481 @code{unprotoize} converts prototyped function definitions to old-style
15482 function definitions, where the arguments are declared between the
15483 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
15484 uses five spaces as the indentation.  If you want to indent with just
15485 one space instead, use @option{-i " "}.
15486
15487 @item -k
15488 Keep the @samp{.X} files.  Normally, they are deleted after conversion
15489 is finished.
15490
15491 @item -l
15492 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
15493 a prototype declaration for each function in each block which calls the
15494 function without any declaration.  This option applies only to
15495 @code{protoize}.
15496
15497 @item -n
15498 Make no real changes.  This mode just prints information about the conversions
15499 that would have been done without @option{-n}.
15500
15501 @item -N
15502 Make no @samp{.save} files.  The original files are simply deleted.
15503 Use this option with caution.
15504
15505 @item -p @var{program}
15506 Use the program @var{program} as the compiler.  Normally, the name
15507 @file{gcc} is used.
15508
15509 @item -q
15510 Work quietly.  Most warnings are suppressed.
15511
15512 @item -v
15513 Print the version number, just like @option{-v} for @command{gcc}.
15514 @end table
15515
15516 If you need special compiler options to compile one of your program's
15517 source files, then you should generate that file's @samp{.X} file
15518 specially, by running @command{gcc} on that source file with the
15519 appropriate options and the option @option{-aux-info}.  Then run
15520 @code{protoize} on the entire set of files.  @code{protoize} will use
15521 the existing @samp{.X} file because it is newer than the source file.
15522 For example:
15523
15524 @smallexample
15525 gcc -Dfoo=bar file1.c -aux-info file1.X
15526 protoize *.c
15527 @end smallexample
15528
15529 @noindent
15530 You need to include the special files along with the rest in the
15531 @code{protoize} command, even though their @samp{.X} files already
15532 exist, because otherwise they won't get converted.
15533
15534 @xref{Protoize Caveats}, for more information on how to use
15535 @code{protoize} successfully.