invoke.texi (-mpaired-single): Don't say that the option requires 64-bit code.
[platform/upstream/gcc.git] / gcc / doc / invoke.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2 @c 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 @c Free Software Foundation, Inc.
4 @c This is part of the GCC manual.
5 @c For copying conditions, see the file gcc.texi.
6
7 @ignore
8 @c man begin INCLUDE
9 @include gcc-vers.texi
10 @c man end
11
12 @c man begin COPYRIGHT
13 Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
14 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
15 2007 Free Software Foundation, Inc.
16
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.2 or
19 any later version published by the Free Software Foundation; with the
20 Invariant Sections being ``GNU General Public License'' and ``Funding
21 Free Software'', the Front-Cover texts being (a) (see below), and with
22 the Back-Cover Texts being (b) (see below).  A copy of the license is
23 included in the gfdl(7) man page.
24
25 (a) The FSF's Front-Cover Text is:
26
27      A GNU Manual
28
29 (b) The FSF's Back-Cover Text is:
30
31      You have freedom to copy and modify this GNU Manual, like GNU
32      software.  Copies published by the Free Software Foundation raise
33      funds for GNU development.
34 @c man end
35 @c Set file name and title for the man page.
36 @setfilename gcc
37 @settitle GNU project C and C++ compiler
38 @c man begin SYNOPSIS
39 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
40     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
41     [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
42     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
43     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
44     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
45     [@option{-o} @var{outfile}] [@@@var{file}] @var{infile}@dots{}
46
47 Only the most useful options are listed here; see below for the
48 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
49 @c man end
50 @c man begin SEEALSO
51 gpl(7), gfdl(7), fsf-funding(7),
52 cpp(1), gcov(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
53 and the Info entries for @file{gcc}, @file{cpp}, @file{as},
54 @file{ld}, @file{binutils} and @file{gdb}.
55 @c man end
56 @c man begin BUGS
57 For instructions on reporting bugs, see
58 @w{@value{BUGURL}}.
59 @c man end
60 @c man begin AUTHOR
61 See the Info entry for @command{gcc}, or
62 @w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
63 for contributors to GCC@.
64 @c man end
65 @end ignore
66
67 @node Invoking GCC
68 @chapter GCC Command Options
69 @cindex GCC command options
70 @cindex command options
71 @cindex options, GCC command
72
73 @c man begin DESCRIPTION
74 When you invoke GCC, it normally does preprocessing, compilation,
75 assembly and linking.  The ``overall options'' allow you to stop this
76 process at an intermediate stage.  For example, the @option{-c} option
77 says not to run the linker.  Then the output consists of object files
78 output by the assembler.
79
80 Other options are passed on to one stage of processing.  Some options
81 control the preprocessor and others the compiler itself.  Yet other
82 options control the assembler and linker; most of these are not
83 documented here, since you rarely need to use any of them.
84
85 @cindex C compilation options
86 Most of the command line options that you can use with GCC are useful
87 for C programs; when an option is only useful with another language
88 (usually C++), the explanation says so explicitly.  If the description
89 for a particular option does not mention a source language, you can use
90 that option with all supported languages.
91
92 @cindex C++ compilation options
93 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
94 options for compiling C++ programs.
95
96 @cindex grouping options
97 @cindex options, grouping
98 The @command{gcc} program accepts options and file names as operands.  Many
99 options have multi-letter names; therefore multiple single-letter options
100 may @emph{not} be grouped: @option{-dr} is very different from @w{@samp{-d
101 -r}}.
102
103 @cindex order of options
104 @cindex options, order
105 You can mix options and other arguments.  For the most part, the order
106 you use doesn't matter.  Order does matter when you use several
107 options of the same kind; for example, if you specify @option{-L} more
108 than once, the directories are searched in the order specified.  Also,
109 the placement of the @option{-l} option is significant.
110
111 Many options have long names starting with @samp{-f} or with
112 @samp{-W}---for example,
113 @option{-fmove-loop-invariants}, @option{-Wformat} and so on.  Most of
114 these have both positive and negative forms; the negative form of
115 @option{-ffoo} would be @option{-fno-foo}.  This manual documents
116 only one of these two forms, whichever one is not the default.
117
118 @c man end
119
120 @xref{Option Index}, for an index to GCC's options.
121
122 @menu
123 * Option Summary::      Brief list of all options, without explanations.
124 * Overall Options::     Controlling the kind of output:
125                         an executable, object files, assembler files,
126                         or preprocessed source.
127 * Invoking G++::        Compiling C++ programs.
128 * C Dialect Options::   Controlling the variant of C language compiled.
129 * C++ Dialect Options:: Variations on C++.
130 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
131                         and Objective-C++.
132 * Language Independent Options:: Controlling how diagnostics should be
133                         formatted.
134 * Warning Options::     How picky should the compiler be?
135 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
136 * Optimize Options::    How much optimization?
137 * Preprocessor Options:: Controlling header files and macro definitions.
138                          Also, getting dependency information for Make.
139 * Assembler Options::   Passing options to the assembler.
140 * Link Options::        Specifying libraries and so on.
141 * Directory Options::   Where to find header files and libraries.
142                         Where to find the compiler executable files.
143 * Spec Files::          How to pass switches to sub-processes.
144 * Target Options::      Running a cross-compiler, or an old version of GCC.
145 * Submodel Options::    Specifying minor hardware or convention variations,
146                         such as 68010 vs 68020.
147 * Code Gen Options::    Specifying conventions for function calls, data layout
148                         and register usage.
149 * Environment Variables:: Env vars that affect GCC.
150 * Precompiled Headers:: Compiling a header once, and using it many times.
151 * Running Protoize::    Automatically adding or removing function prototypes.
152 @end menu
153
154 @c man begin OPTIONS
155
156 @node Option Summary
157 @section Option Summary
158
159 Here is a summary of all the options, grouped by type.  Explanations are
160 in the following sections.
161
162 @table @emph
163 @item Overall Options
164 @xref{Overall Options,,Options Controlling the Kind of Output}.
165 @gccoptlist{-c  -S  -E  -o @var{file}  -combine  -pipe  -pass-exit-codes  @gol
166 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{]}  --target-help  @gol
167 --version @@@var{file}}
168
169 @item C Language Options
170 @xref{C Dialect Options,,Options Controlling C Dialect}.
171 @gccoptlist{-ansi  -std=@var{standard}  -fgnu89-inline @gol
172 -aux-info @var{filename} @gol
173 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
174 -fhosted  -ffreestanding -fopenmp -fms-extensions @gol
175 -trigraphs  -no-integrated-cpp  -traditional  -traditional-cpp @gol
176 -fallow-single-precision  -fcond-mismatch -flax-vector-conversions @gol
177 -fsigned-bitfields  -fsigned-char @gol
178 -funsigned-bitfields  -funsigned-char}
179
180 @item C++ Language Options
181 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
182 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
183 -fconserve-space  -ffriend-injection @gol
184 -fno-elide-constructors @gol
185 -fno-enforce-eh-specs @gol
186 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
187 -fno-implicit-templates @gol
188 -fno-implicit-inline-templates @gol
189 -fno-implement-inlines  -fms-extensions @gol
190 -fno-nonansi-builtins  -fno-operator-names @gol
191 -fno-optional-diags  -fpermissive @gol
192 -frepo  -fno-rtti  -fstats  -ftemplate-depth-@var{n} @gol
193 -fno-threadsafe-statics -fuse-cxa-atexit  -fno-weak  -nostdinc++ @gol
194 -fno-default-inline  -fvisibility-inlines-hidden @gol
195 -fvisibility-ms-compat @gol
196 -Wabi  -Wctor-dtor-privacy @gol
197 -Wnon-virtual-dtor  -Wreorder @gol
198 -Weffc++  -Wno-deprecated  -Wstrict-null-sentinel @gol
199 -Wno-non-template-friend  -Wold-style-cast @gol
200 -Woverloaded-virtual  -Wno-pmf-conversions @gol
201 -Wsign-promo}
202
203 @item Objective-C and Objective-C++ Language Options
204 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
205 Objective-C and Objective-C++ Dialects}.
206 @gccoptlist{-fconstant-string-class=@var{class-name} @gol
207 -fgnu-runtime  -fnext-runtime @gol
208 -fno-nil-receivers @gol
209 -fobjc-call-cxx-cdtors @gol
210 -fobjc-direct-dispatch @gol
211 -fobjc-exceptions @gol
212 -fobjc-gc @gol
213 -freplace-objc-classes @gol
214 -fzero-link @gol
215 -gen-decls @gol
216 -Wassign-intercept @gol
217 -Wno-protocol  -Wselector @gol
218 -Wstrict-selector-match @gol
219 -Wundeclared-selector}
220
221 @item Language Independent Options
222 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
223 @gccoptlist{-fmessage-length=@var{n}  @gol
224 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}  @gol
225 -fdiagnostics-show-option}
226
227 @item Warning Options
228 @xref{Warning Options,,Options to Request or Suppress Warnings}.
229 @gccoptlist{-fsyntax-only  -pedantic  -pedantic-errors @gol
230 -w  -Wextra  -Wall  -Waddress  -Waggregate-return  -Warray-bounds @gol
231 -Wno-attributes -Wc++-compat -Wc++0x-compat -Wcast-align  -Wcast-qual  @gol
232 -Wchar-subscripts -Wclobbered  -Wcomment @gol
233 -Wconversion  -Wcoverage-mismatch  -Wno-deprecated-declarations @gol
234 -Wdisabled-optimization  -Wno-div-by-zero  @gol
235 -Wempty-body  -Wno-endif-labels @gol
236 -Werror  -Werror=* @gol
237 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
238 -Wno-format-extra-args -Wformat-nonliteral @gol
239 -Wformat-security  -Wformat-y2k @gol
240 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
241 -Wimport  -Wno-import  -Winit-self  -Winline @gol
242 -Wno-int-to-pointer-cast -Wno-invalid-offsetof @gol
243 -Winvalid-pch -Wlarger-than-@var{len}  -Wunsafe-loop-optimizations @gol
244 -Wlogical-op -Wlong-long @gol
245 -Wmain  -Wmissing-braces  -Wmissing-field-initializers @gol
246 -Wmissing-format-attribute  -Wmissing-include-dirs @gol
247 -Wmissing-noreturn @gol
248 -Wno-multichar  -Wnonnull  -Wno-overflow @gol
249 -Woverlength-strings  -Wpacked  -Wpadded @gol
250 -Wparentheses  -Wpointer-arith  -Wno-pointer-to-int-cast @gol
251 -Wredundant-decls @gol
252 -Wreturn-type  -Wsequence-point  -Wshadow @gol
253 -Wsign-compare  -Wsign-conversion  -Wstack-protector @gol
254 -Wstrict-aliasing -Wstrict-aliasing=n @gol
255 -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
256 -Wswitch  -Wswitch-default  -Wswitch-enum @gol
257 -Wsystem-headers  -Wtrigraphs  -Wtype-limits  -Wundef  -Wuninitialized @gol
258 -Wunknown-pragmas  -Wno-pragmas -Wunreachable-code @gol
259 -Wunused  -Wunused-function  -Wunused-label  -Wunused-parameter @gol
260 -Wunused-value  -Wunused-variable @gol
261 -Wvariadic-macros -Wvla @gol
262 -Wvolatile-register-var  -Wwrite-strings}
263
264 @item C-only Warning Options
265 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
266 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
267 -Wold-style-declaration  -Wold-style-definition @gol
268 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
269 -Wdeclaration-after-statement -Wpointer-sign}
270
271 @item Debugging Options
272 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
273 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
274 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
275 -fdump-noaddr -fdump-unnumbered  -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
276 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
277 -fdump-ipa-all -fdump-ipa-cgraph @gol
278 -fdump-tree-all @gol
279 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
280 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
281 -fdump-tree-inlined@r{[}-@var{n}@r{]} @gol
282 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
283 -fdump-tree-ch @gol
284 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
285 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
286 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
287 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
288 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
289 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
290 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
291 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
292 -fdump-tree-nrv -fdump-tree-vect @gol
293 -fdump-tree-sink @gol
294 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
295 -fdump-tree-salias @gol
296 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
297 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
298 -ftree-vectorizer-verbose=@var{n} @gol
299 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
300 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
301 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
302 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
303 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
304 -ftest-coverage  -ftime-report -fvar-tracking @gol
305 -g  -g@var{level}  -gcoff -gdwarf-2 @gol
306 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
307 -fdebug-prefix-map=@var{old}=@var{new} @gol
308 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
309 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
310 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
311 -print-multi-directory  -print-multi-lib @gol
312 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
313 -print-sysroot-headers-suffix @gol
314 -save-temps  -time}
315
316 @item Optimization Options
317 @xref{Optimize Options,,Options that Control Optimization}.
318 @gccoptlist{-falign-functions=@var{n}  -falign-jumps=@var{n} @gol
319 -falign-labels=@var{n}  -falign-loops=@var{n}  @gol
320 -fbounds-check -fmudflap -fmudflapth -fmudflapir @gol
321 -fbranch-probabilities -fprofile-values -fvpt -fbranch-target-load-optimize @gol
322 -fbranch-target-load-optimize2 -fbtr-bb-exclusive @gol
323 -fcaller-saves  -fcprop-registers  -fcse-follow-jumps @gol
324 -fcse-skip-blocks  -fcx-limited-range  -fdata-sections @gol
325 -fdelayed-branch  -fdelete-null-pointer-checks -fearly-inlining @gol
326 -fexpensive-optimizations  -ffast-math  -ffloat-store @gol
327 -fforce-addr  -fforward-propagate  -ffunction-sections @gol
328 -fgcse  -fgcse-lm  -fgcse-sm  -fgcse-las  -fgcse-after-reload @gol
329 -fcrossjumping  -fif-conversion  -fif-conversion2 @gol
330 -finline-functions  -finline-functions-called-once @gol
331 -finline-small-functions -finline-limit=@var{n}  -fkeep-inline-functions @gol
332 -fkeep-static-consts  -fmerge-constants  -fmerge-all-constants @gol
333 -fmodulo-sched -fmodulo-sched-allow-regmoves -fno-branch-count-reg @gol
334 -fno-default-inline  -fno-defer-pop -fmove-loop-invariants @gol
335 -fno-function-cse  -fno-guess-branch-probability @gol
336 -fno-inline  -fno-math-errno  -fno-peephole  -fno-peephole2 @gol
337 -funsafe-math-optimizations  -funsafe-loop-optimizations @gol
338 -ffinite-math-only  -fno-signed-zeros @gol
339 -fno-toplevel-reorder -fno-trapping-math  -fno-zero-initialized-in-bss @gol
340 -fomit-frame-pointer  -foptimize-register-move @gol
341 -foptimize-sibling-calls  -fpredictive-commoning -fprefetch-loop-arrays @gol
342 -fprofile-generate -fprofile-use @gol
343 -fregmove  -frename-registers @gol
344 -freorder-blocks  -freorder-blocks-and-partition -freorder-functions @gol
345 -frerun-cse-after-loop @gol
346 -frounding-math -frtl-abstract-sequences @gol
347 -fschedule-insns  -fschedule-insns2 @gol
348 -fno-sched-interblock  -fno-sched-spec  -fsched-spec-load @gol
349 -fsched-spec-load-dangerous  @gol
350 -fsched-stalled-insns=@var{n} -fsched-stalled-insns-dep=@var{n} @gol
351 -fsched2-use-superblocks @gol
352 -fsched2-use-traces -fsee -freschedule-modulo-scheduled-loops @gol
353 -fsection-anchors  -fsignaling-nans  -fsingle-precision-constant @gol
354 -fno-split-wide-types -fstack-protector  -fstack-protector-all @gol
355 -fstrict-aliasing  -fstrict-overflow  -ftracer  -fthread-jumps @gol
356 -funroll-all-loops  -funroll-loops  -fpeel-loops @gol
357 -fsplit-ivs-in-unroller -funswitch-loops @gol
358 -fvariable-expansion-in-unroller -ftree-reassoc @gol
359 -ftree-pre  -ftree-ccp  -ftree-dce -ftree-loop-optimize @gol
360 -ftree-loop-linear -ftree-loop-im -ftree-loop-ivcanon -fivopts @gol
361 -fcheck-data-deps -ftree-parallelize-loops @gol
362 -ftree-dominator-opts -ftree-dse -ftree-copyrename -ftree-sink @gol
363 -ftree-ch -ftree-sra -ftree-ter -ftree-fre -ftree-vectorize @gol
364 -ftree-vect-loop-version -fvect-cost-model -ftree-salias -fipa-pta -fweb @gol
365 -ftree-copy-prop -ftree-store-ccp -ftree-store-copy-prop -fwhole-program @gol
366 --param @var{name}=@var{value}
367 -O  -O0  -O1  -O2  -O3  -Os}
368
369 @item Preprocessor Options
370 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
371 @gccoptlist{-A@var{question}=@var{answer} @gol
372 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
373 -C  -dD  -dI  -dM  -dN @gol
374 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
375 -idirafter @var{dir} @gol
376 -include @var{file}  -imacros @var{file} @gol
377 -iprefix @var{file}  -iwithprefix @var{dir} @gol
378 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
379 -imultilib @var{dir} -isysroot @var{dir} @gol
380 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
381 -P  -fworking-directory  -remap @gol
382 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
383 -Xpreprocessor @var{option}}
384
385 @item Assembler Option
386 @xref{Assembler Options,,Passing Options to the Assembler}.
387 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
388
389 @item Linker Options
390 @xref{Link Options,,Options for Linking}.
391 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
392 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
393 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
394 -Wl,@var{option}  -Xlinker @var{option} @gol
395 -u @var{symbol}}
396
397 @item Directory Options
398 @xref{Directory Options,,Options for Directory Search}.
399 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
400 -specs=@var{file}  -I- --sysroot=@var{dir}}
401
402 @item Target Options
403 @c I wrote this xref this way to avoid overfull hbox. -- rms
404 @xref{Target Options}.
405 @gccoptlist{-V @var{version}  -b @var{machine}}
406
407 @item Machine Dependent Options
408 @xref{Submodel Options,,Hardware Models and Configurations}.
409 @c This list is ordered alphanumerically by subsection name.
410 @c Try and put the significant identifier (CPU or system) first,
411 @c so users have a clue at guessing where the ones they want will be.
412
413 @emph{ARC Options}
414 @gccoptlist{-EB  -EL @gol
415 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
416 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
417
418 @emph{ARM Options}
419 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
420 -mabi=@var{name} @gol
421 -mapcs-stack-check  -mno-apcs-stack-check @gol
422 -mapcs-float  -mno-apcs-float @gol
423 -mapcs-reentrant  -mno-apcs-reentrant @gol
424 -msched-prolog  -mno-sched-prolog @gol
425 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
426 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
427 -mthumb-interwork  -mno-thumb-interwork @gol
428 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
429 -mstructure-size-boundary=@var{n} @gol
430 -mabort-on-noreturn @gol
431 -mlong-calls  -mno-long-calls @gol
432 -msingle-pic-base  -mno-single-pic-base @gol
433 -mpic-register=@var{reg} @gol
434 -mnop-fun-dllimport @gol
435 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
436 -mpoke-function-name @gol
437 -mthumb  -marm @gol
438 -mtpcs-frame  -mtpcs-leaf-frame @gol
439 -mcaller-super-interworking  -mcallee-super-interworking @gol
440 -mtp=@var{name}}
441
442 @emph{AVR Options}
443 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
444 -mcall-prologues  -mno-tablejump  -mtiny-stack  -mint8}
445
446 @emph{Blackfin Options}
447 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
448 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
449 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
450 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
451 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
452 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
453 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
454 -mfast-fp -minline-plt}
455
456 @emph{CRIS Options}
457 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
458 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
459 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
460 -mstack-align  -mdata-align  -mconst-align @gol
461 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
462 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
463 -mmul-bug-workaround  -mno-mul-bug-workaround}
464
465 @emph{CRX Options}
466 @gccoptlist{-mmac -mpush-args}
467
468 @emph{Darwin Options}
469 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
470 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
471 -client_name  -compatibility_version  -current_version @gol
472 -dead_strip @gol
473 -dependency-file  -dylib_file  -dylinker_install_name @gol
474 -dynamic  -dynamiclib  -exported_symbols_list @gol
475 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
476 -force_flat_namespace  -headerpad_max_install_names @gol
477 -iframework @gol
478 -image_base  -init  -install_name  -keep_private_externs @gol
479 -multi_module  -multiply_defined  -multiply_defined_unused @gol
480 -noall_load   -no_dead_strip_inits_and_terms @gol
481 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
482 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
483 -private_bundle  -read_only_relocs  -sectalign @gol
484 -sectobjectsymbols  -whyload  -seg1addr @gol
485 -sectcreate  -sectobjectsymbols  -sectorder @gol
486 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
487 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
488 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
489 -single_module  -static  -sub_library  -sub_umbrella @gol
490 -twolevel_namespace  -umbrella  -undefined @gol
491 -unexported_symbols_list  -weak_reference_mismatches @gol
492 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
493 -mkernel -mone-byte-bool}
494
495 @emph{DEC Alpha Options}
496 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
497 -mieee  -mieee-with-inexact  -mieee-conformant @gol
498 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
499 -mtrap-precision=@var{mode}  -mbuild-constants @gol
500 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
501 -mbwx  -mmax  -mfix  -mcix @gol
502 -mfloat-vax  -mfloat-ieee @gol
503 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
504 -msmall-text  -mlarge-text @gol
505 -mmemory-latency=@var{time}}
506
507 @emph{DEC Alpha/VMS Options}
508 @gccoptlist{-mvms-return-codes}
509
510 @emph{FRV Options}
511 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
512 -mhard-float  -msoft-float @gol
513 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
514 -mdouble  -mno-double @gol
515 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
516 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
517 -mlinked-fp  -mlong-calls  -malign-labels @gol
518 -mlibrary-pic  -macc-4  -macc-8 @gol
519 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
520 -moptimize-membar -mno-optimize-membar @gol
521 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
522 -mvliw-branch  -mno-vliw-branch @gol
523 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
524 -mno-nested-cond-exec  -mtomcat-stats @gol
525 -mTLS -mtls @gol
526 -mcpu=@var{cpu}}
527
528 @emph{GNU/Linux Options}
529 @gccoptlist{-muclibc}
530
531 @emph{H8/300 Options}
532 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
533
534 @emph{HPPA Options}
535 @gccoptlist{-march=@var{architecture-type} @gol
536 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
537 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
538 -mfixed-range=@var{register-range} @gol
539 -mjump-in-delay -mlinker-opt -mlong-calls @gol
540 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
541 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
542 -mno-jump-in-delay  -mno-long-load-store @gol
543 -mno-portable-runtime  -mno-soft-float @gol
544 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
545 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
546 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
547 -munix=@var{unix-std}  -nolibdld  -static  -threads}
548
549 @emph{i386 and x86-64 Options}
550 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
551 -mfpmath=@var{unit} @gol
552 -masm=@var{dialect}  -mno-fancy-math-387 @gol
553 -mno-fp-ret-in-387  -msoft-float @gol
554 -mno-wide-multiply  -mrtd  -malign-double @gol
555 -mpreferred-stack-boundary=@var{num} -mcx16 -msahf -mrecip @gol
556 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 @gol
557 -msse4a -m3dnow -mpopcnt -mabm -msse5 @gol
558 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
559 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
560 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
561 -mveclibabi=@var{type} -mpc32 -mpc64 -mpc80 -mstackrealign @gol
562 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
563 -mcmodel=@var{code-model} @gol
564 -m32  -m64 -mlarge-data-threshold=@var{num} @gol
565 -mfused-madd -mno-fused-madd}
566
567 @emph{IA-64 Options}
568 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
569 -mvolatile-asm-stop  -mregister-names  -mno-sdata @gol
570 -mconstant-gp  -mauto-pic  -minline-float-divide-min-latency @gol
571 -minline-float-divide-max-throughput @gol
572 -minline-int-divide-min-latency @gol
573 -minline-int-divide-max-throughput  @gol
574 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
575 -mno-dwarf2-asm -mearly-stop-bits @gol
576 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
577 -mtune=@var{cpu-type} -mt -pthread -milp32 -mlp64 @gol
578 -mno-sched-br-data-spec -msched-ar-data-spec -mno-sched-control-spec @gol
579 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
580 -msched-ldc -mno-sched-control-ldc -mno-sched-spec-verbose @gol
581 -mno-sched-prefer-non-data-spec-insns @gol
582 -mno-sched-prefer-non-control-spec-insns @gol
583 -mno-sched-count-spec-in-critical-path}
584
585 @emph{M32R/D Options}
586 @gccoptlist{-m32r2 -m32rx -m32r @gol
587 -mdebug @gol
588 -malign-loops -mno-align-loops @gol
589 -missue-rate=@var{number} @gol
590 -mbranch-cost=@var{number} @gol
591 -mmodel=@var{code-size-model-type} @gol
592 -msdata=@var{sdata-type} @gol
593 -mno-flush-func -mflush-func=@var{name} @gol
594 -mno-flush-trap -mflush-trap=@var{number} @gol
595 -G @var{num}}
596
597 @emph{M32C Options}
598 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
599
600 @emph{M680x0 Options}
601 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
602 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
603 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
604 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
605 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
606 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
607 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
608 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library}
609
610 @emph{M68hc1x Options}
611 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
612 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
613 -msoft-reg-count=@var{count}}
614
615 @emph{MCore Options}
616 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
617 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
618 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
619 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
620 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
621
622 @emph{MIPS Options}
623 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
624 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2  -mips64 @gol
625 -mips16  -mno-mips16  -mflip-mips16 @gol
626 -minterlink-mips16  -mno-interlink-mips16 @gol
627 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
628 -mshared  -mno-shared  -mxgot  -mno-xgot  -mgp32  -mgp64 @gol
629 -mfp32  -mfp64  -mhard-float  -msoft-float @gol
630 -msingle-float  -mdouble-float  -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
631 -msmartmips  -mno-smartmips @gol
632 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
633 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
634 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
635 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
636 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
637 -membedded-data  -mno-embedded-data @gol
638 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
639 -mcode-readable=@var{setting} @gol
640 -msplit-addresses  -mno-split-addresses @gol
641 -mexplicit-relocs  -mno-explicit-relocs @gol
642 -mcheck-zero-division  -mno-check-zero-division @gol
643 -mdivide-traps  -mdivide-breaks @gol
644 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
645 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
646 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
647 -mfix-vr4120  -mno-fix-vr4120  -mfix-vr4130  -mno-fix-vr4130 @gol
648 -mfix-sb1  -mno-fix-sb1 @gol
649 -mflush-func=@var{func}  -mno-flush-func @gol
650 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
651 -mfp-exceptions -mno-fp-exceptions @gol
652 -mvr4130-align -mno-vr4130-align}
653
654 @emph{MMIX Options}
655 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
656 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
657 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
658 -mno-base-addresses  -msingle-exit  -mno-single-exit}
659
660 @emph{MN10300 Options}
661 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
662 -mam33  -mno-am33 @gol
663 -mam33-2  -mno-am33-2 @gol
664 -mreturn-pointer-on-d0 @gol
665 -mno-crt0  -mrelax}
666
667 @emph{MT Options}
668 @gccoptlist{-mno-crt0 -mbacc -msim @gol
669 -march=@var{cpu-type} }
670
671 @emph{PDP-11 Options}
672 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
673 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
674 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
675 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
676 -mbranch-expensive  -mbranch-cheap @gol
677 -msplit  -mno-split  -munix-asm  -mdec-asm}
678
679 @emph{PowerPC Options}
680 See RS/6000 and PowerPC Options.
681
682 @emph{RS/6000 and PowerPC Options}
683 @gccoptlist{-mcpu=@var{cpu-type} @gol
684 -mtune=@var{cpu-type} @gol
685 -mpower  -mno-power  -mpower2  -mno-power2 @gol
686 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
687 -maltivec  -mno-altivec @gol
688 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
689 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
690 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
691 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mdfp -mno-dfp @gol
692 -mnew-mnemonics  -mold-mnemonics @gol
693 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
694 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
695 -malign-power  -malign-natural @gol
696 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
697 -mstring  -mno-string  -mupdate  -mno-update @gol
698 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
699 -mstrict-align  -mno-strict-align  -mrelocatable @gol
700 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
701 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
702 -mdynamic-no-pic  -maltivec  -mswdiv @gol
703 -mprioritize-restricted-insns=@var{priority} @gol
704 -msched-costly-dep=@var{dependence_type} @gol
705 -minsert-sched-nops=@var{scheme} @gol
706 -mcall-sysv  -mcall-netbsd @gol
707 -maix-struct-return  -msvr4-struct-return @gol
708 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
709 -misel -mno-isel @gol
710 -misel=yes  -misel=no @gol
711 -mspe -mno-spe @gol
712 -mspe=yes  -mspe=no @gol
713 -mpaired @gol
714 -mvrsave -mno-vrsave @gol
715 -mmulhw -mno-mulhw @gol
716 -mdlmzb -mno-dlmzb @gol
717 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
718 -mprototype  -mno-prototype @gol
719 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
720 -msdata=@var{opt}  -mvxworks  -mwindiss  -G @var{num}  -pthread}
721
722 @emph{S/390 and zSeries Options}
723 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
724 -mhard-float  -msoft-float -mlong-double-64 -mlong-double-128 @gol
725 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
726 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
727 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
728 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
729 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
730
731 @emph{Score Options}
732 @gccoptlist{-meb -mel @gol
733 -mnhwloop @gol
734 -muls @gol
735 -mmac @gol
736 -mscore5 -mscore5u -mscore7 -mscore7d}
737
738 @emph{SH Options}
739 @gccoptlist{-m1  -m2  -m2e  -m3  -m3e @gol
740 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
741 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
742 -m5-64media  -m5-64media-nofpu @gol
743 -m5-32media  -m5-32media-nofpu @gol
744 -m5-compact  -m5-compact-nofpu @gol
745 -mb  -ml  -mdalign  -mrelax @gol
746 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
747 -mieee  -misize  -minline-ic_invalidate -mpadstruct  -mspace @gol
748 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
749 -mdivsi3_libfunc=@var{name}  @gol
750 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
751  -minvalid-symbols}
752
753 @emph{SPARC Options}
754 @gccoptlist{-mcpu=@var{cpu-type} @gol
755 -mtune=@var{cpu-type} @gol
756 -mcmodel=@var{code-model} @gol
757 -m32  -m64  -mapp-regs  -mno-app-regs @gol
758 -mfaster-structs  -mno-faster-structs @gol
759 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
760 -mhard-quad-float  -msoft-quad-float @gol
761 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
762 -mstack-bias  -mno-stack-bias @gol
763 -munaligned-doubles  -mno-unaligned-doubles @gol
764 -mv8plus  -mno-v8plus  -mvis  -mno-vis
765 -threads -pthreads -pthread}
766
767 @emph{SPU Options}
768 @gccoptlist{-mwarn-reloc -merror-reloc @gol
769 -msafe-dma -munsafe-dma @gol
770 -mbranch-hints @gol
771 -msmall-mem -mlarge-mem -mstdmain @gol
772 -mfixed-range=@var{register-range}}
773
774 @emph{System V Options}
775 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
776
777 @emph{TMS320C3x/C4x Options}
778 @gccoptlist{-mcpu=@var{cpu}  -mbig  -msmall  -mregparm  -mmemparm @gol
779 -mfast-fix  -mmpyi  -mbk  -mti  -mdp-isr-reload @gol
780 -mrpts=@var{count}  -mrptb  -mdb  -mloop-unsigned @gol
781 -mparallel-insns  -mparallel-mpy  -mpreserve-float}
782
783 @emph{V850 Options}
784 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
785 -mprolog-function  -mno-prolog-function  -mspace @gol
786 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
787 -mapp-regs  -mno-app-regs @gol
788 -mdisable-callt  -mno-disable-callt @gol
789 -mv850e1 @gol
790 -mv850e @gol
791 -mv850  -mbig-switch}
792
793 @emph{VAX Options}
794 @gccoptlist{-mg  -mgnu  -munix}
795
796 @emph{VxWorks Options}
797 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
798 -Xbind-lazy  -Xbind-now}
799
800 @emph{x86-64 Options}
801 See i386 and x86-64 Options.
802
803 @emph{Xstormy16 Options}
804 @gccoptlist{-msim}
805
806 @emph{Xtensa Options}
807 @gccoptlist{-mconst16 -mno-const16 @gol
808 -mfused-madd  -mno-fused-madd @gol
809 -mtext-section-literals  -mno-text-section-literals @gol
810 -mtarget-align  -mno-target-align @gol
811 -mlongcalls  -mno-longcalls}
812
813 @emph{zSeries Options}
814 See S/390 and zSeries Options.
815
816 @item Code Generation Options
817 @xref{Code Gen Options,,Options for Code Generation Conventions}.
818 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
819 -ffixed-@var{reg}  -fexceptions @gol
820 -fnon-call-exceptions  -funwind-tables @gol
821 -fasynchronous-unwind-tables @gol
822 -finhibit-size-directive  -finstrument-functions @gol
823 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
824 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
825 -fno-common  -fno-ident @gol
826 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
827 -fno-jump-tables @gol
828 -frecord-gcc-switches @gol
829 -freg-struct-return  -fshort-enums @gol
830 -fshort-double  -fshort-wchar @gol
831 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
832 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
833 -fargument-alias  -fargument-noalias @gol
834 -fargument-noalias-global  -fargument-noalias-anything
835 -fleading-underscore  -ftls-model=@var{model} @gol
836 -ftrapv  -fwrapv  -fbounds-check @gol
837 -fvisibility}
838 @end table
839
840 @menu
841 * Overall Options::     Controlling the kind of output:
842                         an executable, object files, assembler files,
843                         or preprocessed source.
844 * C Dialect Options::   Controlling the variant of C language compiled.
845 * C++ Dialect Options:: Variations on C++.
846 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
847                         and Objective-C++.
848 * Language Independent Options:: Controlling how diagnostics should be
849                         formatted.
850 * Warning Options::     How picky should the compiler be?
851 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
852 * Optimize Options::    How much optimization?
853 * Preprocessor Options:: Controlling header files and macro definitions.
854                          Also, getting dependency information for Make.
855 * Assembler Options::   Passing options to the assembler.
856 * Link Options::        Specifying libraries and so on.
857 * Directory Options::   Where to find header files and libraries.
858                         Where to find the compiler executable files.
859 * Spec Files::          How to pass switches to sub-processes.
860 * Target Options::      Running a cross-compiler, or an old version of GCC.
861 @end menu
862
863 @node Overall Options
864 @section Options Controlling the Kind of Output
865
866 Compilation can involve up to four stages: preprocessing, compilation
867 proper, assembly and linking, always in that order.  GCC is capable of
868 preprocessing and compiling several files either into several
869 assembler input files, or into one assembler input file; then each
870 assembler input file produces an object file, and linking combines all
871 the object files (those newly compiled, and those specified as input)
872 into an executable file.
873
874 @cindex file name suffix
875 For any given input file, the file name suffix determines what kind of
876 compilation is done:
877
878 @table @gcctabopt
879 @item @var{file}.c
880 C source code which must be preprocessed.
881
882 @item @var{file}.i
883 C source code which should not be preprocessed.
884
885 @item @var{file}.ii
886 C++ source code which should not be preprocessed.
887
888 @item @var{file}.m
889 Objective-C source code.  Note that you must link with the @file{libobjc}
890 library to make an Objective-C program work.
891
892 @item @var{file}.mi
893 Objective-C source code which should not be preprocessed.
894
895 @item @var{file}.mm
896 @itemx @var{file}.M
897 Objective-C++ source code.  Note that you must link with the @file{libobjc}
898 library to make an Objective-C++ program work.  Note that @samp{.M} refers
899 to a literal capital M@.
900
901 @item @var{file}.mii
902 Objective-C++ source code which should not be preprocessed.
903
904 @item @var{file}.h
905 C, C++, Objective-C or Objective-C++ header file to be turned into a
906 precompiled header.
907
908 @item @var{file}.cc
909 @itemx @var{file}.cp
910 @itemx @var{file}.cxx
911 @itemx @var{file}.cpp
912 @itemx @var{file}.CPP
913 @itemx @var{file}.c++
914 @itemx @var{file}.C
915 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
916 the last two letters must both be literally @samp{x}.  Likewise,
917 @samp{.C} refers to a literal capital C@.
918
919 @item @var{file}.mm
920 @itemx @var{file}.M
921 Objective-C++ source code which must be preprocessed.
922
923 @item @var{file}.mii
924 Objective-C++ source code which should not be preprocessed.
925
926 @item @var{file}.hh
927 @itemx @var{file}.H
928 @itemx @var{file}.hp
929 @itemx @var{file}.hxx
930 @itemx @var{file}.hpp
931 @itemx @var{file}.HPP
932 @itemx @var{file}.h++
933 @itemx @var{file}.tcc
934 C++ header file to be turned into a precompiled header.
935
936 @item @var{file}.f
937 @itemx @var{file}.for
938 @itemx @var{file}.FOR
939 Fixed form Fortran source code which should not be preprocessed.
940
941 @item @var{file}.F
942 @itemx @var{file}.fpp
943 @itemx @var{file}.FPP
944 Fixed form Fortran source code which must be preprocessed (with the traditional
945 preprocessor).
946
947 @item @var{file}.f90
948 @itemx @var{file}.f95
949 Free form Fortran source code which should not be preprocessed.
950
951 @item @var{file}.F90
952 @itemx @var{file}.F95
953 Free form Fortran source code which must be preprocessed (with the
954 traditional preprocessor).
955
956 @c FIXME: Descriptions of Java file types.
957 @c @var{file}.java
958 @c @var{file}.class
959 @c @var{file}.zip
960 @c @var{file}.jar
961
962 @item @var{file}.ads
963 Ada source code file which contains a library unit declaration (a
964 declaration of a package, subprogram, or generic, or a generic
965 instantiation), or a library unit renaming declaration (a package,
966 generic, or subprogram renaming declaration).  Such files are also
967 called @dfn{specs}.
968
969 @itemx @var{file}.adb
970 Ada source code file containing a library unit body (a subprogram or
971 package body).  Such files are also called @dfn{bodies}.
972
973 @c GCC also knows about some suffixes for languages not yet included:
974 @c Pascal:
975 @c @var{file}.p
976 @c @var{file}.pas
977 @c Ratfor:
978 @c @var{file}.r
979
980 @item @var{file}.s
981 Assembler code.
982
983 @item @var{file}.S
984 @itemx @var{file}.sx
985 Assembler code which must be preprocessed.
986
987 @item @var{other}
988 An object file to be fed straight into linking.
989 Any file name with no recognized suffix is treated this way.
990 @end table
991
992 @opindex x
993 You can specify the input language explicitly with the @option{-x} option:
994
995 @table @gcctabopt
996 @item -x @var{language}
997 Specify explicitly the @var{language} for the following input files
998 (rather than letting the compiler choose a default based on the file
999 name suffix).  This option applies to all following input files until
1000 the next @option{-x} option.  Possible values for @var{language} are:
1001 @smallexample
1002 c  c-header  c-cpp-output
1003 c++  c++-header  c++-cpp-output
1004 objective-c  objective-c-header  objective-c-cpp-output
1005 objective-c++ objective-c++-header objective-c++-cpp-output
1006 assembler  assembler-with-cpp
1007 ada
1008 f95  f95-cpp-input
1009 java
1010 treelang
1011 @end smallexample
1012
1013 @item -x none
1014 Turn off any specification of a language, so that subsequent files are
1015 handled according to their file name suffixes (as they are if @option{-x}
1016 has not been used at all).
1017
1018 @item -pass-exit-codes
1019 @opindex pass-exit-codes
1020 Normally the @command{gcc} program will exit with the code of 1 if any
1021 phase of the compiler returns a non-success return code.  If you specify
1022 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
1023 numerically highest error produced by any phase that returned an error
1024 indication.  The C, C++, and Fortran frontends return 4, if an internal
1025 compiler error is encountered.
1026 @end table
1027
1028 If you only want some of the stages of compilation, you can use
1029 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1030 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1031 @command{gcc} is to stop.  Note that some combinations (for example,
1032 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1033
1034 @table @gcctabopt
1035 @item -c
1036 @opindex c
1037 Compile or assemble the source files, but do not link.  The linking
1038 stage simply is not done.  The ultimate output is in the form of an
1039 object file for each source file.
1040
1041 By default, the object file name for a source file is made by replacing
1042 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1043
1044 Unrecognized input files, not requiring compilation or assembly, are
1045 ignored.
1046
1047 @item -S
1048 @opindex S
1049 Stop after the stage of compilation proper; do not assemble.  The output
1050 is in the form of an assembler code file for each non-assembler input
1051 file specified.
1052
1053 By default, the assembler file name for a source file is made by
1054 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1055
1056 Input files that don't require compilation are ignored.
1057
1058 @item -E
1059 @opindex E
1060 Stop after the preprocessing stage; do not run the compiler proper.  The
1061 output is in the form of preprocessed source code, which is sent to the
1062 standard output.
1063
1064 Input files which don't require preprocessing are ignored.
1065
1066 @cindex output file option
1067 @item -o @var{file}
1068 @opindex o
1069 Place output in file @var{file}.  This applies regardless to whatever
1070 sort of output is being produced, whether it be an executable file,
1071 an object file, an assembler file or preprocessed C code.
1072
1073 If @option{-o} is not specified, the default is to put an executable
1074 file in @file{a.out}, the object file for
1075 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1076 assembler file in @file{@var{source}.s}, a precompiled header file in
1077 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1078 standard output.
1079
1080 @item -v
1081 @opindex v
1082 Print (on standard error output) the commands executed to run the stages
1083 of compilation.  Also print the version number of the compiler driver
1084 program and of the preprocessor and the compiler proper.
1085
1086 @item -###
1087 @opindex ###
1088 Like @option{-v} except the commands are not executed and all command
1089 arguments are quoted.  This is useful for shell scripts to capture the
1090 driver-generated command lines.
1091
1092 @item -pipe
1093 @opindex pipe
1094 Use pipes rather than temporary files for communication between the
1095 various stages of compilation.  This fails to work on some systems where
1096 the assembler is unable to read from a pipe; but the GNU assembler has
1097 no trouble.
1098
1099 @item -combine
1100 @opindex combine
1101 If you are compiling multiple source files, this option tells the driver
1102 to pass all the source files to the compiler at once (for those
1103 languages for which the compiler can handle this).  This will allow
1104 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1105 language for which this is supported is C@.  If you pass source files for
1106 multiple languages to the driver, using this option, the driver will invoke
1107 the compiler(s) that support IMA once each, passing each compiler all the
1108 source files appropriate for it.  For those languages that do not support
1109 IMA this option will be ignored, and the compiler will be invoked once for
1110 each source file in that language.  If you use this option in conjunction
1111 with @option{-save-temps}, the compiler will generate multiple
1112 pre-processed files
1113 (one for each source file), but only one (combined) @file{.o} or
1114 @file{.s} file.
1115
1116 @item --help
1117 @opindex help
1118 Print (on the standard output) a description of the command line options
1119 understood by @command{gcc}.  If the @option{-v} option is also specified
1120 then @option{--help} will also be passed on to the various processes
1121 invoked by @command{gcc}, so that they can display the command line options
1122 they accept.  If the @option{-Wextra} option has also been specified
1123 (prior to the @option{--help} option), then command line options which
1124 have no documentation associated with them will also be displayed.
1125
1126 @item --target-help
1127 @opindex target-help
1128 Print (on the standard output) a description of target-specific command
1129 line options for each tool.  For some targets extra target-specific
1130 information may also be printed.
1131
1132 @item --help=@var{class}@r{[},@var{qualifier}@r{]}
1133 Print (on the standard output) a description of the command line
1134 options understood by the compiler that fit into a specific class.
1135 The class can be one of @samp{optimizers}, @samp{warnings}, @samp{target},
1136 @samp{params}, or @var{language}:
1137
1138 @table @asis
1139 @item @samp{optimizers}
1140 This will display all of the optimization options supported by the
1141 compiler.
1142
1143 @item @samp{warnings}
1144 This will display all of the options controlling warning messages
1145 produced by the compiler.
1146
1147 @item @samp{target}
1148 This will display target-specific options.  Unlike the
1149 @option{--target-help} option however, target-specific options of the
1150 linker and assembler will not be displayed.  This is because those
1151 tools do not currently support the extended @option{--help=} syntax.
1152
1153 @item @samp{params}
1154 This will display the values recognized by the @option{--param}
1155 option.
1156
1157 @item @var{language}
1158 This will display the options supported for @var{language}, where 
1159 @var{language} is the name of one of the languages supported in this 
1160 version of GCC.
1161
1162 @item @samp{common}
1163 This will display the options that are common to all languages.
1164 @end table
1165
1166 It is possible to further refine the output of the @option{--help=}
1167 option by adding a comma separated list of qualifiers after the
1168 class.  These can be any from the following list:
1169
1170 @table @asis
1171 @item @samp{undocumented}
1172 Display only those options which are undocumented.
1173
1174 @item @samp{joined}
1175 Display options which take an argument that appears after an equal
1176 sign in the same continuous piece of text, such as:
1177 @samp{--help=target}.
1178
1179 @item @samp{separate}
1180 Display options which take an argument that appears as a separate word
1181 following the original option, such as: @samp{-o output-file}.
1182 @end table
1183
1184 Thus for example to display all the undocumented target-specific
1185 switches supported by the compiler the following can be used:
1186
1187 @smallexample
1188 --help=target,undocumented
1189 @end smallexample
1190
1191 The sense of a qualifier can be inverted by prefixing it with the
1192 @var{^} character, so for example to display all binary warning
1193 options (i.e. ones that are either on or off and that do not take an
1194 argument), which have a description the following can be used:
1195
1196 @smallexample
1197 --help=warnings,^joined,^undocumented
1198 @end smallexample
1199
1200 A class can also be used as a qualifier, although this usually
1201 restricts the output by so much that there is nothing to display.  One
1202 case where it does work however is when one of the classes is
1203 @var{target}.  So for example to display all the target-specific
1204 optimization options the following can be used:
1205
1206 @smallexample
1207 --help=target,optimizers
1208 @end smallexample
1209
1210 The @option{--help=} option can be repeated on the command line.  Each
1211 successive use will display its requested class of options, skipping
1212 those that have already been displayed.
1213
1214 If the @option{-Q} option appears on the command line before the
1215 @option{--help=} option, then the descriptive text displayed by
1216 @option{--help=} is changed.  Instead of describing the displayed
1217 options, an indication is given as to whether the option is enabled,
1218 disabled or set to a specific value (assuming that the compiler
1219 knows this at the point where the @option{--help=} option is used).
1220
1221 Here is a truncated example from the ARM port of @command{gcc}:
1222
1223 @smallexample
1224   % gcc -Q -mabi=2 --help=target -c
1225   The following options are target specific:
1226   -mabi=                                2
1227   -mabort-on-noreturn                   [disabled]
1228   -mapcs                                [disabled]
1229 @end smallexample
1230
1231 The output is sensitive to the effects of previous command line
1232 options, so for example it is possible to find out which optimizations
1233 are enabled at @option{-O2} by using:
1234
1235 @smallexample
1236 -O2 --help=optimizers
1237 @end smallexample
1238
1239 Alternatively you can discover which binary optimizations are enabled
1240 by @option{-O3} by using:
1241
1242 @smallexample
1243 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1244 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1245 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1246 @end smallexample
1247
1248 @item --version
1249 @opindex version
1250 Display the version number and copyrights of the invoked GCC@.
1251
1252 @include @value{srcdir}/../libiberty/at-file.texi
1253 @end table
1254
1255 @node Invoking G++
1256 @section Compiling C++ Programs
1257
1258 @cindex suffixes for C++ source
1259 @cindex C++ source file suffixes
1260 C++ source files conventionally use one of the suffixes @samp{.C},
1261 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1262 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1263 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1264 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1265 files with these names and compiles them as C++ programs even if you
1266 call the compiler the same way as for compiling C programs (usually
1267 with the name @command{gcc}).
1268
1269 @findex g++
1270 @findex c++
1271 However, the use of @command{gcc} does not add the C++ library.
1272 @command{g++} is a program that calls GCC and treats @samp{.c},
1273 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1274 files unless @option{-x} is used, and automatically specifies linking
1275 against the C++ library.  This program is also useful when
1276 precompiling a C header file with a @samp{.h} extension for use in C++
1277 compilations.  On many systems, @command{g++} is also installed with
1278 the name @command{c++}.
1279
1280 @cindex invoking @command{g++}
1281 When you compile C++ programs, you may specify many of the same
1282 command-line options that you use for compiling programs in any
1283 language; or command-line options meaningful for C and related
1284 languages; or options that are meaningful only for C++ programs.
1285 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1286 explanations of options for languages related to C@.
1287 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1288 explanations of options that are meaningful only for C++ programs.
1289
1290 @node C Dialect Options
1291 @section Options Controlling C Dialect
1292 @cindex dialect options
1293 @cindex language dialect options
1294 @cindex options, dialect
1295
1296 The following options control the dialect of C (or languages derived
1297 from C, such as C++, Objective-C and Objective-C++) that the compiler
1298 accepts:
1299
1300 @table @gcctabopt
1301 @cindex ANSI support
1302 @cindex ISO support
1303 @item -ansi
1304 @opindex ansi
1305 In C mode, support all ISO C90 programs.  In C++ mode,
1306 remove GNU extensions that conflict with ISO C++.
1307
1308 This turns off certain features of GCC that are incompatible with ISO
1309 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1310 such as the @code{asm} and @code{typeof} keywords, and
1311 predefined macros such as @code{unix} and @code{vax} that identify the
1312 type of system you are using.  It also enables the undesirable and
1313 rarely used ISO trigraph feature.  For the C compiler,
1314 it disables recognition of C++ style @samp{//} comments as well as
1315 the @code{inline} keyword.
1316
1317 The alternate keywords @code{__asm__}, @code{__extension__},
1318 @code{__inline__} and @code{__typeof__} continue to work despite
1319 @option{-ansi}.  You would not want to use them in an ISO C program, of
1320 course, but it is useful to put them in header files that might be included
1321 in compilations done with @option{-ansi}.  Alternate predefined macros
1322 such as @code{__unix__} and @code{__vax__} are also available, with or
1323 without @option{-ansi}.
1324
1325 The @option{-ansi} option does not cause non-ISO programs to be
1326 rejected gratuitously.  For that, @option{-pedantic} is required in
1327 addition to @option{-ansi}.  @xref{Warning Options}.
1328
1329 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1330 option is used.  Some header files may notice this macro and refrain
1331 from declaring certain functions or defining certain macros that the
1332 ISO standard doesn't call for; this is to avoid interfering with any
1333 programs that might use these names for other things.
1334
1335 Functions which would normally be built in but do not have semantics
1336 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1337 functions with @option{-ansi} is used.  @xref{Other Builtins,,Other
1338 built-in functions provided by GCC}, for details of the functions
1339 affected.
1340
1341 @item -std=
1342 @opindex std
1343 Determine the language standard.  This option is currently only
1344 supported when compiling C or C++.  A value for this option must be
1345 provided; possible values are
1346
1347 @table @samp
1348 @item c89
1349 @itemx iso9899:1990
1350 ISO C90 (same as @option{-ansi}).
1351
1352 @item iso9899:199409
1353 ISO C90 as modified in amendment 1.
1354
1355 @item c99
1356 @itemx c9x
1357 @itemx iso9899:1999
1358 @itemx iso9899:199x
1359 ISO C99.  Note that this standard is not yet fully supported; see
1360 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1361 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1362
1363 @item gnu89
1364 Default, ISO C90 plus GNU extensions (including some C99 features).
1365
1366 @item gnu99
1367 @itemx gnu9x
1368 ISO C99 plus GNU extensions.  When ISO C99 is fully implemented in GCC,
1369 this will become the default.  The name @samp{gnu9x} is deprecated.
1370
1371 @item c++98
1372 The 1998 ISO C++ standard plus amendments.
1373
1374 @item gnu++98
1375 The same as @option{-std=c++98} plus GNU extensions.  This is the
1376 default for C++ code.
1377
1378 @item c++0x
1379 The working draft of the upcoming ISO C++0x standard. This option
1380 enables experimental features that are likely to be included in
1381 C++0x. The working draft is constantly changing, and any feature that is
1382 enabled by this flag may be removed from future versions of GCC if it is
1383 not part of the C++0x standard.
1384
1385 @item gnu++0x
1386 The same as @option{-std=c++0x} plus GNU extensions. As with
1387 @option{-std=c++0x}, this option enables experimental features that may
1388 be removed in future versions of GCC.
1389 @end table
1390
1391 Even when this option is not specified, you can still use some of the
1392 features of newer standards in so far as they do not conflict with
1393 previous C standards.  For example, you may use @code{__restrict__} even
1394 when @option{-std=c99} is not specified.
1395
1396 The @option{-std} options specifying some version of ISO C have the same
1397 effects as @option{-ansi}, except that features that were not in ISO C90
1398 but are in the specified version (for example, @samp{//} comments and
1399 the @code{inline} keyword in ISO C99) are not disabled.
1400
1401 @xref{Standards,,Language Standards Supported by GCC}, for details of
1402 these standard versions.
1403
1404 @item -fgnu89-inline
1405 @opindex fgnu89-inline
1406 The option @option{-fgnu89-inline} tells GCC to use the traditional
1407 GNU semantics for @code{inline} functions when in C99 mode.
1408 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1409 is accepted and ignored by GCC versions 4.1.3 up to but not including
1410 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1411 C99 mode.  Using this option is roughly equivalent to adding the
1412 @code{gnu_inline} function attribute to all inline functions
1413 (@pxref{Function Attributes}).
1414
1415 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1416 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1417 specifies the default behavior).  This option was first supported in
1418 GCC 4.3.  This option is not supported in C89 or gnu89 mode.
1419
1420 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1421 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1422 in effect for @code{inline} functions.  @xref{Common Predefined
1423 Macros,,,cpp,The C Preprocessor}.
1424
1425 @item -aux-info @var{filename}
1426 @opindex aux-info
1427 Output to the given filename prototyped declarations for all functions
1428 declared and/or defined in a translation unit, including those in header
1429 files.  This option is silently ignored in any language other than C@.
1430
1431 Besides declarations, the file indicates, in comments, the origin of
1432 each declaration (source file and line), whether the declaration was
1433 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1434 @samp{O} for old, respectively, in the first character after the line
1435 number and the colon), and whether it came from a declaration or a
1436 definition (@samp{C} or @samp{F}, respectively, in the following
1437 character).  In the case of function definitions, a K&R-style list of
1438 arguments followed by their declarations is also provided, inside
1439 comments, after the declaration.
1440
1441 @item -fno-asm
1442 @opindex fno-asm
1443 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1444 keyword, so that code can use these words as identifiers.  You can use
1445 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1446 instead.  @option{-ansi} implies @option{-fno-asm}.
1447
1448 In C++, this switch only affects the @code{typeof} keyword, since
1449 @code{asm} and @code{inline} are standard keywords.  You may want to
1450 use the @option{-fno-gnu-keywords} flag instead, which has the same
1451 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1452 switch only affects the @code{asm} and @code{typeof} keywords, since
1453 @code{inline} is a standard keyword in ISO C99.
1454
1455 @item -fno-builtin
1456 @itemx -fno-builtin-@var{function}
1457 @opindex fno-builtin
1458 @cindex built-in functions
1459 Don't recognize built-in functions that do not begin with
1460 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1461 functions provided by GCC}, for details of the functions affected,
1462 including those which are not built-in functions when @option{-ansi} or
1463 @option{-std} options for strict ISO C conformance are used because they
1464 do not have an ISO standard meaning.
1465
1466 GCC normally generates special code to handle certain built-in functions
1467 more efficiently; for instance, calls to @code{alloca} may become single
1468 instructions that adjust the stack directly, and calls to @code{memcpy}
1469 may become inline copy loops.  The resulting code is often both smaller
1470 and faster, but since the function calls no longer appear as such, you
1471 cannot set a breakpoint on those calls, nor can you change the behavior
1472 of the functions by linking with a different library.  In addition,
1473 when a function is recognized as a built-in function, GCC may use
1474 information about that function to warn about problems with calls to
1475 that function, or to generate more efficient code, even if the
1476 resulting code still contains calls to that function.  For example,
1477 warnings are given with @option{-Wformat} for bad calls to
1478 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1479 known not to modify global memory.
1480
1481 With the @option{-fno-builtin-@var{function}} option
1482 only the built-in function @var{function} is
1483 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1484 function is named this is not built-in in this version of GCC, this
1485 option is ignored.  There is no corresponding
1486 @option{-fbuiltin-@var{function}} option; if you wish to enable
1487 built-in functions selectively when using @option{-fno-builtin} or
1488 @option{-ffreestanding}, you may define macros such as:
1489
1490 @smallexample
1491 #define abs(n)          __builtin_abs ((n))
1492 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1493 @end smallexample
1494
1495 @item -fhosted
1496 @opindex fhosted
1497 @cindex hosted environment
1498
1499 Assert that compilation takes place in a hosted environment.  This implies
1500 @option{-fbuiltin}.  A hosted environment is one in which the
1501 entire standard library is available, and in which @code{main} has a return
1502 type of @code{int}.  Examples are nearly everything except a kernel.
1503 This is equivalent to @option{-fno-freestanding}.
1504
1505 @item -ffreestanding
1506 @opindex ffreestanding
1507 @cindex hosted environment
1508
1509 Assert that compilation takes place in a freestanding environment.  This
1510 implies @option{-fno-builtin}.  A freestanding environment
1511 is one in which the standard library may not exist, and program startup may
1512 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1513 This is equivalent to @option{-fno-hosted}.
1514
1515 @xref{Standards,,Language Standards Supported by GCC}, for details of
1516 freestanding and hosted environments.
1517
1518 @item -fopenmp
1519 @opindex fopenmp
1520 @cindex openmp parallel
1521 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1522 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1523 compiler generates parallel code according to the OpenMP Application
1524 Program Interface v2.5 @w{@uref{http://www.openmp.org/}}.
1525
1526 @item -fms-extensions
1527 @opindex fms-extensions
1528 Accept some non-standard constructs used in Microsoft header files.
1529
1530 Some cases of unnamed fields in structures and unions are only
1531 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1532 fields within structs/unions}, for details.
1533
1534 @item -trigraphs
1535 @opindex trigraphs
1536 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1537 options for strict ISO C conformance) implies @option{-trigraphs}.
1538
1539 @item -no-integrated-cpp
1540 @opindex no-integrated-cpp
1541 Performs a compilation in two passes: preprocessing and compiling.  This
1542 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1543 @option{-B} option.  The user supplied compilation step can then add in
1544 an additional preprocessing step after normal preprocessing but before
1545 compiling.  The default is to use the integrated cpp (internal cpp)
1546
1547 The semantics of this option will change if "cc1", "cc1plus", and
1548 "cc1obj" are merged.
1549
1550 @cindex traditional C language
1551 @cindex C language, traditional
1552 @item -traditional
1553 @itemx -traditional-cpp
1554 @opindex traditional-cpp
1555 @opindex traditional
1556 Formerly, these options caused GCC to attempt to emulate a pre-standard
1557 C compiler.  They are now only supported with the @option{-E} switch.
1558 The preprocessor continues to support a pre-standard mode.  See the GNU
1559 CPP manual for details.
1560
1561 @item -fcond-mismatch
1562 @opindex fcond-mismatch
1563 Allow conditional expressions with mismatched types in the second and
1564 third arguments.  The value of such an expression is void.  This option
1565 is not supported for C++.
1566
1567 @item -flax-vector-conversions
1568 @opindex flax-vector-conversions
1569 Allow implicit conversions between vectors with differing numbers of
1570 elements and/or incompatible element types.  This option should not be
1571 used for new code.
1572
1573 @item -funsigned-char
1574 @opindex funsigned-char
1575 Let the type @code{char} be unsigned, like @code{unsigned char}.
1576
1577 Each kind of machine has a default for what @code{char} should
1578 be.  It is either like @code{unsigned char} by default or like
1579 @code{signed char} by default.
1580
1581 Ideally, a portable program should always use @code{signed char} or
1582 @code{unsigned char} when it depends on the signedness of an object.
1583 But many programs have been written to use plain @code{char} and
1584 expect it to be signed, or expect it to be unsigned, depending on the
1585 machines they were written for.  This option, and its inverse, let you
1586 make such a program work with the opposite default.
1587
1588 The type @code{char} is always a distinct type from each of
1589 @code{signed char} or @code{unsigned char}, even though its behavior
1590 is always just like one of those two.
1591
1592 @item -fsigned-char
1593 @opindex fsigned-char
1594 Let the type @code{char} be signed, like @code{signed char}.
1595
1596 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1597 the negative form of @option{-funsigned-char}.  Likewise, the option
1598 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1599
1600 @item -fsigned-bitfields
1601 @itemx -funsigned-bitfields
1602 @itemx -fno-signed-bitfields
1603 @itemx -fno-unsigned-bitfields
1604 @opindex fsigned-bitfields
1605 @opindex funsigned-bitfields
1606 @opindex fno-signed-bitfields
1607 @opindex fno-unsigned-bitfields
1608 These options control whether a bit-field is signed or unsigned, when the
1609 declaration does not use either @code{signed} or @code{unsigned}.  By
1610 default, such a bit-field is signed, because this is consistent: the
1611 basic integer types such as @code{int} are signed types.
1612 @end table
1613
1614 @node C++ Dialect Options
1615 @section Options Controlling C++ Dialect
1616
1617 @cindex compiler options, C++
1618 @cindex C++ options, command line
1619 @cindex options, C++
1620 This section describes the command-line options that are only meaningful
1621 for C++ programs; but you can also use most of the GNU compiler options
1622 regardless of what language your program is in.  For example, you
1623 might compile a file @code{firstClass.C} like this:
1624
1625 @smallexample
1626 g++ -g -frepo -O -c firstClass.C
1627 @end smallexample
1628
1629 @noindent
1630 In this example, only @option{-frepo} is an option meant
1631 only for C++ programs; you can use the other options with any
1632 language supported by GCC@.
1633
1634 Here is a list of options that are @emph{only} for compiling C++ programs:
1635
1636 @table @gcctabopt
1637
1638 @item -fabi-version=@var{n}
1639 @opindex fabi-version
1640 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1641 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1642 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1643 the version that conforms most closely to the C++ ABI specification.
1644 Therefore, the ABI obtained using version 0 will change as ABI bugs
1645 are fixed.
1646
1647 The default is version 2.
1648
1649 @item -fno-access-control
1650 @opindex fno-access-control
1651 Turn off all access checking.  This switch is mainly useful for working
1652 around bugs in the access control code.
1653
1654 @item -fcheck-new
1655 @opindex fcheck-new
1656 Check that the pointer returned by @code{operator new} is non-null
1657 before attempting to modify the storage allocated.  This check is
1658 normally unnecessary because the C++ standard specifies that
1659 @code{operator new} will only return @code{0} if it is declared
1660 @samp{throw()}, in which case the compiler will always check the
1661 return value even without this option.  In all other cases, when
1662 @code{operator new} has a non-empty exception specification, memory
1663 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1664 @samp{new (nothrow)}.
1665
1666 @item -fconserve-space
1667 @opindex fconserve-space
1668 Put uninitialized or runtime-initialized global variables into the
1669 common segment, as C does.  This saves space in the executable at the
1670 cost of not diagnosing duplicate definitions.  If you compile with this
1671 flag and your program mysteriously crashes after @code{main()} has
1672 completed, you may have an object that is being destroyed twice because
1673 two definitions were merged.
1674
1675 This option is no longer useful on most targets, now that support has
1676 been added for putting variables into BSS without making them common.
1677
1678 @item -ffriend-injection
1679 @opindex ffriend-injection
1680 Inject friend functions into the enclosing namespace, so that they are
1681 visible outside the scope of the class in which they are declared.
1682 Friend functions were documented to work this way in the old Annotated
1683 C++ Reference Manual, and versions of G++ before 4.1 always worked
1684 that way.  However, in ISO C++ a friend function which is not declared
1685 in an enclosing scope can only be found using argument dependent
1686 lookup.  This option causes friends to be injected as they were in
1687 earlier releases.
1688
1689 This option is for compatibility, and may be removed in a future
1690 release of G++.
1691
1692 @item -fno-elide-constructors
1693 @opindex fno-elide-constructors
1694 The C++ standard allows an implementation to omit creating a temporary
1695 which is only used to initialize another object of the same type.
1696 Specifying this option disables that optimization, and forces G++ to
1697 call the copy constructor in all cases.
1698
1699 @item -fno-enforce-eh-specs
1700 @opindex fno-enforce-eh-specs
1701 Don't generate code to check for violation of exception specifications
1702 at runtime.  This option violates the C++ standard, but may be useful
1703 for reducing code size in production builds, much like defining
1704 @samp{NDEBUG}.  This does not give user code permission to throw
1705 exceptions in violation of the exception specifications; the compiler
1706 will still optimize based on the specifications, so throwing an
1707 unexpected exception will result in undefined behavior.
1708
1709 @item -ffor-scope
1710 @itemx -fno-for-scope
1711 @opindex ffor-scope
1712 @opindex fno-for-scope
1713 If @option{-ffor-scope} is specified, the scope of variables declared in
1714 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1715 as specified by the C++ standard.
1716 If @option{-fno-for-scope} is specified, the scope of variables declared in
1717 a @i{for-init-statement} extends to the end of the enclosing scope,
1718 as was the case in old versions of G++, and other (traditional)
1719 implementations of C++.
1720
1721 The default if neither flag is given to follow the standard,
1722 but to allow and give a warning for old-style code that would
1723 otherwise be invalid, or have different behavior.
1724
1725 @item -fno-gnu-keywords
1726 @opindex fno-gnu-keywords
1727 Do not recognize @code{typeof} as a keyword, so that code can use this
1728 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1729 @option{-ansi} implies @option{-fno-gnu-keywords}.
1730
1731 @item -fno-implicit-templates
1732 @opindex fno-implicit-templates
1733 Never emit code for non-inline templates which are instantiated
1734 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1735 @xref{Template Instantiation}, for more information.
1736
1737 @item -fno-implicit-inline-templates
1738 @opindex fno-implicit-inline-templates
1739 Don't emit code for implicit instantiations of inline templates, either.
1740 The default is to handle inlines differently so that compiles with and
1741 without optimization will need the same set of explicit instantiations.
1742
1743 @item -fno-implement-inlines
1744 @opindex fno-implement-inlines
1745 To save space, do not emit out-of-line copies of inline functions
1746 controlled by @samp{#pragma implementation}.  This will cause linker
1747 errors if these functions are not inlined everywhere they are called.
1748
1749 @item -fms-extensions
1750 @opindex fms-extensions
1751 Disable pedantic warnings about constructs used in MFC, such as implicit
1752 int and getting a pointer to member function via non-standard syntax.
1753
1754 @item -fno-nonansi-builtins
1755 @opindex fno-nonansi-builtins
1756 Disable built-in declarations of functions that are not mandated by
1757 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1758 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1759
1760 @item -fno-operator-names
1761 @opindex fno-operator-names
1762 Do not treat the operator name keywords @code{and}, @code{bitand},
1763 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1764 synonyms as keywords.
1765
1766 @item -fno-optional-diags
1767 @opindex fno-optional-diags
1768 Disable diagnostics that the standard says a compiler does not need to
1769 issue.  Currently, the only such diagnostic issued by G++ is the one for
1770 a name having multiple meanings within a class.
1771
1772 @item -fpermissive
1773 @opindex fpermissive
1774 Downgrade some diagnostics about nonconformant code from errors to
1775 warnings.  Thus, using @option{-fpermissive} will allow some
1776 nonconforming code to compile.
1777
1778 @item -frepo
1779 @opindex frepo
1780 Enable automatic template instantiation at link time.  This option also
1781 implies @option{-fno-implicit-templates}.  @xref{Template
1782 Instantiation}, for more information.
1783
1784 @item -fno-rtti
1785 @opindex fno-rtti
1786 Disable generation of information about every class with virtual
1787 functions for use by the C++ runtime type identification features
1788 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1789 of the language, you can save some space by using this flag.  Note that
1790 exception handling uses the same information, but it will generate it as
1791 needed. The @samp{dynamic_cast} operator can still be used for casts that
1792 do not require runtime type information, i.e. casts to @code{void *} or to
1793 unambiguous base classes.
1794
1795 @item -fstats
1796 @opindex fstats
1797 Emit statistics about front-end processing at the end of the compilation.
1798 This information is generally only useful to the G++ development team.
1799
1800 @item -ftemplate-depth-@var{n}
1801 @opindex ftemplate-depth
1802 Set the maximum instantiation depth for template classes to @var{n}.
1803 A limit on the template instantiation depth is needed to detect
1804 endless recursions during template class instantiation.  ANSI/ISO C++
1805 conforming programs must not rely on a maximum depth greater than 17.
1806
1807 @item -fno-threadsafe-statics
1808 @opindex fno-threadsafe-statics
1809 Do not emit the extra code to use the routines specified in the C++
1810 ABI for thread-safe initialization of local statics.  You can use this
1811 option to reduce code size slightly in code that doesn't need to be
1812 thread-safe.
1813
1814 @item -fuse-cxa-atexit
1815 @opindex fuse-cxa-atexit
1816 Register destructors for objects with static storage duration with the
1817 @code{__cxa_atexit} function rather than the @code{atexit} function.
1818 This option is required for fully standards-compliant handling of static
1819 destructors, but will only work if your C library supports
1820 @code{__cxa_atexit}.
1821
1822 @item -fno-use-cxa-get-exception-ptr
1823 @opindex fno-use-cxa-get-exception-ptr
1824 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1825 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1826 if the runtime routine is not available.
1827
1828 @item -fvisibility-inlines-hidden
1829 @opindex fvisibility-inlines-hidden
1830 This switch declares that the user does not attempt to compare
1831 pointers to inline methods where the addresses of the two functions
1832 were taken in different shared objects.
1833
1834 The effect of this is that GCC may, effectively, mark inline methods with
1835 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1836 appear in the export table of a DSO and do not require a PLT indirection
1837 when used within the DSO@.  Enabling this option can have a dramatic effect
1838 on load and link times of a DSO as it massively reduces the size of the
1839 dynamic export table when the library makes heavy use of templates.
1840
1841 The behavior of this switch is not quite the same as marking the
1842 methods as hidden directly, because it does not affect static variables
1843 local to the function or cause the compiler to deduce that
1844 the function is defined in only one shared object.
1845
1846 You may mark a method as having a visibility explicitly to negate the
1847 effect of the switch for that method.  For example, if you do want to
1848 compare pointers to a particular inline method, you might mark it as
1849 having default visibility.  Marking the enclosing class with explicit
1850 visibility will have no effect.
1851
1852 Explicitly instantiated inline methods are unaffected by this option
1853 as their linkage might otherwise cross a shared library boundary.
1854 @xref{Template Instantiation}.
1855
1856 @item -fvisibility-ms-compat
1857 @opindex fvisibility-ms-compat
1858 This flag attempts to use visibility settings to make GCC's C++
1859 linkage model compatible with that of Microsoft Visual Studio.
1860
1861 The flag makes these changes to GCC's linkage model:
1862
1863 @enumerate
1864 @item
1865 It sets the default visibility to @code{hidden}, like
1866 @option{-fvisibility=hidden}.
1867
1868 @item
1869 Types, but not their members, are not hidden by default.
1870
1871 @item
1872 The One Definition Rule is relaxed for types without explicit
1873 visibility specifications which are defined in more than one different
1874 shared object: those declarations are permitted if they would have
1875 been permitted when this option was not used.
1876 @end enumerate
1877
1878 In new code it is better to use @option{-fvisibility=hidden} and
1879 export those classes which are intended to be externally visible.
1880 Unfortunately it is possible for code to rely, perhaps accidentally,
1881 on the Visual Studio behavior.
1882
1883 Among the consequences of these changes are that static data members
1884 of the same type with the same name but defined in different shared
1885 objects will be different, so changing one will not change the other;
1886 and that pointers to function members defined in different shared
1887 objects may not compare equal.  When this flag is given, it is a
1888 violation of the ODR to define types with the same name differently.
1889
1890 @item -fno-weak
1891 @opindex fno-weak
1892 Do not use weak symbol support, even if it is provided by the linker.
1893 By default, G++ will use weak symbols if they are available.  This
1894 option exists only for testing, and should not be used by end-users;
1895 it will result in inferior code and has no benefits.  This option may
1896 be removed in a future release of G++.
1897
1898 @item -nostdinc++
1899 @opindex nostdinc++
1900 Do not search for header files in the standard directories specific to
1901 C++, but do still search the other standard directories.  (This option
1902 is used when building the C++ library.)
1903 @end table
1904
1905 In addition, these optimization, warning, and code generation options
1906 have meanings only for C++ programs:
1907
1908 @table @gcctabopt
1909 @item -fno-default-inline
1910 @opindex fno-default-inline
1911 Do not assume @samp{inline} for functions defined inside a class scope.
1912 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1913 functions will have linkage like inline functions; they just won't be
1914 inlined by default.
1915
1916 @item -Wabi @r{(C++ only)}
1917 @opindex Wabi
1918 Warn when G++ generates code that is probably not compatible with the
1919 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
1920 all such cases, there are probably some cases that are not warned about,
1921 even though G++ is generating incompatible code.  There may also be
1922 cases where warnings are emitted even though the code that is generated
1923 will be compatible.
1924
1925 You should rewrite your code to avoid these warnings if you are
1926 concerned about the fact that code generated by G++ may not be binary
1927 compatible with code generated by other compilers.
1928
1929 The known incompatibilities at this point include:
1930
1931 @itemize @bullet
1932
1933 @item
1934 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
1935 pack data into the same byte as a base class.  For example:
1936
1937 @smallexample
1938 struct A @{ virtual void f(); int f1 : 1; @};
1939 struct B : public A @{ int f2 : 1; @};
1940 @end smallexample
1941
1942 @noindent
1943 In this case, G++ will place @code{B::f2} into the same byte
1944 as@code{A::f1}; other compilers will not.  You can avoid this problem
1945 by explicitly padding @code{A} so that its size is a multiple of the
1946 byte size on your platform; that will cause G++ and other compilers to
1947 layout @code{B} identically.
1948
1949 @item
1950 Incorrect handling of tail-padding for virtual bases.  G++ does not use
1951 tail padding when laying out virtual bases.  For example:
1952
1953 @smallexample
1954 struct A @{ virtual void f(); char c1; @};
1955 struct B @{ B(); char c2; @};
1956 struct C : public A, public virtual B @{@};
1957 @end smallexample
1958
1959 @noindent
1960 In this case, G++ will not place @code{B} into the tail-padding for
1961 @code{A}; other compilers will.  You can avoid this problem by
1962 explicitly padding @code{A} so that its size is a multiple of its
1963 alignment (ignoring virtual base classes); that will cause G++ and other
1964 compilers to layout @code{C} identically.
1965
1966 @item
1967 Incorrect handling of bit-fields with declared widths greater than that
1968 of their underlying types, when the bit-fields appear in a union.  For
1969 example:
1970
1971 @smallexample
1972 union U @{ int i : 4096; @};
1973 @end smallexample
1974
1975 @noindent
1976 Assuming that an @code{int} does not have 4096 bits, G++ will make the
1977 union too small by the number of bits in an @code{int}.
1978
1979 @item
1980 Empty classes can be placed at incorrect offsets.  For example:
1981
1982 @smallexample
1983 struct A @{@};
1984
1985 struct B @{
1986   A a;
1987   virtual void f ();
1988 @};
1989
1990 struct C : public B, public A @{@};
1991 @end smallexample
1992
1993 @noindent
1994 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
1995 it should be placed at offset zero.  G++ mistakenly believes that the
1996 @code{A} data member of @code{B} is already at offset zero.
1997
1998 @item
1999 Names of template functions whose types involve @code{typename} or
2000 template template parameters can be mangled incorrectly.
2001
2002 @smallexample
2003 template <typename Q>
2004 void f(typename Q::X) @{@}
2005
2006 template <template <typename> class Q>
2007 void f(typename Q<int>::X) @{@}
2008 @end smallexample
2009
2010 @noindent
2011 Instantiations of these templates may be mangled incorrectly.
2012
2013 @end itemize
2014
2015 @item -Wctor-dtor-privacy @r{(C++ only)}
2016 @opindex Wctor-dtor-privacy
2017 Warn when a class seems unusable because all the constructors or
2018 destructors in that class are private, and it has neither friends nor
2019 public static member functions.
2020
2021 @item -Wnon-virtual-dtor @r{(C++ only)}
2022 @opindex Wnon-virtual-dtor
2023 Warn when a class has virtual functions and accessible non-virtual
2024 destructor, in which case it would be possible but unsafe to delete
2025 an instance of a derived class through a pointer to the base class.
2026 This warning is also enabled if -Weffc++ is specified.
2027
2028 @item -Wreorder @r{(C++ only)}
2029 @opindex Wreorder
2030 @cindex reordering, warning
2031 @cindex warning for reordering of member initializers
2032 Warn when the order of member initializers given in the code does not
2033 match the order in which they must be executed.  For instance:
2034
2035 @smallexample
2036 struct A @{
2037   int i;
2038   int j;
2039   A(): j (0), i (1) @{ @}
2040 @};
2041 @end smallexample
2042
2043 The compiler will rearrange the member initializers for @samp{i}
2044 and @samp{j} to match the declaration order of the members, emitting
2045 a warning to that effect.  This warning is enabled by @option{-Wall}.
2046 @end table
2047
2048 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2049
2050 @table @gcctabopt
2051 @item -Weffc++ @r{(C++ only)}
2052 @opindex Weffc++
2053 Warn about violations of the following style guidelines from Scott Meyers'
2054 @cite{Effective C++} book:
2055
2056 @itemize @bullet
2057 @item
2058 Item 11:  Define a copy constructor and an assignment operator for classes
2059 with dynamically allocated memory.
2060
2061 @item
2062 Item 12:  Prefer initialization to assignment in constructors.
2063
2064 @item
2065 Item 14:  Make destructors virtual in base classes.
2066
2067 @item
2068 Item 15:  Have @code{operator=} return a reference to @code{*this}.
2069
2070 @item
2071 Item 23:  Don't try to return a reference when you must return an object.
2072
2073 @end itemize
2074
2075 Also warn about violations of the following style guidelines from
2076 Scott Meyers' @cite{More Effective C++} book:
2077
2078 @itemize @bullet
2079 @item
2080 Item 6:  Distinguish between prefix and postfix forms of increment and
2081 decrement operators.
2082
2083 @item
2084 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
2085
2086 @end itemize
2087
2088 When selecting this option, be aware that the standard library
2089 headers do not obey all of these guidelines; use @samp{grep -v}
2090 to filter out those warnings.
2091
2092 @item -Wno-deprecated @r{(C++ only)}
2093 @opindex Wno-deprecated
2094 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
2095
2096 @item -Wstrict-null-sentinel @r{(C++ only)}
2097 @opindex Wstrict-null-sentinel
2098 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
2099 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2100 to @code{__null}.  Although it is a null pointer constant not a null pointer,
2101 it is guaranteed to of the same size as a pointer.  But this use is
2102 not portable across different compilers.
2103
2104 @item -Wno-non-template-friend @r{(C++ only)}
2105 @opindex Wno-non-template-friend
2106 Disable warnings when non-templatized friend functions are declared
2107 within a template.  Since the advent of explicit template specification
2108 support in G++, if the name of the friend is an unqualified-id (i.e.,
2109 @samp{friend foo(int)}), the C++ language specification demands that the
2110 friend declare or define an ordinary, nontemplate function.  (Section
2111 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2112 could be interpreted as a particular specialization of a templatized
2113 function.  Because this non-conforming behavior is no longer the default
2114 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2115 check existing code for potential trouble spots and is on by default.
2116 This new compiler behavior can be turned off with
2117 @option{-Wno-non-template-friend} which keeps the conformant compiler code
2118 but disables the helpful warning.
2119
2120 @item -Wold-style-cast @r{(C++ only)}
2121 @opindex Wold-style-cast
2122 Warn if an old-style (C-style) cast to a non-void type is used within
2123 a C++ program.  The new-style casts (@samp{dynamic_cast},
2124 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2125 less vulnerable to unintended effects and much easier to search for.
2126
2127 @item -Woverloaded-virtual @r{(C++ only)}
2128 @opindex Woverloaded-virtual
2129 @cindex overloaded virtual fn, warning
2130 @cindex warning for overloaded virtual fn
2131 Warn when a function declaration hides virtual functions from a
2132 base class.  For example, in:
2133
2134 @smallexample
2135 struct A @{
2136   virtual void f();
2137 @};
2138
2139 struct B: public A @{
2140   void f(int);
2141 @};
2142 @end smallexample
2143
2144 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2145 like:
2146
2147 @smallexample
2148 B* b;
2149 b->f();
2150 @end smallexample
2151
2152 will fail to compile.
2153
2154 @item -Wno-pmf-conversions @r{(C++ only)}
2155 @opindex Wno-pmf-conversions
2156 Disable the diagnostic for converting a bound pointer to member function
2157 to a plain pointer.
2158
2159 @item -Wsign-promo @r{(C++ only)}
2160 @opindex Wsign-promo
2161 Warn when overload resolution chooses a promotion from unsigned or
2162 enumerated type to a signed type, over a conversion to an unsigned type of
2163 the same size.  Previous versions of G++ would try to preserve
2164 unsignedness, but the standard mandates the current behavior.
2165
2166 @smallexample
2167 struct A @{
2168   operator int ();
2169   A& operator = (int);
2170 @};
2171
2172 main ()
2173 @{
2174   A a,b;
2175   a = b;
2176 @}
2177 @end smallexample
2178
2179 In this example, G++ will synthesize a default @samp{A& operator =
2180 (const A&);}, while cfront will use the user-defined @samp{operator =}.
2181 @end table
2182
2183 @node Objective-C and Objective-C++ Dialect Options
2184 @section Options Controlling Objective-C and Objective-C++ Dialects
2185
2186 @cindex compiler options, Objective-C and Objective-C++
2187 @cindex Objective-C and Objective-C++ options, command line
2188 @cindex options, Objective-C and Objective-C++
2189 (NOTE: This manual does not describe the Objective-C and Objective-C++
2190 languages themselves.  See @xref{Standards,,Language Standards
2191 Supported by GCC}, for references.)
2192
2193 This section describes the command-line options that are only meaningful
2194 for Objective-C and Objective-C++ programs, but you can also use most of
2195 the language-independent GNU compiler options.
2196 For example, you might compile a file @code{some_class.m} like this:
2197
2198 @smallexample
2199 gcc -g -fgnu-runtime -O -c some_class.m
2200 @end smallexample
2201
2202 @noindent
2203 In this example, @option{-fgnu-runtime} is an option meant only for
2204 Objective-C and Objective-C++ programs; you can use the other options with
2205 any language supported by GCC@.
2206
2207 Note that since Objective-C is an extension of the C language, Objective-C
2208 compilations may also use options specific to the C front-end (e.g.,
2209 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2210 C++-specific options (e.g., @option{-Wabi}).
2211
2212 Here is a list of options that are @emph{only} for compiling Objective-C
2213 and Objective-C++ programs:
2214
2215 @table @gcctabopt
2216 @item -fconstant-string-class=@var{class-name}
2217 @opindex fconstant-string-class
2218 Use @var{class-name} as the name of the class to instantiate for each
2219 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2220 class name is @code{NXConstantString} if the GNU runtime is being used, and
2221 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2222 @option{-fconstant-cfstrings} option, if also present, will override the
2223 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2224 to be laid out as constant CoreFoundation strings.
2225
2226 @item -fgnu-runtime
2227 @opindex fgnu-runtime
2228 Generate object code compatible with the standard GNU Objective-C
2229 runtime.  This is the default for most types of systems.
2230
2231 @item -fnext-runtime
2232 @opindex fnext-runtime
2233 Generate output compatible with the NeXT runtime.  This is the default
2234 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2235 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2236 used.
2237
2238 @item -fno-nil-receivers
2239 @opindex fno-nil-receivers
2240 Assume that all Objective-C message dispatches (e.g.,
2241 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2242 is not @code{nil}.  This allows for more efficient entry points in the runtime
2243 to be used.  Currently, this option is only available in conjunction with
2244 the NeXT runtime on Mac OS X 10.3 and later.
2245
2246 @item -fobjc-call-cxx-cdtors
2247 @opindex fobjc-call-cxx-cdtors
2248 For each Objective-C class, check if any of its instance variables is a
2249 C++ object with a non-trivial default constructor.  If so, synthesize a
2250 special @code{- (id) .cxx_construct} instance method that will run
2251 non-trivial default constructors on any such instance variables, in order,
2252 and then return @code{self}.  Similarly, check if any instance variable
2253 is a C++ object with a non-trivial destructor, and if so, synthesize a
2254 special @code{- (void) .cxx_destruct} method that will run
2255 all such default destructors, in reverse order.
2256
2257 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2258 thusly generated will only operate on instance variables declared in the
2259 current Objective-C class, and not those inherited from superclasses.  It
2260 is the responsibility of the Objective-C runtime to invoke all such methods
2261 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2262 will be invoked by the runtime immediately after a new object
2263 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2264 be invoked immediately before the runtime deallocates an object instance.
2265
2266 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2267 support for invoking the @code{- (id) .cxx_construct} and
2268 @code{- (void) .cxx_destruct} methods.
2269
2270 @item -fobjc-direct-dispatch
2271 @opindex fobjc-direct-dispatch
2272 Allow fast jumps to the message dispatcher.  On Darwin this is
2273 accomplished via the comm page.
2274
2275 @item -fobjc-exceptions
2276 @opindex fobjc-exceptions
2277 Enable syntactic support for structured exception handling in Objective-C,
2278 similar to what is offered by C++ and Java.  This option is
2279 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2280 earlier.
2281
2282 @smallexample
2283   @@try @{
2284     @dots{}
2285        @@throw expr;
2286     @dots{}
2287   @}
2288   @@catch (AnObjCClass *exc) @{
2289     @dots{}
2290       @@throw expr;
2291     @dots{}
2292       @@throw;
2293     @dots{}
2294   @}
2295   @@catch (AnotherClass *exc) @{
2296     @dots{}
2297   @}
2298   @@catch (id allOthers) @{
2299     @dots{}
2300   @}
2301   @@finally @{
2302     @dots{}
2303       @@throw expr;
2304     @dots{}
2305   @}
2306 @end smallexample
2307
2308 The @code{@@throw} statement may appear anywhere in an Objective-C or
2309 Objective-C++ program; when used inside of a @code{@@catch} block, the
2310 @code{@@throw} may appear without an argument (as shown above), in which case
2311 the object caught by the @code{@@catch} will be rethrown.
2312
2313 Note that only (pointers to) Objective-C objects may be thrown and
2314 caught using this scheme.  When an object is thrown, it will be caught
2315 by the nearest @code{@@catch} clause capable of handling objects of that type,
2316 analogously to how @code{catch} blocks work in C++ and Java.  A
2317 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2318 any and all Objective-C exceptions not caught by previous @code{@@catch}
2319 clauses (if any).
2320
2321 The @code{@@finally} clause, if present, will be executed upon exit from the
2322 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2323 regardless of whether any exceptions are thrown, caught or rethrown
2324 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2325 of the @code{finally} clause in Java.
2326
2327 There are several caveats to using the new exception mechanism:
2328
2329 @itemize @bullet
2330 @item
2331 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2332 idioms provided by the @code{NSException} class, the new
2333 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2334 systems, due to additional functionality needed in the (NeXT) Objective-C
2335 runtime.
2336
2337 @item
2338 As mentioned above, the new exceptions do not support handling
2339 types other than Objective-C objects.   Furthermore, when used from
2340 Objective-C++, the Objective-C exception model does not interoperate with C++
2341 exceptions at this time.  This means you cannot @code{@@throw} an exception
2342 from Objective-C and @code{catch} it in C++, or vice versa
2343 (i.e., @code{throw @dots{} @@catch}).
2344 @end itemize
2345
2346 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2347 blocks for thread-safe execution:
2348
2349 @smallexample
2350   @@synchronized (ObjCClass *guard) @{
2351     @dots{}
2352   @}
2353 @end smallexample
2354
2355 Upon entering the @code{@@synchronized} block, a thread of execution shall
2356 first check whether a lock has been placed on the corresponding @code{guard}
2357 object by another thread.  If it has, the current thread shall wait until
2358 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2359 the current thread will place its own lock on it, execute the code contained in
2360 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2361 making @code{guard} available to other threads).
2362
2363 Unlike Java, Objective-C does not allow for entire methods to be marked
2364 @code{@@synchronized}.  Note that throwing exceptions out of
2365 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2366 to be unlocked properly.
2367
2368 @item -fobjc-gc
2369 @opindex fobjc-gc
2370 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2371
2372 @item -freplace-objc-classes
2373 @opindex freplace-objc-classes
2374 Emit a special marker instructing @command{ld(1)} not to statically link in
2375 the resulting object file, and allow @command{dyld(1)} to load it in at
2376 run time instead.  This is used in conjunction with the Fix-and-Continue
2377 debugging mode, where the object file in question may be recompiled and
2378 dynamically reloaded in the course of program execution, without the need
2379 to restart the program itself.  Currently, Fix-and-Continue functionality
2380 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2381 and later.
2382
2383 @item -fzero-link
2384 @opindex fzero-link
2385 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2386 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2387 compile time) with static class references that get initialized at load time,
2388 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2389 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2390 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2391 for individual class implementations to be modified during program execution.
2392
2393 @item -gen-decls
2394 @opindex gen-decls
2395 Dump interface declarations for all classes seen in the source file to a
2396 file named @file{@var{sourcename}.decl}.
2397
2398 @item -Wassign-intercept
2399 @opindex Wassign-intercept
2400 Warn whenever an Objective-C assignment is being intercepted by the
2401 garbage collector.
2402
2403 @item -Wno-protocol
2404 @opindex Wno-protocol
2405 If a class is declared to implement a protocol, a warning is issued for
2406 every method in the protocol that is not implemented by the class.  The
2407 default behavior is to issue a warning for every method not explicitly
2408 implemented in the class, even if a method implementation is inherited
2409 from the superclass.  If you use the @option{-Wno-protocol} option, then
2410 methods inherited from the superclass are considered to be implemented,
2411 and no warning is issued for them.
2412
2413 @item -Wselector
2414 @opindex Wselector
2415 Warn if multiple methods of different types for the same selector are
2416 found during compilation.  The check is performed on the list of methods
2417 in the final stage of compilation.  Additionally, a check is performed
2418 for each selector appearing in a @code{@@selector(@dots{})}
2419 expression, and a corresponding method for that selector has been found
2420 during compilation.  Because these checks scan the method table only at
2421 the end of compilation, these warnings are not produced if the final
2422 stage of compilation is not reached, for example because an error is
2423 found during compilation, or because the @option{-fsyntax-only} option is
2424 being used.
2425
2426 @item -Wstrict-selector-match
2427 @opindex Wstrict-selector-match
2428 Warn if multiple methods with differing argument and/or return types are
2429 found for a given selector when attempting to send a message using this
2430 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2431 is off (which is the default behavior), the compiler will omit such warnings
2432 if any differences found are confined to types which share the same size
2433 and alignment.
2434
2435 @item -Wundeclared-selector
2436 @opindex Wundeclared-selector
2437 Warn if a @code{@@selector(@dots{})} expression referring to an
2438 undeclared selector is found.  A selector is considered undeclared if no
2439 method with that name has been declared before the
2440 @code{@@selector(@dots{})} expression, either explicitly in an
2441 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2442 an @code{@@implementation} section.  This option always performs its
2443 checks as soon as a @code{@@selector(@dots{})} expression is found,
2444 while @option{-Wselector} only performs its checks in the final stage of
2445 compilation.  This also enforces the coding style convention
2446 that methods and selectors must be declared before being used.
2447
2448 @item -print-objc-runtime-info
2449 @opindex print-objc-runtime-info
2450 Generate C header describing the largest structure that is passed by
2451 value, if any.
2452
2453 @end table
2454
2455 @node Language Independent Options
2456 @section Options to Control Diagnostic Messages Formatting
2457 @cindex options to control diagnostics formatting
2458 @cindex diagnostic messages
2459 @cindex message formatting
2460
2461 Traditionally, diagnostic messages have been formatted irrespective of
2462 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2463 below can be used to control the diagnostic messages formatting
2464 algorithm, e.g.@: how many characters per line, how often source location
2465 information should be reported.  Right now, only the C++ front end can
2466 honor these options.  However it is expected, in the near future, that
2467 the remaining front ends would be able to digest them correctly.
2468
2469 @table @gcctabopt
2470 @item -fmessage-length=@var{n}
2471 @opindex fmessage-length
2472 Try to format error messages so that they fit on lines of about @var{n}
2473 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2474 the front ends supported by GCC@.  If @var{n} is zero, then no
2475 line-wrapping will be done; each error message will appear on a single
2476 line.
2477
2478 @opindex fdiagnostics-show-location
2479 @item -fdiagnostics-show-location=once
2480 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2481 reporter to emit @emph{once} source location information; that is, in
2482 case the message is too long to fit on a single physical line and has to
2483 be wrapped, the source location won't be emitted (as prefix) again,
2484 over and over, in subsequent continuation lines.  This is the default
2485 behavior.
2486
2487 @item -fdiagnostics-show-location=every-line
2488 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2489 messages reporter to emit the same source location information (as
2490 prefix) for physical lines that result from the process of breaking
2491 a message which is too long to fit on a single line.
2492
2493 @item -fdiagnostics-show-option
2494 @opindex fdiagnostics-show-option
2495 This option instructs the diagnostic machinery to add text to each
2496 diagnostic emitted, which indicates which command line option directly
2497 controls that diagnostic, when such an option is known to the
2498 diagnostic machinery.
2499
2500 @item -Wcoverage-mismatch
2501 @opindex Wcoverage-mismatch
2502 Warn if feedback profiles do not match when using the
2503 @option{-fprofile-use} option.
2504 If a source file was changed between @option{-fprofile-gen} and
2505 @option{-fprofile-use}, the files with the profile feedback can fail
2506 to match the source file and GCC can not use the profile feedback
2507 information.  By default, GCC emits an error message in this case.
2508 The option @option{-Wcoverage-mismatch} emits a warning instead of an
2509 error.  GCC does not use appropriate feedback profiles, so using this
2510 option can result in poorly optimized code.  This option is useful
2511 only in the case of very minor changes such as bug fixes to an
2512 existing code-base.
2513
2514 @end table
2515
2516 @node Warning Options
2517 @section Options to Request or Suppress Warnings
2518 @cindex options to control warnings
2519 @cindex warning messages
2520 @cindex messages, warning
2521 @cindex suppressing warnings
2522
2523 Warnings are diagnostic messages that report constructions which
2524 are not inherently erroneous but which are risky or suggest there
2525 may have been an error.
2526
2527 The following language-independent options do not enable specific
2528 warnings but control the kinds of diagnostics produced by GCC.
2529
2530 @table @gcctabopt
2531 @cindex syntax checking
2532 @item -fsyntax-only
2533 @opindex fsyntax-only
2534 Check the code for syntax errors, but don't do anything beyond that.
2535
2536 @item -w
2537 @opindex w
2538 Inhibit all warning messages.
2539
2540 @item -Werror
2541 @opindex Werror
2542 Make all warnings into errors.
2543
2544 @item -Werror=
2545 @opindex Werror=
2546 Make the specified warning into an error.  The specifier for a warning
2547 is appended, for example @option{-Werror=switch} turns the warnings
2548 controlled by @option{-Wswitch} into errors.  This switch takes a
2549 negative form, to be used to negate @option{-Werror} for specific
2550 warnings, for example @option{-Wno-error=switch} makes
2551 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
2552 is in effect.  You can use the @option{-fdiagnostics-show-option}
2553 option to have each controllable warning amended with the option which
2554 controls it, to determine what to use with this option.
2555
2556 Note that specifying @option{-Werror=}@var{foo} automatically implies
2557 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
2558 imply anything.
2559
2560 @item -Wfatal-errors
2561 @opindex Wfatal-errors
2562 This option causes the compiler to abort compilation on the first error
2563 occurred rather than trying to keep going and printing further error
2564 messages.
2565
2566 @end table
2567
2568 You can request many specific warnings with options beginning
2569 @samp{-W}, for example @option{-Wimplicit} to request warnings on
2570 implicit declarations.  Each of these specific warning options also
2571 has a negative form beginning @samp{-Wno-} to turn off warnings; for
2572 example, @option{-Wno-implicit}.  This manual lists only one of the
2573 two forms, whichever is not the default.  For further,
2574 language-specific options also refer to @ref{C++ Dialect Options} and
2575 @ref{Objective-C and Objective-C++ Dialect Options}.
2576
2577 @table @gcctabopt
2578 @item -pedantic
2579 @opindex pedantic
2580 Issue all the warnings demanded by strict ISO C and ISO C++;
2581 reject all programs that use forbidden extensions, and some other
2582 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2583 version of the ISO C standard specified by any @option{-std} option used.
2584
2585 Valid ISO C and ISO C++ programs should compile properly with or without
2586 this option (though a rare few will require @option{-ansi} or a
2587 @option{-std} option specifying the required version of ISO C)@.  However,
2588 without this option, certain GNU extensions and traditional C and C++
2589 features are supported as well.  With this option, they are rejected.
2590
2591 @option{-pedantic} does not cause warning messages for use of the
2592 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2593 warnings are also disabled in the expression that follows
2594 @code{__extension__}.  However, only system header files should use
2595 these escape routes; application programs should avoid them.
2596 @xref{Alternate Keywords}.
2597
2598 Some users try to use @option{-pedantic} to check programs for strict ISO
2599 C conformance.  They soon find that it does not do quite what they want:
2600 it finds some non-ISO practices, but not all---only those for which
2601 ISO C @emph{requires} a diagnostic, and some others for which
2602 diagnostics have been added.
2603
2604 A feature to report any failure to conform to ISO C might be useful in
2605 some instances, but would require considerable additional work and would
2606 be quite different from @option{-pedantic}.  We don't have plans to
2607 support such a feature in the near future.
2608
2609 Where the standard specified with @option{-std} represents a GNU
2610 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2611 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2612 extended dialect is based.  Warnings from @option{-pedantic} are given
2613 where they are required by the base standard.  (It would not make sense
2614 for such warnings to be given only for features not in the specified GNU
2615 C dialect, since by definition the GNU dialects of C include all
2616 features the compiler supports with the given option, and there would be
2617 nothing to warn about.)
2618
2619 @item -pedantic-errors
2620 @opindex pedantic-errors
2621 Like @option{-pedantic}, except that errors are produced rather than
2622 warnings.
2623
2624 @item -Wall
2625 @opindex Wall
2626 This enables all the warnings about constructions that some users
2627 consider questionable, and that are easy to avoid (or modify to
2628 prevent the warning), even in conjunction with macros.  This also
2629 enables some language-specific warnings described in @ref{C++ Dialect
2630 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
2631
2632 @option{-Wall} turns on the following warning flags:
2633
2634 @gccoptlist{-Waddress   @gol
2635 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
2636 -Wc++0x-compat  @gol
2637 -Wchar-subscripts  @gol
2638 -Wimplicit-int  @gol
2639 -Wimplicit-function-declaration  @gol
2640 -Wcomment  @gol
2641 -Wformat   @gol
2642 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
2643 -Wmissing-braces  @gol
2644 -Wnonnull  @gol
2645 -Wparentheses  @gol
2646 -Wpointer-sign  @gol
2647 -Wreorder   @gol
2648 -Wreturn-type  @gol
2649 -Wsequence-point  @gol
2650 -Wsign-compare @r{(only in C++)}  @gol
2651 -Wstrict-aliasing  @gol
2652 -Wstrict-overflow  @gol
2653 -Wswitch  @gol
2654 -Wtrigraphs  @gol
2655 -Wuninitialized @r{(only with} @option{-O1} @r{and above)}  @gol
2656 -Wunknown-pragmas  @gol
2657 -Wunused-function  @gol
2658 -Wunused-label     @gol
2659 -Wunused-value     @gol
2660 -Wunused-variable  @gol
2661 }
2662
2663 Note that some warning flags are not implied by @option{-Wall}.  Some of
2664 them warn about constructions that users generally do not consider
2665 questionable, but which occasionally you might wish to check for;
2666 others warn about constructions that are necessary or hard to avoid in
2667 some cases, and there is no simple way to modify the code to suppress
2668 the warning. Some of them are enabled by @option{-Wextra} but many of
2669 them must be enabled individually.
2670
2671 @item -Wextra
2672 @opindex W
2673 @opindex Wextra
2674 This enables some extra warning flags that are not enabled by
2675 @option{-Wall}. (This option used to be called @option{-W}.  The older
2676 name is still supported, but the newer name is more descriptive.)
2677
2678 @gccoptlist{-Wclobbered  @gol
2679 -Wempty-body  @gol
2680 -Wmissing-field-initializers  @gol
2681 -Wmissing-parameter-type @r{(C only)}  @gol
2682 -Wold-style-declaration @r{(C only)}  @gol
2683 -Woverride-init  @gol
2684 -Wsign-compare  @gol
2685 -Wtype-limits  @gol
2686 -Wuninitialized @r{(only with} @option{-O1} @r{and above)}  @gol
2687 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
2688 }
2689
2690 The option @option{-Wextra} also prints warning messages for the
2691 following cases:
2692
2693 @itemize @bullet
2694
2695 @item
2696 A pointer is compared against integer zero with @samp{<}, @samp{<=},
2697 @samp{>}, or @samp{>=}.
2698
2699 @item 
2700 (C++ only) An enumerator and a non-enumerator both appear in a
2701 conditional expression.
2702
2703 @item 
2704 (C++ only) A non-static reference or non-static @samp{const} member
2705 appears in a class without constructors.
2706
2707 @item 
2708 (C++ only) Ambiguous virtual bases.
2709
2710 @item 
2711 (C++ only) Subscripting an array which has been declared @samp{register}.
2712
2713 @item 
2714 (C++ only) Taking the address of a variable which has been declared
2715 @samp{register}.
2716
2717 @item 
2718 (C++ only) A base class is not initialized in a derived class' copy
2719 constructor.
2720
2721 @end itemize
2722
2723 @item -Wno-import
2724 @opindex Wno-import
2725 Inhibit warning messages about the use of @samp{#import}.
2726
2727 @item -Wchar-subscripts
2728 @opindex Wchar-subscripts
2729 Warn if an array subscript has type @code{char}.  This is a common cause
2730 of error, as programmers often forget that this type is signed on some
2731 machines.
2732 This warning is enabled by @option{-Wall}.
2733
2734 @item -Wcomment
2735 @opindex Wcomment
2736 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2737 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2738 This warning is enabled by @option{-Wall}.
2739
2740 @item -Wformat
2741 @opindex Wformat
2742 @opindex ffreestanding
2743 @opindex fno-builtin
2744 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2745 the arguments supplied have types appropriate to the format string
2746 specified, and that the conversions specified in the format string make
2747 sense.  This includes standard functions, and others specified by format
2748 attributes (@pxref{Function Attributes}), in the @code{printf},
2749 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2750 not in the C standard) families (or other target-specific families).
2751 Which functions are checked without format attributes having been
2752 specified depends on the standard version selected, and such checks of
2753 functions without the attribute specified are disabled by
2754 @option{-ffreestanding} or @option{-fno-builtin}.
2755
2756 The formats are checked against the format features supported by GNU
2757 libc version 2.2.  These include all ISO C90 and C99 features, as well
2758 as features from the Single Unix Specification and some BSD and GNU
2759 extensions.  Other library implementations may not support all these
2760 features; GCC does not support warning about features that go beyond a
2761 particular library's limitations.  However, if @option{-pedantic} is used
2762 with @option{-Wformat}, warnings will be given about format features not
2763 in the selected standard version (but not for @code{strfmon} formats,
2764 since those are not in any version of the C standard).  @xref{C Dialect
2765 Options,,Options Controlling C Dialect}.
2766
2767 Since @option{-Wformat} also checks for null format arguments for
2768 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2769
2770 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2771 aspects of format checking, the options @option{-Wformat-y2k},
2772 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2773 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2774 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2775
2776 @item -Wformat-y2k
2777 @opindex Wformat-y2k
2778 If @option{-Wformat} is specified, also warn about @code{strftime}
2779 formats which may yield only a two-digit year.
2780
2781 @item -Wno-format-extra-args
2782 @opindex Wno-format-extra-args
2783 If @option{-Wformat} is specified, do not warn about excess arguments to a
2784 @code{printf} or @code{scanf} format function.  The C standard specifies
2785 that such arguments are ignored.
2786
2787 Where the unused arguments lie between used arguments that are
2788 specified with @samp{$} operand number specifications, normally
2789 warnings are still given, since the implementation could not know what
2790 type to pass to @code{va_arg} to skip the unused arguments.  However,
2791 in the case of @code{scanf} formats, this option will suppress the
2792 warning if the unused arguments are all pointers, since the Single
2793 Unix Specification says that such unused arguments are allowed.
2794
2795 @item -Wno-format-zero-length
2796 @opindex Wno-format-zero-length
2797 If @option{-Wformat} is specified, do not warn about zero-length formats.
2798 The C standard specifies that zero-length formats are allowed.
2799
2800 @item -Wformat-nonliteral
2801 @opindex Wformat-nonliteral
2802 If @option{-Wformat} is specified, also warn if the format string is not a
2803 string literal and so cannot be checked, unless the format function
2804 takes its format arguments as a @code{va_list}.
2805
2806 @item -Wformat-security
2807 @opindex Wformat-security
2808 If @option{-Wformat} is specified, also warn about uses of format
2809 functions that represent possible security problems.  At present, this
2810 warns about calls to @code{printf} and @code{scanf} functions where the
2811 format string is not a string literal and there are no format arguments,
2812 as in @code{printf (foo);}.  This may be a security hole if the format
2813 string came from untrusted input and contains @samp{%n}.  (This is
2814 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2815 in future warnings may be added to @option{-Wformat-security} that are not
2816 included in @option{-Wformat-nonliteral}.)
2817
2818 @item -Wformat=2
2819 @opindex Wformat=2
2820 Enable @option{-Wformat} plus format checks not included in
2821 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2822 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2823
2824 @item -Wnonnull
2825 @opindex Wnonnull
2826 Warn about passing a null pointer for arguments marked as
2827 requiring a non-null value by the @code{nonnull} function attribute.
2828
2829 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2830 can be disabled with the @option{-Wno-nonnull} option.
2831
2832 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
2833 @opindex Winit-self
2834 Warn about uninitialized variables which are initialized with themselves.
2835 Note this option can only be used with the @option{-Wuninitialized} option,
2836 which in turn only works with @option{-O1} and above.
2837
2838 For example, GCC will warn about @code{i} being uninitialized in the
2839 following snippet only when @option{-Winit-self} has been specified:
2840 @smallexample
2841 @group
2842 int f()
2843 @{
2844   int i = i;
2845   return i;
2846 @}
2847 @end group
2848 @end smallexample
2849
2850 @item -Wimplicit-int
2851 @opindex Wimplicit-int
2852 Warn when a declaration does not specify a type.
2853 This warning is enabled by @option{-Wall}.
2854
2855 @item -Wimplicit-function-declaration
2856 @opindex Wimplicit-function-declaration
2857 @opindex Wno-implicit-function-declaration
2858 Give a warning whenever a function is used before being declared. In
2859 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
2860 enabled by default and it is made into an error by
2861 @option{-pedantic-errors}. This warning is also enabled by
2862 @option{-Wall}.
2863
2864 @item -Wimplicit
2865 @opindex Wimplicit
2866 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
2867 This warning is enabled by @option{-Wall}.
2868
2869 @item -Wmain
2870 @opindex Wmain
2871 Warn if the type of @samp{main} is suspicious.  @samp{main} should be a
2872 function with external linkage, returning int, taking either zero
2873 arguments, two, or three arguments of appropriate types.
2874 This warning is enabled by @option{-Wall}.
2875
2876 @item -Wmissing-braces
2877 @opindex Wmissing-braces
2878 Warn if an aggregate or union initializer is not fully bracketed.  In
2879 the following example, the initializer for @samp{a} is not fully
2880 bracketed, but that for @samp{b} is fully bracketed.
2881
2882 @smallexample
2883 int a[2][2] = @{ 0, 1, 2, 3 @};
2884 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
2885 @end smallexample
2886
2887 This warning is enabled by @option{-Wall}.
2888
2889 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
2890 @opindex Wmissing-include-dirs
2891 Warn if a user-supplied include directory does not exist.
2892
2893 @item -Wparentheses
2894 @opindex Wparentheses
2895 Warn if parentheses are omitted in certain contexts, such
2896 as when there is an assignment in a context where a truth value
2897 is expected, or when operators are nested whose precedence people
2898 often get confused about.
2899
2900 Also warn if a comparison like @samp{x<=y<=z} appears; this is
2901 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
2902 interpretation from that of ordinary mathematical notation.
2903
2904 Also warn about constructions where there may be confusion to which
2905 @code{if} statement an @code{else} branch belongs.  Here is an example of
2906 such a case:
2907
2908 @smallexample
2909 @group
2910 @{
2911   if (a)
2912     if (b)
2913       foo ();
2914   else
2915     bar ();
2916 @}
2917 @end group
2918 @end smallexample
2919
2920 In C/C++, every @code{else} branch belongs to the innermost possible
2921 @code{if} statement, which in this example is @code{if (b)}.  This is
2922 often not what the programmer expected, as illustrated in the above
2923 example by indentation the programmer chose.  When there is the
2924 potential for this confusion, GCC will issue a warning when this flag
2925 is specified.  To eliminate the warning, add explicit braces around
2926 the innermost @code{if} statement so there is no way the @code{else}
2927 could belong to the enclosing @code{if}.  The resulting code would
2928 look like this:
2929
2930 @smallexample
2931 @group
2932 @{
2933   if (a)
2934     @{
2935       if (b)
2936         foo ();
2937       else
2938         bar ();
2939     @}
2940 @}
2941 @end group
2942 @end smallexample
2943
2944 This warning is enabled by @option{-Wall}.
2945
2946 @item -Wsequence-point
2947 @opindex Wsequence-point
2948 Warn about code that may have undefined semantics because of violations
2949 of sequence point rules in the C and C++ standards.
2950
2951 The C and C++ standards defines the order in which expressions in a C/C++
2952 program are evaluated in terms of @dfn{sequence points}, which represent
2953 a partial ordering between the execution of parts of the program: those
2954 executed before the sequence point, and those executed after it.  These
2955 occur after the evaluation of a full expression (one which is not part
2956 of a larger expression), after the evaluation of the first operand of a
2957 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
2958 function is called (but after the evaluation of its arguments and the
2959 expression denoting the called function), and in certain other places.
2960 Other than as expressed by the sequence point rules, the order of
2961 evaluation of subexpressions of an expression is not specified.  All
2962 these rules describe only a partial order rather than a total order,
2963 since, for example, if two functions are called within one expression
2964 with no sequence point between them, the order in which the functions
2965 are called is not specified.  However, the standards committee have
2966 ruled that function calls do not overlap.
2967
2968 It is not specified when between sequence points modifications to the
2969 values of objects take effect.  Programs whose behavior depends on this
2970 have undefined behavior; the C and C++ standards specify that ``Between
2971 the previous and next sequence point an object shall have its stored
2972 value modified at most once by the evaluation of an expression.
2973 Furthermore, the prior value shall be read only to determine the value
2974 to be stored.''.  If a program breaks these rules, the results on any
2975 particular implementation are entirely unpredictable.
2976
2977 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
2978 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
2979 diagnosed by this option, and it may give an occasional false positive
2980 result, but in general it has been found fairly effective at detecting
2981 this sort of problem in programs.
2982
2983 The standard is worded confusingly, therefore there is some debate
2984 over the precise meaning of the sequence point rules in subtle cases.
2985 Links to discussions of the problem, including proposed formal
2986 definitions, may be found on the GCC readings page, at
2987 @w{@uref{http://gcc.gnu.org/readings.html}}.
2988
2989 This warning is enabled by @option{-Wall} for C and C++.
2990
2991 @item -Wreturn-type
2992 @opindex Wreturn-type
2993 @opindex Wno-return-type
2994 Warn whenever a function is defined with a return-type that defaults
2995 to @code{int}.  Also warn about any @code{return} statement with no
2996 return-value in a function whose return-type is not @code{void}
2997 (falling off the end of the function body is considered returning
2998 without a value), and about a @code{return} statement with a
2999 expression in a function whose return-type is @code{void}.
3000
3001 Also warn if the return type of a function has a type qualifier
3002 such as @code{const}.  For ISO C such a type qualifier has no effect,
3003 since the value returned by a function is not an lvalue.
3004 For C++, the warning is only emitted for scalar types or @code{void}.
3005 ISO C prohibits qualified @code{void} return types on function
3006 definitions, so such return types always receive a warning
3007 even without this option.
3008
3009 For C++, a function without return type always produces a diagnostic
3010 message, even when @option{-Wno-return-type} is specified.  The only
3011 exceptions are @samp{main} and functions defined in system headers.
3012
3013 This warning is enabled by @option{-Wall}.
3014
3015 @item -Wswitch
3016 @opindex Wswitch
3017 Warn whenever a @code{switch} statement has an index of enumerated type
3018 and lacks a @code{case} for one or more of the named codes of that
3019 enumeration.  (The presence of a @code{default} label prevents this
3020 warning.)  @code{case} labels outside the enumeration range also
3021 provoke warnings when this option is used.
3022 This warning is enabled by @option{-Wall}.
3023
3024 @item -Wswitch-default
3025 @opindex Wswitch-switch
3026 Warn whenever a @code{switch} statement does not have a @code{default}
3027 case.
3028
3029 @item -Wswitch-enum
3030 @opindex Wswitch-enum
3031 Warn whenever a @code{switch} statement has an index of enumerated type
3032 and lacks a @code{case} for one or more of the named codes of that
3033 enumeration.  @code{case} labels outside the enumeration range also
3034 provoke warnings when this option is used.
3035
3036 @item -Wtrigraphs
3037 @opindex Wtrigraphs
3038 Warn if any trigraphs are encountered that might change the meaning of
3039 the program (trigraphs within comments are not warned about).
3040 This warning is enabled by @option{-Wall}.
3041
3042 @item -Wunused-function
3043 @opindex Wunused-function
3044 Warn whenever a static function is declared but not defined or a
3045 non-inline static function is unused.
3046 This warning is enabled by @option{-Wall}.
3047
3048 @item -Wunused-label
3049 @opindex Wunused-label
3050 Warn whenever a label is declared but not used.
3051 This warning is enabled by @option{-Wall}.
3052
3053 To suppress this warning use the @samp{unused} attribute
3054 (@pxref{Variable Attributes}).
3055
3056 @item -Wunused-parameter
3057 @opindex Wunused-parameter
3058 Warn whenever a function parameter is unused aside from its declaration.
3059
3060 To suppress this warning use the @samp{unused} attribute
3061 (@pxref{Variable Attributes}).
3062
3063 @item -Wunused-variable
3064 @opindex Wunused-variable
3065 Warn whenever a local variable or non-constant static variable is unused
3066 aside from its declaration.
3067 This warning is enabled by @option{-Wall}.
3068
3069 To suppress this warning use the @samp{unused} attribute
3070 (@pxref{Variable Attributes}).
3071
3072 @item -Wunused-value
3073 @opindex Wunused-value
3074 Warn whenever a statement computes a result that is explicitly not
3075 used. To suppress this warning cast the unused expression to
3076 @samp{void}. This includes an expression-statement or the left-hand
3077 side of a comma expression that contains no side effects. For example,
3078 an expression such as @samp{x[i,j]} will cause a warning, while
3079 @samp{x[(void)i,j]} will not.
3080
3081 This warning is enabled by @option{-Wall}.
3082
3083 @item -Wunused
3084 @opindex Wunused
3085 All the above @option{-Wunused} options combined.
3086
3087 In order to get a warning about an unused function parameter, you must
3088 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
3089 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
3090
3091 @item -Wuninitialized
3092 @opindex Wuninitialized
3093 Warn if an automatic variable is used without first being initialized or
3094 if a variable may be clobbered by a @code{setjmp} call.
3095
3096 These warnings are possible only in optimizing compilation,
3097 because they require data flow information that is computed only
3098 when optimizing.  If you do not specify @option{-O}, you will not get
3099 these warnings. Instead, GCC will issue a warning about @option{-Wuninitialized}
3100 requiring @option{-O}.
3101
3102 If you want to warn about code which uses the uninitialized value of the
3103 variable in its own initializer, use the @option{-Winit-self} option.
3104
3105 These warnings occur for individual uninitialized or clobbered
3106 elements of structure, union or array variables as well as for
3107 variables which are uninitialized or clobbered as a whole.  They do
3108 not occur for variables or elements declared @code{volatile}.  Because
3109 these warnings depend on optimization, the exact variables or elements
3110 for which there are warnings will depend on the precise optimization
3111 options and version of GCC used.
3112
3113 Note that there may be no warning about a variable that is used only
3114 to compute a value that itself is never used, because such
3115 computations may be deleted by data flow analysis before the warnings
3116 are printed.
3117
3118 These warnings are made optional because GCC is not smart
3119 enough to see all the reasons why the code might be correct
3120 despite appearing to have an error.  Here is one example of how
3121 this can happen:
3122
3123 @smallexample
3124 @group
3125 @{
3126   int x;
3127   switch (y)
3128     @{
3129     case 1: x = 1;
3130       break;
3131     case 2: x = 4;
3132       break;
3133     case 3: x = 5;
3134     @}
3135   foo (x);
3136 @}
3137 @end group
3138 @end smallexample
3139
3140 @noindent
3141 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
3142 always initialized, but GCC doesn't know this.  Here is
3143 another common case:
3144
3145 @smallexample
3146 @{
3147   int save_y;
3148   if (change_y) save_y = y, y = new_y;
3149   @dots{}
3150   if (change_y) y = save_y;
3151 @}
3152 @end smallexample
3153
3154 @noindent
3155 This has no bug because @code{save_y} is used only if it is set.
3156
3157 @cindex @code{longjmp} warnings
3158 This option also warns when a non-volatile automatic variable might be
3159 changed by a call to @code{longjmp}.  These warnings as well are possible
3160 only in optimizing compilation.
3161
3162 The compiler sees only the calls to @code{setjmp}.  It cannot know
3163 where @code{longjmp} will be called; in fact, a signal handler could
3164 call it at any point in the code.  As a result, you may get a warning
3165 even when there is in fact no problem because @code{longjmp} cannot
3166 in fact be called at the place which would cause a problem.
3167
3168 Some spurious warnings can be avoided if you declare all the functions
3169 you use that never return as @code{noreturn}.  @xref{Function
3170 Attributes}.
3171
3172 This warning is enabled by @option{-Wall} or @option{-Wextra} in
3173 optimizing compilations (@option{-O1} and above).
3174
3175 @item -Wunknown-pragmas
3176 @opindex Wunknown-pragmas
3177 @cindex warning for unknown pragmas
3178 @cindex unknown pragmas, warning
3179 @cindex pragmas, warning of unknown
3180 Warn when a #pragma directive is encountered which is not understood by
3181 GCC@.  If this command line option is used, warnings will even be issued
3182 for unknown pragmas in system header files.  This is not the case if
3183 the warnings were only enabled by the @option{-Wall} command line option.
3184
3185 @item -Wno-pragmas
3186 @opindex Wno-pragmas
3187 @opindex Wpragmas
3188 Do not warn about misuses of pragmas, such as incorrect parameters,
3189 invalid syntax, or conflicts between pragmas.  See also
3190 @samp{-Wunknown-pragmas}.
3191
3192 @item -Wstrict-aliasing
3193 @opindex Wstrict-aliasing
3194 This option is only active when @option{-fstrict-aliasing} is active.
3195 It warns about code which might break the strict aliasing rules that the
3196 compiler is using for optimization.  The warning does not catch all
3197 cases, but does attempt to catch the more common pitfalls.  It is
3198 included in @option{-Wall}.
3199 It is equivalent to @option{-Wstrict-aliasing=3}
3200
3201 @item -Wstrict-aliasing=n
3202 @opindex Wstrict-aliasing=n
3203 This option is only active when @option{-fstrict-aliasing} is active.
3204 It warns about code which might break the strict aliasing rules that the
3205 compiler is using for optimization.
3206 Higher levels correspond to higher accuracy (fewer false positives).
3207 Higher levels also correspond to more effort, similar to the way -O works.
3208 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=n},
3209 with n=3.
3210
3211 Level 1: Most aggressive, quick, least accurate.
3212 Possibly useful when higher levels
3213 do not warn but -fstrict-aliasing still breaks the code, as it has very few 
3214 false negatives.  However, it has many false positives.
3215 Warns for all pointer conversions between possibly incompatible types, 
3216 even if never dereferenced.  Runs in the frontend only.
3217
3218 Level 2: Aggressive, quick, not too precise.
3219 May still have many false positives (not as many as level 1 though),
3220 and few false negatives (but possibly more than level 1).
3221 Unlike level 1, it only warns when an address is taken.  Warns about
3222 incomplete types.  Runs in the frontend only.
3223
3224 Level 3 (default for @option{-Wstrict-aliasing}): 
3225 Should have very few false positives and few false 
3226 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
3227 Takes care of the common punn+dereference pattern in the frontend:
3228 @code{*(int*)&some_float}.
3229 If optimization is enabled, it also runs in the backend, where it deals 
3230 with multiple statement cases using flow-sensitive points-to information.
3231 Only warns when the converted pointer is dereferenced.
3232 Does not warn about incomplete types.
3233
3234 @item -Wstrict-overflow
3235 @item -Wstrict-overflow=@var{n}
3236 @opindex Wstrict-overflow
3237 This option is only active when @option{-fstrict-overflow} is active.
3238 It warns about cases where the compiler optimizes based on the
3239 assumption that signed overflow does not occur.  Note that it does not
3240 warn about all cases where the code might overflow: it only warns
3241 about cases where the compiler implements some optimization.  Thus
3242 this warning depends on the optimization level.
3243
3244 An optimization which assumes that signed overflow does not occur is
3245 perfectly safe if the values of the variables involved are such that
3246 overflow never does, in fact, occur.  Therefore this warning can
3247 easily give a false positive: a warning about code which is not
3248 actually a problem.  To help focus on important issues, several
3249 warning levels are defined.  No warnings are issued for the use of
3250 undefined signed overflow when estimating how many iterations a loop
3251 will require, in particular when determining whether a loop will be
3252 executed at all.
3253
3254 @table @gcctabopt
3255 @item -Wstrict-overflow=1
3256 Warn about cases which are both questionable and easy to avoid.  For
3257 example: @code{x + 1 > x}; with @option{-fstrict-overflow}, the
3258 compiler will simplify this to @code{1}.  This level of
3259 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
3260 are not, and must be explicitly requested.
3261
3262 @item -Wstrict-overflow=2
3263 Also warn about other cases where a comparison is simplified to a
3264 constant.  For example: @code{abs (x) >= 0}.  This can only be
3265 simplified when @option{-fstrict-overflow} is in effect, because
3266 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
3267 zero.  @option{-Wstrict-overflow} (with no level) is the same as
3268 @option{-Wstrict-overflow=2}.
3269
3270 @item -Wstrict-overflow=3
3271 Also warn about other cases where a comparison is simplified.  For
3272 example: @code{x + 1 > 1} will be simplified to @code{x > 0}.
3273
3274 @item -Wstrict-overflow=4
3275 Also warn about other simplifications not covered by the above cases.
3276 For example: @code{(x * 10) / 5} will be simplified to @code{x * 2}.
3277
3278 @item -Wstrict-overflow=5
3279 Also warn about cases where the compiler reduces the magnitude of a
3280 constant involved in a comparison.  For example: @code{x + 2 > y} will
3281 be simplified to @code{x + 1 >= y}.  This is reported only at the
3282 highest warning level because this simplification applies to many
3283 comparisons, so this warning level will give a very large number of
3284 false positives.
3285 @end table
3286
3287 @item -Warray-bounds
3288 @opindex Wno-array-bounds
3289 @opindex Warray-bounds
3290 This option is only active when @option{-ftree-vrp} is active
3291 (default for -O2 and above). It warns about subscripts to arrays
3292 that are always out of bounds. This warning is enabled by @option{-Wall}.
3293
3294 @item -Wno-div-by-zero
3295 @opindex Wno-div-by-zero
3296 @opindex Wdiv-by-zero
3297 Do not warn about compile-time integer division by zero.  Floating point
3298 division by zero is not warned about, as it can be a legitimate way of
3299 obtaining infinities and NaNs.
3300
3301 @item -Wsystem-headers
3302 @opindex Wsystem-headers
3303 @cindex warnings from system headers
3304 @cindex system headers, warnings from
3305 Print warning messages for constructs found in system header files.
3306 Warnings from system headers are normally suppressed, on the assumption
3307 that they usually do not indicate real problems and would only make the
3308 compiler output harder to read.  Using this command line option tells
3309 GCC to emit warnings from system headers as if they occurred in user
3310 code.  However, note that using @option{-Wall} in conjunction with this
3311 option will @emph{not} warn about unknown pragmas in system
3312 headers---for that, @option{-Wunknown-pragmas} must also be used.
3313
3314 @item -Wfloat-equal
3315 @opindex Wfloat-equal
3316 Warn if floating point values are used in equality comparisons.
3317
3318 The idea behind this is that sometimes it is convenient (for the
3319 programmer) to consider floating-point values as approximations to
3320 infinitely precise real numbers.  If you are doing this, then you need
3321 to compute (by analyzing the code, or in some other way) the maximum or
3322 likely maximum error that the computation introduces, and allow for it
3323 when performing comparisons (and when producing output, but that's a
3324 different problem).  In particular, instead of testing for equality, you
3325 would check to see whether the two values have ranges that overlap; and
3326 this is done with the relational operators, so equality comparisons are
3327 probably mistaken.
3328
3329 @item -Wtraditional @r{(C only)}
3330 @opindex Wtraditional
3331 Warn about certain constructs that behave differently in traditional and
3332 ISO C@.  Also warn about ISO C constructs that have no traditional C
3333 equivalent, and/or problematic constructs which should be avoided.
3334
3335 @itemize @bullet
3336 @item
3337 Macro parameters that appear within string literals in the macro body.
3338 In traditional C macro replacement takes place within string literals,
3339 but does not in ISO C@.
3340
3341 @item
3342 In traditional C, some preprocessor directives did not exist.
3343 Traditional preprocessors would only consider a line to be a directive
3344 if the @samp{#} appeared in column 1 on the line.  Therefore
3345 @option{-Wtraditional} warns about directives that traditional C
3346 understands but would ignore because the @samp{#} does not appear as the
3347 first character on the line.  It also suggests you hide directives like
3348 @samp{#pragma} not understood by traditional C by indenting them.  Some
3349 traditional implementations would not recognize @samp{#elif}, so it
3350 suggests avoiding it altogether.
3351
3352 @item
3353 A function-like macro that appears without arguments.
3354
3355 @item
3356 The unary plus operator.
3357
3358 @item
3359 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3360 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3361 constants.)  Note, these suffixes appear in macros defined in the system
3362 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3363 Use of these macros in user code might normally lead to spurious
3364 warnings, however GCC's integrated preprocessor has enough context to
3365 avoid warning in these cases.
3366
3367 @item
3368 A function declared external in one block and then used after the end of
3369 the block.
3370
3371 @item
3372 A @code{switch} statement has an operand of type @code{long}.
3373
3374 @item
3375 A non-@code{static} function declaration follows a @code{static} one.
3376 This construct is not accepted by some traditional C compilers.
3377
3378 @item
3379 The ISO type of an integer constant has a different width or
3380 signedness from its traditional type.  This warning is only issued if
3381 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3382 typically represent bit patterns, are not warned about.
3383
3384 @item
3385 Usage of ISO string concatenation is detected.
3386
3387 @item
3388 Initialization of automatic aggregates.
3389
3390 @item
3391 Identifier conflicts with labels.  Traditional C lacks a separate
3392 namespace for labels.
3393
3394 @item
3395 Initialization of unions.  If the initializer is zero, the warning is
3396 omitted.  This is done under the assumption that the zero initializer in
3397 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3398 initializer warnings and relies on default initialization to zero in the
3399 traditional C case.
3400
3401 @item
3402 Conversions by prototypes between fixed/floating point values and vice
3403 versa.  The absence of these prototypes when compiling with traditional
3404 C would cause serious problems.  This is a subset of the possible
3405 conversion warnings, for the full set use @option{-Wtraditional-conversion}.
3406
3407 @item
3408 Use of ISO C style function definitions.  This warning intentionally is
3409 @emph{not} issued for prototype declarations or variadic functions
3410 because these ISO C features will appear in your code when using
3411 libiberty's traditional C compatibility macros, @code{PARAMS} and
3412 @code{VPARAMS}.  This warning is also bypassed for nested functions
3413 because that feature is already a GCC extension and thus not relevant to
3414 traditional C compatibility.
3415 @end itemize
3416
3417 @item -Wtraditional-conversion @r{(C only)}
3418 @opindex Wtraditional-conversion
3419 Warn if a prototype causes a type conversion that is different from what
3420 would happen to the same argument in the absence of a prototype.  This
3421 includes conversions of fixed point to floating and vice versa, and
3422 conversions changing the width or signedness of a fixed point argument
3423 except when the same as the default promotion.
3424
3425 @item -Wdeclaration-after-statement @r{(C only)}
3426 @opindex Wdeclaration-after-statement
3427 Warn when a declaration is found after a statement in a block.  This
3428 construct, known from C++, was introduced with ISO C99 and is by default
3429 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3430 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3431
3432 @item -Wundef
3433 @opindex Wundef
3434 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3435
3436 @item -Wno-endif-labels
3437 @opindex Wno-endif-labels
3438 @opindex Wendif-labels
3439 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3440
3441 @item -Wshadow
3442 @opindex Wshadow
3443 Warn whenever a local variable shadows another local variable, parameter or
3444 global variable or whenever a built-in function is shadowed.
3445
3446 @item -Wlarger-than-@var{len}
3447 @opindex Wlarger-than
3448 Warn whenever an object of larger than @var{len} bytes is defined.
3449
3450 @item -Wunsafe-loop-optimizations
3451 @opindex Wunsafe-loop-optimizations
3452 Warn if the loop cannot be optimized because the compiler could not
3453 assume anything on the bounds of the loop indices.  With
3454 @option{-funsafe-loop-optimizations} warn if the compiler made
3455 such assumptions.
3456
3457 @item -Wpointer-arith
3458 @opindex Wpointer-arith
3459 Warn about anything that depends on the ``size of'' a function type or
3460 of @code{void}.  GNU C assigns these types a size of 1, for
3461 convenience in calculations with @code{void *} pointers and pointers
3462 to functions.  In C++, warn also when an arithmetic operation involves
3463 @code{NULL}.  This warning is also enabled by @option{-pedantic}.
3464
3465 @item -Wtype-limits
3466 @opindex Wtype-limits
3467 @opindex Wno-type-limits
3468 Warn if a comparison is always true or always false due to the limited
3469 range of the data type, but do not warn for constant expressions.  For
3470 example, warn if an unsigned variable is compared against zero with
3471 @samp{<} or @samp{>=}.  This warning is also enabled by
3472 @option{-Wextra}.
3473
3474 @item -Wbad-function-cast @r{(C only)}
3475 @opindex Wbad-function-cast
3476 Warn whenever a function call is cast to a non-matching type.
3477 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3478
3479 @item -Wc++-compat
3480 Warn about ISO C constructs that are outside of the common subset of
3481 ISO C and ISO C++, e.g.@: request for implicit conversion from
3482 @code{void *} to a pointer to non-@code{void} type.
3483
3484 @item -Wc++0x-compat @r{(C++ and Objective-C++ only)}
3485 Warn about C++ constructs whose meaning differs between ISO C++ 1998 and
3486 ISO C++ 200x, e.g., identifiers in ISO C++ 1998 that will become keywords
3487 in ISO C++ 200x.  This warning is enabled by @option{-Wall}.
3488
3489 @item -Wcast-qual
3490 @opindex Wcast-qual
3491 Warn whenever a pointer is cast so as to remove a type qualifier from
3492 the target type.  For example, warn if a @code{const char *} is cast
3493 to an ordinary @code{char *}.
3494
3495 @item -Wcast-align
3496 @opindex Wcast-align
3497 Warn whenever a pointer is cast such that the required alignment of the
3498 target is increased.  For example, warn if a @code{char *} is cast to
3499 an @code{int *} on machines where integers can only be accessed at
3500 two- or four-byte boundaries.
3501
3502 @item -Wwrite-strings
3503 @opindex Wwrite-strings
3504 When compiling C, give string constants the type @code{const
3505 char[@var{length}]} so that
3506 copying the address of one into a non-@code{const} @code{char *}
3507 pointer will get a warning; when compiling C++, warn about the
3508 deprecated conversion from string literals to @code{char *}.  This
3509 warning, by default, is enabled for C++ programs.
3510 These warnings will help you find at
3511 compile time code that can try to write into a string constant, but
3512 only if you have been very careful about using @code{const} in
3513 declarations and prototypes.  Otherwise, it will just be a nuisance;
3514 this is why we did not make @option{-Wall} request these warnings.
3515
3516 @item -Wclobbered
3517 @opindex Wclobbered
3518 Warn for variables that might be changed by @samp{longjmp} or
3519 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
3520
3521 @item -Wconversion
3522 @opindex Wconversion
3523 @opindex Wno-conversion
3524 Warn for implicit conversions that may alter a value. This includes
3525 conversions between real and integer, like @code{abs (x)} when
3526 @code{x} is @code{double}; conversions between signed and unsigned,
3527 like @code{unsigned ui = -1}; and conversions to smaller types, like
3528 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
3529 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
3530 changed by the conversion like in @code{abs (2.0)}.  Warnings about
3531 conversions between signed and unsigned integers can be disabled by
3532 using @option{-Wno-sign-conversion}.
3533
3534 For C++, also warn for conversions between @code{NULL} and non-pointer
3535 types; confusing overload resolution for user-defined conversions; and
3536 conversions that will never use a type conversion operator:
3537 conversions to @code{void}, the same type, a base class or a reference
3538 to them. Warnings about conversions between signed and unsigned
3539 integers are disabled by default in C++ unless
3540 @option{-Wsign-conversion} is explicitly enabled.
3541
3542 @item -Wempty-body
3543 @opindex Wempty-body
3544 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
3545 while} statement.  Additionally, in C++, warn when an empty body occurs
3546 in a @samp{while} or @samp{for} statement with no whitespacing before
3547 the semicolon.  This warning is also enabled by @option{-Wextra}.
3548
3549 @item -Wsign-compare
3550 @opindex Wsign-compare
3551 @cindex warning for comparison of signed and unsigned values
3552 @cindex comparison of signed and unsigned values, warning
3553 @cindex signed and unsigned values, comparison warning
3554 Warn when a comparison between signed and unsigned values could produce
3555 an incorrect result when the signed value is converted to unsigned.
3556 This warning is also enabled by @option{-Wextra}; to get the other warnings
3557 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3558
3559 @item -Wsign-conversion
3560 @opindex Wsign-conversion
3561 @opindex Wno-sign-conversion
3562 Warn for implicit conversions that may change the sign of an integer
3563 value, like assigning a signed integer expression to an unsigned
3564 integer variable. An explicit cast silences the warning. In C, this
3565 option is enabled also by @option{-Wconversion}.
3566
3567 @item -Waddress
3568 @opindex Waddress
3569 @opindex Wno-address
3570 Warn about suspicious uses of memory addresses. These include using
3571 the address of a function in a conditional expression, such as
3572 @code{void func(void); if (func)}, and comparisons against the memory
3573 address of a string literal, such as @code{if (x == "abc")}.  Such
3574 uses typically indicate a programmer error: the address of a function
3575 always evaluates to true, so their use in a conditional usually
3576 indicate that the programmer forgot the parentheses in a function
3577 call; and comparisons against string literals result in unspecified
3578 behavior and are not portable in C, so they usually indicate that the
3579 programmer intended to use @code{strcmp}.  This warning is enabled by
3580 @option{-Wall}.
3581
3582 @item -Wlogical-op
3583 @opindex Wlogical-op
3584 @opindex Wno-logical-op
3585 Warn about suspicious uses of logical operators in expressions.
3586 This includes using logical operators in contexts where a
3587 bit-wise operator is likely to be expected.
3588
3589 @item -Waggregate-return
3590 @opindex Waggregate-return
3591 Warn if any functions that return structures or unions are defined or
3592 called.  (In languages where you can return an array, this also elicits
3593 a warning.)
3594
3595 @item -Wno-attributes
3596 @opindex Wno-attributes
3597 @opindex Wattributes
3598 Do not warn if an unexpected @code{__attribute__} is used, such as
3599 unrecognized attributes, function attributes applied to variables,
3600 etc.  This will not stop errors for incorrect use of supported
3601 attributes.
3602
3603 @item -Wstrict-prototypes @r{(C only)}
3604 @opindex Wstrict-prototypes
3605 Warn if a function is declared or defined without specifying the
3606 argument types.  (An old-style function definition is permitted without
3607 a warning if preceded by a declaration which specifies the argument
3608 types.)
3609
3610 @item -Wold-style-declaration @r{(C only)}
3611 @opindex Wold-style-declaration
3612 Warn for obsolescent usages, according to the C Standard, in a
3613 declaration. For example, warn if storage-class specifiers like
3614 @code{static} are not the first things in a declaration.  This warning
3615 is also enabled by @option{-Wextra}.
3616
3617 @item -Wold-style-definition @r{(C only)}
3618 @opindex Wold-style-definition
3619 Warn if an old-style function definition is used.  A warning is given
3620 even if there is a previous prototype.
3621
3622 @item -Wmissing-parameter-type @r{(C only)}
3623 @opindex Wmissing-parameter-type
3624 A function parameter is declared without a type specifier in K&R-style
3625 functions:
3626
3627 @smallexample
3628 void foo(bar) @{ @}
3629 @end smallexample
3630
3631 This warning is also enabled by @option{-Wextra}.
3632
3633 @item -Wmissing-prototypes @r{(C only)}
3634 @opindex Wmissing-prototypes
3635 Warn if a global function is defined without a previous prototype
3636 declaration.  This warning is issued even if the definition itself
3637 provides a prototype.  The aim is to detect global functions that fail
3638 to be declared in header files.
3639
3640 @item -Wmissing-declarations @r{(C and C++ only)}
3641 @opindex Wmissing-declarations
3642 Warn if a global function is defined without a previous declaration.
3643 Do so even if the definition itself provides a prototype.
3644 Use this option to detect global functions that are not declared in
3645 header files.  In C++, no warnings are issued for function templates,
3646 or for inline functions, or for functions in anonymous namespaces.
3647
3648 @item -Wmissing-field-initializers
3649 @opindex Wmissing-field-initializers
3650 @opindex W
3651 @opindex Wextra
3652 Warn if a structure's initializer has some fields missing.  For
3653 example, the following code would cause such a warning, because
3654 @code{x.h} is implicitly zero:
3655
3656 @smallexample
3657 struct s @{ int f, g, h; @};
3658 struct s x = @{ 3, 4 @};
3659 @end smallexample
3660
3661 This option does not warn about designated initializers, so the following
3662 modification would not trigger a warning:
3663
3664 @smallexample
3665 struct s @{ int f, g, h; @};
3666 struct s x = @{ .f = 3, .g = 4 @};
3667 @end smallexample
3668
3669 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3670 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3671
3672 @item -Wmissing-noreturn
3673 @opindex Wmissing-noreturn
3674 Warn about functions which might be candidates for attribute @code{noreturn}.
3675 Note these are only possible candidates, not absolute ones.  Care should
3676 be taken to manually verify functions actually do not ever return before
3677 adding the @code{noreturn} attribute, otherwise subtle code generation
3678 bugs could be introduced.  You will not get a warning for @code{main} in
3679 hosted C environments.
3680
3681 @item -Wmissing-format-attribute
3682 @opindex Wmissing-format-attribute
3683 @opindex Wformat
3684 Warn about function pointers which might be candidates for @code{format}
3685 attributes.  Note these are only possible candidates, not absolute ones.
3686 GCC will guess that function pointers with @code{format} attributes that
3687 are used in assignment, initialization, parameter passing or return
3688 statements should have a corresponding @code{format} attribute in the
3689 resulting type.  I.e.@: the left-hand side of the assignment or
3690 initialization, the type of the parameter variable, or the return type
3691 of the containing function respectively should also have a @code{format}
3692 attribute to avoid the warning.
3693
3694 GCC will also warn about function definitions which might be
3695 candidates for @code{format} attributes.  Again, these are only
3696 possible candidates.  GCC will guess that @code{format} attributes
3697 might be appropriate for any function that calls a function like
3698 @code{vprintf} or @code{vscanf}, but this might not always be the
3699 case, and some functions for which @code{format} attributes are
3700 appropriate may not be detected.
3701
3702 @item -Wno-multichar
3703 @opindex Wno-multichar
3704 @opindex Wmultichar
3705 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3706 Usually they indicate a typo in the user's code, as they have
3707 implementation-defined values, and should not be used in portable code.
3708
3709 @item -Wnormalized=<none|id|nfc|nfkc>
3710 @opindex Wnormalized
3711 @cindex NFC
3712 @cindex NFKC
3713 @cindex character set, input normalization
3714 In ISO C and ISO C++, two identifiers are different if they are
3715 different sequences of characters.  However, sometimes when characters
3716 outside the basic ASCII character set are used, you can have two
3717 different character sequences that look the same.  To avoid confusion,
3718 the ISO 10646 standard sets out some @dfn{normalization rules} which
3719 when applied ensure that two sequences that look the same are turned into
3720 the same sequence.  GCC can warn you if you are using identifiers which
3721 have not been normalized; this option controls that warning.
3722
3723 There are four levels of warning that GCC supports.  The default is
3724 @option{-Wnormalized=nfc}, which warns about any identifier which is
3725 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
3726 recommended form for most uses.
3727
3728 Unfortunately, there are some characters which ISO C and ISO C++ allow
3729 in identifiers that when turned into NFC aren't allowable as
3730 identifiers.  That is, there's no way to use these symbols in portable
3731 ISO C or C++ and have all your identifiers in NFC.
3732 @option{-Wnormalized=id} suppresses the warning for these characters.
3733 It is hoped that future versions of the standards involved will correct
3734 this, which is why this option is not the default.
3735
3736 You can switch the warning off for all characters by writing
3737 @option{-Wnormalized=none}.  You would only want to do this if you
3738 were using some other normalization scheme (like ``D''), because
3739 otherwise you can easily create bugs that are literally impossible to see.
3740
3741 Some characters in ISO 10646 have distinct meanings but look identical
3742 in some fonts or display methodologies, especially once formatting has
3743 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
3744 LETTER N'', will display just like a regular @code{n} which has been
3745 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
3746 normalization scheme to convert all these into a standard form as
3747 well, and GCC will warn if your code is not in NFKC if you use
3748 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
3749 about every identifier that contains the letter O because it might be
3750 confused with the digit 0, and so is not the default, but may be
3751 useful as a local coding convention if the programming environment is
3752 unable to be fixed to display these characters distinctly.
3753
3754 @item -Wno-deprecated-declarations
3755 @opindex Wno-deprecated-declarations
3756 Do not warn about uses of functions (@pxref{Function Attributes}),
3757 variables (@pxref{Variable Attributes}), and types (@pxref{Type
3758 Attributes}) marked as deprecated by using the @code{deprecated}
3759 attribute.
3760
3761 @item -Wno-overflow
3762 @opindex Wno-overflow
3763 Do not warn about compile-time overflow in constant expressions.
3764
3765 @item -Woverride-init
3766 @opindex Woverride-init
3767 @opindex W
3768 @opindex Wextra
3769 Warn if an initialized field without side effects is overridden when
3770 using designated initializers (@pxref{Designated Inits, , Designated
3771 Initializers}).
3772
3773 This warning is included in @option{-Wextra}.  To get other
3774 @option{-Wextra} warnings without this one, use @samp{-Wextra
3775 -Wno-override-init}.
3776
3777 @item -Wpacked
3778 @opindex Wpacked
3779 Warn if a structure is given the packed attribute, but the packed
3780 attribute has no effect on the layout or size of the structure.
3781 Such structures may be mis-aligned for little benefit.  For
3782 instance, in this code, the variable @code{f.x} in @code{struct bar}
3783 will be misaligned even though @code{struct bar} does not itself
3784 have the packed attribute:
3785
3786 @smallexample
3787 @group
3788 struct foo @{
3789   int x;
3790   char a, b, c, d;
3791 @} __attribute__((packed));
3792 struct bar @{
3793   char z;
3794   struct foo f;
3795 @};
3796 @end group
3797 @end smallexample
3798
3799 @item -Wpadded
3800 @opindex Wpadded
3801 Warn if padding is included in a structure, either to align an element
3802 of the structure or to align the whole structure.  Sometimes when this
3803 happens it is possible to rearrange the fields of the structure to
3804 reduce the padding and so make the structure smaller.
3805
3806 @item -Wredundant-decls
3807 @opindex Wredundant-decls
3808 Warn if anything is declared more than once in the same scope, even in
3809 cases where multiple declaration is valid and changes nothing.
3810
3811 @item -Wnested-externs @r{(C only)}
3812 @opindex Wnested-externs
3813 Warn if an @code{extern} declaration is encountered within a function.
3814
3815 @item -Wunreachable-code
3816 @opindex Wunreachable-code
3817 Warn if the compiler detects that code will never be executed.
3818
3819 This option is intended to warn when the compiler detects that at
3820 least a whole line of source code will never be executed, because
3821 some condition is never satisfied or because it is after a
3822 procedure that never returns.
3823
3824 It is possible for this option to produce a warning even though there
3825 are circumstances under which part of the affected line can be executed,
3826 so care should be taken when removing apparently-unreachable code.
3827
3828 For instance, when a function is inlined, a warning may mean that the
3829 line is unreachable in only one inlined copy of the function.
3830
3831 This option is not made part of @option{-Wall} because in a debugging
3832 version of a program there is often substantial code which checks
3833 correct functioning of the program and is, hopefully, unreachable
3834 because the program does work.  Another common use of unreachable
3835 code is to provide behavior which is selectable at compile-time.
3836
3837 @item -Winline
3838 @opindex Winline
3839 Warn if a function can not be inlined and it was declared as inline.
3840 Even with this option, the compiler will not warn about failures to
3841 inline functions declared in system headers.
3842
3843 The compiler uses a variety of heuristics to determine whether or not
3844 to inline a function.  For example, the compiler takes into account
3845 the size of the function being inlined and the amount of inlining
3846 that has already been done in the current function.  Therefore,
3847 seemingly insignificant changes in the source program can cause the
3848 warnings produced by @option{-Winline} to appear or disappear.
3849
3850 @item -Wno-invalid-offsetof @r{(C++ only)}
3851 @opindex Wno-invalid-offsetof
3852 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
3853 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
3854 to a non-POD type is undefined.  In existing C++ implementations,
3855 however, @samp{offsetof} typically gives meaningful results even when
3856 applied to certain kinds of non-POD types. (Such as a simple
3857 @samp{struct} that fails to be a POD type only by virtue of having a
3858 constructor.)  This flag is for users who are aware that they are
3859 writing nonportable code and who have deliberately chosen to ignore the
3860 warning about it.
3861
3862 The restrictions on @samp{offsetof} may be relaxed in a future version
3863 of the C++ standard.
3864
3865 @item -Wno-int-to-pointer-cast @r{(C only)}
3866 @opindex Wno-int-to-pointer-cast
3867 Suppress warnings from casts to pointer type of an integer of a
3868 different size.
3869
3870 @item -Wno-pointer-to-int-cast @r{(C only)}
3871 @opindex Wno-pointer-to-int-cast
3872 Suppress warnings from casts from a pointer to an integer type of a
3873 different size.
3874
3875 @item -Winvalid-pch
3876 @opindex Winvalid-pch
3877 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
3878 the search path but can't be used.
3879
3880 @item -Wlong-long
3881 @opindex Wlong-long
3882 @opindex Wno-long-long
3883 Warn if @samp{long long} type is used.  This is default.  To inhibit
3884 the warning messages, use @option{-Wno-long-long}.  Flags
3885 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
3886 only when @option{-pedantic} flag is used.
3887
3888 @item -Wvariadic-macros
3889 @opindex Wvariadic-macros
3890 @opindex Wno-variadic-macros
3891 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
3892 alternate syntax when in pedantic ISO C99 mode.  This is default.
3893 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
3894
3895 @item -Wvla
3896 @opindex Wvla
3897 @opindex Wno-vla
3898 Warn if variable length array is used in the code.
3899 @option{-Wno-vla} will prevent the @option{-pedantic} warning of
3900 the variable length array.
3901
3902 @item -Wvolatile-register-var
3903 @opindex Wvolatile-register-var
3904 @opindex Wno-volatile-register-var
3905 Warn if a register variable is declared volatile.  The volatile
3906 modifier does not inhibit all optimizations that may eliminate reads
3907 and/or writes to register variables.
3908
3909 @item -Wdisabled-optimization
3910 @opindex Wdisabled-optimization
3911 Warn if a requested optimization pass is disabled.  This warning does
3912 not generally indicate that there is anything wrong with your code; it
3913 merely indicates that GCC's optimizers were unable to handle the code
3914 effectively.  Often, the problem is that your code is too big or too
3915 complex; GCC will refuse to optimize programs when the optimization
3916 itself is likely to take inordinate amounts of time.
3917
3918 @item -Wpointer-sign
3919 @opindex Wpointer-sign
3920 @opindex Wno-pointer-sign
3921 Warn for pointer argument passing or assignment with different signedness.
3922 This option is only supported for C and Objective-C@.  It is implied by
3923 @option{-Wall} and by @option{-pedantic}, which can be disabled with
3924 @option{-Wno-pointer-sign}.
3925
3926 @item -Wstack-protector
3927 @opindex Wstack-protector
3928 This option is only active when @option{-fstack-protector} is active.  It
3929 warns about functions that will not be protected against stack smashing.
3930
3931 @item -Woverlength-strings
3932 @opindex Woverlength-strings
3933 Warn about string constants which are longer than the ``minimum
3934 maximum'' length specified in the C standard.  Modern compilers
3935 generally allow string constants which are much longer than the
3936 standard's minimum limit, but very portable programs should avoid
3937 using longer strings.
3938
3939 The limit applies @emph{after} string constant concatenation, and does
3940 not count the trailing NUL@.  In C89, the limit was 509 characters; in
3941 C99, it was raised to 4095.  C++98 does not specify a normative
3942 minimum maximum, so we do not diagnose overlength strings in C++@.
3943
3944 This option is implied by @option{-pedantic}, and can be disabled with
3945 @option{-Wno-overlength-strings}.
3946 @end table
3947
3948 @node Debugging Options
3949 @section Options for Debugging Your Program or GCC
3950 @cindex options, debugging
3951 @cindex debugging information options
3952
3953 GCC has various special options that are used for debugging
3954 either your program or GCC:
3955
3956 @table @gcctabopt
3957 @item -g
3958 @opindex g
3959 Produce debugging information in the operating system's native format
3960 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
3961 information.
3962
3963 On most systems that use stabs format, @option{-g} enables use of extra
3964 debugging information that only GDB can use; this extra information
3965 makes debugging work better in GDB but will probably make other debuggers
3966 crash or
3967 refuse to read the program.  If you want to control for certain whether
3968 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
3969 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
3970
3971 GCC allows you to use @option{-g} with
3972 @option{-O}.  The shortcuts taken by optimized code may occasionally
3973 produce surprising results: some variables you declared may not exist
3974 at all; flow of control may briefly move where you did not expect it;
3975 some statements may not be executed because they compute constant
3976 results or their values were already at hand; some statements may
3977 execute in different places because they were moved out of loops.
3978
3979 Nevertheless it proves possible to debug optimized output.  This makes
3980 it reasonable to use the optimizer for programs that might have bugs.
3981
3982 The following options are useful when GCC is generated with the
3983 capability for more than one debugging format.
3984
3985 @item -ggdb
3986 @opindex ggdb
3987 Produce debugging information for use by GDB@.  This means to use the
3988 most expressive format available (DWARF 2, stabs, or the native format
3989 if neither of those are supported), including GDB extensions if at all
3990 possible.
3991
3992 @item -gstabs
3993 @opindex gstabs
3994 Produce debugging information in stabs format (if that is supported),
3995 without GDB extensions.  This is the format used by DBX on most BSD
3996 systems.  On MIPS, Alpha and System V Release 4 systems this option
3997 produces stabs debugging output which is not understood by DBX or SDB@.
3998 On System V Release 4 systems this option requires the GNU assembler.
3999
4000 @item -feliminate-unused-debug-symbols
4001 @opindex feliminate-unused-debug-symbols
4002 Produce debugging information in stabs format (if that is supported),
4003 for only symbols that are actually used.
4004
4005 @item -femit-class-debug-always
4006 Instead of emitting debugging information for a C++ class in only one
4007 object file, emit it in all object files using the class.  This option
4008 should be used only with debuggers that are unable to handle the way GCC
4009 normally emits debugging information for classes because using this
4010 option will increase the size of debugging information by as much as a
4011 factor of two.
4012
4013 @item -gstabs+
4014 @opindex gstabs+
4015 Produce debugging information in stabs format (if that is supported),
4016 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4017 use of these extensions is likely to make other debuggers crash or
4018 refuse to read the program.
4019
4020 @item -gcoff
4021 @opindex gcoff
4022 Produce debugging information in COFF format (if that is supported).
4023 This is the format used by SDB on most System V systems prior to
4024 System V Release 4.
4025
4026 @item -gxcoff
4027 @opindex gxcoff
4028 Produce debugging information in XCOFF format (if that is supported).
4029 This is the format used by the DBX debugger on IBM RS/6000 systems.
4030
4031 @item -gxcoff+
4032 @opindex gxcoff+
4033 Produce debugging information in XCOFF format (if that is supported),
4034 using GNU extensions understood only by the GNU debugger (GDB)@.  The
4035 use of these extensions is likely to make other debuggers crash or
4036 refuse to read the program, and may cause assemblers other than the GNU
4037 assembler (GAS) to fail with an error.
4038
4039 @item -gdwarf-2
4040 @opindex gdwarf-2
4041 Produce debugging information in DWARF version 2 format (if that is
4042 supported).  This is the format used by DBX on IRIX 6.  With this
4043 option, GCC uses features of DWARF version 3 when they are useful;
4044 version 3 is upward compatible with version 2, but may still cause
4045 problems for older debuggers.
4046
4047 @item -gvms
4048 @opindex gvms
4049 Produce debugging information in VMS debug format (if that is
4050 supported).  This is the format used by DEBUG on VMS systems.
4051
4052 @item -g@var{level}
4053 @itemx -ggdb@var{level}
4054 @itemx -gstabs@var{level}
4055 @itemx -gcoff@var{level}
4056 @itemx -gxcoff@var{level}
4057 @itemx -gvms@var{level}
4058 Request debugging information and also use @var{level} to specify how
4059 much information.  The default level is 2.
4060
4061 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
4062 @option{-g}.
4063
4064 Level 1 produces minimal information, enough for making backtraces in
4065 parts of the program that you don't plan to debug.  This includes
4066 descriptions of functions and external variables, but no information
4067 about local variables and no line numbers.
4068
4069 Level 3 includes extra information, such as all the macro definitions
4070 present in the program.  Some debuggers support macro expansion when
4071 you use @option{-g3}.
4072
4073 @option{-gdwarf-2} does not accept a concatenated debug level, because
4074 GCC used to support an option @option{-gdwarf} that meant to generate
4075 debug information in version 1 of the DWARF format (which is very
4076 different from version 2), and it would have been too confusing.  That
4077 debug format is long obsolete, but the option cannot be changed now.
4078 Instead use an additional @option{-g@var{level}} option to change the
4079 debug level for DWARF2.
4080
4081 @item -feliminate-dwarf2-dups
4082 @opindex feliminate-dwarf2-dups
4083 Compress DWARF2 debugging information by eliminating duplicated
4084 information about each symbol.  This option only makes sense when
4085 generating DWARF2 debugging information with @option{-gdwarf-2}.
4086
4087 @item -femit-struct-debug-baseonly
4088 Emit debug information for struct-like types
4089 only when the base name of the compilation source file
4090 matches the base name of file in which the struct was defined.
4091
4092 This option substantially reduces the size of debugging information,
4093 but at significant potential loss in type information to the debugger.
4094 See @option{-femit-struct-debug-reduced} for a less aggressive option.
4095 See @option{-femit-struct-debug-detailed} for more detailed control.
4096
4097 This option works only with DWARF 2.
4098
4099 @item -femit-struct-debug-reduced
4100 Emit debug information for struct-like types
4101 only when the base name of the compilation source file
4102 matches the base name of file in which the type was defined,
4103 unless the struct is a template or defined in a system header.
4104
4105 This option significantly reduces the size of debugging information,
4106 with some potential loss in type information to the debugger.
4107 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
4108 See @option{-femit-struct-debug-detailed} for more detailed control.
4109
4110 This option works only with DWARF 2.
4111
4112 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
4113 Specify the struct-like types
4114 for which the compiler will generate debug information.
4115 The intent is to reduce duplicate struct debug information
4116 between different object files within the same program.
4117
4118 This option is a detailed version of
4119 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
4120 which will serve for most needs.
4121
4122 A specification has the syntax
4123 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
4124
4125 The optional first word limits the specification to
4126 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
4127 A struct type is used directly when it is the type of a variable, member.
4128 Indirect uses arise through pointers to structs.
4129 That is, when use of an incomplete struct would be legal, the use is indirect.
4130 An example is
4131 @samp{struct one direct; struct two * indirect;}.
4132
4133 The optional second word limits the specification to
4134 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
4135 Generic structs are a bit complicated to explain.
4136 For C++, these are non-explicit specializations of template classes,
4137 or non-template classes within the above.
4138 Other programming languages have generics,
4139 but @samp{-femit-struct-debug-detailed} does not yet implement them.
4140
4141 The third word specifies the source files for those
4142 structs for which the compiler will emit debug information.
4143 The values @samp{none} and @samp{any} have the normal meaning.
4144 The value @samp{base} means that
4145 the base of name of the file in which the type declaration appears
4146 must match the base of the name of the main compilation file.
4147 In practice, this means that
4148 types declared in @file{foo.c} and @file{foo.h} will have debug information,
4149 but types declared in other header will not.
4150 The value @samp{sys} means those types satisfying @samp{base}
4151 or declared in system or compiler headers.
4152
4153 You may need to experiment to determine the best settings for your application.
4154
4155 The default is @samp{-femit-struct-debug-detailed=all}.
4156
4157 This option works only with DWARF 2.
4158
4159 @item -fdebug-prefix-map=@var{old}=@var{new}
4160 @opindex fdebug-prefix-map
4161 When compiling files in directory @file{@var{old}}, record debugging
4162 information describing them as in @file{@var{new}} instead.
4163
4164 @cindex @command{prof}
4165 @item -p
4166 @opindex p
4167 Generate extra code to write profile information suitable for the
4168 analysis program @command{prof}.  You must use this option when compiling
4169 the source files you want data about, and you must also use it when
4170 linking.
4171
4172 @cindex @command{gprof}
4173 @item -pg
4174 @opindex pg
4175 Generate extra code to write profile information suitable for the
4176 analysis program @command{gprof}.  You must use this option when compiling
4177 the source files you want data about, and you must also use it when
4178 linking.
4179
4180 @item -Q
4181 @opindex Q
4182 Makes the compiler print out each function name as it is compiled, and
4183 print some statistics about each pass when it finishes.
4184
4185 @item -ftime-report
4186 @opindex ftime-report
4187 Makes the compiler print some statistics about the time consumed by each
4188 pass when it finishes.
4189
4190 @item -fmem-report
4191 @opindex fmem-report
4192 Makes the compiler print some statistics about permanent memory
4193 allocation when it finishes.
4194
4195 @item -fpre-ipa-mem-report
4196 @opindex fpre-ipa-mem-report
4197 @item -fpost-ipa-mem-report
4198 @opindex fpost-ipa-mem-report
4199 Makes the compiler print some statistics about permanent memory
4200 allocation before or after interprocedural optimization.
4201
4202 @item -fprofile-arcs
4203 @opindex fprofile-arcs
4204 Add code so that program flow @dfn{arcs} are instrumented.  During
4205 execution the program records how many times each branch and call is
4206 executed and how many times it is taken or returns.  When the compiled
4207 program exits it saves this data to a file called
4208 @file{@var{auxname}.gcda} for each source file.  The data may be used for
4209 profile-directed optimizations (@option{-fbranch-probabilities}), or for
4210 test coverage analysis (@option{-ftest-coverage}).  Each object file's
4211 @var{auxname} is generated from the name of the output file, if
4212 explicitly specified and it is not the final executable, otherwise it is
4213 the basename of the source file.  In both cases any suffix is removed
4214 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
4215 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
4216 @xref{Cross-profiling}.
4217
4218 @cindex @command{gcov}
4219 @item --coverage
4220 @opindex coverage
4221
4222 This option is used to compile and link code instrumented for coverage
4223 analysis.  The option is a synonym for @option{-fprofile-arcs}
4224 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
4225 linking).  See the documentation for those options for more details.
4226
4227 @itemize
4228
4229 @item
4230 Compile the source files with @option{-fprofile-arcs} plus optimization
4231 and code generation options.  For test coverage analysis, use the
4232 additional @option{-ftest-coverage} option.  You do not need to profile
4233 every source file in a program.
4234
4235 @item
4236 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
4237 (the latter implies the former).
4238
4239 @item
4240 Run the program on a representative workload to generate the arc profile
4241 information.  This may be repeated any number of times.  You can run
4242 concurrent instances of your program, and provided that the file system
4243 supports locking, the data files will be correctly updated.  Also
4244 @code{fork} calls are detected and correctly handled (double counting
4245 will not happen).
4246
4247 @item
4248 For profile-directed optimizations, compile the source files again with
4249 the same optimization and code generation options plus
4250 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
4251 Control Optimization}).
4252
4253 @item
4254 For test coverage analysis, use @command{gcov} to produce human readable
4255 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
4256 @command{gcov} documentation for further information.
4257
4258 @end itemize
4259
4260 With @option{-fprofile-arcs}, for each function of your program GCC
4261 creates a program flow graph, then finds a spanning tree for the graph.
4262 Only arcs that are not on the spanning tree have to be instrumented: the
4263 compiler adds code to count the number of times that these arcs are
4264 executed.  When an arc is the only exit or only entrance to a block, the
4265 instrumentation code can be added to the block; otherwise, a new basic
4266 block must be created to hold the instrumentation code.
4267
4268 @need 2000
4269 @item -ftest-coverage
4270 @opindex ftest-coverage
4271 Produce a notes file that the @command{gcov} code-coverage utility
4272 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
4273 show program coverage.  Each source file's note file is called
4274 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
4275 above for a description of @var{auxname} and instructions on how to
4276 generate test coverage data.  Coverage data will match the source files
4277 more closely, if you do not optimize.
4278
4279 @item -fdbg-cnt-list
4280 @opindex fdbg-cnt-list
4281 Print the name and the counter upperbound for all debug counters.
4282
4283 @item -fdbg-cnt=@var{counter-value-list}
4284 @opindex fdbg-cnt
4285 Set the internal debug counter upperbound. @var{counter-value-list} 
4286 is a comma-separated list of @var{name}:@var{value} pairs
4287 which sets the upperbound of each debug counter @var{name} to @var{value}.
4288 All debug counters have the initial upperbound of @var{UINT_MAX},
4289 thus dbg_cnt() returns true always unless the upperbound is set by this option.
4290 e.g. With -fdbg-cnt=dce:10,tail_call:0
4291 dbg_cnt(dce) will return true only for first 10 invocations
4292 and dbg_cnt(tail_call) will return false always.
4293
4294 @item -d@var{letters}
4295 @item -fdump-rtl-@var{pass}
4296 @opindex d
4297 Says to make debugging dumps during compilation at times specified by
4298 @var{letters}.    This is used for debugging the RTL-based passes of the
4299 compiler.  The file names for most of the dumps are made by appending a
4300 pass number and a word to the @var{dumpname}.  @var{dumpname} is generated
4301 from the name of the output file, if explicitly specified and it is not
4302 an executable, otherwise it is the basename of the source file. These
4303 switches may have different effects when @option{-E} is used for
4304 preprocessing.
4305
4306 Most debug dumps can be enabled either passing a letter to the @option{-d}
4307 option, or with a long @option{-fdump-rtl} switch; here are the possible
4308 letters for use in @var{letters} and @var{pass}, and their meanings:
4309
4310 @table @gcctabopt
4311 @item -dA
4312 @opindex dA
4313 Annotate the assembler output with miscellaneous debugging information.
4314
4315 @item -dB
4316 @itemx -fdump-rtl-bbro
4317 @opindex dB
4318 @opindex fdump-rtl-bbro
4319 Dump after block reordering, to @file{@var{file}.148r.bbro}.
4320
4321 @item -dc
4322 @itemx -fdump-rtl-combine
4323 @opindex dc
4324 @opindex fdump-rtl-combine
4325 Dump after the RTL instruction combination pass, to the file
4326 @file{@var{file}.129r.combine}.
4327
4328 @item -dC
4329 @itemx -fdump-rtl-ce1
4330 @itemx -fdump-rtl-ce2
4331 @opindex dC
4332 @opindex fdump-rtl-ce1
4333 @opindex fdump-rtl-ce2
4334 @option{-dC} and @option{-fdump-rtl-ce1} enable dumping after the
4335 first if conversion, to the file @file{@var{file}.117r.ce1}.  @option{-dC}
4336 and @option{-fdump-rtl-ce2} enable dumping after the second if
4337 conversion, to the file @file{@var{file}.130r.ce2}.
4338
4339 @item -dd
4340 @itemx -fdump-rtl-btl
4341 @itemx -fdump-rtl-dbr
4342 @opindex dd
4343 @opindex fdump-rtl-btl
4344 @opindex fdump-rtl-dbr
4345 @option{-dd} and @option{-fdump-rtl-btl} enable dumping after branch
4346 target load optimization, to @file{@var{file}.31.btl}.  @option{-dd}
4347 and @option{-fdump-rtl-dbr} enable dumping after delayed branch
4348 scheduling, to @file{@var{file}.36.dbr}.
4349
4350 @item -dD
4351 @opindex dD
4352 Dump all macro definitions, at the end of preprocessing, in addition to
4353 normal output.
4354
4355 @item -dE
4356 @itemx -fdump-rtl-ce3
4357 @opindex dE
4358 @opindex fdump-rtl-ce3
4359 Dump after the third if conversion, to @file{@var{file}.146r.ce3}.
4360
4361 @item -df
4362 @itemx -fdump-rtl-cfg
4363 @itemx -fdump-rtl-life
4364 @opindex df
4365 @opindex fdump-rtl-cfg
4366 @opindex fdump-rtl-life
4367 @option{-df} and @option{-fdump-rtl-cfg} enable dumping after control
4368 and data flow analysis, to @file{@var{file}.116r.cfg}.  @option{-df}
4369 and @option{-fdump-rtl-cfg} enable dumping dump after life analysis,
4370 to @file{@var{file}.128r.life1} and @file{@var{file}.135r.life2}.
4371
4372 @item -dg
4373 @itemx -fdump-rtl-greg
4374 @opindex dg
4375 @opindex fdump-rtl-greg
4376 Dump after global register allocation, to @file{@var{file}.139r.greg}.
4377
4378 @item -dG
4379 @itemx -fdump-rtl-gcse
4380 @itemx -fdump-rtl-bypass
4381 @opindex dG
4382 @opindex fdump-rtl-gcse
4383 @opindex fdump-rtl-bypass
4384 @option{-dG} and @option{-fdump-rtl-gcse} enable dumping after GCSE, to
4385 @file{@var{file}.114r.gcse}.  @option{-dG} and @option{-fdump-rtl-bypass}
4386 enable dumping after jump bypassing and control flow optimizations, to
4387 @file{@var{file}.115r.bypass}.
4388
4389 @item -dh
4390 @itemx -fdump-rtl-eh
4391 @opindex dh
4392 @opindex fdump-rtl-eh
4393 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
4394
4395 @item -di
4396 @itemx -fdump-rtl-sibling
4397 @opindex di
4398 @opindex fdump-rtl-sibling
4399 Dump after sibling call optimizations, to @file{@var{file}.106r.sibling}.
4400
4401 @item -dj
4402 @itemx -fdump-rtl-jump
4403 @opindex dj
4404 @opindex fdump-rtl-jump
4405 Dump after the first jump optimization, to @file{@var{file}.112r.jump}.
4406
4407 @item -dk
4408 @itemx -fdump-rtl-stack
4409 @opindex dk
4410 @opindex fdump-rtl-stack
4411 Dump after conversion from GCC's "flat register file" registers to the
4412 x87's stack-like registers, to @file{@var{file}.152r.stack}.
4413
4414 @item -dl
4415 @itemx -fdump-rtl-lreg
4416 @opindex dl
4417 @opindex fdump-rtl-lreg
4418 Dump after local register allocation, to @file{@var{file}.138r.lreg}.
4419
4420 @item -dL
4421 @itemx -fdump-rtl-loop2
4422 @opindex dL
4423 @opindex fdump-rtl-loop2
4424 @option{-dL} and @option{-fdump-rtl-loop2} enable dumping after the
4425 loop optimization pass, to @file{@var{file}.119r.loop2},
4426 @file{@var{file}.120r.loop2_init},
4427 @file{@var{file}.121r.loop2_invariant}, and
4428 @file{@var{file}.125r.loop2_done}.
4429
4430 @item -dm
4431 @itemx -fdump-rtl-sms
4432 @opindex dm
4433 @opindex fdump-rtl-sms
4434 Dump after modulo scheduling, to @file{@var{file}.136r.sms}.
4435
4436 @item -dM
4437 @itemx -fdump-rtl-mach
4438 @opindex dM
4439 @opindex fdump-rtl-mach
4440 Dump after performing the machine dependent reorganization pass, to
4441 @file{@var{file}.155r.mach} if that pass exists.
4442
4443 @item -dn
4444 @itemx -fdump-rtl-rnreg
4445 @opindex dn
4446 @opindex fdump-rtl-rnreg
4447 Dump after register renumbering, to @file{@var{file}.147r.rnreg}.
4448
4449 @item -dN
4450 @itemx -fdump-rtl-regmove
4451 @opindex dN
4452 @opindex fdump-rtl-regmove
4453 Dump after the register move pass, to @file{@var{file}.132r.regmove}.
4454
4455 @item -do
4456 @itemx -fdump-rtl-postreload
4457 @opindex do
4458 @opindex fdump-rtl-postreload
4459 Dump after post-reload optimizations, to @file{@var{file}.24.postreload}.
4460
4461 @item -dr
4462 @itemx -fdump-rtl-expand
4463 @opindex dr
4464 @opindex fdump-rtl-expand
4465 Dump after RTL generation, to @file{@var{file}.104r.expand}.
4466
4467 @item -dR
4468 @itemx -fdump-rtl-sched2
4469 @opindex dR
4470 @opindex fdump-rtl-sched2
4471 Dump after the second scheduling pass, to @file{@var{file}.149r.sched2}.
4472
4473 @item -ds
4474 @itemx -fdump-rtl-cse
4475 @opindex ds
4476 @opindex fdump-rtl-cse
4477 Dump after CSE (including the jump optimization that sometimes follows
4478 CSE), to @file{@var{file}.113r.cse}.
4479
4480 @item -dS
4481 @itemx -fdump-rtl-sched1
4482 @opindex dS
4483 @opindex fdump-rtl-sched1
4484 Dump after the first scheduling pass, to @file{@var{file}.136r.sched1}.
4485
4486 @item -dt
4487 @itemx -fdump-rtl-cse2
4488 @opindex dt
4489 @opindex fdump-rtl-cse2
4490 Dump after the second CSE pass (including the jump optimization that
4491 sometimes follows CSE), to @file{@var{file}.127r.cse2}.
4492
4493 @item -dT
4494 @itemx -fdump-rtl-tracer
4495 @opindex dT
4496 @opindex fdump-rtl-tracer
4497 Dump after running tracer, to @file{@var{file}.118r.tracer}.
4498
4499 @item -dV
4500 @itemx -fdump-rtl-vpt
4501 @itemx -fdump-rtl-vartrack
4502 @opindex dV
4503 @opindex fdump-rtl-vpt
4504 @opindex fdump-rtl-vartrack
4505 @option{-dV} and @option{-fdump-rtl-vpt} enable dumping after the value
4506 profile transformations, to @file{@var{file}.10.vpt}.  @option{-dV}
4507 and @option{-fdump-rtl-vartrack} enable dumping after variable tracking,
4508 to @file{@var{file}.154r.vartrack}.
4509
4510 @item -dw
4511 @itemx -fdump-rtl-flow2
4512 @opindex dw
4513 @opindex fdump-rtl-flow2
4514 Dump after the second flow pass, to @file{@var{file}.142r.flow2}.
4515
4516 @item -dz
4517 @itemx -fdump-rtl-peephole2
4518 @opindex dz
4519 @opindex fdump-rtl-peephole2
4520 Dump after the peephole pass, to @file{@var{file}.145r.peephole2}.
4521
4522 @item -dZ
4523 @itemx -fdump-rtl-web
4524 @opindex dZ
4525 @opindex fdump-rtl-web
4526 Dump after live range splitting, to @file{@var{file}.126r.web}.
4527
4528 @item -da
4529 @itemx -fdump-rtl-all
4530 @opindex da
4531 @opindex fdump-rtl-all
4532 Produce all the dumps listed above.
4533
4534 @item -dH
4535 @opindex dH
4536 Produce a core dump whenever an error occurs.
4537
4538 @item -dm
4539 @opindex dm
4540 Print statistics on memory usage, at the end of the run, to
4541 standard error.
4542
4543 @item -dp
4544 @opindex dp
4545 Annotate the assembler output with a comment indicating which
4546 pattern and alternative was used.  The length of each instruction is
4547 also printed.
4548
4549 @item -dP
4550 @opindex dP
4551 Dump the RTL in the assembler output as a comment before each instruction.
4552 Also turns on @option{-dp} annotation.
4553
4554 @item -dv
4555 @opindex dv
4556 For each of the other indicated dump files (either with @option{-d} or
4557 @option{-fdump-rtl-@var{pass}}), dump a representation of the control flow
4558 graph suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
4559
4560 @item -dx
4561 @opindex dx
4562 Just generate RTL for a function instead of compiling it.  Usually used
4563 with @samp{r} (@option{-fdump-rtl-expand}).
4564
4565 @item -dy
4566 @opindex dy
4567 Dump debugging information during parsing, to standard error.
4568 @end table
4569
4570 @item -fdump-noaddr
4571 @opindex fdump-noaddr
4572 When doing debugging dumps (see @option{-d} option above), suppress
4573 address output.  This makes it more feasible to use diff on debugging
4574 dumps for compiler invocations with different compiler binaries and/or
4575 different text / bss / data / heap / stack / dso start locations.
4576
4577 @item -fdump-unnumbered
4578 @opindex fdump-unnumbered
4579 When doing debugging dumps (see @option{-d} option above), suppress instruction
4580 numbers and address output.  This makes it more feasible to
4581 use diff on debugging dumps for compiler invocations with different
4582 options, in particular with and without @option{-g}.
4583
4584 @item -fdump-translation-unit @r{(C++ only)}
4585 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
4586 @opindex fdump-translation-unit
4587 Dump a representation of the tree structure for the entire translation
4588 unit to a file.  The file name is made by appending @file{.tu} to the
4589 source file name.  If the @samp{-@var{options}} form is used, @var{options}
4590 controls the details of the dump as described for the
4591 @option{-fdump-tree} options.
4592
4593 @item -fdump-class-hierarchy @r{(C++ only)}
4594 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
4595 @opindex fdump-class-hierarchy
4596 Dump a representation of each class's hierarchy and virtual function
4597 table layout to a file.  The file name is made by appending @file{.class}
4598 to the source file name.  If the @samp{-@var{options}} form is used,
4599 @var{options} controls the details of the dump as described for the
4600 @option{-fdump-tree} options.
4601
4602 @item -fdump-ipa-@var{switch}
4603 @opindex fdump-ipa
4604 Control the dumping at various stages of inter-procedural analysis
4605 language tree to a file.  The file name is generated by appending a switch
4606 specific suffix to the source file name.  The following dumps are possible:
4607
4608 @table @samp
4609 @item all
4610 Enables all inter-procedural analysis dumps; currently the only produced
4611 dump is the @samp{cgraph} dump.
4612
4613 @item cgraph
4614 Dumps information about call-graph optimization, unused function removal,
4615 and inlining decisions.
4616 @end table
4617
4618 @item -fdump-tree-@var{switch}
4619 @itemx -fdump-tree-@var{switch}-@var{options}
4620 @opindex fdump-tree
4621 Control the dumping at various stages of processing the intermediate
4622 language tree to a file.  The file name is generated by appending a switch
4623 specific suffix to the source file name.  If the @samp{-@var{options}}
4624 form is used, @var{options} is a list of @samp{-} separated options that
4625 control the details of the dump.  Not all options are applicable to all
4626 dumps, those which are not meaningful will be ignored.  The following
4627 options are available
4628
4629 @table @samp
4630 @item address
4631 Print the address of each node.  Usually this is not meaningful as it
4632 changes according to the environment and source file.  Its primary use
4633 is for tying up a dump file with a debug environment.
4634 @item slim
4635 Inhibit dumping of members of a scope or body of a function merely
4636 because that scope has been reached.  Only dump such items when they
4637 are directly reachable by some other path.  When dumping pretty-printed
4638 trees, this option inhibits dumping the bodies of control structures.
4639 @item raw
4640 Print a raw representation of the tree.  By default, trees are
4641 pretty-printed into a C-like representation.
4642 @item details
4643 Enable more detailed dumps (not honored by every dump option).
4644 @item stats
4645 Enable dumping various statistics about the pass (not honored by every dump
4646 option).
4647 @item blocks
4648 Enable showing basic block boundaries (disabled in raw dumps).
4649 @item vops
4650 Enable showing virtual operands for every statement.
4651 @item lineno
4652 Enable showing line numbers for statements.
4653 @item uid
4654 Enable showing the unique ID (@code{DECL_UID}) for each variable.
4655 @item all
4656 Turn on all options, except @option{raw}, @option{slim} and @option{lineno}.
4657 @end table
4658
4659 The following tree dumps are possible:
4660 @table @samp
4661
4662 @item original
4663 Dump before any tree based optimization, to @file{@var{file}.original}.
4664
4665 @item optimized
4666 Dump after all tree based optimization, to @file{@var{file}.optimized}.
4667
4668 @item inlined
4669 Dump after function inlining, to @file{@var{file}.inlined}.
4670
4671 @item gimple
4672 @opindex fdump-tree-gimple
4673 Dump each function before and after the gimplification pass to a file.  The
4674 file name is made by appending @file{.gimple} to the source file name.
4675
4676 @item cfg
4677 @opindex fdump-tree-cfg
4678 Dump the control flow graph of each function to a file.  The file name is
4679 made by appending @file{.cfg} to the source file name.
4680
4681 @item vcg
4682 @opindex fdump-tree-vcg
4683 Dump the control flow graph of each function to a file in VCG format.  The
4684 file name is made by appending @file{.vcg} to the source file name.  Note
4685 that if the file contains more than one function, the generated file cannot
4686 be used directly by VCG@.  You will need to cut and paste each function's
4687 graph into its own separate file first.
4688
4689 @item ch
4690 @opindex fdump-tree-ch
4691 Dump each function after copying loop headers.  The file name is made by
4692 appending @file{.ch} to the source file name.
4693
4694 @item ssa
4695 @opindex fdump-tree-ssa
4696 Dump SSA related information to a file.  The file name is made by appending
4697 @file{.ssa} to the source file name.
4698
4699 @item salias
4700 @opindex fdump-tree-salias
4701 Dump structure aliasing variable information to a file.  This file name
4702 is made by appending @file{.salias} to the source file name.
4703
4704 @item alias
4705 @opindex fdump-tree-alias
4706 Dump aliasing information for each function.  The file name is made by
4707 appending @file{.alias} to the source file name.
4708
4709 @item ccp
4710 @opindex fdump-tree-ccp
4711 Dump each function after CCP@.  The file name is made by appending
4712 @file{.ccp} to the source file name.
4713
4714 @item storeccp
4715 @opindex fdump-tree-storeccp
4716 Dump each function after STORE-CCP.  The file name is made by appending
4717 @file{.storeccp} to the source file name.
4718
4719 @item pre
4720 @opindex fdump-tree-pre
4721 Dump trees after partial redundancy elimination.  The file name is made
4722 by appending @file{.pre} to the source file name.
4723
4724 @item fre
4725 @opindex fdump-tree-fre
4726 Dump trees after full redundancy elimination.  The file name is made
4727 by appending @file{.fre} to the source file name.
4728
4729 @item copyprop
4730 @opindex fdump-tree-copyprop
4731 Dump trees after copy propagation.  The file name is made
4732 by appending @file{.copyprop} to the source file name.
4733
4734 @item store_copyprop
4735 @opindex fdump-tree-store_copyprop
4736 Dump trees after store copy-propagation.  The file name is made
4737 by appending @file{.store_copyprop} to the source file name.
4738
4739 @item dce
4740 @opindex fdump-tree-dce
4741 Dump each function after dead code elimination.  The file name is made by
4742 appending @file{.dce} to the source file name.
4743
4744 @item mudflap
4745 @opindex fdump-tree-mudflap
4746 Dump each function after adding mudflap instrumentation.  The file name is
4747 made by appending @file{.mudflap} to the source file name.
4748
4749 @item sra
4750 @opindex fdump-tree-sra
4751 Dump each function after performing scalar replacement of aggregates.  The
4752 file name is made by appending @file{.sra} to the source file name.
4753
4754 @item sink
4755 @opindex fdump-tree-sink
4756 Dump each function after performing code sinking.  The file name is made
4757 by appending @file{.sink} to the source file name.
4758
4759 @item dom
4760 @opindex fdump-tree-dom
4761 Dump each function after applying dominator tree optimizations.  The file
4762 name is made by appending @file{.dom} to the source file name.
4763
4764 @item dse
4765 @opindex fdump-tree-dse
4766 Dump each function after applying dead store elimination.  The file
4767 name is made by appending @file{.dse} to the source file name.
4768
4769 @item phiopt
4770 @opindex fdump-tree-phiopt
4771 Dump each function after optimizing PHI nodes into straightline code.  The file
4772 name is made by appending @file{.phiopt} to the source file name.
4773
4774 @item forwprop
4775 @opindex fdump-tree-forwprop
4776 Dump each function after forward propagating single use variables.  The file
4777 name is made by appending @file{.forwprop} to the source file name.
4778
4779 @item copyrename
4780 @opindex fdump-tree-copyrename
4781 Dump each function after applying the copy rename optimization.  The file
4782 name is made by appending @file{.copyrename} to the source file name.
4783
4784 @item nrv
4785 @opindex fdump-tree-nrv
4786 Dump each function after applying the named return value optimization on
4787 generic trees.  The file name is made by appending @file{.nrv} to the source
4788 file name.
4789
4790 @item vect
4791 @opindex fdump-tree-vect
4792 Dump each function after applying vectorization of loops.  The file name is
4793 made by appending @file{.vect} to the source file name.
4794
4795 @item vrp
4796 @opindex fdump-tree-vrp
4797 Dump each function after Value Range Propagation (VRP).  The file name
4798 is made by appending @file{.vrp} to the source file name.
4799
4800 @item all
4801 @opindex fdump-tree-all
4802 Enable all the available tree dumps with the flags provided in this option.
4803 @end table
4804
4805 @item -ftree-vectorizer-verbose=@var{n}
4806 @opindex ftree-vectorizer-verbose
4807 This option controls the amount of debugging output the vectorizer prints.
4808 This information is written to standard error, unless
4809 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified,
4810 in which case it is output to the usual dump listing file, @file{.vect}.
4811 For @var{n}=0 no diagnostic information is reported.
4812 If @var{n}=1 the vectorizer reports each loop that got vectorized,
4813 and the total number of loops that got vectorized.
4814 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed
4815 the first analysis phase (vect_analyze_loop_form) - i.e. countable,
4816 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity
4817 level that @option{-fdump-tree-vect-stats} uses.
4818 Higher verbosity levels mean either more information dumped for each
4819 reported loop, or same amount of information reported for more loops:
4820 If @var{n}=3, alignment related information is added to the reports.
4821 If @var{n}=4, data-references related information (e.g. memory dependences,
4822 memory access-patterns) is added to the reports.
4823 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops
4824 that did not pass the first analysis phase (i.e. may not be countable, or
4825 may have complicated control-flow).
4826 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
4827 For @var{n}=7, all the information the vectorizer generates during its
4828 analysis and transformation is reported.  This is the same verbosity level
4829 that @option{-fdump-tree-vect-details} uses.
4830
4831 @item -frandom-seed=@var{string}
4832 @opindex frandom-string
4833 This option provides a seed that GCC uses when it would otherwise use
4834 random numbers.  It is used to generate certain symbol names
4835 that have to be different in every compiled file.  It is also used to
4836 place unique stamps in coverage data files and the object files that
4837 produce them.  You can use the @option{-frandom-seed} option to produce
4838 reproducibly identical object files.
4839
4840 The @var{string} should be different for every file you compile.
4841
4842 @item -fsched-verbose=@var{n}
4843 @opindex fsched-verbose
4844 On targets that use instruction scheduling, this option controls the
4845 amount of debugging output the scheduler prints.  This information is
4846 written to standard error, unless @option{-dS} or @option{-dR} is
4847 specified, in which case it is output to the usual dump
4848 listing file, @file{.sched} or @file{.sched2} respectively.  However
4849 for @var{n} greater than nine, the output is always printed to standard
4850 error.
4851
4852 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
4853 same information as @option{-dRS}.  For @var{n} greater than one, it
4854 also output basic block probabilities, detailed ready list information
4855 and unit/insn info.  For @var{n} greater than two, it includes RTL
4856 at abort point, control-flow and regions info.  And for @var{n} over
4857 four, @option{-fsched-verbose} also includes dependence info.
4858
4859 @item -save-temps
4860 @opindex save-temps
4861 Store the usual ``temporary'' intermediate files permanently; place them
4862 in the current directory and name them based on the source file.  Thus,
4863 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
4864 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
4865 preprocessed @file{foo.i} output file even though the compiler now
4866 normally uses an integrated preprocessor.
4867
4868 When used in combination with the @option{-x} command line option,
4869 @option{-save-temps} is sensible enough to avoid over writing an
4870 input source file with the same extension as an intermediate file.
4871 The corresponding intermediate file may be obtained by renaming the
4872 source file before using @option{-save-temps}.
4873
4874 @item -time
4875 @opindex time
4876 Report the CPU time taken by each subprocess in the compilation
4877 sequence.  For C source files, this is the compiler proper and assembler
4878 (plus the linker if linking is done).  The output looks like this:
4879
4880 @smallexample
4881 # cc1 0.12 0.01
4882 # as 0.00 0.01
4883 @end smallexample
4884
4885 The first number on each line is the ``user time'', that is time spent
4886 executing the program itself.  The second number is ``system time'',
4887 time spent executing operating system routines on behalf of the program.
4888 Both numbers are in seconds.
4889
4890 @item -fvar-tracking
4891 @opindex fvar-tracking
4892 Run variable tracking pass.  It computes where variables are stored at each
4893 position in code.  Better debugging information is then generated
4894 (if the debugging information format supports this information).
4895
4896 It is enabled by default when compiling with optimization (@option{-Os},
4897 @option{-O}, @option{-O2}, ...), debugging information (@option{-g}) and
4898 the debug info format supports it.
4899
4900 @item -print-file-name=@var{library}
4901 @opindex print-file-name
4902 Print the full absolute name of the library file @var{library} that
4903 would be used when linking---and don't do anything else.  With this
4904 option, GCC does not compile or link anything; it just prints the
4905 file name.
4906
4907 @item -print-multi-directory
4908 @opindex print-multi-directory
4909 Print the directory name corresponding to the multilib selected by any
4910 other switches present in the command line.  This directory is supposed
4911 to exist in @env{GCC_EXEC_PREFIX}.
4912
4913 @item -print-multi-lib
4914 @opindex print-multi-lib
4915 Print the mapping from multilib directory names to compiler switches
4916 that enable them.  The directory name is separated from the switches by
4917 @samp{;}, and each switch starts with an @samp{@@} instead of the
4918 @samp{-}, without spaces between multiple switches.  This is supposed to
4919 ease shell-processing.
4920
4921 @item -print-prog-name=@var{program}
4922 @opindex print-prog-name
4923 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
4924
4925 @item -print-libgcc-file-name
4926 @opindex print-libgcc-file-name
4927 Same as @option{-print-file-name=libgcc.a}.
4928
4929 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
4930 but you do want to link with @file{libgcc.a}.  You can do
4931
4932 @smallexample
4933 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
4934 @end smallexample
4935
4936 @item -print-search-dirs
4937 @opindex print-search-dirs
4938 Print the name of the configured installation directory and a list of
4939 program and library directories @command{gcc} will search---and don't do anything else.
4940
4941 This is useful when @command{gcc} prints the error message
4942 @samp{installation problem, cannot exec cpp0: No such file or directory}.
4943 To resolve this you either need to put @file{cpp0} and the other compiler
4944 components where @command{gcc} expects to find them, or you can set the environment
4945 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
4946 Don't forget the trailing @samp{/}.
4947 @xref{Environment Variables}.
4948
4949 @item -print-sysroot-headers-suffix
4950 @opindex print-sysroot-headers-suffix
4951 Print the suffix added to the target sysroot when searching for
4952 headers, or give an error if the compiler is not configured with such
4953 a suffix---and don't do anything else.
4954
4955 @item -dumpmachine
4956 @opindex dumpmachine
4957 Print the compiler's target machine (for example,
4958 @samp{i686-pc-linux-gnu})---and don't do anything else.
4959
4960 @item -dumpversion
4961 @opindex dumpversion
4962 Print the compiler version (for example, @samp{3.0})---and don't do
4963 anything else.
4964
4965 @item -dumpspecs
4966 @opindex dumpspecs
4967 Print the compiler's built-in specs---and don't do anything else.  (This
4968 is used when GCC itself is being built.)  @xref{Spec Files}.
4969
4970 @item -feliminate-unused-debug-types
4971 @opindex feliminate-unused-debug-types
4972 Normally, when producing DWARF2 output, GCC will emit debugging
4973 information for all types declared in a compilation
4974 unit, regardless of whether or not they are actually used
4975 in that compilation unit.  Sometimes this is useful, such as
4976 if, in the debugger, you want to cast a value to a type that is
4977 not actually used in your program (but is declared).  More often,
4978 however, this results in a significant amount of wasted space.
4979 With this option, GCC will avoid producing debug symbol output
4980 for types that are nowhere used in the source file being compiled.
4981 @end table
4982
4983 @node Optimize Options
4984 @section Options That Control Optimization
4985 @cindex optimize options
4986 @cindex options, optimization
4987
4988 These options control various sorts of optimizations.
4989
4990 Without any optimization option, the compiler's goal is to reduce the
4991 cost of compilation and to make debugging produce the expected
4992 results.  Statements are independent: if you stop the program with a
4993 breakpoint between statements, you can then assign a new value to any
4994 variable or change the program counter to any other statement in the
4995 function and get exactly the results you would expect from the source
4996 code.
4997
4998 Turning on optimization flags makes the compiler attempt to improve
4999 the performance and/or code size at the expense of compilation time
5000 and possibly the ability to debug the program.
5001
5002 The compiler performs optimization based on the knowledge it has of
5003 the program.  Optimization levels @option{-O} and above, in
5004 particular, enable @emph{unit-at-a-time} mode, which allows the
5005 compiler to consider information gained from later functions in
5006 the file when compiling a function.  Compiling multiple files at
5007 once to a single output file in @emph{unit-at-a-time} mode allows
5008 the compiler to use information gained from all of the files when
5009 compiling each of them.
5010
5011 Not all optimizations are controlled directly by a flag.  Only
5012 optimizations that have a flag are listed.
5013
5014 @table @gcctabopt
5015 @item -O
5016 @itemx -O1
5017 @opindex O
5018 @opindex O1
5019 Optimize.  Optimizing compilation takes somewhat more time, and a lot
5020 more memory for a large function.
5021
5022 With @option{-O}, the compiler tries to reduce code size and execution
5023 time, without performing any optimizations that take a great deal of
5024 compilation time.
5025
5026 @option{-O} turns on the following optimization flags:
5027 @gccoptlist{-fdefer-pop @gol
5028 -fdelayed-branch @gol
5029 -fguess-branch-probability @gol
5030 -fcprop-registers @gol
5031 -fif-conversion @gol
5032 -fif-conversion2 @gol
5033 -fsplit-wide-types @gol
5034 -ftree-ccp @gol
5035 -ftree-dce @gol
5036 -ftree-dominator-opts @gol
5037 -ftree-dse @gol
5038 -ftree-ter @gol
5039 -ftree-sra @gol
5040 -ftree-copyrename @gol
5041 -ftree-fre @gol
5042 -ftree-ch @gol
5043 -funit-at-a-time @gol
5044 -finline-small-functions @gol
5045 -fmerge-constants}
5046
5047 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
5048 where doing so does not interfere with debugging.
5049
5050 @item -O2
5051 @opindex O2
5052 Optimize even more.  GCC performs nearly all supported optimizations
5053 that do not involve a space-speed tradeoff.  The compiler does not
5054 perform loop unrolling or function inlining when you specify @option{-O2}.
5055 As compared to @option{-O}, this option increases both compilation time
5056 and the performance of the generated code.
5057
5058 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
5059 also turns on the following optimization flags:
5060 @gccoptlist{-fthread-jumps @gol
5061 -fcrossjumping @gol
5062 -foptimize-sibling-calls @gol
5063 -fcse-follow-jumps  -fcse-skip-blocks @gol
5064 -fgcse  -fgcse-lm  @gol
5065 -fexpensive-optimizations @gol
5066 -frerun-cse-after-loop  @gol
5067 -fcaller-saves @gol
5068 -fpeephole2 @gol
5069 -fschedule-insns  -fschedule-insns2 @gol
5070 -fsched-interblock  -fsched-spec @gol
5071 -fregmove @gol
5072 -fstrict-aliasing -fstrict-overflow @gol
5073 -fdelete-null-pointer-checks @gol
5074 -freorder-blocks  -freorder-functions @gol
5075 -falign-functions  -falign-jumps @gol
5076 -falign-loops  -falign-labels @gol
5077 -ftree-vrp @gol
5078 -ftree-pre}
5079
5080 Please note the warning under @option{-fgcse} about
5081 invoking @option{-O2} on programs that use computed gotos.
5082
5083 @item -O3
5084 @opindex O3
5085 Optimize yet more.  @option{-O3} turns on all optimizations specified by
5086 @option{-O2} and also turns on the @option{-finline-functions},
5087 @option{-funswitch-loops}, @option{-fpredictive-commoning} and
5088 @option{-fgcse-after-reload} options.
5089
5090 @item -O0
5091 @opindex O0
5092 Reduce compilation time and make debugging produce the expected
5093 results.  This is the default.
5094
5095 @item -Os
5096 @opindex Os
5097 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
5098 do not typically increase code size.  It also performs further
5099 optimizations designed to reduce code size.
5100
5101 @option{-Os} disables the following optimization flags:
5102 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
5103 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
5104 -fprefetch-loop-arrays  -ftree-vect-loop-version}
5105
5106 If you use multiple @option{-O} options, with or without level numbers,
5107 the last such option is the one that is effective.
5108 @end table
5109
5110 Options of the form @option{-f@var{flag}} specify machine-independent
5111 flags.  Most flags have both positive and negative forms; the negative
5112 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
5113 below, only one of the forms is listed---the one you typically will
5114 use.  You can figure out the other form by either removing @samp{no-}
5115 or adding it.
5116
5117 The following options control specific optimizations.  They are either
5118 activated by @option{-O} options or are related to ones that are.  You
5119 can use the following flags in the rare cases when ``fine-tuning'' of
5120 optimizations to be performed is desired.
5121
5122 @table @gcctabopt
5123 @item -fno-default-inline
5124 @opindex fno-default-inline
5125 Do not make member functions inline by default merely because they are
5126 defined inside the class scope (C++ only).  Otherwise, when you specify
5127 @w{@option{-O}}, member functions defined inside class scope are compiled
5128 inline by default; i.e., you don't need to add @samp{inline} in front of
5129 the member function name.
5130
5131 @item -fno-defer-pop
5132 @opindex fno-defer-pop
5133 Always pop the arguments to each function call as soon as that function
5134 returns.  For machines which must pop arguments after a function call,
5135 the compiler normally lets arguments accumulate on the stack for several
5136 function calls and pops them all at once.
5137
5138 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5139
5140 @item -fforce-addr
5141 @opindex fforce-addr
5142 Force memory address constants to be copied into registers before
5143 doing arithmetic on them.
5144
5145 @item -fforward-propagate
5146 @opindex fforward-propagate
5147 Perform a forward propagation pass on RTL.  The pass tries to combine two
5148 instructions and checks if the result can be simplified.  If loop unrolling
5149 is active, two passes are performed and the second is scheduled after
5150 loop unrolling.
5151
5152 This option is enabled by default at optimization levels @option{-O2},
5153 @option{-O3}, @option{-Os}.
5154
5155 @item -fomit-frame-pointer
5156 @opindex fomit-frame-pointer
5157 Don't keep the frame pointer in a register for functions that
5158 don't need one.  This avoids the instructions to save, set up and
5159 restore frame pointers; it also makes an extra register available
5160 in many functions.  @strong{It also makes debugging impossible on
5161 some machines.}
5162
5163 On some machines, such as the VAX, this flag has no effect, because
5164 the standard calling sequence automatically handles the frame pointer
5165 and nothing is saved by pretending it doesn't exist.  The
5166 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
5167 whether a target machine supports this flag.  @xref{Registers,,Register
5168 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
5169
5170 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5171
5172 @item -foptimize-sibling-calls
5173 @opindex foptimize-sibling-calls
5174 Optimize sibling and tail recursive calls.
5175
5176 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5177
5178 @item -fno-inline
5179 @opindex fno-inline
5180 Don't pay attention to the @code{inline} keyword.  Normally this option
5181 is used to keep the compiler from expanding any functions inline.
5182 Note that if you are not optimizing, no functions can be expanded inline.
5183
5184 @item -finline-small-functions
5185 @opindex finline-small-functions
5186 Integrate functions into their callers when their body is smaller than expected
5187 function call code (so overall size of program gets smaller).  The compiler
5188 heuristically decides which functions are simple enough to be worth integrating
5189 in this way.
5190
5191 Enabled at level @option{-O2}.
5192
5193 @item -finline-functions
5194 @opindex finline-functions
5195 Integrate all simple functions into their callers.  The compiler
5196 heuristically decides which functions are simple enough to be worth
5197 integrating in this way.
5198
5199 If all calls to a given function are integrated, and the function is
5200 declared @code{static}, then the function is normally not output as
5201 assembler code in its own right.
5202
5203 Enabled at level @option{-O3}.
5204
5205 @item -finline-functions-called-once
5206 @opindex finline-functions-called-once
5207 Consider all @code{static} functions called once for inlining into their
5208 caller even if they are not marked @code{inline}.  If a call to a given
5209 function is integrated, then the function is not output as assembler code
5210 in its own right.
5211
5212 Enabled if @option{-funit-at-a-time} is enabled.
5213
5214 @item -fearly-inlining
5215 @opindex fearly-inlining
5216 Inline functions marked by @code{always_inline} and functions whose body seems
5217 smaller than the function call overhead early before doing
5218 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
5219 makes profiling significantly cheaper and usually inlining faster on programs
5220 having large chains of nested wrapper functions.
5221
5222 Enabled by default.
5223
5224 @item -finline-limit=@var{n}
5225 @opindex finline-limit
5226 By default, GCC limits the size of functions that can be inlined.  This flag
5227 allows the control of this limit for functions that are explicitly marked as
5228 inline (i.e., marked with the inline keyword or defined within the class
5229 definition in c++).  @var{n} is the size of functions that can be inlined in
5230 number of pseudo instructions (not counting parameter handling).  The default
5231 value of @var{n} is 600.
5232 Increasing this value can result in more inlined code at
5233 the cost of compilation time and memory consumption.  Decreasing usually makes
5234 the compilation faster and less code will be inlined (which presumably
5235 means slower programs).  This option is particularly useful for programs that
5236 use inlining heavily such as those based on recursive templates with C++.
5237
5238 Inlining is actually controlled by a number of parameters, which may be
5239 specified individually by using @option{--param @var{name}=@var{value}}.
5240 The @option{-finline-limit=@var{n}} option sets some of these parameters
5241 as follows:
5242
5243 @table @gcctabopt
5244 @item max-inline-insns-single
5245  is set to @var{n}/2.
5246 @item max-inline-insns-auto
5247  is set to @var{n}/2.
5248 @item min-inline-insns
5249  is set to 130 or @var{n}/4, whichever is smaller.
5250 @item max-inline-insns-rtl
5251  is set to @var{n}.
5252 @end table
5253
5254 See below for a documentation of the individual
5255 parameters controlling inlining.
5256
5257 @emph{Note:} pseudo instruction represents, in this particular context, an
5258 abstract measurement of function's size.  In no way does it represent a count
5259 of assembly instructions and as such its exact meaning might change from one
5260 release to an another.
5261
5262 @item -fkeep-inline-functions
5263 @opindex fkeep-inline-functions
5264 In C, emit @code{static} functions that are declared @code{inline}
5265 into the object file, even if the function has been inlined into all
5266 of its callers.  This switch does not affect functions using the
5267 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
5268 inline functions into the object file.
5269
5270 @item -fkeep-static-consts
5271 @opindex fkeep-static-consts
5272 Emit variables declared @code{static const} when optimization isn't turned
5273 on, even if the variables aren't referenced.
5274
5275 GCC enables this option by default.  If you want to force the compiler to
5276 check if the variable was referenced, regardless of whether or not
5277 optimization is turned on, use the @option{-fno-keep-static-consts} option.
5278
5279 @item -fmerge-constants
5280 Attempt to merge identical constants (string constants and floating point
5281 constants) across compilation units.
5282
5283 This option is the default for optimized compilation if the assembler and
5284 linker support it.  Use @option{-fno-merge-constants} to inhibit this
5285 behavior.
5286
5287 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5288
5289 @item -fmerge-all-constants
5290 Attempt to merge identical constants and identical variables.
5291
5292 This option implies @option{-fmerge-constants}.  In addition to
5293 @option{-fmerge-constants} this considers e.g.@: even constant initialized
5294 arrays or initialized constant variables with integral or floating point
5295 types.  Languages like C or C++ require each non-automatic variable to
5296 have distinct location, so using this option will result in non-conforming
5297 behavior.
5298
5299 @item -fmodulo-sched
5300 @opindex fmodulo-sched
5301 Perform swing modulo scheduling immediately before the first scheduling
5302 pass.  This pass looks at innermost loops and reorders their
5303 instructions by overlapping different iterations.
5304
5305 @item -fmodulo-sched-allow-regmoves
5306 @opindex fmodulo-sched-allow-regmoves
5307 Perform more aggressive SMS based modulo scheduling with register moves
5308 allowed.  By setting this flag certain anti-dependences edges will be
5309 deleted which will trigger the generation of reg-moves based on the
5310 life-range analysis.  This option is effective only with
5311 @option{-fmodulo-sched} enabled.
5312
5313 @item -fno-branch-count-reg
5314 @opindex fno-branch-count-reg
5315 Do not use ``decrement and branch'' instructions on a count register,
5316 but instead generate a sequence of instructions that decrement a
5317 register, compare it against zero, then branch based upon the result.
5318 This option is only meaningful on architectures that support such
5319 instructions, which include x86, PowerPC, IA-64 and S/390.
5320
5321 The default is @option{-fbranch-count-reg}.
5322
5323 @item -fno-function-cse
5324 @opindex fno-function-cse
5325 Do not put function addresses in registers; make each instruction that
5326 calls a constant function contain the function's address explicitly.
5327
5328 This option results in less efficient code, but some strange hacks
5329 that alter the assembler output may be confused by the optimizations
5330 performed when this option is not used.
5331
5332 The default is @option{-ffunction-cse}
5333
5334 @item -fno-zero-initialized-in-bss
5335 @opindex fno-zero-initialized-in-bss
5336 If the target supports a BSS section, GCC by default puts variables that
5337 are initialized to zero into BSS@.  This can save space in the resulting
5338 code.
5339
5340 This option turns off this behavior because some programs explicitly
5341 rely on variables going to the data section.  E.g., so that the
5342 resulting executable can find the beginning of that section and/or make
5343 assumptions based on that.
5344
5345 The default is @option{-fzero-initialized-in-bss}.
5346
5347 @item -fbounds-check
5348 @opindex fbounds-check
5349 For front-ends that support it, generate additional code to check that
5350 indices used to access arrays are within the declared range.  This is
5351 currently only supported by the Java and Fortran front-ends, where
5352 this option defaults to true and false respectively.
5353
5354 @item -fmudflap -fmudflapth -fmudflapir
5355 @opindex fmudflap
5356 @opindex fmudflapth
5357 @opindex fmudflapir
5358 @cindex bounds checking
5359 @cindex mudflap
5360 For front-ends that support it (C and C++), instrument all risky
5361 pointer/array dereferencing operations, some standard library
5362 string/heap functions, and some other associated constructs with
5363 range/validity tests.  Modules so instrumented should be immune to
5364 buffer overflows, invalid heap use, and some other classes of C/C++
5365 programming errors.  The instrumentation relies on a separate runtime
5366 library (@file{libmudflap}), which will be linked into a program if
5367 @option{-fmudflap} is given at link time.  Run-time behavior of the
5368 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
5369 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
5370 for its options.
5371
5372 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
5373 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
5374 addition to @option{-fmudflap} or @option{-fmudflapth}, if
5375 instrumentation should ignore pointer reads.  This produces less
5376 instrumentation (and therefore faster execution) and still provides
5377 some protection against outright memory corrupting writes, but allows
5378 erroneously read data to propagate within a program.
5379
5380 @item -fthread-jumps
5381 @opindex fthread-jumps
5382 Perform optimizations where we check to see if a jump branches to a
5383 location where another comparison subsumed by the first is found.  If
5384 so, the first branch is redirected to either the destination of the
5385 second branch or a point immediately following it, depending on whether
5386 the condition is known to be true or false.
5387
5388 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5389
5390 @item -fsplit-wide-types
5391 @opindex fsplit-wide-types
5392 When using a type that occupies multiple registers, such as @code{long
5393 long} on a 32-bit system, split the registers apart and allocate them
5394 independently.  This normally generates better code for those types,
5395 but may make debugging more difficult.
5396
5397 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
5398 @option{-Os}.
5399
5400 @item -fcse-follow-jumps
5401 @opindex fcse-follow-jumps
5402 In common subexpression elimination, scan through jump instructions
5403 when the target of the jump is not reached by any other path.  For
5404 example, when CSE encounters an @code{if} statement with an
5405 @code{else} clause, CSE will follow the jump when the condition
5406 tested is false.
5407
5408 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5409
5410 @item -fcse-skip-blocks
5411 @opindex fcse-skip-blocks
5412 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
5413 follow jumps which conditionally skip over blocks.  When CSE
5414 encounters a simple @code{if} statement with no else clause,
5415 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
5416 body of the @code{if}.
5417
5418 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5419
5420 @item -frerun-cse-after-loop
5421 @opindex frerun-cse-after-loop
5422 Re-run common subexpression elimination after loop optimizations has been
5423 performed.
5424
5425 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5426
5427 @item -fgcse
5428 @opindex fgcse
5429 Perform a global common subexpression elimination pass.
5430 This pass also performs global constant and copy propagation.
5431
5432 @emph{Note:} When compiling a program using computed gotos, a GCC
5433 extension, you may get better runtime performance if you disable
5434 the global common subexpression elimination pass by adding
5435 @option{-fno-gcse} to the command line.
5436
5437 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5438
5439 @item -fgcse-lm
5440 @opindex fgcse-lm
5441 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
5442 attempt to move loads which are only killed by stores into themselves.  This
5443 allows a loop containing a load/store sequence to be changed to a load outside
5444 the loop, and a copy/store within the loop.
5445
5446 Enabled by default when gcse is enabled.
5447
5448 @item -fgcse-sm
5449 @opindex fgcse-sm
5450 When @option{-fgcse-sm} is enabled, a store motion pass is run after
5451 global common subexpression elimination.  This pass will attempt to move
5452 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
5453 loops containing a load/store sequence can be changed to a load before
5454 the loop and a store after the loop.
5455
5456 Not enabled at any optimization level.
5457
5458 @item -fgcse-las
5459 @opindex fgcse-las
5460 When @option{-fgcse-las} is enabled, the global common subexpression
5461 elimination pass eliminates redundant loads that come after stores to the
5462 same memory location (both partial and full redundancies).
5463
5464 Not enabled at any optimization level.
5465
5466 @item -fgcse-after-reload
5467 @opindex fgcse-after-reload
5468 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
5469 pass is performed after reload.  The purpose of this pass is to cleanup
5470 redundant spilling.
5471
5472 @item -funsafe-loop-optimizations
5473 @opindex funsafe-loop-optimizations
5474 If given, the loop optimizer will assume that loop indices do not
5475 overflow, and that the loops with nontrivial exit condition are not
5476 infinite.  This enables a wider range of loop optimizations even if
5477 the loop optimizer itself cannot prove that these assumptions are valid.
5478 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
5479 if it finds this kind of loop.
5480
5481 @item -fcrossjumping
5482 @opindex crossjumping
5483 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
5484 resulting code may or may not perform better than without cross-jumping.
5485
5486 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5487
5488 @item -fif-conversion
5489 @opindex if-conversion
5490 Attempt to transform conditional jumps into branch-less equivalents.  This
5491 include use of conditional moves, min, max, set flags and abs instructions, and
5492 some tricks doable by standard arithmetics.  The use of conditional execution
5493 on chips where it is available is controlled by @code{if-conversion2}.
5494
5495 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5496
5497 @item -fif-conversion2
5498 @opindex if-conversion2
5499 Use conditional execution (where available) to transform conditional jumps into
5500 branch-less equivalents.
5501
5502 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5503
5504 @item -fdelete-null-pointer-checks
5505 @opindex fdelete-null-pointer-checks
5506 Use global dataflow analysis to identify and eliminate useless checks
5507 for null pointers.  The compiler assumes that dereferencing a null
5508 pointer would have halted the program.  If a pointer is checked after
5509 it has already been dereferenced, it cannot be null.
5510
5511 In some environments, this assumption is not true, and programs can
5512 safely dereference null pointers.  Use
5513 @option{-fno-delete-null-pointer-checks} to disable this optimization
5514 for programs which depend on that behavior.
5515
5516 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5517
5518 @item -fexpensive-optimizations
5519 @opindex fexpensive-optimizations
5520 Perform a number of minor optimizations that are relatively expensive.
5521
5522 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5523
5524 @item -foptimize-register-move
5525 @itemx -fregmove
5526 @opindex foptimize-register-move
5527 @opindex fregmove
5528 Attempt to reassign register numbers in move instructions and as
5529 operands of other simple instructions in order to maximize the amount of
5530 register tying.  This is especially helpful on machines with two-operand
5531 instructions.
5532
5533 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
5534 optimization.
5535
5536 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5537
5538 @item -fdelayed-branch
5539 @opindex fdelayed-branch
5540 If supported for the target machine, attempt to reorder instructions
5541 to exploit instruction slots available after delayed branch
5542 instructions.
5543
5544 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5545
5546 @item -fschedule-insns
5547 @opindex fschedule-insns
5548 If supported for the target machine, attempt to reorder instructions to
5549 eliminate execution stalls due to required data being unavailable.  This
5550 helps machines that have slow floating point or memory load instructions
5551 by allowing other instructions to be issued until the result of the load
5552 or floating point instruction is required.
5553
5554 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5555
5556 @item -fschedule-insns2
5557 @opindex fschedule-insns2
5558 Similar to @option{-fschedule-insns}, but requests an additional pass of
5559 instruction scheduling after register allocation has been done.  This is
5560 especially useful on machines with a relatively small number of
5561 registers and where memory load instructions take more than one cycle.
5562
5563 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5564
5565 @item -fno-sched-interblock
5566 @opindex fno-sched-interblock
5567 Don't schedule instructions across basic blocks.  This is normally
5568 enabled by default when scheduling before register allocation, i.e.@:
5569 with @option{-fschedule-insns} or at @option{-O2} or higher.
5570
5571 @item -fno-sched-spec
5572 @opindex fno-sched-spec
5573 Don't allow speculative motion of non-load instructions.  This is normally
5574 enabled by default when scheduling before register allocation, i.e.@:
5575 with @option{-fschedule-insns} or at @option{-O2} or higher.
5576
5577 @item -fsched-spec-load
5578 @opindex fsched-spec-load
5579 Allow speculative motion of some load instructions.  This only makes
5580 sense when scheduling before register allocation, i.e.@: with
5581 @option{-fschedule-insns} or at @option{-O2} or higher.
5582
5583 @item -fsched-spec-load-dangerous
5584 @opindex fsched-spec-load-dangerous
5585 Allow speculative motion of more load instructions.  This only makes
5586 sense when scheduling before register allocation, i.e.@: with
5587 @option{-fschedule-insns} or at @option{-O2} or higher.
5588
5589 @item -fsched-stalled-insns=@var{n}
5590 @opindex fsched-stalled-insns
5591 Define how many insns (if any) can be moved prematurely from the queue
5592 of stalled insns into the ready list, during the second scheduling pass.
5593
5594 @item -fsched-stalled-insns-dep=@var{n}
5595 @opindex fsched-stalled-insns-dep
5596 Define how many insn groups (cycles) will be examined for a dependency
5597 on a stalled insn that is candidate for premature removal from the queue
5598 of stalled insns.  Has an effect only during the second scheduling pass,
5599 and only if @option{-fsched-stalled-insns} is used and its value is not zero.
5600
5601 @item -fsched2-use-superblocks
5602 @opindex fsched2-use-superblocks
5603 When scheduling after register allocation, do use superblock scheduling
5604 algorithm.  Superblock scheduling allows motion across basic block boundaries
5605 resulting on faster schedules.  This option is experimental, as not all machine
5606 descriptions used by GCC model the CPU closely enough to avoid unreliable
5607 results from the algorithm.
5608
5609 This only makes sense when scheduling after register allocation, i.e.@: with
5610 @option{-fschedule-insns2} or at @option{-O2} or higher.
5611
5612 @item -fsched2-use-traces
5613 @opindex fsched2-use-traces
5614 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
5615 allocation and additionally perform code duplication in order to increase the
5616 size of superblocks using tracer pass.  See @option{-ftracer} for details on
5617 trace formation.
5618
5619 This mode should produce faster but significantly longer programs.  Also
5620 without @option{-fbranch-probabilities} the traces constructed may not
5621 match the reality and hurt the performance.  This only makes
5622 sense when scheduling after register allocation, i.e.@: with
5623 @option{-fschedule-insns2} or at @option{-O2} or higher.
5624
5625 @item -fsee
5626 @opindex fsee
5627 Eliminates redundant extension instructions and move the non redundant
5628 ones to optimal placement using LCM.
5629
5630 @item -freschedule-modulo-scheduled-loops
5631 @opindex fscheduling-in-modulo-scheduled-loops
5632 The modulo scheduling comes before the traditional scheduling, if a loop
5633 was modulo scheduled we may want to prevent the later scheduling passes
5634 from changing its schedule, we use this option to control that.
5635
5636 @item -fcaller-saves
5637 @opindex fcaller-saves
5638 Enable values to be allocated in registers that will be clobbered by
5639 function calls, by emitting extra instructions to save and restore the
5640 registers around such calls.  Such allocation is done only when it
5641 seems to result in better code than would otherwise be produced.
5642
5643 This option is always enabled by default on certain machines, usually
5644 those which have no call-preserved registers to use instead.
5645
5646 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5647
5648 @item -ftree-reassoc
5649 Perform Reassociation on trees  This flag is enabled by default
5650 at @option{-O} and higher.
5651
5652 @item -ftree-pre
5653 Perform Partial Redundancy Elimination (PRE) on trees.  This flag is
5654 enabled by default at @option{-O2} and @option{-O3}.
5655
5656 @item -ftree-fre
5657 Perform Full Redundancy Elimination (FRE) on trees.  The difference
5658 between FRE and PRE is that FRE only considers expressions
5659 that are computed on all paths leading to the redundant computation.
5660 This analysis is faster than PRE, though it exposes fewer redundancies.
5661 This flag is enabled by default at @option{-O} and higher.
5662
5663 @item -ftree-copy-prop
5664 Perform copy propagation on trees.  This pass eliminates unnecessary
5665 copy operations.  This flag is enabled by default at @option{-O} and
5666 higher.
5667
5668 @item -ftree-store-copy-prop
5669 Perform copy propagation of memory loads and stores.  This pass
5670 eliminates unnecessary copy operations in memory references
5671 (structures, global variables, arrays, etc).  This flag is enabled by
5672 default at @option{-O2} and higher.
5673
5674 @item -ftree-salias
5675 Perform structural alias analysis on trees.  This flag
5676 is enabled by default at @option{-O} and higher.
5677
5678 @item -fipa-pta
5679 Perform interprocedural pointer analysis.
5680
5681 @item -ftree-sink
5682 Perform forward store motion  on trees.  This flag is
5683 enabled by default at @option{-O} and higher.
5684
5685 @item -ftree-ccp
5686 Perform sparse conditional constant propagation (CCP) on trees.  This
5687 pass only operates on local scalar variables and is enabled by default
5688 at @option{-O} and higher.
5689
5690 @item -ftree-store-ccp
5691 Perform sparse conditional constant propagation (CCP) on trees.  This
5692 pass operates on both local scalar variables and memory stores and
5693 loads (global variables, structures, arrays, etc).  This flag is
5694 enabled by default at @option{-O2} and higher.
5695
5696 @item -ftree-dce
5697 Perform dead code elimination (DCE) on trees.  This flag is enabled by
5698 default at @option{-O} and higher.
5699
5700 @item -ftree-dominator-opts
5701 Perform a variety of simple scalar cleanups (constant/copy
5702 propagation, redundancy elimination, range propagation and expression
5703 simplification) based on a dominator tree traversal.  This also
5704 performs jump threading (to reduce jumps to jumps). This flag is
5705 enabled by default at @option{-O} and higher.
5706
5707 @item -ftree-dse
5708 @opindex ftree-dse
5709 Perform dead store elimination (DSE) on trees.  A dead store is a store into
5710 a memory location which will later be overwritten by another store without
5711 any intervening loads.  In this case the earlier store can be deleted.  This
5712 flag is enabled by default at @option{-O} and higher.
5713
5714 @item -ftree-ch
5715 Perform loop header copying on trees.  This is beneficial since it increases
5716 effectiveness of code motion optimizations.  It also saves one jump.  This flag
5717 is enabled by default at @option{-O} and higher.  It is not enabled
5718 for @option{-Os}, since it usually increases code size.
5719
5720 @item -ftree-loop-optimize
5721 Perform loop optimizations on trees.  This flag is enabled by default
5722 at @option{-O} and higher.
5723
5724 @item -ftree-loop-linear
5725 Perform linear loop transformations on tree.  This flag can improve cache
5726 performance and allow further loop optimizations to take place.
5727
5728 @item -fcheck-data-deps
5729 Compare the results of several data dependence analyzers.  This option
5730 is used for debugging the data dependence analyzers.
5731
5732 @item -ftree-loop-im
5733 Perform loop invariant motion on trees.  This pass moves only invariants that
5734 would be hard to handle at RTL level (function calls, operations that expand to
5735 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
5736 operands of conditions that are invariant out of the loop, so that we can use
5737 just trivial invariantness analysis in loop unswitching.  The pass also includes
5738 store motion.
5739
5740 @item -ftree-loop-ivcanon
5741 Create a canonical counter for number of iterations in the loop for that
5742 determining number of iterations requires complicated analysis.  Later
5743 optimizations then may determine the number easily.  Useful especially
5744 in connection with unrolling.
5745
5746 @item -fivopts
5747 Perform induction variable optimizations (strength reduction, induction
5748 variable merging and induction variable elimination) on trees.
5749
5750 @item -ftree-parallelize-loops=n
5751 @opindex ftree-parallelize-loops=n
5752 Parallelize loops, i.e., split their iteration space to run in n threads.
5753 This is only possible for loops whose iterations are independent
5754 and can be arbitrarily reordered.  The optimization is only
5755 profitable on multiprocessor machines, for loops that are CPU-intensive,
5756 rather than constrained e.g. by memory bandwidth.
5757
5758 @item -ftree-sra
5759 Perform scalar replacement of aggregates.  This pass replaces structure
5760 references with scalars to prevent committing structures to memory too
5761 early.  This flag is enabled by default at @option{-O} and higher.
5762
5763 @item -ftree-copyrename
5764 Perform copy renaming on trees.  This pass attempts to rename compiler
5765 temporaries to other variables at copy locations, usually resulting in
5766 variable names which more closely resemble the original variables.  This flag
5767 is enabled by default at @option{-O} and higher.
5768
5769 @item -ftree-ter
5770 Perform temporary expression replacement during the SSA->normal phase.  Single
5771 use/single def temporaries are replaced at their use location with their
5772 defining expression.  This results in non-GIMPLE code, but gives the expanders
5773 much more complex trees to work on resulting in better RTL generation.  This is
5774 enabled by default at @option{-O} and higher.
5775
5776 @item -ftree-vectorize
5777 Perform loop vectorization on trees.
5778
5779 @item -ftree-vect-loop-version
5780 @opindex ftree-vect-loop-version
5781 Perform loop versioning when doing loop vectorization on trees.  When a loop
5782 appears to be vectorizable except that data alignment or data dependence cannot
5783 be determined at compile time then vectorized and non-vectorized versions of
5784 the loop are generated along with runtime checks for alignment or dependence
5785 to control which version is executed.  This option is enabled by default
5786 except at level @option{-Os} where it is disabled.
5787
5788 @item -fvect-cost-model
5789 Enable cost model for vectorization.
5790
5791 @item -ftree-vrp
5792 Perform Value Range Propagation on trees.  This is similar to the
5793 constant propagation pass, but instead of values, ranges of values are
5794 propagated.  This allows the optimizers to remove unnecessary range
5795 checks like array bound checks and null pointer checks.  This is
5796 enabled by default at @option{-O2} and higher.  Null pointer check
5797 elimination is only done if @option{-fdelete-null-pointer-checks} is
5798 enabled.
5799
5800 @item -ftracer
5801 @opindex ftracer
5802 Perform tail duplication to enlarge superblock size.  This transformation
5803 simplifies the control flow of the function allowing other optimizations to do
5804 better job.
5805
5806 @item -funroll-loops
5807 @opindex funroll-loops
5808 Unroll loops whose number of iterations can be determined at compile
5809 time or upon entry to the loop.  @option{-funroll-loops} implies
5810 @option{-frerun-cse-after-loop}.  This option makes code larger,
5811 and may or may not make it run faster.
5812
5813 @item -funroll-all-loops
5814 @opindex funroll-all-loops
5815 Unroll all loops, even if their number of iterations is uncertain when
5816 the loop is entered.  This usually makes programs run more slowly.
5817 @option{-funroll-all-loops} implies the same options as
5818 @option{-funroll-loops},
5819
5820 @item -fsplit-ivs-in-unroller
5821 @opindex fsplit-ivs-in-unroller
5822 Enables expressing of values of induction variables in later iterations
5823 of the unrolled loop using the value in the first iteration.  This breaks
5824 long dependency chains, thus improving efficiency of the scheduling passes.
5825
5826 Combination of @option{-fweb} and CSE is often sufficient to obtain the
5827 same effect.  However in cases the loop body is more complicated than
5828 a single basic block, this is not reliable.  It also does not work at all
5829 on some of the architectures due to restrictions in the CSE pass.
5830
5831 This optimization is enabled by default.
5832
5833 @item -fvariable-expansion-in-unroller
5834 @opindex fvariable-expansion-in-unroller
5835 With this option, the compiler will create multiple copies of some
5836 local variables when unrolling a loop which can result in superior code.
5837
5838 @item -fpredictive-commoning
5839 @opindex fpredictive-commoning
5840 Perform predictive commoning optimization, i.e., reusing computations
5841 (especially memory loads and stores) performed in previous
5842 iterations of loops.
5843
5844 This option is enabled at level @option{-O3}.
5845
5846 @item -fprefetch-loop-arrays
5847 @opindex fprefetch-loop-arrays
5848 If supported by the target machine, generate instructions to prefetch
5849 memory to improve the performance of loops that access large arrays.
5850
5851 This option may generate better or worse code; results are highly
5852 dependent on the structure of loops within the source code.
5853
5854 Disabled at level @option{-Os}.
5855
5856 @item -fno-peephole
5857 @itemx -fno-peephole2
5858 @opindex fno-peephole
5859 @opindex fno-peephole2
5860 Disable any machine-specific peephole optimizations.  The difference
5861 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
5862 are implemented in the compiler; some targets use one, some use the
5863 other, a few use both.
5864
5865 @option{-fpeephole} is enabled by default.
5866 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5867
5868 @item -fno-guess-branch-probability
5869 @opindex fno-guess-branch-probability
5870 Do not guess branch probabilities using heuristics.
5871
5872 GCC will use heuristics to guess branch probabilities if they are
5873 not provided by profiling feedback (@option{-fprofile-arcs}).  These
5874 heuristics are based on the control flow graph.  If some branch probabilities
5875 are specified by @samp{__builtin_expect}, then the heuristics will be
5876 used to guess branch probabilities for the rest of the control flow graph,
5877 taking the @samp{__builtin_expect} info into account.  The interactions
5878 between the heuristics and @samp{__builtin_expect} can be complex, and in
5879 some cases, it may be useful to disable the heuristics so that the effects
5880 of @samp{__builtin_expect} are easier to understand.
5881
5882 The default is @option{-fguess-branch-probability} at levels
5883 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5884
5885 @item -freorder-blocks
5886 @opindex freorder-blocks
5887 Reorder basic blocks in the compiled function in order to reduce number of
5888 taken branches and improve code locality.
5889
5890 Enabled at levels @option{-O2}, @option{-O3}.
5891
5892 @item -freorder-blocks-and-partition
5893 @opindex freorder-blocks-and-partition
5894 In addition to reordering basic blocks in the compiled function, in order
5895 to reduce number of taken branches, partitions hot and cold basic blocks
5896 into separate sections of the assembly and .o files, to improve
5897 paging and cache locality performance.
5898
5899 This optimization is automatically turned off in the presence of
5900 exception handling, for linkonce sections, for functions with a user-defined
5901 section attribute and on any architecture that does not support named
5902 sections.
5903
5904 @item -freorder-functions
5905 @opindex freorder-functions
5906 Reorder functions in the object file in order to
5907 improve code locality.  This is implemented by using special
5908 subsections @code{.text.hot} for most frequently executed functions and
5909 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
5910 the linker so object file format must support named sections and linker must
5911 place them in a reasonable way.
5912
5913 Also profile feedback must be available in to make this option effective.  See
5914 @option{-fprofile-arcs} for details.
5915
5916 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5917
5918 @item -fstrict-aliasing
5919 @opindex fstrict-aliasing
5920 Allows the compiler to assume the strictest aliasing rules applicable to
5921 the language being compiled.  For C (and C++), this activates
5922 optimizations based on the type of expressions.  In particular, an
5923 object of one type is assumed never to reside at the same address as an
5924 object of a different type, unless the types are almost the same.  For
5925 example, an @code{unsigned int} can alias an @code{int}, but not a
5926 @code{void*} or a @code{double}.  A character type may alias any other
5927 type.
5928
5929 Pay special attention to code like this:
5930 @smallexample
5931 union a_union @{
5932   int i;
5933   double d;
5934 @};
5935
5936 int f() @{
5937   a_union t;
5938   t.d = 3.0;
5939   return t.i;
5940 @}
5941 @end smallexample
5942 The practice of reading from a different union member than the one most
5943 recently written to (called ``type-punning'') is common.  Even with
5944 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
5945 is accessed through the union type.  So, the code above will work as
5946 expected.  However, this code might not:
5947 @smallexample
5948 int f() @{
5949   a_union t;
5950   int* ip;
5951   t.d = 3.0;
5952   ip = &t.i;
5953   return *ip;
5954 @}
5955 @end smallexample
5956
5957 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5958
5959 @item -fstrict-overflow
5960 @opindex fstrict-overflow
5961 Allow the compiler to assume strict signed overflow rules, depending
5962 on the language being compiled.  For C (and C++) this means that
5963 overflow when doing arithmetic with signed numbers is undefined, which
5964 means that the compiler may assume that it will not happen.  This
5965 permits various optimizations.  For example, the compiler will assume
5966 that an expression like @code{i + 10 > i} will always be true for
5967 signed @code{i}.  This assumption is only valid if signed overflow is
5968 undefined, as the expression is false if @code{i + 10} overflows when
5969 using twos complement arithmetic.  When this option is in effect any
5970 attempt to determine whether an operation on signed numbers will
5971 overflow must be written carefully to not actually involve overflow.
5972
5973 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
5974 that signed overflow is fully defined: it wraps.  When
5975 @option{-fwrapv} is used, there is no difference between
5976 @option{-fstrict-overflow} and @option{-fno-strict-overflow}.  With
5977 @option{-fwrapv} certain types of overflow are permitted.  For
5978 example, if the compiler gets an overflow when doing arithmetic on
5979 constants, the overflowed value can still be used with
5980 @option{-fwrapv}, but not otherwise.
5981
5982 The @option{-fstrict-overflow} option is enabled at levels
5983 @option{-O2}, @option{-O3}, @option{-Os}.
5984
5985 @item -falign-functions
5986 @itemx -falign-functions=@var{n}
5987 @opindex falign-functions
5988 Align the start of functions to the next power-of-two greater than
5989 @var{n}, skipping up to @var{n} bytes.  For instance,
5990 @option{-falign-functions=32} aligns functions to the next 32-byte
5991 boundary, but @option{-falign-functions=24} would align to the next
5992 32-byte boundary only if this can be done by skipping 23 bytes or less.
5993
5994 @option{-fno-align-functions} and @option{-falign-functions=1} are
5995 equivalent and mean that functions will not be aligned.
5996
5997 Some assemblers only support this flag when @var{n} is a power of two;
5998 in that case, it is rounded up.
5999
6000 If @var{n} is not specified or is zero, use a machine-dependent default.
6001
6002 Enabled at levels @option{-O2}, @option{-O3}.
6003
6004 @item -falign-labels
6005 @itemx -falign-labels=@var{n}
6006 @opindex falign-labels
6007 Align all branch targets to a power-of-two boundary, skipping up to
6008 @var{n} bytes like @option{-falign-functions}.  This option can easily
6009 make code slower, because it must insert dummy operations for when the
6010 branch target is reached in the usual flow of the code.
6011
6012 @option{-fno-align-labels} and @option{-falign-labels=1} are
6013 equivalent and mean that labels will not be aligned.
6014
6015 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
6016 are greater than this value, then their values are used instead.
6017
6018 If @var{n} is not specified or is zero, use a machine-dependent default
6019 which is very likely to be @samp{1}, meaning no alignment.
6020
6021 Enabled at levels @option{-O2}, @option{-O3}.
6022
6023 @item -falign-loops
6024 @itemx -falign-loops=@var{n}
6025 @opindex falign-loops
6026 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
6027 like @option{-falign-functions}.  The hope is that the loop will be
6028 executed many times, which will make up for any execution of the dummy
6029 operations.
6030
6031 @option{-fno-align-loops} and @option{-falign-loops=1} are
6032 equivalent and mean that loops will not be aligned.
6033
6034 If @var{n} is not specified or is zero, use a machine-dependent default.
6035
6036 Enabled at levels @option{-O2}, @option{-O3}.
6037
6038 @item -falign-jumps
6039 @itemx -falign-jumps=@var{n}
6040 @opindex falign-jumps
6041 Align branch targets to a power-of-two boundary, for branch targets
6042 where the targets can only be reached by jumping, skipping up to @var{n}
6043 bytes like @option{-falign-functions}.  In this case, no dummy operations
6044 need be executed.
6045
6046 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
6047 equivalent and mean that loops will not be aligned.
6048
6049 If @var{n} is not specified or is zero, use a machine-dependent default.
6050
6051 Enabled at levels @option{-O2}, @option{-O3}.
6052
6053 @item -funit-at-a-time
6054 @opindex funit-at-a-time
6055 Parse the whole compilation unit before starting to produce code.
6056 This allows some extra optimizations to take place but consumes
6057 more memory (in general).  There are some compatibility issues
6058 with @emph{unit-at-a-time} mode:
6059 @itemize @bullet
6060 @item
6061 enabling @emph{unit-at-a-time} mode may change the order
6062 in which functions, variables, and top-level @code{asm} statements
6063 are emitted, and will likely break code relying on some particular
6064 ordering.  The majority of such top-level @code{asm} statements,
6065 though, can be replaced by @code{section} attributes.  The
6066 @option{fno-toplevel-reorder} option may be used to keep the ordering
6067 used in the input file, at the cost of some optimizations.
6068
6069 @item
6070 @emph{unit-at-a-time} mode removes unreferenced static variables
6071 and functions.  This may result in undefined references
6072 when an @code{asm} statement refers directly to variables or functions
6073 that are otherwise unused.  In that case either the variable/function
6074 shall be listed as an operand of the @code{asm} statement operand or,
6075 in the case of top-level @code{asm} statements the attribute @code{used}
6076 shall be used on the declaration.
6077
6078 @item
6079 Static functions now can use non-standard passing conventions that
6080 may break @code{asm} statements calling functions directly.  Again,
6081 attribute @code{used} will prevent this behavior.
6082 @end itemize
6083
6084 As a temporary workaround, @option{-fno-unit-at-a-time} can be used,
6085 but this scheme may not be supported by future releases of GCC@.
6086
6087 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6088
6089 @item -fno-toplevel-reorder
6090 Do not reorder top-level functions, variables, and @code{asm}
6091 statements.  Output them in the same order that they appear in the
6092 input file.  When this option is used, unreferenced static variables
6093 will not be removed.  This option is intended to support existing code
6094 which relies on a particular ordering.  For new code, it is better to
6095 use attributes.
6096
6097 @item -fweb
6098 @opindex fweb
6099 Constructs webs as commonly used for register allocation purposes and assign
6100 each web individual pseudo register.  This allows the register allocation pass
6101 to operate on pseudos directly, but also strengthens several other optimization
6102 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
6103 however, make debugging impossible, since variables will no longer stay in a
6104 ``home register''.
6105
6106 Enabled by default with @option{-funroll-loops}.
6107
6108 @item -fwhole-program
6109 @opindex fwhole-program
6110 Assume that the current compilation unit represents whole program being
6111 compiled.  All public functions and variables with the exception of @code{main}
6112 and those merged by attribute @code{externally_visible} become static functions
6113 and in a affect gets more aggressively optimized by interprocedural optimizers.
6114 While this option is equivalent to proper use of @code{static} keyword for
6115 programs consisting of single file, in combination with option
6116 @option{--combine} this flag can be used to compile most of smaller scale C
6117 programs since the functions and variables become local for the whole combined
6118 compilation unit, not for the single source file itself.
6119
6120 This option is not supported for Fortran programs.
6121
6122 @item -fno-cprop-registers
6123 @opindex fno-cprop-registers
6124 After register allocation and post-register allocation instruction splitting,
6125 we perform a copy-propagation pass to try to reduce scheduling dependencies
6126 and occasionally eliminate the copy.
6127
6128 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
6129
6130 @item -fprofile-generate
6131 @opindex fprofile-generate
6132
6133 Enable options usually used for instrumenting application to produce
6134 profile useful for later recompilation with profile feedback based
6135 optimization.  You must use @option{-fprofile-generate} both when
6136 compiling and when linking your program.
6137
6138 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
6139
6140 @item -fprofile-use
6141 @opindex fprofile-use
6142 Enable profile feedback directed optimizations, and optimizations
6143 generally profitable only with profile feedback available.
6144
6145 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
6146 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
6147
6148 By default, GCC emits an error message if the feedback profiles do not
6149 match the source code.  This error can be turned into a warning by using
6150 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
6151 code.
6152 @end table
6153
6154 The following options control compiler behavior regarding floating
6155 point arithmetic.  These options trade off between speed and
6156 correctness.  All must be specifically enabled.
6157
6158 @table @gcctabopt
6159 @item -ffloat-store
6160 @opindex ffloat-store
6161 Do not store floating point variables in registers, and inhibit other
6162 options that might change whether a floating point value is taken from a
6163 register or memory.
6164
6165 @cindex floating point precision
6166 This option prevents undesirable excess precision on machines such as
6167 the 68000 where the floating registers (of the 68881) keep more
6168 precision than a @code{double} is supposed to have.  Similarly for the
6169 x86 architecture.  For most programs, the excess precision does only
6170 good, but a few programs rely on the precise definition of IEEE floating
6171 point.  Use @option{-ffloat-store} for such programs, after modifying
6172 them to store all pertinent intermediate computations into variables.
6173
6174 @item -ffast-math
6175 @opindex ffast-math
6176 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations}, @*
6177 @option{-fno-trapping-math}, @option{-ffinite-math-only},
6178 @option{-fno-rounding-math}, @option{-fno-signaling-nans},
6179 @option{-fno-signed-zeros} and @option{fcx-limited-range}.
6180
6181 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
6182
6183 This option is not turned on by any @option{-O} option since
6184 it can result in incorrect output for programs which depend on
6185 an exact implementation of IEEE or ISO rules/specifications for
6186 math functions. It may, however, yield faster code for programs
6187 that do not require the guarantees of these specifications.
6188
6189 @item -fno-math-errno
6190 @opindex fno-math-errno
6191 Do not set ERRNO after calling math functions that are executed
6192 with a single instruction, e.g., sqrt.  A program that relies on
6193 IEEE exceptions for math error handling may want to use this flag
6194 for speed while maintaining IEEE arithmetic compatibility.
6195
6196 This option is not turned on by any @option{-O} option since
6197 it can result in incorrect output for programs which depend on
6198 an exact implementation of IEEE or ISO rules/specifications for
6199 math functions. It may, however, yield faster code for programs
6200 that do not require the guarantees of these specifications.
6201
6202 The default is @option{-fmath-errno}.
6203
6204 On Darwin systems, the math library never sets @code{errno}.  There is
6205 therefore no reason for the compiler to consider the possibility that
6206 it might, and @option{-fno-math-errno} is the default.
6207
6208 @item -funsafe-math-optimizations
6209 @opindex funsafe-math-optimizations
6210
6211 Allow optimizations for floating-point arithmetic that (a) assume
6212 that arguments and results are valid and (b) may violate IEEE or
6213 ANSI standards.  When used at link-time, it may include libraries
6214 or startup files that change the default FPU control word or other
6215 similar optimizations.
6216
6217 This option is not turned on by any @option{-O} option since
6218 it can result in incorrect output for programs which depend on
6219 an exact implementation of IEEE or ISO rules/specifications for
6220 math functions. It may, however, yield faster code for programs
6221 that do not require the guarantees of these specifications.
6222 Enables @option{-freciprocal-math} and @option{-fassociative-math}.
6223
6224 The default is @option{-fno-unsafe-math-optimizations}.
6225
6226 @item -fassociative-math
6227 @opindex -fassociative-math
6228
6229 Allow re-association of operands in series of floating-point operations.
6230 This violates the ISO C and C++ language standard by possibly changing
6231 computation result.  NOTE: re-ordering may change the sign of zero as
6232 well as ignore NaNs and inhibit or create underflow or overflow (and
6233 thus cannot be used on a code which relies on rounding behavior like
6234 @code{(x + 2**52) - 2**52)}.  May also reorder floating-point comparisons
6235 and thus may not be used when ordered comparisons are required.
6236 This flag doesn't make much sense without @option{-fno-signed-zeros}
6237 or @option{-fno-trapping-math} or with @option{-frounding-math}.
6238
6239 The default is @option{-fno-associative-math}.
6240
6241 @item -freciprocal-math
6242 @opindex -freciprocal-math
6243
6244 Allow the reciprocal of a value to be used instead of dividing by
6245 the value if this enables optimizations.  For example @code{x / y}
6246 can be replaced with @code{x * (1/y)} which is useful if @code{(1/y)}
6247 is subject to common subexpression elimination.  Note that this loses
6248 precision and increases the number of flops operating on the value.
6249
6250 The default is @option{-fno-reciprocal-math}.
6251
6252 @item -ffinite-math-only
6253 @opindex ffinite-math-only
6254 Allow optimizations for floating-point arithmetic that assume
6255 that arguments and results are not NaNs or +-Infs.
6256
6257 This option is not turned on by any @option{-O} option since
6258 it can result in incorrect output for programs which depend on
6259 an exact implementation of IEEE or ISO rules/specifications for
6260 math functions. It may, however, yield faster code for programs
6261 that do not require the guarantees of these specifications.
6262
6263 The default is @option{-fno-finite-math-only}.
6264
6265 @item -fno-signed-zeros
6266 @opindex fno-signed-zeros
6267 Allow optimizations for floating point arithmetic that ignore the
6268 signedness of zero.  IEEE arithmetic specifies the behavior of
6269 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
6270 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
6271 This option implies that the sign of a zero result isn't significant.
6272
6273 The default is @option{-fsigned-zeros}.
6274
6275 @item -fno-trapping-math
6276 @opindex fno-trapping-math
6277 Compile code assuming that floating-point operations cannot generate
6278 user-visible traps.  These traps include division by zero, overflow,
6279 underflow, inexact result and invalid operation.  This option implies
6280 @option{-fno-signaling-nans}.  Setting this option may allow faster
6281 code if one relies on ``non-stop'' IEEE arithmetic, for example.
6282
6283 This option should never be turned on by any @option{-O} option since
6284 it can result in incorrect output for programs which depend on
6285 an exact implementation of IEEE or ISO rules/specifications for
6286 math functions.
6287
6288 The default is @option{-ftrapping-math}.
6289
6290 @item -frounding-math
6291 @opindex frounding-math
6292 Disable transformations and optimizations that assume default floating
6293 point rounding behavior.  This is round-to-zero for all floating point
6294 to integer conversions, and round-to-nearest for all other arithmetic
6295 truncations.  This option should be specified for programs that change
6296 the FP rounding mode dynamically, or that may be executed with a
6297 non-default rounding mode.  This option disables constant folding of
6298 floating point expressions at compile-time (which may be affected by
6299 rounding mode) and arithmetic transformations that are unsafe in the
6300 presence of sign-dependent rounding modes.
6301
6302 The default is @option{-fno-rounding-math}.
6303
6304 This option is experimental and does not currently guarantee to
6305 disable all GCC optimizations that are affected by rounding mode.
6306 Future versions of GCC may provide finer control of this setting
6307 using C99's @code{FENV_ACCESS} pragma.  This command line option
6308 will be used to specify the default state for @code{FENV_ACCESS}.
6309
6310 @item -frtl-abstract-sequences
6311 @opindex frtl-abstract-sequences
6312 It is a size optimization method. This option is to find identical
6313 sequences of code, which can be turned into pseudo-procedures  and
6314 then  replace  all  occurrences with  calls to  the  newly created
6315 subroutine. It is kind of an opposite of @option{-finline-functions}.
6316 This optimization runs at RTL level.
6317
6318 @item -fsignaling-nans
6319 @opindex fsignaling-nans
6320 Compile code assuming that IEEE signaling NaNs may generate user-visible
6321 traps during floating-point operations.  Setting this option disables
6322 optimizations that may change the number of exceptions visible with
6323 signaling NaNs.  This option implies @option{-ftrapping-math}.
6324
6325 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
6326 be defined.
6327
6328 The default is @option{-fno-signaling-nans}.
6329
6330 This option is experimental and does not currently guarantee to
6331 disable all GCC optimizations that affect signaling NaN behavior.
6332
6333 @item -fsingle-precision-constant
6334 @opindex fsingle-precision-constant
6335 Treat floating point constant as single precision constant instead of
6336 implicitly converting it to double precision constant.
6337
6338 @item -fcx-limited-range
6339 @itemx -fno-cx-limited-range
6340 @opindex fcx-limited-range
6341 @opindex fno-cx-limited-range
6342 When enabled, this option states that a range reduction step is not
6343 needed when performing complex division.  The default is
6344 @option{-fno-cx-limited-range}, but is enabled by @option{-ffast-math}.
6345
6346 This option controls the default setting of the ISO C99
6347 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
6348 all languages.
6349
6350 @end table
6351
6352 The following options control optimizations that may improve
6353 performance, but are not enabled by any @option{-O} options.  This
6354 section includes experimental options that may produce broken code.
6355
6356 @table @gcctabopt
6357 @item -fbranch-probabilities
6358 @opindex fbranch-probabilities
6359 After running a program compiled with @option{-fprofile-arcs}
6360 (@pxref{Debugging Options,, Options for Debugging Your Program or
6361 @command{gcc}}), you can compile it a second time using
6362 @option{-fbranch-probabilities}, to improve optimizations based on
6363 the number of times each branch was taken.  When the program
6364 compiled with @option{-fprofile-arcs} exits it saves arc execution
6365 counts to a file called @file{@var{sourcename}.gcda} for each source
6366 file.  The information in this data file is very dependent on the
6367 structure of the generated code, so you must use the same source code
6368 and the same optimization options for both compilations.
6369
6370 With @option{-fbranch-probabilities}, GCC puts a
6371 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
6372 These can be used to improve optimization.  Currently, they are only
6373 used in one place: in @file{reorg.c}, instead of guessing which path a
6374 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
6375 exactly determine which path is taken more often.
6376
6377 @item -fprofile-values
6378 @opindex fprofile-values
6379 If combined with @option{-fprofile-arcs}, it adds code so that some
6380 data about values of expressions in the program is gathered.
6381
6382 With @option{-fbranch-probabilities}, it reads back the data gathered
6383 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
6384 notes to instructions for their later usage in optimizations.
6385
6386 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
6387
6388 @item -fvpt
6389 @opindex fvpt
6390 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
6391 a code to gather information about values of expressions.
6392
6393 With @option{-fbranch-probabilities}, it reads back the data gathered
6394 and actually performs the optimizations based on them.
6395 Currently the optimizations include specialization of division operation
6396 using the knowledge about the value of the denominator.
6397
6398 @item -frename-registers
6399 @opindex frename-registers
6400 Attempt to avoid false dependencies in scheduled code by making use
6401 of registers left over after register allocation.  This optimization
6402 will most benefit processors with lots of registers.  Depending on the
6403 debug information format adopted by the target, however, it can
6404 make debugging impossible, since variables will no longer stay in
6405 a ``home register''.
6406
6407 Enabled by default with @option{-funroll-loops}.
6408
6409 @item -ftracer
6410 @opindex ftracer
6411 Perform tail duplication to enlarge superblock size.  This transformation
6412 simplifies the control flow of the function allowing other optimizations to do
6413 better job.
6414
6415 Enabled with @option{-fprofile-use}.
6416
6417 @item -funroll-loops
6418 @opindex funroll-loops
6419 Unroll loops whose number of iterations can be determined at compile time or
6420 upon entry to the loop.  @option{-funroll-loops} implies
6421 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
6422 It also turns on complete loop peeling (i.e.@: complete removal of loops with
6423 small constant number of iterations).  This option makes code larger, and may
6424 or may not make it run faster.
6425
6426 Enabled with @option{-fprofile-use}.
6427
6428 @item -funroll-all-loops
6429 @opindex funroll-all-loops
6430 Unroll all loops, even if their number of iterations is uncertain when
6431 the loop is entered.  This usually makes programs run more slowly.
6432 @option{-funroll-all-loops} implies the same options as
6433 @option{-funroll-loops}.
6434
6435 @item -fpeel-loops
6436 @opindex fpeel-loops
6437 Peels the loops for that there is enough information that they do not
6438 roll much (from profile feedback).  It also turns on complete loop peeling
6439 (i.e.@: complete removal of loops with small constant number of iterations).
6440
6441 Enabled with @option{-fprofile-use}.
6442
6443 @item -fmove-loop-invariants
6444 @opindex fmove-loop-invariants
6445 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
6446 at level @option{-O1}
6447
6448 @item -funswitch-loops
6449 @opindex funswitch-loops
6450 Move branches with loop invariant conditions out of the loop, with duplicates
6451 of the loop on both branches (modified according to result of the condition).
6452
6453 @item -ffunction-sections
6454 @itemx -fdata-sections
6455 @opindex ffunction-sections
6456 @opindex fdata-sections
6457 Place each function or data item into its own section in the output
6458 file if the target supports arbitrary sections.  The name of the
6459 function or the name of the data item determines the section's name
6460 in the output file.
6461
6462 Use these options on systems where the linker can perform optimizations
6463 to improve locality of reference in the instruction space.  Most systems
6464 using the ELF object format and SPARC processors running Solaris 2 have
6465 linkers with such optimizations.  AIX may have these optimizations in
6466 the future.
6467
6468 Only use these options when there are significant benefits from doing
6469 so.  When you specify these options, the assembler and linker will
6470 create larger object and executable files and will also be slower.
6471 You will not be able to use @code{gprof} on all systems if you
6472 specify this option and you may have problems with debugging if
6473 you specify both this option and @option{-g}.
6474
6475 @item -fbranch-target-load-optimize
6476 @opindex fbranch-target-load-optimize
6477 Perform branch target register load optimization before prologue / epilogue
6478 threading.
6479 The use of target registers can typically be exposed only during reload,
6480 thus hoisting loads out of loops and doing inter-block scheduling needs
6481 a separate optimization pass.
6482
6483 @item -fbranch-target-load-optimize2
6484 @opindex fbranch-target-load-optimize2
6485 Perform branch target register load optimization after prologue / epilogue
6486 threading.
6487
6488 @item -fbtr-bb-exclusive
6489 @opindex fbtr-bb-exclusive
6490 When performing branch target register load optimization, don't reuse
6491 branch target registers in within any basic block.
6492
6493 @item -fstack-protector
6494 Emit extra code to check for buffer overflows, such as stack smashing
6495 attacks.  This is done by adding a guard variable to functions with
6496 vulnerable objects.  This includes functions that call alloca, and
6497 functions with buffers larger than 8 bytes.  The guards are initialized
6498 when a function is entered and then checked when the function exits.
6499 If a guard check fails, an error message is printed and the program exits.
6500
6501 @item -fstack-protector-all
6502 Like @option{-fstack-protector} except that all functions are protected.
6503
6504 @item -fsection-anchors
6505 @opindex fsection-anchors
6506 Try to reduce the number of symbolic address calculations by using
6507 shared ``anchor'' symbols to address nearby objects.  This transformation
6508 can help to reduce the number of GOT entries and GOT accesses on some
6509 targets.
6510
6511 For example, the implementation of the following function @code{foo}:
6512
6513 @smallexample
6514 static int a, b, c;
6515 int foo (void) @{ return a + b + c; @}
6516 @end smallexample
6517
6518 would usually calculate the addresses of all three variables, but if you
6519 compile it with @option{-fsection-anchors}, it will access the variables
6520 from a common anchor point instead.  The effect is similar to the
6521 following pseudocode (which isn't valid C):
6522
6523 @smallexample
6524 int foo (void)
6525 @{
6526   register int *xr = &x;
6527   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
6528 @}
6529 @end smallexample
6530
6531 Not all targets support this option.
6532
6533 @item --param @var{name}=@var{value}
6534 @opindex param
6535 In some places, GCC uses various constants to control the amount of
6536 optimization that is done.  For example, GCC will not inline functions
6537 that contain more that a certain number of instructions.  You can
6538 control some of these constants on the command-line using the
6539 @option{--param} option.
6540
6541 The names of specific parameters, and the meaning of the values, are
6542 tied to the internals of the compiler, and are subject to change
6543 without notice in future releases.
6544
6545 In each case, the @var{value} is an integer.  The allowable choices for
6546 @var{name} are given in the following table:
6547
6548 @table @gcctabopt
6549 @item salias-max-implicit-fields
6550 The maximum number of fields in a variable without direct
6551 structure accesses for which structure aliasing will consider trying
6552 to track each field.  The default is 5
6553
6554 @item salias-max-array-elements
6555 The maximum number of elements an array can have and its elements
6556 still be tracked individually by structure aliasing. The default is 4
6557
6558 @item sra-max-structure-size
6559 The maximum structure size, in bytes, at which the scalar replacement
6560 of aggregates (SRA) optimization will perform block copies.  The
6561 default value, 0, implies that GCC will select the most appropriate
6562 size itself.
6563
6564 @item sra-field-structure-ratio
6565 The threshold ratio (as a percentage) between instantiated fields and
6566 the complete structure size.  We say that if the ratio of the number
6567 of bytes in instantiated fields to the number of bytes in the complete
6568 structure exceeds this parameter, then block copies are not used.  The
6569 default is 75.
6570
6571 @item max-crossjump-edges
6572 The maximum number of incoming edges to consider for crossjumping.
6573 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
6574 the number of edges incoming to each block.  Increasing values mean
6575 more aggressive optimization, making the compile time increase with
6576 probably small improvement in executable size.
6577
6578 @item min-crossjump-insns
6579 The minimum number of instructions which must be matched at the end
6580 of two blocks before crossjumping will be performed on them.  This
6581 value is ignored in the case where all instructions in the block being
6582 crossjumped from are matched.  The default value is 5.
6583
6584 @item max-grow-copy-bb-insns
6585 The maximum code size expansion factor when copying basic blocks
6586 instead of jumping.  The expansion is relative to a jump instruction.
6587 The default value is 8.
6588
6589 @item max-goto-duplication-insns
6590 The maximum number of instructions to duplicate to a block that jumps
6591 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
6592 passes, GCC factors computed gotos early in the compilation process,
6593 and unfactors them as late as possible.  Only computed jumps at the
6594 end of a basic blocks with no more than max-goto-duplication-insns are
6595 unfactored.  The default value is 8.
6596
6597 @item max-delay-slot-insn-search
6598 The maximum number of instructions to consider when looking for an
6599 instruction to fill a delay slot.  If more than this arbitrary number of
6600 instructions is searched, the time savings from filling the delay slot
6601 will be minimal so stop searching.  Increasing values mean more
6602 aggressive optimization, making the compile time increase with probably
6603 small improvement in executable run time.
6604
6605 @item max-delay-slot-live-search
6606 When trying to fill delay slots, the maximum number of instructions to
6607 consider when searching for a block with valid live register
6608 information.  Increasing this arbitrarily chosen value means more
6609 aggressive optimization, increasing the compile time.  This parameter
6610 should be removed when the delay slot code is rewritten to maintain the
6611 control-flow graph.
6612
6613 @item max-gcse-memory
6614 The approximate maximum amount of memory that will be allocated in
6615 order to perform the global common subexpression elimination
6616 optimization.  If more memory than specified is required, the
6617 optimization will not be done.
6618
6619 @item max-gcse-passes
6620 The maximum number of passes of GCSE to run.  The default is 1.
6621
6622 @item max-pending-list-length
6623 The maximum number of pending dependencies scheduling will allow
6624 before flushing the current state and starting over.  Large functions
6625 with few branches or calls can create excessively large lists which
6626 needlessly consume memory and resources.
6627
6628 @item max-inline-insns-single
6629 Several parameters control the tree inliner used in gcc.
6630 This number sets the maximum number of instructions (counted in GCC's
6631 internal representation) in a single function that the tree inliner
6632 will consider for inlining.  This only affects functions declared
6633 inline and methods implemented in a class declaration (C++).
6634 The default value is 450.
6635
6636 @item max-inline-insns-auto
6637 When you use @option{-finline-functions} (included in @option{-O3}),
6638 a lot of functions that would otherwise not be considered for inlining
6639 by the compiler will be investigated.  To those functions, a different
6640 (more restrictive) limit compared to functions declared inline can
6641 be applied.
6642 The default value is 90.
6643
6644 @item large-function-insns
6645 The limit specifying really large functions.  For functions larger than this
6646 limit after inlining inlining is constrained by
6647 @option{--param large-function-growth}.  This parameter is useful primarily
6648 to avoid extreme compilation time caused by non-linear algorithms used by the
6649 backend.
6650 This parameter is ignored when @option{-funit-at-a-time} is not used.
6651 The default value is 2700.
6652
6653 @item large-function-growth
6654 Specifies maximal growth of large function caused by inlining in percents.
6655 This parameter is ignored when @option{-funit-at-a-time} is not used.
6656 The default value is 100 which limits large function growth to 2.0 times
6657 the original size.
6658
6659 @item large-unit-insns
6660 The limit specifying large translation unit.  Growth caused by inlining of
6661 units larger than this limit is limited by @option{--param inline-unit-growth}.
6662 For small units this might be too tight (consider unit consisting of function A
6663 that is inline and B that just calls A three time.  If B is small relative to
6664 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
6665 large units consisting of small inlininable functions however the overall unit
6666 growth limit is needed to avoid exponential explosion of code size.  Thus for
6667 smaller units, the size is increased to @option{--param large-unit-insns}
6668 before applying @option{--param inline-unit-growth}.  The default is 10000
6669
6670 @item inline-unit-growth
6671 Specifies maximal overall growth of the compilation unit caused by inlining.
6672 This parameter is ignored when @option{-funit-at-a-time} is not used.
6673 The default value is 30 which limits unit growth to 1.3 times the original
6674 size.
6675
6676 @item large-stack-frame
6677 The limit specifying large stack frames.  While inlining the algorithm is trying
6678 to not grow past this limit too much.  Default value is 256 bytes.
6679
6680 @item large-stack-frame-growth
6681 Specifies maximal growth of large stack frames caused by inlining in percents.
6682 The default value is 1000 which limits large stack frame growth to 11 times
6683 the original size.
6684
6685 @item max-inline-insns-recursive
6686 @itemx max-inline-insns-recursive-auto
6687 Specifies maximum number of instructions out-of-line copy of self recursive inline
6688 function can grow into by performing recursive inlining.
6689
6690 For functions declared inline @option{--param max-inline-insns-recursive} is
6691 taken into account.  For function not declared inline, recursive inlining
6692 happens only when @option{-finline-functions} (included in @option{-O3}) is
6693 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
6694 default value is 450.
6695
6696 @item max-inline-recursive-depth
6697 @itemx max-inline-recursive-depth-auto
6698 Specifies maximum recursion depth used by the recursive inlining.
6699
6700 For functions declared inline @option{--param max-inline-recursive-depth} is
6701 taken into account.  For function not declared inline, recursive inlining
6702 happens only when @option{-finline-functions} (included in @option{-O3}) is
6703 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
6704 default value is 450.
6705
6706 @item min-inline-recursive-probability
6707 Recursive inlining is profitable only for function having deep recursion
6708 in average and can hurt for function having little recursion depth by
6709 increasing the prologue size or complexity of function body to other
6710 optimizers.
6711
6712 When profile feedback is available (see @option{-fprofile-generate}) the actual
6713 recursion depth can be guessed from probability that function will recurse via
6714 given call expression.  This parameter limits inlining only to call expression
6715 whose probability exceeds given threshold (in percents).  The default value is
6716 10.
6717
6718 @item inline-call-cost
6719 Specify cost of call instruction relative to simple arithmetics operations
6720 (having cost of 1).  Increasing this cost disqualifies inlining of non-leaf
6721 functions and at the same time increases size of leaf function that is believed to
6722 reduce function size by being inlined.  In effect it increases amount of
6723 inlining for code having large abstraction penalty (many functions that just
6724 pass the arguments to other functions) and decrease inlining for code with low
6725 abstraction penalty.  The default value is 12.
6726
6727 @item min-vect-loop-bound
6728 The minimum number of iterations under which a loop will not get vectorized
6729 when @option{-ftree-vectorize} is used.  The number of iterations after
6730 vectorization needs to be greater than the value specified by this option
6731 to allow vectorization.  The default value is 0.
6732
6733 @item max-unrolled-insns
6734 The maximum number of instructions that a loop should have if that loop
6735 is unrolled, and if the loop is unrolled, it determines how many times
6736 the loop code is unrolled.
6737
6738 @item max-average-unrolled-insns
6739 The maximum number of instructions biased by probabilities of their execution
6740 that a loop should have if that loop is unrolled, and if the loop is unrolled,
6741 it determines how many times the loop code is unrolled.
6742
6743 @item max-unroll-times
6744 The maximum number of unrollings of a single loop.
6745
6746 @item max-peeled-insns
6747 The maximum number of instructions that a loop should have if that loop
6748 is peeled, and if the loop is peeled, it determines how many times
6749 the loop code is peeled.
6750
6751 @item max-peel-times
6752 The maximum number of peelings of a single loop.
6753
6754 @item max-completely-peeled-insns
6755 The maximum number of insns of a completely peeled loop.
6756
6757 @item max-completely-peel-times
6758 The maximum number of iterations of a loop to be suitable for complete peeling.
6759
6760 @item max-unswitch-insns
6761 The maximum number of insns of an unswitched loop.
6762
6763 @item max-unswitch-level
6764 The maximum number of branches unswitched in a single loop.
6765
6766 @item lim-expensive
6767 The minimum cost of an expensive expression in the loop invariant motion.
6768
6769 @item iv-consider-all-candidates-bound
6770 Bound on number of candidates for induction variables below that
6771 all candidates are considered for each use in induction variable
6772 optimizations.  Only the most relevant candidates are considered
6773 if there are more candidates, to avoid quadratic time complexity.
6774
6775 @item iv-max-considered-uses
6776 The induction variable optimizations give up on loops that contain more
6777 induction variable uses.
6778
6779 @item iv-always-prune-cand-set-bound
6780 If number of candidates in the set is smaller than this value,
6781 we always try to remove unnecessary ivs from the set during its
6782 optimization when a new iv is added to the set.
6783
6784 @item scev-max-expr-size
6785 Bound on size of expressions used in the scalar evolutions analyzer.
6786 Large expressions slow the analyzer.
6787
6788 @item omega-max-vars
6789 The maximum number of variables in an Omega constraint system.
6790 The default value is 128.
6791
6792 @item omega-max-geqs
6793 The maximum number of inequalities in an Omega constraint system.
6794 The default value is 256.
6795
6796 @item omega-max-eqs
6797 The maximum number of equalities in an Omega constraint system.
6798 The default value is 128.
6799
6800 @item omega-max-wild-cards
6801 The maximum number of wildcard variables that the Omega solver will
6802 be able to insert.  The default value is 18.
6803
6804 @item omega-hash-table-size
6805 The size of the hash table in the Omega solver.  The default value is
6806 550.
6807
6808 @item omega-max-keys
6809 The maximal number of keys used by the Omega solver.  The default
6810 value is 500.
6811
6812 @item omega-eliminate-redundant-constraints
6813 When set to 1, use expensive methods to eliminate all redundant
6814 constraints.  The default value is 0.
6815
6816 @item vect-max-version-for-alignment-checks
6817 The maximum number of runtime checks that can be performed when
6818 doing loop versioning for alignment in the vectorizer.  See option
6819 ftree-vect-loop-version for more information.
6820
6821 @item vect-max-version-for-alias-checks
6822 The maximum number of runtime checks that can be performed when
6823 doing loop versioning for alias in the vectorizer.  See option
6824 ftree-vect-loop-version for more information.
6825
6826 @item max-iterations-to-track
6827
6828 The maximum number of iterations of a loop the brute force algorithm
6829 for analysis of # of iterations of the loop tries to evaluate.
6830
6831 @item hot-bb-count-fraction
6832 Select fraction of the maximal count of repetitions of basic block in program
6833 given basic block needs to have to be considered hot.
6834
6835 @item hot-bb-frequency-fraction
6836 Select fraction of the maximal frequency of executions of basic block in
6837 function given basic block needs to have to be considered hot
6838
6839 @item max-predicted-iterations
6840 The maximum number of loop iterations we predict statically.  This is useful
6841 in cases where function contain single loop with known bound and other loop
6842 with unknown.  We predict the known number of iterations correctly, while
6843 the unknown number of iterations average to roughly 10.  This means that the
6844 loop without bounds would appear artificially cold relative to the other one.
6845
6846 @item align-threshold
6847
6848 Select fraction of the maximal frequency of executions of basic block in
6849 function given basic block will get aligned.
6850
6851 @item align-loop-iterations
6852
6853 A loop expected to iterate at lest the selected number of iterations will get
6854 aligned.
6855
6856 @item tracer-dynamic-coverage
6857 @itemx tracer-dynamic-coverage-feedback
6858
6859 This value is used to limit superblock formation once the given percentage of
6860 executed instructions is covered.  This limits unnecessary code size
6861 expansion.
6862
6863 The @option{tracer-dynamic-coverage-feedback} is used only when profile
6864 feedback is available.  The real profiles (as opposed to statically estimated
6865 ones) are much less balanced allowing the threshold to be larger value.
6866
6867 @item tracer-max-code-growth
6868 Stop tail duplication once code growth has reached given percentage.  This is
6869 rather hokey argument, as most of the duplicates will be eliminated later in
6870 cross jumping, so it may be set to much higher values than is the desired code
6871 growth.
6872
6873 @item tracer-min-branch-ratio
6874
6875 Stop reverse growth when the reverse probability of best edge is less than this
6876 threshold (in percent).
6877
6878 @item tracer-min-branch-ratio
6879 @itemx tracer-min-branch-ratio-feedback
6880
6881 Stop forward growth if the best edge do have probability lower than this
6882 threshold.
6883
6884 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
6885 compilation for profile feedback and one for compilation without.  The value
6886 for compilation with profile feedback needs to be more conservative (higher) in
6887 order to make tracer effective.
6888
6889 @item max-cse-path-length
6890
6891 Maximum number of basic blocks on path that cse considers.  The default is 10.
6892
6893 @item max-cse-insns
6894 The maximum instructions CSE process before flushing. The default is 1000.
6895
6896 @item max-aliased-vops
6897
6898 Maximum number of virtual operands per function allowed to represent
6899 aliases before triggering the alias partitioning heuristic.  Alias
6900 partitioning reduces compile times and memory consumption needed for
6901 aliasing at the expense of precision loss in alias information.  The
6902 default value for this parameter is 100 for -O1, 500 for -O2 and 1000
6903 for -O3.
6904
6905 Notice that if a function contains more memory statements than the
6906 value of this parameter, it is not really possible to achieve this
6907 reduction.  In this case, the compiler will use the number of memory
6908 statements as the value for @option{max-aliased-vops}.
6909
6910 @item avg-aliased-vops
6911
6912 Average number of virtual operands per statement allowed to represent
6913 aliases before triggering the alias partitioning heuristic.  This
6914 works in conjunction with @option{max-aliased-vops}.  If a function
6915 contains more than @option{max-aliased-vops} virtual operators, then
6916 memory symbols will be grouped into memory partitions until either the
6917 total number of virtual operators is below @option{max-aliased-vops}
6918 or the average number of virtual operators per memory statement is
6919 below @option{avg-aliased-vops}.  The default value for this parameter
6920 is 1 for -O1 and -O2, and 3 for -O3.
6921
6922 @item ggc-min-expand
6923
6924 GCC uses a garbage collector to manage its own memory allocation.  This
6925 parameter specifies the minimum percentage by which the garbage
6926 collector's heap should be allowed to expand between collections.
6927 Tuning this may improve compilation speed; it has no effect on code
6928 generation.
6929
6930 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
6931 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
6932 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
6933 GCC is not able to calculate RAM on a particular platform, the lower
6934 bound of 30% is used.  Setting this parameter and
6935 @option{ggc-min-heapsize} to zero causes a full collection to occur at
6936 every opportunity.  This is extremely slow, but can be useful for
6937 debugging.
6938
6939 @item ggc-min-heapsize
6940
6941 Minimum size of the garbage collector's heap before it begins bothering
6942 to collect garbage.  The first collection occurs after the heap expands
6943 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
6944 tuning this may improve compilation speed, and has no effect on code
6945 generation.
6946
6947 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
6948 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
6949 with a lower bound of 4096 (four megabytes) and an upper bound of
6950 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
6951 particular platform, the lower bound is used.  Setting this parameter
6952 very large effectively disables garbage collection.  Setting this
6953 parameter and @option{ggc-min-expand} to zero causes a full collection
6954 to occur at every opportunity.
6955
6956 @item max-reload-search-insns
6957 The maximum number of instruction reload should look backward for equivalent
6958 register.  Increasing values mean more aggressive optimization, making the
6959 compile time increase with probably slightly better performance.  The default
6960 value is 100.
6961
6962 @item max-cselib-memory-locations
6963 The maximum number of memory locations cselib should take into account.
6964 Increasing values mean more aggressive optimization, making the compile time
6965 increase with probably slightly better performance.  The default value is 500.
6966
6967 @item max-flow-memory-locations
6968 Similar as @option{max-cselib-memory-locations} but for dataflow liveness.
6969 The default value is 100.
6970
6971 @item reorder-blocks-duplicate
6972 @itemx reorder-blocks-duplicate-feedback
6973
6974 Used by basic block reordering pass to decide whether to use unconditional
6975 branch or duplicate the code on its destination.  Code is duplicated when its
6976 estimated size is smaller than this value multiplied by the estimated size of
6977 unconditional jump in the hot spots of the program.
6978
6979 The @option{reorder-block-duplicate-feedback} is used only when profile
6980 feedback is available and may be set to higher values than
6981 @option{reorder-block-duplicate} since information about the hot spots is more
6982 accurate.
6983
6984 @item max-sched-ready-insns
6985 The maximum number of instructions ready to be issued the scheduler should
6986 consider at any given time during the first scheduling pass.  Increasing
6987 values mean more thorough searches, making the compilation time increase
6988 with probably little benefit.  The default value is 100.
6989
6990 @item max-sched-region-blocks
6991 The maximum number of blocks in a region to be considered for
6992 interblock scheduling.  The default value is 10.
6993
6994 @item max-sched-region-insns
6995 The maximum number of insns in a region to be considered for
6996 interblock scheduling.  The default value is 100.
6997
6998 @item min-spec-prob
6999 The minimum probability (in percents) of reaching a source block
7000 for interblock speculative scheduling.  The default value is 40.
7001
7002 @item max-sched-extend-regions-iters
7003 The maximum number of iterations through CFG to extend regions.
7004 0 - disable region extension,
7005 N - do at most N iterations.
7006 The default value is 0.
7007
7008 @item max-sched-insn-conflict-delay
7009 The maximum conflict delay for an insn to be considered for speculative motion.
7010 The default value is 3.
7011
7012 @item sched-spec-prob-cutoff
7013 The minimal probability of speculation success (in percents), so that
7014 speculative insn will be scheduled.
7015 The default value is 40.
7016
7017 @item max-last-value-rtl
7018
7019 The maximum size measured as number of RTLs that can be recorded in an expression
7020 in combiner for a pseudo register as last known value of that register.  The default
7021 is 10000.
7022
7023 @item integer-share-limit
7024 Small integer constants can use a shared data structure, reducing the
7025 compiler's memory usage and increasing its speed.  This sets the maximum
7026 value of a shared integer constant's.  The default value is 256.
7027
7028 @item min-virtual-mappings
7029 Specifies the minimum number of virtual mappings in the incremental
7030 SSA updater that should be registered to trigger the virtual mappings
7031 heuristic defined by virtual-mappings-ratio.  The default value is
7032 100.
7033
7034 @item virtual-mappings-ratio
7035 If the number of virtual mappings is virtual-mappings-ratio bigger
7036 than the number of virtual symbols to be updated, then the incremental
7037 SSA updater switches to a full update for those symbols.  The default
7038 ratio is 3.
7039
7040 @item ssp-buffer-size
7041 The minimum size of buffers (i.e. arrays) that will receive stack smashing
7042 protection when @option{-fstack-protection} is used.
7043
7044 @item max-jump-thread-duplication-stmts
7045 Maximum number of statements allowed in a block that needs to be
7046 duplicated when threading jumps.
7047
7048 @item max-fields-for-field-sensitive
7049 Maximum number of fields in a structure we will treat in
7050 a field sensitive manner during pointer analysis.
7051
7052 @item prefetch-latency
7053 Estimate on average number of instructions that are executed before
7054 prefetch finishes.  The distance we prefetch ahead is proportional
7055 to this constant.  Increasing this number may also lead to less
7056 streams being prefetched (see @option{simultaneous-prefetches}).
7057
7058 @item simultaneous-prefetches
7059 Maximum number of prefetches that can run at the same time.
7060
7061 @item l1-cache-line-size
7062 The size of cache line in L1 cache, in bytes.
7063
7064 @item l1-cache-size
7065 The size of L1 cache, in kilobytes.
7066
7067 @item l2-cache-size
7068 The size of L2 cache, in kilobytes.
7069
7070 @item use-canonical-types
7071 Whether the compiler should use the ``canonical'' type system.  By
7072 default, this should always be 1, which uses a more efficient internal
7073 mechanism for comparing types in C++ and Objective-C++.  However, if
7074 bugs in the canonical type system are causing compilation failures,
7075 set this value to 0 to disable canonical types.
7076
7077 @end table
7078 @end table
7079
7080 @node Preprocessor Options
7081 @section Options Controlling the Preprocessor
7082 @cindex preprocessor options
7083 @cindex options, preprocessor
7084
7085 These options control the C preprocessor, which is run on each C source
7086 file before actual compilation.
7087
7088 If you use the @option{-E} option, nothing is done except preprocessing.
7089 Some of these options make sense only together with @option{-E} because
7090 they cause the preprocessor output to be unsuitable for actual
7091 compilation.
7092
7093 @table @gcctabopt
7094 @opindex Wp
7095 You can use @option{-Wp,@var{option}} to bypass the compiler driver
7096 and pass @var{option} directly through to the preprocessor.  If
7097 @var{option} contains commas, it is split into multiple options at the
7098 commas.  However, many options are modified, translated or interpreted
7099 by the compiler driver before being passed to the preprocessor, and
7100 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
7101 interface is undocumented and subject to change, so whenever possible
7102 you should avoid using @option{-Wp} and let the driver handle the
7103 options instead.
7104
7105 @item -Xpreprocessor @var{option}
7106 @opindex preprocessor
7107 Pass @var{option} as an option to the preprocessor.  You can use this to
7108 supply system-specific preprocessor options which GCC does not know how to
7109 recognize.
7110
7111 If you want to pass an option that takes an argument, you must use
7112 @option{-Xpreprocessor} twice, once for the option and once for the argument.
7113 @end table
7114
7115 @include cppopts.texi
7116
7117 @node Assembler Options
7118 @section Passing Options to the Assembler
7119
7120 @c prevent bad page break with this line
7121 You can pass options to the assembler.
7122
7123 @table @gcctabopt
7124 @item -Wa,@var{option}
7125 @opindex Wa
7126 Pass @var{option} as an option to the assembler.  If @var{option}
7127 contains commas, it is split into multiple options at the commas.
7128
7129 @item -Xassembler @var{option}
7130 @opindex Xassembler
7131 Pass @var{option} as an option to the assembler.  You can use this to
7132 supply system-specific assembler options which GCC does not know how to
7133 recognize.
7134
7135 If you want to pass an option that takes an argument, you must use
7136 @option{-Xassembler} twice, once for the option and once for the argument.
7137
7138 @end table
7139
7140 @node Link Options
7141 @section Options for Linking
7142 @cindex link options
7143 @cindex options, linking
7144
7145 These options come into play when the compiler links object files into
7146 an executable output file.  They are meaningless if the compiler is
7147 not doing a link step.
7148
7149 @table @gcctabopt
7150 @cindex file names
7151 @item @var{object-file-name}
7152 A file name that does not end in a special recognized suffix is
7153 considered to name an object file or library.  (Object files are
7154 distinguished from libraries by the linker according to the file
7155 contents.)  If linking is done, these object files are used as input
7156 to the linker.
7157
7158 @item -c
7159 @itemx -S
7160 @itemx -E
7161 @opindex c
7162 @opindex S
7163 @opindex E
7164 If any of these options is used, then the linker is not run, and
7165 object file names should not be used as arguments.  @xref{Overall
7166 Options}.
7167
7168 @cindex Libraries
7169 @item -l@var{library}
7170 @itemx -l @var{library}
7171 @opindex l
7172 Search the library named @var{library} when linking.  (The second
7173 alternative with the library as a separate argument is only for
7174 POSIX compliance and is not recommended.)
7175
7176 It makes a difference where in the command you write this option; the
7177 linker searches and processes libraries and object files in the order they
7178 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
7179 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
7180 to functions in @samp{z}, those functions may not be loaded.
7181
7182 The linker searches a standard list of directories for the library,
7183 which is actually a file named @file{lib@var{library}.a}.  The linker
7184 then uses this file as if it had been specified precisely by name.
7185
7186 The directories searched include several standard system directories
7187 plus any that you specify with @option{-L}.
7188
7189 Normally the files found this way are library files---archive files
7190 whose members are object files.  The linker handles an archive file by
7191 scanning through it for members which define symbols that have so far
7192 been referenced but not defined.  But if the file that is found is an
7193 ordinary object file, it is linked in the usual fashion.  The only
7194 difference between using an @option{-l} option and specifying a file name
7195 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
7196 and searches several directories.
7197
7198 @item -lobjc
7199 @opindex lobjc
7200 You need this special case of the @option{-l} option in order to
7201 link an Objective-C or Objective-C++ program.
7202
7203 @item -nostartfiles
7204 @opindex nostartfiles
7205 Do not use the standard system startup files when linking.
7206 The standard system libraries are used normally, unless @option{-nostdlib}
7207 or @option{-nodefaultlibs} is used.
7208
7209 @item -nodefaultlibs
7210 @opindex nodefaultlibs
7211 Do not use the standard system libraries when linking.
7212 Only the libraries you specify will be passed to the linker.
7213 The standard startup files are used normally, unless @option{-nostartfiles}
7214 is used.  The compiler may generate calls to @code{memcmp},
7215 @code{memset}, @code{memcpy} and @code{memmove}.
7216 These entries are usually resolved by entries in
7217 libc.  These entry points should be supplied through some other
7218 mechanism when this option is specified.
7219
7220 @item -nostdlib
7221 @opindex nostdlib
7222 Do not use the standard system startup files or libraries when linking.
7223 No startup files and only the libraries you specify will be passed to
7224 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
7225 @code{memcpy} and @code{memmove}.
7226 These entries are usually resolved by entries in
7227 libc.  These entry points should be supplied through some other
7228 mechanism when this option is specified.
7229
7230 @cindex @option{-lgcc}, use with @option{-nostdlib}
7231 @cindex @option{-nostdlib} and unresolved references
7232 @cindex unresolved references and @option{-nostdlib}
7233 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
7234 @cindex @option{-nodefaultlibs} and unresolved references
7235 @cindex unresolved references and @option{-nodefaultlibs}
7236 One of the standard libraries bypassed by @option{-nostdlib} and
7237 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
7238 that GCC uses to overcome shortcomings of particular machines, or special
7239 needs for some languages.
7240 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
7241 Collection (GCC) Internals},
7242 for more discussion of @file{libgcc.a}.)
7243 In most cases, you need @file{libgcc.a} even when you want to avoid
7244 other standard libraries.  In other words, when you specify @option{-nostdlib}
7245 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
7246 This ensures that you have no unresolved references to internal GCC
7247 library subroutines.  (For example, @samp{__main}, used to ensure C++
7248 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
7249 GNU Compiler Collection (GCC) Internals}.)
7250
7251 @item -pie
7252 @opindex pie
7253 Produce a position independent executable on targets which support it.
7254 For predictable results, you must also specify the same set of options
7255 that were used to generate code (@option{-fpie}, @option{-fPIE},
7256 or model suboptions) when you specify this option.
7257
7258 @item -rdynamic
7259 @opindex rdynamic
7260 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
7261 that support it. This instructs the linker to add all symbols, not
7262 only used ones, to the dynamic symbol table. This option is needed
7263 for some uses of @code{dlopen} or to allow obtaining backtraces
7264 from within a program.
7265
7266 @item -s
7267 @opindex s
7268 Remove all symbol table and relocation information from the executable.
7269
7270 @item -static
7271 @opindex static
7272 On systems that support dynamic linking, this prevents linking with the shared
7273 libraries.  On other systems, this option has no effect.
7274
7275 @item -shared
7276 @opindex shared
7277 Produce a shared object which can then be linked with other objects to
7278 form an executable.  Not all systems support this option.  For predictable
7279 results, you must also specify the same set of options that were used to
7280 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
7281 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
7282 needs to build supplementary stub code for constructors to work.  On
7283 multi-libbed systems, @samp{gcc -shared} must select the correct support
7284 libraries to link against.  Failing to supply the correct flags may lead
7285 to subtle defects.  Supplying them in cases where they are not necessary
7286 is innocuous.}
7287
7288 @item -shared-libgcc
7289 @itemx -static-libgcc
7290 @opindex shared-libgcc
7291 @opindex static-libgcc
7292 On systems that provide @file{libgcc} as a shared library, these options
7293 force the use of either the shared or static version respectively.
7294 If no shared version of @file{libgcc} was built when the compiler was
7295 configured, these options have no effect.
7296
7297 There are several situations in which an application should use the
7298 shared @file{libgcc} instead of the static version.  The most common
7299 of these is when the application wishes to throw and catch exceptions
7300 across different shared libraries.  In that case, each of the libraries
7301 as well as the application itself should use the shared @file{libgcc}.
7302
7303 Therefore, the G++ and GCJ drivers automatically add
7304 @option{-shared-libgcc} whenever you build a shared library or a main
7305 executable, because C++ and Java programs typically use exceptions, so
7306 this is the right thing to do.
7307
7308 If, instead, you use the GCC driver to create shared libraries, you may
7309 find that they will not always be linked with the shared @file{libgcc}.
7310 If GCC finds, at its configuration time, that you have a non-GNU linker
7311 or a GNU linker that does not support option @option{--eh-frame-hdr},
7312 it will link the shared version of @file{libgcc} into shared libraries
7313 by default.  Otherwise, it will take advantage of the linker and optimize
7314 away the linking with the shared version of @file{libgcc}, linking with
7315 the static version of libgcc by default.  This allows exceptions to
7316 propagate through such shared libraries, without incurring relocation
7317 costs at library load time.
7318
7319 However, if a library or main executable is supposed to throw or catch
7320 exceptions, you must link it using the G++ or GCJ driver, as appropriate
7321 for the languages used in the program, or using the option
7322 @option{-shared-libgcc}, such that it is linked with the shared
7323 @file{libgcc}.
7324
7325 @item -symbolic
7326 @opindex symbolic
7327 Bind references to global symbols when building a shared object.  Warn
7328 about any unresolved references (unless overridden by the link editor
7329 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
7330 this option.
7331
7332 @item -Xlinker @var{option}
7333 @opindex Xlinker
7334 Pass @var{option} as an option to the linker.  You can use this to
7335 supply system-specific linker options which GCC does not know how to
7336 recognize.
7337
7338 If you want to pass an option that takes an argument, you must use
7339 @option{-Xlinker} twice, once for the option and once for the argument.
7340 For example, to pass @option{-assert definitions}, you must write
7341 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
7342 @option{-Xlinker "-assert definitions"}, because this passes the entire
7343 string as a single argument, which is not what the linker expects.
7344
7345 @item -Wl,@var{option}
7346 @opindex Wl
7347 Pass @var{option} as an option to the linker.  If @var{option} contains
7348 commas, it is split into multiple options at the commas.
7349
7350 @item -u @var{symbol}
7351 @opindex u
7352 Pretend the symbol @var{symbol} is undefined, to force linking of
7353 library modules to define it.  You can use @option{-u} multiple times with
7354 different symbols to force loading of additional library modules.
7355 @end table
7356
7357 @node Directory Options
7358 @section Options for Directory Search
7359 @cindex directory options
7360 @cindex options, directory search
7361 @cindex search path
7362
7363 These options specify directories to search for header files, for
7364 libraries and for parts of the compiler:
7365
7366 @table @gcctabopt
7367 @item -I@var{dir}
7368 @opindex I
7369 Add the directory @var{dir} to the head of the list of directories to be
7370 searched for header files.  This can be used to override a system header
7371 file, substituting your own version, since these directories are
7372 searched before the system header file directories.  However, you should
7373 not use this option to add directories that contain vendor-supplied
7374 system header files (use @option{-isystem} for that).  If you use more than
7375 one @option{-I} option, the directories are scanned in left-to-right
7376 order; the standard system directories come after.
7377
7378 If a standard system include directory, or a directory specified with
7379 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
7380 option will be ignored.  The directory will still be searched but as a
7381 system directory at its normal position in the system include chain.
7382 This is to ensure that GCC's procedure to fix buggy system headers and
7383 the ordering for the include_next directive are not inadvertently changed.
7384 If you really need to change the search order for system directories,
7385 use the @option{-nostdinc} and/or @option{-isystem} options.
7386
7387 @item -iquote@var{dir}
7388 @opindex iquote
7389 Add the directory @var{dir} to the head of the list of directories to
7390 be searched for header files only for the case of @samp{#include
7391 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
7392 otherwise just like @option{-I}.
7393
7394 @item -L@var{dir}
7395 @opindex L
7396 Add directory @var{dir} to the list of directories to be searched
7397 for @option{-l}.
7398
7399 @item -B@var{prefix}
7400 @opindex B
7401 This option specifies where to find the executables, libraries,
7402 include files, and data files of the compiler itself.
7403
7404 The compiler driver program runs one or more of the subprograms
7405 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
7406 @var{prefix} as a prefix for each program it tries to run, both with and
7407 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
7408
7409 For each subprogram to be run, the compiler driver first tries the
7410 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
7411 was not specified, the driver tries two standard prefixes, which are
7412 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
7413 those results in a file name that is found, the unmodified program
7414 name is searched for using the directories specified in your
7415 @env{PATH} environment variable.
7416
7417 The compiler will check to see if the path provided by the @option{-B}
7418 refers to a directory, and if necessary it will add a directory
7419 separator character at the end of the path.
7420
7421 @option{-B} prefixes that effectively specify directory names also apply
7422 to libraries in the linker, because the compiler translates these
7423 options into @option{-L} options for the linker.  They also apply to
7424 includes files in the preprocessor, because the compiler translates these
7425 options into @option{-isystem} options for the preprocessor.  In this case,
7426 the compiler appends @samp{include} to the prefix.
7427
7428 The run-time support file @file{libgcc.a} can also be searched for using
7429 the @option{-B} prefix, if needed.  If it is not found there, the two
7430 standard prefixes above are tried, and that is all.  The file is left
7431 out of the link if it is not found by those means.
7432
7433 Another way to specify a prefix much like the @option{-B} prefix is to use
7434 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
7435 Variables}.
7436
7437 As a special kludge, if the path provided by @option{-B} is
7438 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
7439 9, then it will be replaced by @file{[dir/]include}.  This is to help
7440 with boot-strapping the compiler.
7441
7442 @item -specs=@var{file}
7443 @opindex specs
7444 Process @var{file} after the compiler reads in the standard @file{specs}
7445 file, in order to override the defaults that the @file{gcc} driver
7446 program uses when determining what switches to pass to @file{cc1},
7447 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
7448 @option{-specs=@var{file}} can be specified on the command line, and they
7449 are processed in order, from left to right.
7450
7451 @item --sysroot=@var{dir}
7452 @opindex sysroot
7453 Use @var{dir} as the logical root directory for headers and libraries.
7454 For example, if the compiler would normally search for headers in
7455 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
7456 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
7457
7458 If you use both this option and the @option{-isysroot} option, then
7459 the @option{--sysroot} option will apply to libraries, but the
7460 @option{-isysroot} option will apply to header files.
7461
7462 The GNU linker (beginning with version 2.16) has the necessary support
7463 for this option.  If your linker does not support this option, the
7464 header file aspect of @option{--sysroot} will still work, but the
7465 library aspect will not.
7466
7467 @item -I-
7468 @opindex I-
7469 This option has been deprecated.  Please use @option{-iquote} instead for
7470 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
7471 Any directories you specify with @option{-I} options before the @option{-I-}
7472 option are searched only for the case of @samp{#include "@var{file}"};
7473 they are not searched for @samp{#include <@var{file}>}.
7474
7475 If additional directories are specified with @option{-I} options after
7476 the @option{-I-}, these directories are searched for all @samp{#include}
7477 directives.  (Ordinarily @emph{all} @option{-I} directories are used
7478 this way.)
7479
7480 In addition, the @option{-I-} option inhibits the use of the current
7481 directory (where the current input file came from) as the first search
7482 directory for @samp{#include "@var{file}"}.  There is no way to
7483 override this effect of @option{-I-}.  With @option{-I.} you can specify
7484 searching the directory which was current when the compiler was
7485 invoked.  That is not exactly the same as what the preprocessor does
7486 by default, but it is often satisfactory.
7487
7488 @option{-I-} does not inhibit the use of the standard system directories
7489 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
7490 independent.
7491 @end table
7492
7493 @c man end
7494
7495 @node Spec Files
7496 @section Specifying subprocesses and the switches to pass to them
7497 @cindex Spec Files
7498
7499 @command{gcc} is a driver program.  It performs its job by invoking a
7500 sequence of other programs to do the work of compiling, assembling and
7501 linking.  GCC interprets its command-line parameters and uses these to
7502 deduce which programs it should invoke, and which command-line options
7503 it ought to place on their command lines.  This behavior is controlled
7504 by @dfn{spec strings}.  In most cases there is one spec string for each
7505 program that GCC can invoke, but a few programs have multiple spec
7506 strings to control their behavior.  The spec strings built into GCC can
7507 be overridden by using the @option{-specs=} command-line switch to specify
7508 a spec file.
7509
7510 @dfn{Spec files} are plaintext files that are used to construct spec
7511 strings.  They consist of a sequence of directives separated by blank
7512 lines.  The type of directive is determined by the first non-whitespace
7513 character on the line and it can be one of the following:
7514
7515 @table @code
7516 @item %@var{command}
7517 Issues a @var{command} to the spec file processor.  The commands that can
7518 appear here are:
7519
7520 @table @code
7521 @item %include <@var{file}>
7522 @cindex %include
7523 Search for @var{file} and insert its text at the current point in the
7524 specs file.
7525
7526 @item %include_noerr <@var{file}>
7527 @cindex %include_noerr
7528 Just like @samp{%include}, but do not generate an error message if the include
7529 file cannot be found.
7530
7531 @item %rename @var{old_name} @var{new_name}
7532 @cindex %rename
7533 Rename the spec string @var{old_name} to @var{new_name}.
7534
7535 @end table
7536
7537 @item *[@var{spec_name}]:
7538 This tells the compiler to create, override or delete the named spec
7539 string.  All lines after this directive up to the next directive or
7540 blank line are considered to be the text for the spec string.  If this
7541 results in an empty string then the spec will be deleted.  (Or, if the
7542 spec did not exist, then nothing will happened.)  Otherwise, if the spec
7543 does not currently exist a new spec will be created.  If the spec does
7544 exist then its contents will be overridden by the text of this
7545 directive, unless the first character of that text is the @samp{+}
7546 character, in which case the text will be appended to the spec.
7547
7548 @item [@var{suffix}]:
7549 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
7550 and up to the next directive or blank line are considered to make up the
7551 spec string for the indicated suffix.  When the compiler encounters an
7552 input file with the named suffix, it will processes the spec string in
7553 order to work out how to compile that file.  For example:
7554
7555 @smallexample
7556 .ZZ:
7557 z-compile -input %i
7558 @end smallexample
7559
7560 This says that any input file whose name ends in @samp{.ZZ} should be
7561 passed to the program @samp{z-compile}, which should be invoked with the
7562 command-line switch @option{-input} and with the result of performing the
7563 @samp{%i} substitution.  (See below.)
7564
7565 As an alternative to providing a spec string, the text that follows a
7566 suffix directive can be one of the following:
7567
7568 @table @code
7569 @item @@@var{language}
7570 This says that the suffix is an alias for a known @var{language}.  This is
7571 similar to using the @option{-x} command-line switch to GCC to specify a
7572 language explicitly.  For example:
7573
7574 @smallexample
7575 .ZZ:
7576 @@c++
7577 @end smallexample
7578
7579 Says that .ZZ files are, in fact, C++ source files.
7580
7581 @item #@var{name}
7582 This causes an error messages saying:
7583
7584 @smallexample
7585 @var{name} compiler not installed on this system.
7586 @end smallexample
7587 @end table
7588
7589 GCC already has an extensive list of suffixes built into it.
7590 This directive will add an entry to the end of the list of suffixes, but
7591 since the list is searched from the end backwards, it is effectively
7592 possible to override earlier entries using this technique.
7593
7594 @end table
7595
7596 GCC has the following spec strings built into it.  Spec files can
7597 override these strings or create their own.  Note that individual
7598 targets can also add their own spec strings to this list.
7599
7600 @smallexample
7601 asm          Options to pass to the assembler
7602 asm_final    Options to pass to the assembler post-processor
7603 cpp          Options to pass to the C preprocessor
7604 cc1          Options to pass to the C compiler
7605 cc1plus      Options to pass to the C++ compiler
7606 endfile      Object files to include at the end of the link
7607 link         Options to pass to the linker
7608 lib          Libraries to include on the command line to the linker
7609 libgcc       Decides which GCC support library to pass to the linker
7610 linker       Sets the name of the linker
7611 predefines   Defines to be passed to the C preprocessor
7612 signed_char  Defines to pass to CPP to say whether @code{char} is signed
7613              by default
7614 startfile    Object files to include at the start of the link
7615 @end smallexample
7616
7617 Here is a small example of a spec file:
7618
7619 @smallexample
7620 %rename lib                 old_lib
7621
7622 *lib:
7623 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
7624 @end smallexample
7625
7626 This example renames the spec called @samp{lib} to @samp{old_lib} and
7627 then overrides the previous definition of @samp{lib} with a new one.
7628 The new definition adds in some extra command-line options before
7629 including the text of the old definition.
7630
7631 @dfn{Spec strings} are a list of command-line options to be passed to their
7632 corresponding program.  In addition, the spec strings can contain
7633 @samp{%}-prefixed sequences to substitute variable text or to
7634 conditionally insert text into the command line.  Using these constructs
7635 it is possible to generate quite complex command lines.
7636
7637 Here is a table of all defined @samp{%}-sequences for spec
7638 strings.  Note that spaces are not generated automatically around the
7639 results of expanding these sequences.  Therefore you can concatenate them
7640 together or combine them with constant text in a single argument.
7641
7642 @table @code
7643 @item %%
7644 Substitute one @samp{%} into the program name or argument.
7645
7646 @item %i
7647 Substitute the name of the input file being processed.
7648
7649 @item %b
7650 Substitute the basename of the input file being processed.
7651 This is the substring up to (and not including) the last period
7652 and not including the directory.
7653
7654 @item %B
7655 This is the same as @samp{%b}, but include the file suffix (text after
7656 the last period).
7657
7658 @item %d
7659 Marks the argument containing or following the @samp{%d} as a
7660 temporary file name, so that that file will be deleted if GCC exits
7661 successfully.  Unlike @samp{%g}, this contributes no text to the
7662 argument.
7663
7664 @item %g@var{suffix}
7665 Substitute a file name that has suffix @var{suffix} and is chosen
7666 once per compilation, and mark the argument in the same way as
7667 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
7668 name is now chosen in a way that is hard to predict even when previously
7669 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
7670 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
7671 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
7672 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
7673 was simply substituted with a file name chosen once per compilation,
7674 without regard to any appended suffix (which was therefore treated
7675 just like ordinary text), making such attacks more likely to succeed.
7676
7677 @item %u@var{suffix}
7678 Like @samp{%g}, but generates a new temporary file name even if
7679 @samp{%u@var{suffix}} was already seen.
7680
7681 @item %U@var{suffix}
7682 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
7683 new one if there is no such last file name.  In the absence of any
7684 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
7685 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
7686 would involve the generation of two distinct file names, one
7687 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
7688 simply substituted with a file name chosen for the previous @samp{%u},
7689 without regard to any appended suffix.
7690
7691 @item %j@var{suffix}
7692 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
7693 writable, and if save-temps is off; otherwise, substitute the name
7694 of a temporary file, just like @samp{%u}.  This temporary file is not
7695 meant for communication between processes, but rather as a junk
7696 disposal mechanism.
7697
7698 @item %|@var{suffix}
7699 @itemx %m@var{suffix}
7700 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
7701 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
7702 all.  These are the two most common ways to instruct a program that it
7703 should read from standard input or write to standard output.  If you
7704 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
7705 construct: see for example @file{f/lang-specs.h}.
7706
7707 @item %.@var{SUFFIX}
7708 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
7709 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
7710 terminated by the next space or %.
7711
7712 @item %w
7713 Marks the argument containing or following the @samp{%w} as the
7714 designated output file of this compilation.  This puts the argument
7715 into the sequence of arguments that @samp{%o} will substitute later.
7716
7717 @item %o
7718 Substitutes the names of all the output files, with spaces
7719 automatically placed around them.  You should write spaces
7720 around the @samp{%o} as well or the results are undefined.
7721 @samp{%o} is for use in the specs for running the linker.
7722 Input files whose names have no recognized suffix are not compiled
7723 at all, but they are included among the output files, so they will
7724 be linked.
7725
7726 @item %O
7727 Substitutes the suffix for object files.  Note that this is
7728 handled specially when it immediately follows @samp{%g, %u, or %U},
7729 because of the need for those to form complete file names.  The
7730 handling is such that @samp{%O} is treated exactly as if it had already
7731 been substituted, except that @samp{%g, %u, and %U} do not currently
7732 support additional @var{suffix} characters following @samp{%O} as they would
7733 following, for example, @samp{.o}.
7734
7735 @item %p
7736 Substitutes the standard macro predefinitions for the
7737 current target machine.  Use this when running @code{cpp}.
7738
7739 @item %P
7740 Like @samp{%p}, but puts @samp{__} before and after the name of each
7741 predefined macro, except for macros that start with @samp{__} or with
7742 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
7743 C@.
7744
7745 @item %I
7746 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
7747 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
7748 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
7749 and @option{-imultilib} as necessary.
7750
7751 @item %s
7752 Current argument is the name of a library or startup file of some sort.
7753 Search for that file in a standard list of directories and substitute
7754 the full name found.
7755
7756 @item %e@var{str}
7757 Print @var{str} as an error message.  @var{str} is terminated by a newline.
7758 Use this when inconsistent options are detected.
7759
7760 @item %(@var{name})
7761 Substitute the contents of spec string @var{name} at this point.
7762
7763 @item %[@var{name}]
7764 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
7765
7766 @item %x@{@var{option}@}
7767 Accumulate an option for @samp{%X}.
7768
7769 @item %X
7770 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
7771 spec string.
7772
7773 @item %Y
7774 Output the accumulated assembler options specified by @option{-Wa}.
7775
7776 @item %Z
7777 Output the accumulated preprocessor options specified by @option{-Wp}.
7778
7779 @item %a
7780 Process the @code{asm} spec.  This is used to compute the
7781 switches to be passed to the assembler.
7782
7783 @item %A
7784 Process the @code{asm_final} spec.  This is a spec string for
7785 passing switches to an assembler post-processor, if such a program is
7786 needed.
7787
7788 @item %l
7789 Process the @code{link} spec.  This is the spec for computing the
7790 command line passed to the linker.  Typically it will make use of the
7791 @samp{%L %G %S %D and %E} sequences.
7792
7793 @item %D
7794 Dump out a @option{-L} option for each directory that GCC believes might
7795 contain startup files.  If the target supports multilibs then the
7796 current multilib directory will be prepended to each of these paths.
7797
7798 @item %L
7799 Process the @code{lib} spec.  This is a spec string for deciding which
7800 libraries should be included on the command line to the linker.
7801
7802 @item %G
7803 Process the @code{libgcc} spec.  This is a spec string for deciding
7804 which GCC support library should be included on the command line to the linker.
7805
7806 @item %S
7807 Process the @code{startfile} spec.  This is a spec for deciding which
7808 object files should be the first ones passed to the linker.  Typically
7809 this might be a file named @file{crt0.o}.
7810
7811 @item %E
7812 Process the @code{endfile} spec.  This is a spec string that specifies
7813 the last object files that will be passed to the linker.
7814
7815 @item %C
7816 Process the @code{cpp} spec.  This is used to construct the arguments
7817 to be passed to the C preprocessor.
7818
7819 @item %1
7820 Process the @code{cc1} spec.  This is used to construct the options to be
7821 passed to the actual C compiler (@samp{cc1}).
7822
7823 @item %2
7824 Process the @code{cc1plus} spec.  This is used to construct the options to be
7825 passed to the actual C++ compiler (@samp{cc1plus}).
7826
7827 @item %*
7828 Substitute the variable part of a matched option.  See below.
7829 Note that each comma in the substituted string is replaced by
7830 a single space.
7831
7832 @item %<@code{S}
7833 Remove all occurrences of @code{-S} from the command line.  Note---this
7834 command is position dependent.  @samp{%} commands in the spec string
7835 before this one will see @code{-S}, @samp{%} commands in the spec string
7836 after this one will not.
7837
7838 @item %:@var{function}(@var{args})
7839 Call the named function @var{function}, passing it @var{args}.
7840 @var{args} is first processed as a nested spec string, then split
7841 into an argument vector in the usual fashion.  The function returns
7842 a string which is processed as if it had appeared literally as part
7843 of the current spec.
7844
7845 The following built-in spec functions are provided:
7846
7847 @table @code
7848 @item @code{getenv}
7849 The @code{getenv} spec function takes two arguments: an environment
7850 variable name and a string.  If the environment variable is not
7851 defined, a fatal error is issued.  Otherwise, the return value is the
7852 value of the environment variable concatenated with the string.  For
7853 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
7854
7855 @smallexample
7856 %:getenv(TOPDIR /include)
7857 @end smallexample
7858
7859 expands to @file{/path/to/top/include}.
7860
7861 @item @code{if-exists}
7862 The @code{if-exists} spec function takes one argument, an absolute
7863 pathname to a file.  If the file exists, @code{if-exists} returns the
7864 pathname.  Here is a small example of its usage:
7865
7866 @smallexample
7867 *startfile:
7868 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
7869 @end smallexample
7870
7871 @item @code{if-exists-else}
7872 The @code{if-exists-else} spec function is similar to the @code{if-exists}
7873 spec function, except that it takes two arguments.  The first argument is
7874 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
7875 returns the pathname.  If it does not exist, it returns the second argument.
7876 This way, @code{if-exists-else} can be used to select one file or another,
7877 based on the existence of the first.  Here is a small example of its usage:
7878
7879 @smallexample
7880 *startfile:
7881 crt0%O%s %:if-exists(crti%O%s) \
7882 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
7883 @end smallexample
7884
7885 @item @code{replace-outfile}
7886 The @code{replace-outfile} spec function takes two arguments.  It looks for the
7887 first argument in the outfiles array and replaces it with the second argument.  Here
7888 is a small example of its usage:
7889
7890 @smallexample
7891 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
7892 @end smallexample
7893
7894 @item @code{print-asm-header}
7895 The @code{print-asm-header} function takes no arguments and simply
7896 prints a banner like:
7897
7898 @smallexample
7899 Assembler options
7900 =================
7901
7902 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
7903 @end smallexample
7904
7905 It is used to separate compiler options from assembler options
7906 in the @option{--target-help} output.
7907 @end table
7908
7909 @item %@{@code{S}@}
7910 Substitutes the @code{-S} switch, if that switch was given to GCC@.
7911 If that switch was not specified, this substitutes nothing.  Note that
7912 the leading dash is omitted when specifying this option, and it is
7913 automatically inserted if the substitution is performed.  Thus the spec
7914 string @samp{%@{foo@}} would match the command-line option @option{-foo}
7915 and would output the command line option @option{-foo}.
7916
7917 @item %W@{@code{S}@}
7918 Like %@{@code{S}@} but mark last argument supplied within as a file to be
7919 deleted on failure.
7920
7921 @item %@{@code{S}*@}
7922 Substitutes all the switches specified to GCC whose names start
7923 with @code{-S}, but which also take an argument.  This is used for
7924 switches like @option{-o}, @option{-D}, @option{-I}, etc.
7925 GCC considers @option{-o foo} as being
7926 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
7927 text, including the space.  Thus two arguments would be generated.
7928
7929 @item %@{@code{S}*&@code{T}*@}
7930 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
7931 (the order of @code{S} and @code{T} in the spec is not significant).
7932 There can be any number of ampersand-separated variables; for each the
7933 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
7934
7935 @item %@{@code{S}:@code{X}@}
7936 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
7937
7938 @item %@{!@code{S}:@code{X}@}
7939 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
7940
7941 @item %@{@code{S}*:@code{X}@}
7942 Substitutes @code{X} if one or more switches whose names start with
7943 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
7944 once, no matter how many such switches appeared.  However, if @code{%*}
7945 appears somewhere in @code{X}, then @code{X} will be substituted once
7946 for each matching switch, with the @code{%*} replaced by the part of
7947 that switch that matched the @code{*}.
7948
7949 @item %@{.@code{S}:@code{X}@}
7950 Substitutes @code{X}, if processing a file with suffix @code{S}.
7951
7952 @item %@{!.@code{S}:@code{X}@}
7953 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
7954
7955 @item %@{,@code{S}:@code{X}@}
7956 Substitutes @code{X}, if processing a file for language @code{S}.
7957
7958 @item %@{!,@code{S}:@code{X}@}
7959 Substitutes @code{X}, if not processing a file for language @code{S}.
7960
7961 @item %@{@code{S}|@code{P}:@code{X}@}
7962 Substitutes @code{X} if either @code{-S} or @code{-P} was given to
7963 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
7964 @code{*} sequences as well, although they have a stronger binding than
7965 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
7966 alternatives must be starred, and only the first matching alternative
7967 is substituted.
7968
7969 For example, a spec string like this:
7970
7971 @smallexample
7972 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
7973 @end smallexample
7974
7975 will output the following command-line options from the following input
7976 command-line options:
7977
7978 @smallexample
7979 fred.c        -foo -baz
7980 jim.d         -bar -boggle
7981 -d fred.c     -foo -baz -boggle
7982 -d jim.d      -bar -baz -boggle
7983 @end smallexample
7984
7985 @item %@{S:X; T:Y; :D@}
7986
7987 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
7988 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
7989 be as many clauses as you need.  This may be combined with @code{.},
7990 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
7991
7992
7993 @end table
7994
7995 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
7996 construct may contain other nested @samp{%} constructs or spaces, or
7997 even newlines.  They are processed as usual, as described above.
7998 Trailing white space in @code{X} is ignored.  White space may also
7999 appear anywhere on the left side of the colon in these constructs,
8000 except between @code{.} or @code{*} and the corresponding word.
8001
8002 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
8003 handled specifically in these constructs.  If another value of
8004 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
8005 @option{-W} switch is found later in the command line, the earlier
8006 switch value is ignored, except with @{@code{S}*@} where @code{S} is
8007 just one letter, which passes all matching options.
8008
8009 The character @samp{|} at the beginning of the predicate text is used to
8010 indicate that a command should be piped to the following command, but
8011 only if @option{-pipe} is specified.
8012
8013 It is built into GCC which switches take arguments and which do not.
8014 (You might think it would be useful to generalize this to allow each
8015 compiler's spec to say which switches take arguments.  But this cannot
8016 be done in a consistent fashion.  GCC cannot even decide which input
8017 files have been specified without knowing which switches take arguments,
8018 and it must know which input files to compile in order to tell which
8019 compilers to run).
8020
8021 GCC also knows implicitly that arguments starting in @option{-l} are to be
8022 treated as compiler output files, and passed to the linker in their
8023 proper position among the other output files.
8024
8025 @c man begin OPTIONS
8026
8027 @node Target Options
8028 @section Specifying Target Machine and Compiler Version
8029 @cindex target options
8030 @cindex cross compiling
8031 @cindex specifying machine version
8032 @cindex specifying compiler version and target machine
8033 @cindex compiler version, specifying
8034 @cindex target machine, specifying
8035
8036 The usual way to run GCC is to run the executable called @file{gcc}, or
8037 @file{<machine>-gcc} when cross-compiling, or
8038 @file{<machine>-gcc-<version>} to run a version other than the one that
8039 was installed last.  Sometimes this is inconvenient, so GCC provides
8040 options that will switch to another cross-compiler or version.
8041
8042 @table @gcctabopt
8043 @item -b @var{machine}
8044 @opindex b
8045 The argument @var{machine} specifies the target machine for compilation.
8046
8047 The value to use for @var{machine} is the same as was specified as the
8048 machine type when configuring GCC as a cross-compiler.  For
8049 example, if a cross-compiler was configured with @samp{configure
8050 arm-elf}, meaning to compile for an arm processor with elf binaries,
8051 then you would specify @option{-b arm-elf} to run that cross compiler.
8052 Because there are other options beginning with @option{-b}, the
8053 configuration must contain a hyphen.
8054
8055 @item -V @var{version}
8056 @opindex V
8057 The argument @var{version} specifies which version of GCC to run.
8058 This is useful when multiple versions are installed.  For example,
8059 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
8060 @end table
8061
8062 The @option{-V} and @option{-b} options work by running the
8063 @file{<machine>-gcc-<version>} executable, so there's no real reason to
8064 use them if you can just run that directly.
8065
8066 @node Submodel Options
8067 @section Hardware Models and Configurations
8068 @cindex submodel options
8069 @cindex specifying hardware config
8070 @cindex hardware models and configurations, specifying
8071 @cindex machine dependent options
8072
8073 Earlier we discussed the standard option @option{-b} which chooses among
8074 different installed compilers for completely different target
8075 machines, such as VAX vs.@: 68000 vs.@: 80386.
8076
8077 In addition, each of these target machine types can have its own
8078 special options, starting with @samp{-m}, to choose among various
8079 hardware models or configurations---for example, 68010 vs 68020,
8080 floating coprocessor or none.  A single installed version of the
8081 compiler can compile for any model or configuration, according to the
8082 options specified.
8083
8084 Some configurations of the compiler also support additional special
8085 options, usually for compatibility with other compilers on the same
8086 platform.
8087
8088 @c This list is ordered alphanumerically by subsection name.
8089 @c It should be the same order and spelling as these options are listed
8090 @c in Machine Dependent Options
8091
8092 @menu
8093 * ARC Options::
8094 * ARM Options::
8095 * AVR Options::
8096 * Blackfin Options::
8097 * CRIS Options::
8098 * CRX Options::
8099 * Darwin Options::
8100 * DEC Alpha Options::
8101 * DEC Alpha/VMS Options::
8102 * FRV Options::
8103 * GNU/Linux Options::
8104 * H8/300 Options::
8105 * HPPA Options::
8106 * i386 and x86-64 Options::
8107 * IA-64 Options::
8108 * M32C Options::
8109 * M32R/D Options::
8110 * M680x0 Options::
8111 * M68hc1x Options::
8112 * MCore Options::
8113 * MIPS Options::
8114 * MMIX Options::
8115 * MN10300 Options::
8116 * MT Options::
8117 * PDP-11 Options::
8118 * PowerPC Options::
8119 * RS/6000 and PowerPC Options::
8120 * S/390 and zSeries Options::
8121 * Score Options::
8122 * SH Options::
8123 * SPARC Options::
8124 * SPU Options::
8125 * System V Options::
8126 * TMS320C3x/C4x Options::
8127 * V850 Options::
8128 * VAX Options::
8129 * VxWorks Options::
8130 * x86-64 Options::
8131 * Xstormy16 Options::
8132 * Xtensa Options::
8133 * zSeries Options::
8134 @end menu
8135
8136 @node ARC Options
8137 @subsection ARC Options
8138 @cindex ARC Options
8139
8140 These options are defined for ARC implementations:
8141
8142 @table @gcctabopt
8143 @item -EL
8144 @opindex EL
8145 Compile code for little endian mode.  This is the default.
8146
8147 @item -EB
8148 @opindex EB
8149 Compile code for big endian mode.
8150
8151 @item -mmangle-cpu
8152 @opindex mmangle-cpu
8153 Prepend the name of the cpu to all public symbol names.
8154 In multiple-processor systems, there are many ARC variants with different
8155 instruction and register set characteristics.  This flag prevents code
8156 compiled for one cpu to be linked with code compiled for another.
8157 No facility exists for handling variants that are ``almost identical''.
8158 This is an all or nothing option.
8159
8160 @item -mcpu=@var{cpu}
8161 @opindex mcpu
8162 Compile code for ARC variant @var{cpu}.
8163 Which variants are supported depend on the configuration.
8164 All variants support @option{-mcpu=base}, this is the default.
8165
8166 @item -mtext=@var{text-section}
8167 @itemx -mdata=@var{data-section}
8168 @itemx -mrodata=@var{readonly-data-section}
8169 @opindex mtext
8170 @opindex mdata
8171 @opindex mrodata
8172 Put functions, data, and readonly data in @var{text-section},
8173 @var{data-section}, and @var{readonly-data-section} respectively
8174 by default.  This can be overridden with the @code{section} attribute.
8175 @xref{Variable Attributes}.
8176
8177 @end table
8178
8179 @node ARM Options
8180 @subsection ARM Options
8181 @cindex ARM options
8182
8183 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
8184 architectures:
8185
8186 @table @gcctabopt
8187 @item -mabi=@var{name}
8188 @opindex mabi
8189 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
8190 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
8191
8192 @item -mapcs-frame
8193 @opindex mapcs-frame
8194 Generate a stack frame that is compliant with the ARM Procedure Call
8195 Standard for all functions, even if this is not strictly necessary for
8196 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
8197 with this option will cause the stack frames not to be generated for
8198 leaf functions.  The default is @option{-mno-apcs-frame}.
8199
8200 @item -mapcs
8201 @opindex mapcs
8202 This is a synonym for @option{-mapcs-frame}.
8203
8204 @ignore
8205 @c not currently implemented
8206 @item -mapcs-stack-check
8207 @opindex mapcs-stack-check
8208 Generate code to check the amount of stack space available upon entry to
8209 every function (that actually uses some stack space).  If there is
8210 insufficient space available then either the function
8211 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
8212 called, depending upon the amount of stack space required.  The run time
8213 system is required to provide these functions.  The default is
8214 @option{-mno-apcs-stack-check}, since this produces smaller code.
8215
8216 @c not currently implemented
8217 @item -mapcs-float
8218 @opindex mapcs-float
8219 Pass floating point arguments using the float point registers.  This is
8220 one of the variants of the APCS@.  This option is recommended if the
8221 target hardware has a floating point unit or if a lot of floating point
8222 arithmetic is going to be performed by the code.  The default is
8223 @option{-mno-apcs-float}, since integer only code is slightly increased in
8224 size if @option{-mapcs-float} is used.
8225
8226 @c not currently implemented
8227 @item -mapcs-reentrant
8228 @opindex mapcs-reentrant
8229 Generate reentrant, position independent code.  The default is
8230 @option{-mno-apcs-reentrant}.
8231 @end ignore
8232
8233 @item -mthumb-interwork
8234 @opindex mthumb-interwork
8235 Generate code which supports calling between the ARM and Thumb
8236 instruction sets.  Without this option the two instruction sets cannot
8237 be reliably used inside one program.  The default is
8238 @option{-mno-thumb-interwork}, since slightly larger code is generated
8239 when @option{-mthumb-interwork} is specified.
8240
8241 @item -mno-sched-prolog
8242 @opindex mno-sched-prolog
8243 Prevent the reordering of instructions in the function prolog, or the
8244 merging of those instruction with the instructions in the function's
8245 body.  This means that all functions will start with a recognizable set
8246 of instructions (or in fact one of a choice from a small set of
8247 different function prologues), and this information can be used to
8248 locate the start if functions inside an executable piece of code.  The
8249 default is @option{-msched-prolog}.
8250
8251 @item -mhard-float
8252 @opindex mhard-float
8253 Generate output containing floating point instructions.  This is the
8254 default.
8255
8256 @item -msoft-float
8257 @opindex msoft-float
8258 Generate output containing library calls for floating point.
8259 @strong{Warning:} the requisite libraries are not available for all ARM
8260 targets.  Normally the facilities of the machine's usual C compiler are
8261 used, but this cannot be done directly in cross-compilation.  You must make
8262 your own arrangements to provide suitable library functions for
8263 cross-compilation.
8264
8265 @option{-msoft-float} changes the calling convention in the output file;
8266 therefore, it is only useful if you compile @emph{all} of a program with
8267 this option.  In particular, you need to compile @file{libgcc.a}, the
8268 library that comes with GCC, with @option{-msoft-float} in order for
8269 this to work.
8270
8271 @item -mfloat-abi=@var{name}
8272 @opindex mfloat-abi
8273 Specifies which ABI to use for floating point values.  Permissible values
8274 are: @samp{soft}, @samp{softfp} and @samp{hard}.
8275
8276 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
8277 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
8278 of floating point instructions, but still uses the soft-float calling
8279 conventions.
8280
8281 @item -mlittle-endian
8282 @opindex mlittle-endian
8283 Generate code for a processor running in little-endian mode.  This is
8284 the default for all standard configurations.
8285
8286 @item -mbig-endian
8287 @opindex mbig-endian
8288 Generate code for a processor running in big-endian mode; the default is
8289 to compile code for a little-endian processor.
8290
8291 @item -mwords-little-endian
8292 @opindex mwords-little-endian
8293 This option only applies when generating code for big-endian processors.
8294 Generate code for a little-endian word order but a big-endian byte
8295 order.  That is, a byte order of the form @samp{32107654}.  Note: this
8296 option should only be used if you require compatibility with code for
8297 big-endian ARM processors generated by versions of the compiler prior to
8298 2.8.
8299
8300 @item -mcpu=@var{name}
8301 @opindex mcpu
8302 This specifies the name of the target ARM processor.  GCC uses this name
8303 to determine what kind of instructions it can emit when generating
8304 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
8305 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
8306 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
8307 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
8308 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
8309 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
8310 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
8311 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
8312 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
8313 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
8314 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
8315 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
8316 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
8317 @samp{arm1156t2-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
8318 @samp{cortex-a8}, @samp{cortex-r4}, @samp{cortex-m3},
8319 @samp{xscale}, @samp{iwmmxt}, @samp{ep9312}.
8320
8321 @itemx -mtune=@var{name}
8322 @opindex mtune
8323 This option is very similar to the @option{-mcpu=} option, except that
8324 instead of specifying the actual target processor type, and hence
8325 restricting which instructions can be used, it specifies that GCC should
8326 tune the performance of the code as if the target were of the type
8327 specified in this option, but still choosing the instructions that it
8328 will generate based on the cpu specified by a @option{-mcpu=} option.
8329 For some ARM implementations better performance can be obtained by using
8330 this option.
8331
8332 @item -march=@var{name}
8333 @opindex march
8334 This specifies the name of the target ARM architecture.  GCC uses this
8335 name to determine what kind of instructions it can emit when generating
8336 assembly code.  This option can be used in conjunction with or instead
8337 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
8338 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
8339 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
8340 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv7}, @samp{armv7-a},
8341 @samp{armv7-r}, @samp{armv7-m}, @samp{iwmmxt}, @samp{ep9312}.
8342
8343 @item -mfpu=@var{name}
8344 @itemx -mfpe=@var{number}
8345 @itemx -mfp=@var{number}
8346 @opindex mfpu
8347 @opindex mfpe
8348 @opindex mfp
8349 This specifies what floating point hardware (or hardware emulation) is
8350 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
8351 @samp{fpe3}, @samp{maverick}, @samp{vfp}.  @option{-mfp} and @option{-mfpe}
8352 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
8353 with older versions of GCC@.
8354
8355 If @option{-msoft-float} is specified this specifies the format of
8356 floating point values.
8357
8358 @item -mstructure-size-boundary=@var{n}
8359 @opindex mstructure-size-boundary
8360 The size of all structures and unions will be rounded up to a multiple
8361 of the number of bits set by this option.  Permissible values are 8, 32
8362 and 64.  The default value varies for different toolchains.  For the COFF
8363 targeted toolchain the default value is 8.  A value of 64 is only allowed
8364 if the underlying ABI supports it.
8365
8366 Specifying the larger number can produce faster, more efficient code, but
8367 can also increase the size of the program.  Different values are potentially
8368 incompatible.  Code compiled with one value cannot necessarily expect to
8369 work with code or libraries compiled with another value, if they exchange
8370 information using structures or unions.
8371
8372 @item -mabort-on-noreturn
8373 @opindex mabort-on-noreturn
8374 Generate a call to the function @code{abort} at the end of a
8375 @code{noreturn} function.  It will be executed if the function tries to
8376 return.
8377
8378 @item -mlong-calls
8379 @itemx -mno-long-calls
8380 @opindex mlong-calls
8381 @opindex mno-long-calls
8382 Tells the compiler to perform function calls by first loading the
8383 address of the function into a register and then performing a subroutine
8384 call on this register.  This switch is needed if the target function
8385 will lie outside of the 64 megabyte addressing range of the offset based
8386 version of subroutine call instruction.
8387
8388 Even if this switch is enabled, not all function calls will be turned
8389 into long calls.  The heuristic is that static functions, functions
8390 which have the @samp{short-call} attribute, functions that are inside
8391 the scope of a @samp{#pragma no_long_calls} directive and functions whose
8392 definitions have already been compiled within the current compilation
8393 unit, will not be turned into long calls.  The exception to this rule is
8394 that weak function definitions, functions with the @samp{long-call}
8395 attribute or the @samp{section} attribute, and functions that are within
8396 the scope of a @samp{#pragma long_calls} directive, will always be
8397 turned into long calls.
8398
8399 This feature is not enabled by default.  Specifying
8400 @option{-mno-long-calls} will restore the default behavior, as will
8401 placing the function calls within the scope of a @samp{#pragma
8402 long_calls_off} directive.  Note these switches have no effect on how
8403 the compiler generates code to handle function calls via function
8404 pointers.
8405
8406 @item -mnop-fun-dllimport
8407 @opindex mnop-fun-dllimport
8408 Disable support for the @code{dllimport} attribute.
8409
8410 @item -msingle-pic-base
8411 @opindex msingle-pic-base
8412 Treat the register used for PIC addressing as read-only, rather than
8413 loading it in the prologue for each function.  The run-time system is
8414 responsible for initializing this register with an appropriate value
8415 before execution begins.
8416
8417 @item -mpic-register=@var{reg}
8418 @opindex mpic-register
8419 Specify the register to be used for PIC addressing.  The default is R10
8420 unless stack-checking is enabled, when R9 is used.
8421
8422 @item -mcirrus-fix-invalid-insns
8423 @opindex mcirrus-fix-invalid-insns
8424 @opindex mno-cirrus-fix-invalid-insns
8425 Insert NOPs into the instruction stream to in order to work around
8426 problems with invalid Maverick instruction combinations.  This option
8427 is only valid if the @option{-mcpu=ep9312} option has been used to
8428 enable generation of instructions for the Cirrus Maverick floating
8429 point co-processor.  This option is not enabled by default, since the
8430 problem is only present in older Maverick implementations.  The default
8431 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
8432 switch.
8433
8434 @item -mpoke-function-name
8435 @opindex mpoke-function-name
8436 Write the name of each function into the text section, directly
8437 preceding the function prologue.  The generated code is similar to this:
8438
8439 @smallexample
8440      t0
8441          .ascii "arm_poke_function_name", 0
8442          .align
8443      t1
8444          .word 0xff000000 + (t1 - t0)
8445      arm_poke_function_name
8446          mov     ip, sp
8447          stmfd   sp!, @{fp, ip, lr, pc@}
8448          sub     fp, ip, #4
8449 @end smallexample
8450
8451 When performing a stack backtrace, code can inspect the value of
8452 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
8453 location @code{pc - 12} and the top 8 bits are set, then we know that
8454 there is a function name embedded immediately preceding this location
8455 and has length @code{((pc[-3]) & 0xff000000)}.
8456
8457 @item -mthumb
8458 @opindex mthumb
8459 Generate code for the Thumb instruction set.  The default is to
8460 use the 32-bit ARM instruction set.
8461 This option automatically enables either 16-bit Thumb-1 or
8462 mixed 16/32-bit Thumb-2 instructions based on the @option{-mcpu=@var{name}}
8463 and @option{-march=@var{name}} options.
8464
8465 @item -mtpcs-frame
8466 @opindex mtpcs-frame
8467 Generate a stack frame that is compliant with the Thumb Procedure Call
8468 Standard for all non-leaf functions.  (A leaf function is one that does
8469 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
8470
8471 @item -mtpcs-leaf-frame
8472 @opindex mtpcs-leaf-frame
8473 Generate a stack frame that is compliant with the Thumb Procedure Call
8474 Standard for all leaf functions.  (A leaf function is one that does
8475 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
8476
8477 @item -mcallee-super-interworking
8478 @opindex mcallee-super-interworking
8479 Gives all externally visible functions in the file being compiled an ARM
8480 instruction set header which switches to Thumb mode before executing the
8481 rest of the function.  This allows these functions to be called from
8482 non-interworking code.
8483
8484 @item -mcaller-super-interworking
8485 @opindex mcaller-super-interworking
8486 Allows calls via function pointers (including virtual functions) to
8487 execute correctly regardless of whether the target code has been
8488 compiled for interworking or not.  There is a small overhead in the cost
8489 of executing a function pointer if this option is enabled.
8490
8491 @item -mtp=@var{name}
8492 @opindex mtp
8493 Specify the access model for the thread local storage pointer.  The valid
8494 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
8495 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
8496 (supported in the arm6k architecture), and @option{auto}, which uses the
8497 best available method for the selected processor.  The default setting is
8498 @option{auto}.
8499
8500 @end table
8501
8502 @node AVR Options
8503 @subsection AVR Options
8504 @cindex AVR Options
8505
8506 These options are defined for AVR implementations:
8507
8508 @table @gcctabopt
8509 @item -mmcu=@var{mcu}
8510 @opindex mmcu
8511 Specify ATMEL AVR instruction set or MCU type.
8512
8513 Instruction set avr1 is for the minimal AVR core, not supported by the C
8514 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
8515 attiny11, attiny12, attiny15, attiny28).
8516
8517 Instruction set avr2 (default) is for the classic AVR core with up to
8518 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
8519 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
8520 at90c8534, at90s8535).
8521
8522 Instruction set avr3 is for the classic AVR core with up to 128K program
8523 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
8524
8525 Instruction set avr4 is for the enhanced AVR core with up to 8K program
8526 memory space (MCU types: atmega8, atmega83, atmega85).
8527
8528 Instruction set avr5 is for the enhanced AVR core with up to 128K program
8529 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
8530 atmega64, atmega128, at43usb355, at94k).
8531
8532 @item -msize
8533 @opindex msize
8534 Output instruction sizes to the asm file.
8535
8536 @item -minit-stack=@var{N}
8537 @opindex minit-stack
8538 Specify the initial stack address, which may be a symbol or numeric value,
8539 @samp{__stack} is the default.
8540
8541 @item -mno-interrupts
8542 @opindex mno-interrupts
8543 Generated code is not compatible with hardware interrupts.
8544 Code size will be smaller.
8545
8546 @item -mcall-prologues
8547 @opindex mcall-prologues
8548 Functions prologues/epilogues expanded as call to appropriate
8549 subroutines.  Code size will be smaller.
8550
8551 @item -mno-tablejump
8552 @opindex mno-tablejump
8553 Do not generate tablejump insns which sometimes increase code size.
8554
8555 @item -mtiny-stack
8556 @opindex mtiny-stack
8557 Change only the low 8 bits of the stack pointer.
8558
8559 @item -mint8
8560 @opindex mint8
8561 Assume int to be 8 bit integer.  This affects the sizes of all types: A
8562 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
8563 and long long will be 4 bytes.  Please note that this option does not
8564 comply to the C standards, but it will provide you with smaller code
8565 size.
8566 @end table
8567
8568 @node Blackfin Options
8569 @subsection Blackfin Options
8570 @cindex Blackfin Options
8571
8572 @table @gcctabopt
8573 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
8574 @opindex mcpu=
8575 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
8576 can be one of @samp{bf522}, @samp{bf525}, @samp{bf527},
8577 @samp{bf531}, @samp{bf532}, @samp{bf533}, @samp{bf534},
8578 @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
8579 @samp{bf542}, @samp{bf544}, @samp{bf548}, @samp{bf549},
8580 @samp{bf561}.
8581 The optional @var{sirevision} specifies the silicon revision of the target
8582 Blackfin processor.  Any workarounds available for the targeted silicon revision
8583 will be enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
8584 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
8585 will be enabled.  The @code{__SILICON_REVISION__} macro is defined to two
8586 hexadecimal digits representing the major and minor numbers in the silicon
8587 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
8588 is not defined.  If @var{sirevision} is @samp{any}, the
8589 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
8590 If this optional @var{sirevision} is not used, GCC assumes the latest known
8591 silicon revision of the targeted Blackfin processor.
8592
8593 Support for @samp{bf561} is incomplete.  For @samp{bf561},
8594 Only the processor macro is defined.
8595 Without this option, @samp{bf532} is used as the processor by default.
8596 The corresponding predefined processor macros for @var{cpu} is to
8597 be defined.  And for @samp{bfin-elf} toolchain, this causes the hardware BSP
8598 provided by libgloss to be linked in if @option{-msim} is not given.
8599
8600 @item -msim
8601 @opindex msim
8602 Specifies that the program will be run on the simulator.  This causes
8603 the simulator BSP provided by libgloss to be linked in.  This option
8604 has effect only for @samp{bfin-elf} toolchain.
8605
8606 @item -momit-leaf-frame-pointer
8607 @opindex momit-leaf-frame-pointer
8608 Don't keep the frame pointer in a register for leaf functions.  This
8609 avoids the instructions to save, set up and restore frame pointers and
8610 makes an extra register available in leaf functions.  The option
8611 @option{-fomit-frame-pointer} removes the frame pointer for all functions
8612 which might make debugging harder.
8613
8614 @item -mspecld-anomaly
8615 @opindex mspecld-anomaly
8616 When enabled, the compiler will ensure that the generated code does not
8617 contain speculative loads after jump instructions. If this option is used,
8618 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
8619
8620 @item -mno-specld-anomaly
8621 @opindex mno-specld-anomaly
8622 Don't generate extra code to prevent speculative loads from occurring.
8623
8624 @item -mcsync-anomaly
8625 @opindex mcsync-anomaly
8626 When enabled, the compiler will ensure that the generated code does not
8627 contain CSYNC or SSYNC instructions too soon after conditional branches.
8628 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
8629
8630 @item -mno-csync-anomaly
8631 @opindex mno-csync-anomaly
8632 Don't generate extra code to prevent CSYNC or SSYNC instructions from
8633 occurring too soon after a conditional branch.
8634
8635 @item -mlow-64k
8636 @opindex mlow-64k
8637 When enabled, the compiler is free to take advantage of the knowledge that
8638 the entire program fits into the low 64k of memory.
8639
8640 @item -mno-low-64k
8641 @opindex mno-low-64k
8642 Assume that the program is arbitrarily large.  This is the default.
8643
8644 @item -mstack-check-l1
8645 @opindex mstack-check-l1
8646 Do stack checking using information placed into L1 scratchpad memory by the
8647 uClinux kernel.
8648
8649 @item -mid-shared-library
8650 @opindex mid-shared-library
8651 Generate code that supports shared libraries via the library ID method.
8652 This allows for execute in place and shared libraries in an environment
8653 without virtual memory management.  This option implies @option{-fPIC}.
8654
8655 @item -mno-id-shared-library
8656 @opindex mno-id-shared-library
8657 Generate code that doesn't assume ID based shared libraries are being used.
8658 This is the default.
8659
8660 @item -mleaf-id-shared-library
8661 @opindex mleaf-id-shared-library
8662 Generate code that supports shared libraries via the library ID method,
8663 but assumes that this library or executable won't link against any other
8664 ID shared libraries.  That allows the compiler to use faster code for jumps
8665 and calls.
8666
8667 @item -mno-leaf-id-shared-library
8668 @opindex mno-leaf-id-shared-library
8669 Do not assume that the code being compiled won't link against any ID shared
8670 libraries.  Slower code will be generated for jump and call insns.
8671
8672 @item -mshared-library-id=n
8673 @opindex mshared-library-id
8674 Specified the identification number of the ID based shared library being
8675 compiled.  Specifying a value of 0 will generate more compact code, specifying
8676 other values will force the allocation of that number to the current
8677 library but is no more space or time efficient than omitting this option.
8678
8679 @item -msep-data
8680 @opindex msep-data
8681 Generate code that allows the data segment to be located in a different
8682 area of memory from the text segment.  This allows for execute in place in
8683 an environment without virtual memory management by eliminating relocations
8684 against the text section.
8685
8686 @item -mno-sep-data
8687 @opindex mno-sep-data
8688 Generate code that assumes that the data segment follows the text segment.
8689 This is the default.
8690
8691 @item -mlong-calls
8692 @itemx -mno-long-calls
8693 @opindex mlong-calls
8694 @opindex mno-long-calls
8695 Tells the compiler to perform function calls by first loading the
8696 address of the function into a register and then performing a subroutine
8697 call on this register.  This switch is needed if the target function
8698 will lie outside of the 24 bit addressing range of the offset based
8699 version of subroutine call instruction.
8700
8701 This feature is not enabled by default.  Specifying
8702 @option{-mno-long-calls} will restore the default behavior.  Note these
8703 switches have no effect on how the compiler generates code to handle
8704 function calls via function pointers.
8705
8706 @item -mfast-fp
8707 @opindex mfast-fp
8708 Link with the fast floating-point library. This library relaxes some of
8709 the IEEE floating-point standard's rules for checking inputs against
8710 Not-a-Number (NAN), in the interest of performance.
8711
8712 @item -minline-plt
8713 @opindex minline-plt
8714 Enable inlining of PLT entries in function calls to functions that are
8715 not known to bind locally.  It has no effect without @option{-mfdpic}.
8716 @end table
8717
8718 @node CRIS Options
8719 @subsection CRIS Options
8720 @cindex CRIS Options
8721
8722 These options are defined specifically for the CRIS ports.
8723
8724 @table @gcctabopt
8725 @item -march=@var{architecture-type}
8726 @itemx -mcpu=@var{architecture-type}
8727 @opindex march
8728 @opindex mcpu
8729 Generate code for the specified architecture.  The choices for
8730 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
8731 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
8732 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
8733 @samp{v10}.
8734
8735 @item -mtune=@var{architecture-type}
8736 @opindex mtune
8737 Tune to @var{architecture-type} everything applicable about the generated
8738 code, except for the ABI and the set of available instructions.  The
8739 choices for @var{architecture-type} are the same as for
8740 @option{-march=@var{architecture-type}}.
8741
8742 @item -mmax-stack-frame=@var{n}
8743 @opindex mmax-stack-frame
8744 Warn when the stack frame of a function exceeds @var{n} bytes.
8745
8746 @item -melinux-stacksize=@var{n}
8747 @opindex melinux-stacksize
8748 Only available with the @samp{cris-axis-aout} target.  Arranges for
8749 indications in the program to the kernel loader that the stack of the
8750 program should be set to @var{n} bytes.
8751
8752 @item -metrax4
8753 @itemx -metrax100
8754 @opindex metrax4
8755 @opindex metrax100
8756 The options @option{-metrax4} and @option{-metrax100} are synonyms for
8757 @option{-march=v3} and @option{-march=v8} respectively.
8758
8759 @item -mmul-bug-workaround
8760 @itemx -mno-mul-bug-workaround
8761 @opindex mmul-bug-workaround
8762 @opindex mno-mul-bug-workaround
8763 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
8764 models where it applies.  This option is active by default.
8765
8766 @item -mpdebug
8767 @opindex mpdebug
8768 Enable CRIS-specific verbose debug-related information in the assembly
8769 code.  This option also has the effect to turn off the @samp{#NO_APP}
8770 formatted-code indicator to the assembler at the beginning of the
8771 assembly file.
8772
8773 @item -mcc-init
8774 @opindex mcc-init
8775 Do not use condition-code results from previous instruction; always emit
8776 compare and test instructions before use of condition codes.
8777
8778 @item -mno-side-effects
8779 @opindex mno-side-effects
8780 Do not emit instructions with side-effects in addressing modes other than
8781 post-increment.
8782
8783 @item -mstack-align
8784 @itemx -mno-stack-align
8785 @itemx -mdata-align
8786 @itemx -mno-data-align
8787 @itemx -mconst-align
8788 @itemx -mno-const-align
8789 @opindex mstack-align
8790 @opindex mno-stack-align
8791 @opindex mdata-align
8792 @opindex mno-data-align
8793 @opindex mconst-align
8794 @opindex mno-const-align
8795 These options (no-options) arranges (eliminate arrangements) for the
8796 stack-frame, individual data and constants to be aligned for the maximum
8797 single data access size for the chosen CPU model.  The default is to
8798 arrange for 32-bit alignment.  ABI details such as structure layout are
8799 not affected by these options.
8800
8801 @item -m32-bit
8802 @itemx -m16-bit
8803 @itemx -m8-bit
8804 @opindex m32-bit
8805 @opindex m16-bit
8806 @opindex m8-bit
8807 Similar to the stack- data- and const-align options above, these options
8808 arrange for stack-frame, writable data and constants to all be 32-bit,
8809 16-bit or 8-bit aligned.  The default is 32-bit alignment.
8810
8811 @item -mno-prologue-epilogue
8812 @itemx -mprologue-epilogue
8813 @opindex mno-prologue-epilogue
8814 @opindex mprologue-epilogue
8815 With @option{-mno-prologue-epilogue}, the normal function prologue and
8816 epilogue that sets up the stack-frame are omitted and no return
8817 instructions or return sequences are generated in the code.  Use this
8818 option only together with visual inspection of the compiled code: no
8819 warnings or errors are generated when call-saved registers must be saved,
8820 or storage for local variable needs to be allocated.
8821
8822 @item -mno-gotplt
8823 @itemx -mgotplt
8824 @opindex mno-gotplt
8825 @opindex mgotplt
8826 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
8827 instruction sequences that load addresses for functions from the PLT part
8828 of the GOT rather than (traditional on other architectures) calls to the
8829 PLT@.  The default is @option{-mgotplt}.
8830
8831 @item -maout
8832 @opindex maout
8833 Legacy no-op option only recognized with the cris-axis-aout target.
8834
8835 @item -melf
8836 @opindex melf
8837 Legacy no-op option only recognized with the cris-axis-elf and
8838 cris-axis-linux-gnu targets.
8839
8840 @item -melinux
8841 @opindex melinux
8842 Only recognized with the cris-axis-aout target, where it selects a
8843 GNU/linux-like multilib, include files and instruction set for
8844 @option{-march=v8}.
8845
8846 @item -mlinux
8847 @opindex mlinux
8848 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
8849
8850 @item -sim
8851 @opindex sim
8852 This option, recognized for the cris-axis-aout and cris-axis-elf arranges
8853 to link with input-output functions from a simulator library.  Code,
8854 initialized data and zero-initialized data are allocated consecutively.
8855
8856 @item -sim2
8857 @opindex sim2
8858 Like @option{-sim}, but pass linker options to locate initialized data at
8859 0x40000000 and zero-initialized data at 0x80000000.
8860 @end table
8861
8862 @node CRX Options
8863 @subsection CRX Options
8864 @cindex CRX Options
8865
8866 These options are defined specifically for the CRX ports.
8867
8868 @table @gcctabopt
8869
8870 @item -mmac
8871 @opindex mmac
8872 Enable the use of multiply-accumulate instructions. Disabled by default.
8873
8874 @item -mpush-args
8875 @opindex mpush-args
8876 Push instructions will be used to pass outgoing arguments when functions
8877 are called. Enabled by default.
8878 @end table
8879
8880 @node Darwin Options
8881 @subsection Darwin Options
8882 @cindex Darwin options
8883
8884 These options are defined for all architectures running the Darwin operating
8885 system.
8886
8887 FSF GCC on Darwin does not create ``fat'' object files; it will create
8888 an object file for the single architecture that it was built to
8889 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
8890 @option{-arch} options are used; it does so by running the compiler or
8891 linker multiple times and joining the results together with
8892 @file{lipo}.
8893
8894 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
8895 @samp{i686}) is determined by the flags that specify the ISA
8896 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
8897 @option{-force_cpusubtype_ALL} option can be used to override this.
8898
8899 The Darwin tools vary in their behavior when presented with an ISA
8900 mismatch.  The assembler, @file{as}, will only permit instructions to
8901 be used that are valid for the subtype of the file it is generating,
8902 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
8903 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
8904 and print an error if asked to create a shared library with a less
8905 restrictive subtype than its input files (for instance, trying to put
8906 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
8907 for executables, @file{ld}, will quietly give the executable the most
8908 restrictive subtype of any of its input files.
8909
8910 @table @gcctabopt
8911 @item -F@var{dir}
8912 @opindex F
8913 Add the framework directory @var{dir} to the head of the list of
8914 directories to be searched for header files.  These directories are
8915 interleaved with those specified by @option{-I} options and are
8916 scanned in a left-to-right order.
8917
8918 A framework directory is a directory with frameworks in it.  A
8919 framework is a directory with a @samp{"Headers"} and/or
8920 @samp{"PrivateHeaders"} directory contained directly in it that ends
8921 in @samp{".framework"}.  The name of a framework is the name of this
8922 directory excluding the @samp{".framework"}.  Headers associated with
8923 the framework are found in one of those two directories, with
8924 @samp{"Headers"} being searched first.  A subframework is a framework
8925 directory that is in a framework's @samp{"Frameworks"} directory.
8926 Includes of subframework headers can only appear in a header of a
8927 framework that contains the subframework, or in a sibling subframework
8928 header.  Two subframeworks are siblings if they occur in the same
8929 framework.  A subframework should not have the same name as a
8930 framework, a warning will be issued if this is violated.  Currently a
8931 subframework cannot have subframeworks, in the future, the mechanism
8932 may be extended to support this.  The standard frameworks can be found
8933 in @samp{"/System/Library/Frameworks"} and
8934 @samp{"/Library/Frameworks"}.  An example include looks like
8935 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
8936 the name of the framework and header.h is found in the
8937 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
8938
8939 @item -iframework@var{dir}
8940 @opindex iframework
8941 Like @option{-F} except the directory is a treated as a system
8942 directory.  The main difference between this @option{-iframework} and
8943 @option{-F} is that with @option{-iframework} the compiler does not
8944 warn about constructs contained within header files found via
8945 @var{dir}.  This option is valid only for the C family of languages.
8946
8947 @item -gused
8948 @opindex gused
8949 Emit debugging information for symbols that are used.  For STABS
8950 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
8951 This is by default ON@.
8952
8953 @item -gfull
8954 @opindex gfull
8955 Emit debugging information for all symbols and types.
8956
8957 @item -mmacosx-version-min=@var{version}
8958 The earliest version of MacOS X that this executable will run on
8959 is @var{version}.  Typical values of @var{version} include @code{10.1},
8960 @code{10.2}, and @code{10.3.9}.
8961
8962 If the compiler was built to use the system's headers by default,
8963 then the default for this option is the system version on which the
8964 compiler is running, otherwise the default is to make choices which
8965 are compatible with as many systems and code bases as possible.
8966
8967 @item -mkernel
8968 @opindex mkernel
8969 Enable kernel development mode.  The @option{-mkernel} option sets
8970 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
8971 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
8972 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
8973 applicable.  This mode also sets @option{-mno-altivec},
8974 @option{-msoft-float}, @option{-fno-builtin} and
8975 @option{-mlong-branch} for PowerPC targets.
8976
8977 @item -mone-byte-bool
8978 @opindex mone-byte-bool
8979 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
8980 By default @samp{sizeof(bool)} is @samp{4} when compiling for
8981 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
8982 option has no effect on x86.
8983
8984 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
8985 to generate code that is not binary compatible with code generated
8986 without that switch.  Using this switch may require recompiling all
8987 other modules in a program, including system libraries.  Use this
8988 switch to conform to a non-default data model.
8989
8990 @item -mfix-and-continue
8991 @itemx -ffix-and-continue
8992 @itemx -findirect-data
8993 @opindex mfix-and-continue
8994 @opindex ffix-and-continue
8995 @opindex findirect-data
8996 Generate code suitable for fast turn around development.  Needed to
8997 enable gdb to dynamically load @code{.o} files into already running
8998 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
8999 are provided for backwards compatibility.
9000
9001 @item -all_load
9002 @opindex all_load
9003 Loads all members of static archive libraries.
9004 See man ld(1) for more information.
9005
9006 @item -arch_errors_fatal
9007 @opindex arch_errors_fatal
9008 Cause the errors having to do with files that have the wrong architecture
9009 to be fatal.
9010
9011 @item -bind_at_load
9012 @opindex bind_at_load
9013 Causes the output file to be marked such that the dynamic linker will
9014 bind all undefined references when the file is loaded or launched.
9015
9016 @item -bundle
9017 @opindex bundle
9018 Produce a Mach-o bundle format file.
9019 See man ld(1) for more information.
9020
9021 @item -bundle_loader @var{executable}
9022 @opindex bundle_loader
9023 This option specifies the @var{executable} that will be loading the build
9024 output file being linked.  See man ld(1) for more information.
9025
9026 @item -dynamiclib
9027 @opindex dynamiclib
9028 When passed this option, GCC will produce a dynamic library instead of
9029 an executable when linking, using the Darwin @file{libtool} command.
9030
9031 @item -force_cpusubtype_ALL
9032 @opindex force_cpusubtype_ALL
9033 This causes GCC's output file to have the @var{ALL} subtype, instead of
9034 one controlled by the @option{-mcpu} or @option{-march} option.
9035
9036 @item -allowable_client  @var{client_name}
9037 @itemx -client_name
9038 @itemx -compatibility_version
9039 @itemx -current_version
9040 @itemx -dead_strip
9041 @itemx -dependency-file
9042 @itemx -dylib_file
9043 @itemx -dylinker_install_name
9044 @itemx -dynamic
9045 @itemx -exported_symbols_list
9046 @itemx -filelist
9047 @itemx -flat_namespace
9048 @itemx -force_flat_namespace
9049 @itemx -headerpad_max_install_names
9050 @itemx -image_base
9051 @itemx -init
9052 @itemx -install_name
9053 @itemx -keep_private_externs
9054 @itemx -multi_module
9055 @itemx -multiply_defined
9056 @itemx -multiply_defined_unused
9057 @itemx -noall_load
9058 @itemx -no_dead_strip_inits_and_terms
9059 @itemx -nofixprebinding
9060 @itemx -nomultidefs
9061 @itemx -noprebind
9062 @itemx -noseglinkedit
9063 @itemx -pagezero_size
9064 @itemx -prebind
9065 @itemx -prebind_all_twolevel_modules
9066 @itemx -private_bundle
9067 @itemx -read_only_relocs
9068 @itemx -sectalign
9069 @itemx -sectobjectsymbols
9070 @itemx -whyload
9071 @itemx -seg1addr
9072 @itemx -sectcreate
9073 @itemx -sectobjectsymbols
9074 @itemx -sectorder
9075 @itemx -segaddr
9076 @itemx -segs_read_only_addr
9077 @itemx -segs_read_write_addr
9078 @itemx -seg_addr_table
9079 @itemx -seg_addr_table_filename
9080 @itemx -seglinkedit
9081 @itemx -segprot
9082 @itemx -segs_read_only_addr
9083 @itemx -segs_read_write_addr
9084 @itemx -single_module
9085 @itemx -static
9086 @itemx -sub_library
9087 @itemx -sub_umbrella
9088 @itemx -twolevel_namespace
9089 @itemx -umbrella
9090 @itemx -undefined
9091 @itemx -unexported_symbols_list
9092 @itemx -weak_reference_mismatches
9093 @itemx -whatsloaded
9094
9095 @opindex allowable_client
9096 @opindex client_name
9097 @opindex compatibility_version
9098 @opindex current_version
9099 @opindex dead_strip
9100 @opindex dependency-file
9101 @opindex dylib_file
9102 @opindex dylinker_install_name
9103 @opindex dynamic
9104 @opindex exported_symbols_list
9105 @opindex filelist
9106 @opindex flat_namespace
9107 @opindex force_flat_namespace
9108 @opindex headerpad_max_install_names
9109 @opindex image_base
9110 @opindex init
9111 @opindex install_name
9112 @opindex keep_private_externs
9113 @opindex multi_module
9114 @opindex multiply_defined
9115 @opindex multiply_defined_unused
9116 @opindex noall_load
9117 @opindex no_dead_strip_inits_and_terms
9118 @opindex nofixprebinding
9119 @opindex nomultidefs
9120 @opindex noprebind
9121 @opindex noseglinkedit
9122 @opindex pagezero_size
9123 @opindex prebind
9124 @opindex prebind_all_twolevel_modules
9125 @opindex private_bundle
9126 @opindex read_only_relocs
9127 @opindex sectalign
9128 @opindex sectobjectsymbols
9129 @opindex whyload
9130 @opindex seg1addr
9131 @opindex sectcreate
9132 @opindex sectobjectsymbols
9133 @opindex sectorder
9134 @opindex segaddr
9135 @opindex segs_read_only_addr
9136 @opindex segs_read_write_addr
9137 @opindex seg_addr_table
9138 @opindex seg_addr_table_filename
9139 @opindex seglinkedit
9140 @opindex segprot
9141 @opindex segs_read_only_addr
9142 @opindex segs_read_write_addr
9143 @opindex single_module
9144 @opindex static
9145 @opindex sub_library
9146 @opindex sub_umbrella
9147 @opindex twolevel_namespace
9148 @opindex umbrella
9149 @opindex undefined
9150 @opindex unexported_symbols_list
9151 @opindex weak_reference_mismatches
9152 @opindex whatsloaded
9153
9154 These options are passed to the Darwin linker.  The Darwin linker man page
9155 describes them in detail.
9156 @end table
9157
9158 @node DEC Alpha Options
9159 @subsection DEC Alpha Options
9160
9161 These @samp{-m} options are defined for the DEC Alpha implementations:
9162
9163 @table @gcctabopt
9164 @item -mno-soft-float
9165 @itemx -msoft-float
9166 @opindex mno-soft-float
9167 @opindex msoft-float
9168 Use (do not use) the hardware floating-point instructions for
9169 floating-point operations.  When @option{-msoft-float} is specified,
9170 functions in @file{libgcc.a} will be used to perform floating-point
9171 operations.  Unless they are replaced by routines that emulate the
9172 floating-point operations, or compiled in such a way as to call such
9173 emulations routines, these routines will issue floating-point
9174 operations.   If you are compiling for an Alpha without floating-point
9175 operations, you must ensure that the library is built so as not to call
9176 them.
9177
9178 Note that Alpha implementations without floating-point operations are
9179 required to have floating-point registers.
9180
9181 @item -mfp-reg
9182 @itemx -mno-fp-regs
9183 @opindex mfp-reg
9184 @opindex mno-fp-regs
9185 Generate code that uses (does not use) the floating-point register set.
9186 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
9187 register set is not used, floating point operands are passed in integer
9188 registers as if they were integers and floating-point results are passed
9189 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
9190 so any function with a floating-point argument or return value called by code
9191 compiled with @option{-mno-fp-regs} must also be compiled with that
9192 option.
9193
9194 A typical use of this option is building a kernel that does not use,
9195 and hence need not save and restore, any floating-point registers.
9196
9197 @item -mieee
9198 @opindex mieee
9199 The Alpha architecture implements floating-point hardware optimized for
9200 maximum performance.  It is mostly compliant with the IEEE floating
9201 point standard.  However, for full compliance, software assistance is
9202 required.  This option generates code fully IEEE compliant code
9203 @emph{except} that the @var{inexact-flag} is not maintained (see below).
9204 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
9205 defined during compilation.  The resulting code is less efficient but is
9206 able to correctly support denormalized numbers and exceptional IEEE
9207 values such as not-a-number and plus/minus infinity.  Other Alpha
9208 compilers call this option @option{-ieee_with_no_inexact}.
9209
9210 @item -mieee-with-inexact
9211 @opindex mieee-with-inexact
9212 This is like @option{-mieee} except the generated code also maintains
9213 the IEEE @var{inexact-flag}.  Turning on this option causes the
9214 generated code to implement fully-compliant IEEE math.  In addition to
9215 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
9216 macro.  On some Alpha implementations the resulting code may execute
9217 significantly slower than the code generated by default.  Since there is
9218 very little code that depends on the @var{inexact-flag}, you should
9219 normally not specify this option.  Other Alpha compilers call this
9220 option @option{-ieee_with_inexact}.
9221
9222 @item -mfp-trap-mode=@var{trap-mode}
9223 @opindex mfp-trap-mode
9224 This option controls what floating-point related traps are enabled.
9225 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
9226 The trap mode can be set to one of four values:
9227
9228 @table @samp
9229 @item n
9230 This is the default (normal) setting.  The only traps that are enabled
9231 are the ones that cannot be disabled in software (e.g., division by zero
9232 trap).
9233
9234 @item u
9235 In addition to the traps enabled by @samp{n}, underflow traps are enabled
9236 as well.
9237
9238 @item su
9239 Like @samp{u}, but the instructions are marked to be safe for software
9240 completion (see Alpha architecture manual for details).
9241
9242 @item sui
9243 Like @samp{su}, but inexact traps are enabled as well.
9244 @end table
9245
9246 @item -mfp-rounding-mode=@var{rounding-mode}
9247 @opindex mfp-rounding-mode
9248 Selects the IEEE rounding mode.  Other Alpha compilers call this option
9249 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
9250 of:
9251
9252 @table @samp
9253 @item n
9254 Normal IEEE rounding mode.  Floating point numbers are rounded towards
9255 the nearest machine number or towards the even machine number in case
9256 of a tie.
9257
9258 @item m
9259 Round towards minus infinity.
9260
9261 @item c
9262 Chopped rounding mode.  Floating point numbers are rounded towards zero.
9263
9264 @item d
9265 Dynamic rounding mode.  A field in the floating point control register
9266 (@var{fpcr}, see Alpha architecture reference manual) controls the
9267 rounding mode in effect.  The C library initializes this register for
9268 rounding towards plus infinity.  Thus, unless your program modifies the
9269 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
9270 @end table
9271
9272 @item -mtrap-precision=@var{trap-precision}
9273 @opindex mtrap-precision
9274 In the Alpha architecture, floating point traps are imprecise.  This
9275 means without software assistance it is impossible to recover from a
9276 floating trap and program execution normally needs to be terminated.
9277 GCC can generate code that can assist operating system trap handlers
9278 in determining the exact location that caused a floating point trap.
9279 Depending on the requirements of an application, different levels of
9280 precisions can be selected:
9281
9282 @table @samp
9283 @item p
9284 Program precision.  This option is the default and means a trap handler
9285 can only identify which program caused a floating point exception.
9286
9287 @item f
9288 Function precision.  The trap handler can determine the function that
9289 caused a floating point exception.
9290
9291 @item i
9292 Instruction precision.  The trap handler can determine the exact
9293 instruction that caused a floating point exception.
9294 @end table
9295
9296 Other Alpha compilers provide the equivalent options called
9297 @option{-scope_safe} and @option{-resumption_safe}.
9298
9299 @item -mieee-conformant
9300 @opindex mieee-conformant
9301 This option marks the generated code as IEEE conformant.  You must not
9302 use this option unless you also specify @option{-mtrap-precision=i} and either
9303 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
9304 is to emit the line @samp{.eflag 48} in the function prologue of the
9305 generated assembly file.  Under DEC Unix, this has the effect that
9306 IEEE-conformant math library routines will be linked in.
9307
9308 @item -mbuild-constants
9309 @opindex mbuild-constants
9310 Normally GCC examines a 32- or 64-bit integer constant to
9311 see if it can construct it from smaller constants in two or three
9312 instructions.  If it cannot, it will output the constant as a literal and
9313 generate code to load it from the data segment at runtime.
9314
9315 Use this option to require GCC to construct @emph{all} integer constants
9316 using code, even if it takes more instructions (the maximum is six).
9317
9318 You would typically use this option to build a shared library dynamic
9319 loader.  Itself a shared library, it must relocate itself in memory
9320 before it can find the variables and constants in its own data segment.
9321
9322 @item -malpha-as
9323 @itemx -mgas
9324 @opindex malpha-as
9325 @opindex mgas
9326 Select whether to generate code to be assembled by the vendor-supplied
9327 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
9328
9329 @item -mbwx
9330 @itemx -mno-bwx
9331 @itemx -mcix
9332 @itemx -mno-cix
9333 @itemx -mfix
9334 @itemx -mno-fix
9335 @itemx -mmax
9336 @itemx -mno-max
9337 @opindex mbwx
9338 @opindex mno-bwx
9339 @opindex mcix
9340 @opindex mno-cix
9341 @opindex mfix
9342 @opindex mno-fix
9343 @opindex mmax
9344 @opindex mno-max
9345 Indicate whether GCC should generate code to use the optional BWX,
9346 CIX, FIX and MAX instruction sets.  The default is to use the instruction
9347 sets supported by the CPU type specified via @option{-mcpu=} option or that
9348 of the CPU on which GCC was built if none was specified.
9349
9350 @item -mfloat-vax
9351 @itemx -mfloat-ieee
9352 @opindex mfloat-vax
9353 @opindex mfloat-ieee
9354 Generate code that uses (does not use) VAX F and G floating point
9355 arithmetic instead of IEEE single and double precision.
9356
9357 @item -mexplicit-relocs
9358 @itemx -mno-explicit-relocs
9359 @opindex mexplicit-relocs
9360 @opindex mno-explicit-relocs
9361 Older Alpha assemblers provided no way to generate symbol relocations
9362 except via assembler macros.  Use of these macros does not allow
9363 optimal instruction scheduling.  GNU binutils as of version 2.12
9364 supports a new syntax that allows the compiler to explicitly mark
9365 which relocations should apply to which instructions.  This option
9366 is mostly useful for debugging, as GCC detects the capabilities of
9367 the assembler when it is built and sets the default accordingly.
9368
9369 @item -msmall-data
9370 @itemx -mlarge-data
9371 @opindex msmall-data
9372 @opindex mlarge-data
9373 When @option{-mexplicit-relocs} is in effect, static data is
9374 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
9375 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
9376 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
9377 16-bit relocations off of the @code{$gp} register.  This limits the
9378 size of the small data area to 64KB, but allows the variables to be
9379 directly accessed via a single instruction.
9380
9381 The default is @option{-mlarge-data}.  With this option the data area
9382 is limited to just below 2GB@.  Programs that require more than 2GB of
9383 data must use @code{malloc} or @code{mmap} to allocate the data in the
9384 heap instead of in the program's data segment.
9385
9386 When generating code for shared libraries, @option{-fpic} implies
9387 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
9388
9389 @item -msmall-text
9390 @itemx -mlarge-text
9391 @opindex msmall-text
9392 @opindex mlarge-text
9393 When @option{-msmall-text} is used, the compiler assumes that the
9394 code of the entire program (or shared library) fits in 4MB, and is
9395 thus reachable with a branch instruction.  When @option{-msmall-data}
9396 is used, the compiler can assume that all local symbols share the
9397 same @code{$gp} value, and thus reduce the number of instructions
9398 required for a function call from 4 to 1.
9399
9400 The default is @option{-mlarge-text}.
9401
9402 @item -mcpu=@var{cpu_type}
9403 @opindex mcpu
9404 Set the instruction set and instruction scheduling parameters for
9405 machine type @var{cpu_type}.  You can specify either the @samp{EV}
9406 style name or the corresponding chip number.  GCC supports scheduling
9407 parameters for the EV4, EV5 and EV6 family of processors and will
9408 choose the default values for the instruction set from the processor
9409 you specify.  If you do not specify a processor type, GCC will default
9410 to the processor on which the compiler was built.
9411
9412 Supported values for @var{cpu_type} are
9413
9414 @table @samp
9415 @item ev4
9416 @itemx ev45
9417 @itemx 21064
9418 Schedules as an EV4 and has no instruction set extensions.
9419
9420 @item ev5
9421 @itemx 21164
9422 Schedules as an EV5 and has no instruction set extensions.
9423
9424 @item ev56
9425 @itemx 21164a
9426 Schedules as an EV5 and supports the BWX extension.
9427
9428 @item pca56
9429 @itemx 21164pc
9430 @itemx 21164PC
9431 Schedules as an EV5 and supports the BWX and MAX extensions.
9432
9433 @item ev6
9434 @itemx 21264
9435 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
9436
9437 @item ev67
9438 @itemx 21264a
9439 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
9440 @end table
9441
9442 @item -mtune=@var{cpu_type}
9443 @opindex mtune
9444 Set only the instruction scheduling parameters for machine type
9445 @var{cpu_type}.  The instruction set is not changed.
9446
9447 @item -mmemory-latency=@var{time}
9448 @opindex mmemory-latency
9449 Sets the latency the scheduler should assume for typical memory
9450 references as seen by the application.  This number is highly
9451 dependent on the memory access patterns used by the application
9452 and the size of the external cache on the machine.
9453
9454 Valid options for @var{time} are
9455
9456 @table @samp
9457 @item @var{number}
9458 A decimal number representing clock cycles.
9459
9460 @item L1
9461 @itemx L2
9462 @itemx L3
9463 @itemx main
9464 The compiler contains estimates of the number of clock cycles for
9465 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
9466 (also called Dcache, Scache, and Bcache), as well as to main memory.
9467 Note that L3 is only valid for EV5.
9468
9469 @end table
9470 @end table
9471
9472 @node DEC Alpha/VMS Options
9473 @subsection DEC Alpha/VMS Options
9474
9475 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
9476
9477 @table @gcctabopt
9478 @item -mvms-return-codes
9479 @opindex mvms-return-codes
9480 Return VMS condition codes from main.  The default is to return POSIX
9481 style condition (e.g.@: error) codes.
9482 @end table
9483
9484 @node FRV Options
9485 @subsection FRV Options
9486 @cindex FRV Options
9487
9488 @table @gcctabopt
9489 @item -mgpr-32
9490 @opindex mgpr-32
9491
9492 Only use the first 32 general purpose registers.
9493
9494 @item -mgpr-64
9495 @opindex mgpr-64
9496
9497 Use all 64 general purpose registers.
9498
9499 @item -mfpr-32
9500 @opindex mfpr-32
9501
9502 Use only the first 32 floating point registers.
9503
9504 @item -mfpr-64
9505 @opindex mfpr-64
9506
9507 Use all 64 floating point registers
9508
9509 @item -mhard-float
9510 @opindex mhard-float
9511
9512 Use hardware instructions for floating point operations.
9513
9514 @item -msoft-float
9515 @opindex msoft-float
9516
9517 Use library routines for floating point operations.
9518
9519 @item -malloc-cc
9520 @opindex malloc-cc
9521
9522 Dynamically allocate condition code registers.
9523
9524 @item -mfixed-cc
9525 @opindex mfixed-cc
9526
9527 Do not try to dynamically allocate condition code registers, only
9528 use @code{icc0} and @code{fcc0}.
9529
9530 @item -mdword
9531 @opindex mdword
9532
9533 Change ABI to use double word insns.
9534
9535 @item -mno-dword
9536 @opindex mno-dword
9537
9538 Do not use double word instructions.
9539
9540 @item -mdouble
9541 @opindex mdouble
9542
9543 Use floating point double instructions.
9544
9545 @item -mno-double
9546 @opindex mno-double
9547
9548 Do not use floating point double instructions.
9549
9550 @item -mmedia
9551 @opindex mmedia
9552
9553 Use media instructions.
9554
9555 @item -mno-media
9556 @opindex mno-media
9557
9558 Do not use media instructions.
9559
9560 @item -mmuladd
9561 @opindex mmuladd
9562
9563 Use multiply and add/subtract instructions.
9564
9565 @item -mno-muladd
9566 @opindex mno-muladd
9567
9568 Do not use multiply and add/subtract instructions.
9569
9570 @item -mfdpic
9571 @opindex mfdpic
9572
9573 Select the FDPIC ABI, that uses function descriptors to represent
9574 pointers to functions.  Without any PIC/PIE-related options, it
9575 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
9576 assumes GOT entries and small data are within a 12-bit range from the
9577 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
9578 are computed with 32 bits.
9579
9580 @item -minline-plt
9581 @opindex minline-plt
9582
9583 Enable inlining of PLT entries in function calls to functions that are
9584 not known to bind locally.  It has no effect without @option{-mfdpic}.
9585 It's enabled by default if optimizing for speed and compiling for
9586 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
9587 optimization option such as @option{-O3} or above is present in the
9588 command line.
9589
9590 @item -mTLS
9591 @opindex TLS
9592
9593 Assume a large TLS segment when generating thread-local code.
9594
9595 @item -mtls
9596 @opindex tls
9597
9598 Do not assume a large TLS segment when generating thread-local code.
9599
9600 @item -mgprel-ro
9601 @opindex mgprel-ro
9602
9603 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
9604 that is known to be in read-only sections.  It's enabled by default,
9605 except for @option{-fpic} or @option{-fpie}: even though it may help
9606 make the global offset table smaller, it trades 1 instruction for 4.
9607 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
9608 one of which may be shared by multiple symbols, and it avoids the need
9609 for a GOT entry for the referenced symbol, so it's more likely to be a
9610 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
9611
9612 @item -multilib-library-pic
9613 @opindex multilib-library-pic
9614
9615 Link with the (library, not FD) pic libraries.  It's implied by
9616 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
9617 @option{-fpic} without @option{-mfdpic}.  You should never have to use
9618 it explicitly.
9619
9620 @item -mlinked-fp
9621 @opindex mlinked-fp
9622
9623 Follow the EABI requirement of always creating a frame pointer whenever
9624 a stack frame is allocated.  This option is enabled by default and can
9625 be disabled with @option{-mno-linked-fp}.
9626
9627 @item -mlong-calls
9628 @opindex mlong-calls
9629
9630 Use indirect addressing to call functions outside the current
9631 compilation unit.  This allows the functions to be placed anywhere
9632 within the 32-bit address space.
9633
9634 @item -malign-labels
9635 @opindex malign-labels
9636
9637 Try to align labels to an 8-byte boundary by inserting nops into the
9638 previous packet.  This option only has an effect when VLIW packing
9639 is enabled.  It doesn't create new packets; it merely adds nops to
9640 existing ones.
9641
9642 @item -mlibrary-pic
9643 @opindex mlibrary-pic
9644
9645 Generate position-independent EABI code.
9646
9647 @item -macc-4
9648 @opindex macc-4
9649
9650 Use only the first four media accumulator registers.
9651
9652 @item -macc-8
9653 @opindex macc-8
9654
9655 Use all eight media accumulator registers.
9656
9657 @item -mpack
9658 @opindex mpack
9659
9660 Pack VLIW instructions.
9661
9662 @item -mno-pack
9663 @opindex mno-pack
9664
9665 Do not pack VLIW instructions.
9666
9667 @item -mno-eflags
9668 @opindex mno-eflags
9669
9670 Do not mark ABI switches in e_flags.
9671
9672 @item -mcond-move
9673 @opindex mcond-move
9674
9675 Enable the use of conditional-move instructions (default).
9676
9677 This switch is mainly for debugging the compiler and will likely be removed
9678 in a future version.
9679
9680 @item -mno-cond-move
9681 @opindex mno-cond-move
9682
9683 Disable the use of conditional-move instructions.
9684
9685 This switch is mainly for debugging the compiler and will likely be removed
9686 in a future version.
9687
9688 @item -mscc
9689 @opindex mscc
9690
9691 Enable the use of conditional set instructions (default).
9692
9693 This switch is mainly for debugging the compiler and will likely be removed
9694 in a future version.
9695
9696 @item -mno-scc
9697 @opindex mno-scc
9698
9699 Disable the use of conditional set instructions.
9700
9701 This switch is mainly for debugging the compiler and will likely be removed
9702 in a future version.
9703
9704 @item -mcond-exec
9705 @opindex mcond-exec
9706
9707 Enable the use of conditional execution (default).
9708
9709 This switch is mainly for debugging the compiler and will likely be removed
9710 in a future version.
9711
9712 @item -mno-cond-exec
9713 @opindex mno-cond-exec
9714
9715 Disable the use of conditional execution.
9716
9717 This switch is mainly for debugging the compiler and will likely be removed
9718 in a future version.
9719
9720 @item -mvliw-branch
9721 @opindex mvliw-branch
9722
9723 Run a pass to pack branches into VLIW instructions (default).
9724
9725 This switch is mainly for debugging the compiler and will likely be removed
9726 in a future version.
9727
9728 @item -mno-vliw-branch
9729 @opindex mno-vliw-branch
9730
9731 Do not run a pass to pack branches into VLIW instructions.
9732
9733 This switch is mainly for debugging the compiler and will likely be removed
9734 in a future version.
9735
9736 @item -mmulti-cond-exec
9737 @opindex mmulti-cond-exec
9738
9739 Enable optimization of @code{&&} and @code{||} in conditional execution
9740 (default).
9741
9742 This switch is mainly for debugging the compiler and will likely be removed
9743 in a future version.
9744
9745 @item -mno-multi-cond-exec
9746 @opindex mno-multi-cond-exec
9747
9748 Disable optimization of @code{&&} and @code{||} in conditional execution.
9749
9750 This switch is mainly for debugging the compiler and will likely be removed
9751 in a future version.
9752
9753 @item -mnested-cond-exec
9754 @opindex mnested-cond-exec
9755
9756 Enable nested conditional execution optimizations (default).
9757
9758 This switch is mainly for debugging the compiler and will likely be removed
9759 in a future version.
9760
9761 @item -mno-nested-cond-exec
9762 @opindex mno-nested-cond-exec
9763
9764 Disable nested conditional execution optimizations.
9765
9766 This switch is mainly for debugging the compiler and will likely be removed
9767 in a future version.
9768
9769 @item -moptimize-membar
9770 @opindex moptimize-membar
9771
9772 This switch removes redundant @code{membar} instructions from the
9773 compiler generated code.  It is enabled by default.
9774
9775 @item -mno-optimize-membar
9776 @opindex mno-optimize-membar
9777
9778 This switch disables the automatic removal of redundant @code{membar}
9779 instructions from the generated code.
9780
9781 @item -mtomcat-stats
9782 @opindex mtomcat-stats
9783
9784 Cause gas to print out tomcat statistics.
9785
9786 @item -mcpu=@var{cpu}
9787 @opindex mcpu
9788
9789 Select the processor type for which to generate code.  Possible values are
9790 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
9791 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
9792
9793 @end table
9794
9795 @node GNU/Linux Options
9796 @subsection GNU/Linux Options
9797
9798 These @samp{-m} options are defined for GNU/Linux targets:
9799
9800 @table @gcctabopt
9801 @item -mglibc
9802 @opindex mglibc
9803 Use the GNU C library instead of uClibc.  This is the default except
9804 on @samp{*-*-linux-*uclibc*} targets.
9805
9806 @item -muclibc
9807 @opindex muclibc
9808 Use uClibc instead of the GNU C library.  This is the default on
9809 @samp{*-*-linux-*uclibc*} targets.
9810 @end table
9811
9812 @node H8/300 Options
9813 @subsection H8/300 Options
9814
9815 These @samp{-m} options are defined for the H8/300 implementations:
9816
9817 @table @gcctabopt
9818 @item -mrelax
9819 @opindex mrelax
9820 Shorten some address references at link time, when possible; uses the
9821 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
9822 ld, Using ld}, for a fuller description.
9823
9824 @item -mh
9825 @opindex mh
9826 Generate code for the H8/300H@.
9827
9828 @item -ms
9829 @opindex ms
9830 Generate code for the H8S@.
9831
9832 @item -mn
9833 @opindex mn
9834 Generate code for the H8S and H8/300H in the normal mode.  This switch
9835 must be used either with @option{-mh} or @option{-ms}.
9836
9837 @item -ms2600
9838 @opindex ms2600
9839 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
9840
9841 @item -mint32
9842 @opindex mint32
9843 Make @code{int} data 32 bits by default.
9844
9845 @item -malign-300
9846 @opindex malign-300
9847 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
9848 The default for the H8/300H and H8S is to align longs and floats on 4
9849 byte boundaries.
9850 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
9851 This option has no effect on the H8/300.
9852 @end table
9853
9854 @node HPPA Options
9855 @subsection HPPA Options
9856 @cindex HPPA Options
9857
9858 These @samp{-m} options are defined for the HPPA family of computers:
9859
9860 @table @gcctabopt
9861 @item -march=@var{architecture-type}
9862 @opindex march
9863 Generate code for the specified architecture.  The choices for
9864 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
9865 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
9866 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
9867 architecture option for your machine.  Code compiled for lower numbered
9868 architectures will run on higher numbered architectures, but not the
9869 other way around.
9870
9871 @item -mpa-risc-1-0
9872 @itemx -mpa-risc-1-1
9873 @itemx -mpa-risc-2-0
9874 @opindex mpa-risc-1-0
9875 @opindex mpa-risc-1-1
9876 @opindex mpa-risc-2-0
9877 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
9878
9879 @item -mbig-switch
9880 @opindex mbig-switch
9881 Generate code suitable for big switch tables.  Use this option only if
9882 the assembler/linker complain about out of range branches within a switch
9883 table.
9884
9885 @item -mjump-in-delay
9886 @opindex mjump-in-delay
9887 Fill delay slots of function calls with unconditional jump instructions
9888 by modifying the return pointer for the function call to be the target
9889 of the conditional jump.
9890
9891 @item -mdisable-fpregs
9892 @opindex mdisable-fpregs
9893 Prevent floating point registers from being used in any manner.  This is
9894 necessary for compiling kernels which perform lazy context switching of
9895 floating point registers.  If you use this option and attempt to perform
9896 floating point operations, the compiler will abort.
9897
9898 @item -mdisable-indexing
9899 @opindex mdisable-indexing
9900 Prevent the compiler from using indexing address modes.  This avoids some
9901 rather obscure problems when compiling MIG generated code under MACH@.
9902
9903 @item -mno-space-regs
9904 @opindex mno-space-regs
9905 Generate code that assumes the target has no space registers.  This allows
9906 GCC to generate faster indirect calls and use unscaled index address modes.
9907
9908 Such code is suitable for level 0 PA systems and kernels.
9909
9910 @item -mfast-indirect-calls
9911 @opindex mfast-indirect-calls
9912 Generate code that assumes calls never cross space boundaries.  This
9913 allows GCC to emit code which performs faster indirect calls.
9914
9915 This option will not work in the presence of shared libraries or nested
9916 functions.
9917
9918 @item -mfixed-range=@var{register-range}
9919 @opindex mfixed-range
9920 Generate code treating the given register range as fixed registers.
9921 A fixed register is one that the register allocator can not use.  This is
9922 useful when compiling kernel code.  A register range is specified as
9923 two registers separated by a dash.  Multiple register ranges can be
9924 specified separated by a comma.
9925
9926 @item -mlong-load-store
9927 @opindex mlong-load-store
9928 Generate 3-instruction load and store sequences as sometimes required by
9929 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
9930 the HP compilers.
9931
9932 @item -mportable-runtime
9933 @opindex mportable-runtime
9934 Use the portable calling conventions proposed by HP for ELF systems.
9935
9936 @item -mgas
9937 @opindex mgas
9938 Enable the use of assembler directives only GAS understands.
9939
9940 @item -mschedule=@var{cpu-type}
9941 @opindex mschedule
9942 Schedule code according to the constraints for the machine type
9943 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
9944 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
9945 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
9946 proper scheduling option for your machine.  The default scheduling is
9947 @samp{8000}.
9948
9949 @item -mlinker-opt
9950 @opindex mlinker-opt
9951 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
9952 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
9953 linkers in which they give bogus error messages when linking some programs.
9954
9955 @item -msoft-float
9956 @opindex msoft-float
9957 Generate output containing library calls for floating point.
9958 @strong{Warning:} the requisite libraries are not available for all HPPA
9959 targets.  Normally the facilities of the machine's usual C compiler are
9960 used, but this cannot be done directly in cross-compilation.  You must make
9961 your own arrangements to provide suitable library functions for
9962 cross-compilation.  The embedded target @samp{hppa1.1-*-pro}
9963 does provide software floating point support.
9964
9965 @option{-msoft-float} changes the calling convention in the output file;
9966 therefore, it is only useful if you compile @emph{all} of a program with
9967 this option.  In particular, you need to compile @file{libgcc.a}, the
9968 library that comes with GCC, with @option{-msoft-float} in order for
9969 this to work.
9970
9971 @item -msio
9972 @opindex msio
9973 Generate the predefine, @code{_SIO}, for server IO@.  The default is
9974 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
9975 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
9976 options are available under HP-UX and HI-UX@.
9977
9978 @item -mgnu-ld
9979 @opindex gnu-ld
9980 Use GNU ld specific options.  This passes @option{-shared} to ld when
9981 building a shared library.  It is the default when GCC is configured,
9982 explicitly or implicitly, with the GNU linker.  This option does not
9983 have any affect on which ld is called, it only changes what parameters
9984 are passed to that ld.  The ld that is called is determined by the
9985 @option{--with-ld} configure option, GCC's program search path, and
9986 finally by the user's @env{PATH}.  The linker used by GCC can be printed
9987 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
9988 on the 64 bit HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
9989
9990 @item -mhp-ld
9991 @opindex hp-ld
9992 Use HP ld specific options.  This passes @option{-b} to ld when building
9993 a shared library and passes @option{+Accept TypeMismatch} to ld on all
9994 links.  It is the default when GCC is configured, explicitly or
9995 implicitly, with the HP linker.  This option does not have any affect on
9996 which ld is called, it only changes what parameters are passed to that
9997 ld.  The ld that is called is determined by the @option{--with-ld}
9998 configure option, GCC's program search path, and finally by the user's
9999 @env{PATH}.  The linker used by GCC can be printed using @samp{which
10000 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
10001 HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
10002
10003 @item -mlong-calls
10004 @opindex mno-long-calls
10005 Generate code that uses long call sequences.  This ensures that a call
10006 is always able to reach linker generated stubs.  The default is to generate
10007 long calls only when the distance from the call site to the beginning
10008 of the function or translation unit, as the case may be, exceeds a
10009 predefined limit set by the branch type being used.  The limits for
10010 normal calls are 7,600,000 and 240,000 bytes, respectively for the
10011 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
10012 240,000 bytes.
10013
10014 Distances are measured from the beginning of functions when using the
10015 @option{-ffunction-sections} option, or when using the @option{-mgas}
10016 and @option{-mno-portable-runtime} options together under HP-UX with
10017 the SOM linker.
10018
10019 It is normally not desirable to use this option as it will degrade
10020 performance.  However, it may be useful in large applications,
10021 particularly when partial linking is used to build the application.
10022
10023 The types of long calls used depends on the capabilities of the
10024 assembler and linker, and the type of code being generated.  The
10025 impact on systems that support long absolute calls, and long pic
10026 symbol-difference or pc-relative calls should be relatively small.
10027 However, an indirect call is used on 32-bit ELF systems in pic code
10028 and it is quite long.
10029
10030 @item -munix=@var{unix-std}
10031 @opindex march
10032 Generate compiler predefines and select a startfile for the specified
10033 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
10034 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
10035 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
10036 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
10037 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
10038 and later.
10039
10040 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
10041 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
10042 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
10043 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
10044 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
10045 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
10046
10047 It is @emph{important} to note that this option changes the interfaces
10048 for various library routines.  It also affects the operational behavior
10049 of the C library.  Thus, @emph{extreme} care is needed in using this
10050 option.
10051
10052 Library code that is intended to operate with more than one UNIX
10053 standard must test, set and restore the variable @var{__xpg4_extended_mask}
10054 as appropriate.  Most GNU software doesn't provide this capability.
10055
10056 @item -nolibdld
10057 @opindex nolibdld
10058 Suppress the generation of link options to search libdld.sl when the
10059 @option{-static} option is specified on HP-UX 10 and later.
10060
10061 @item -static
10062 @opindex static
10063 The HP-UX implementation of setlocale in libc has a dependency on
10064 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
10065 when the @option{-static} option is specified, special link options
10066 are needed to resolve this dependency.
10067
10068 On HP-UX 10 and later, the GCC driver adds the necessary options to
10069 link with libdld.sl when the @option{-static} option is specified.
10070 This causes the resulting binary to be dynamic.  On the 64-bit port,
10071 the linkers generate dynamic binaries by default in any case.  The
10072 @option{-nolibdld} option can be used to prevent the GCC driver from
10073 adding these link options.
10074
10075 @item -threads
10076 @opindex threads
10077 Add support for multithreading with the @dfn{dce thread} library
10078 under HP-UX@.  This option sets flags for both the preprocessor and
10079 linker.
10080 @end table
10081
10082 @node i386 and x86-64 Options
10083 @subsection Intel 386 and AMD x86-64 Options
10084 @cindex i386 Options
10085 @cindex x86-64 Options
10086 @cindex Intel 386 Options
10087 @cindex AMD x86-64 Options
10088
10089 These @samp{-m} options are defined for the i386 and x86-64 family of
10090 computers:
10091
10092 @table @gcctabopt
10093 @item -mtune=@var{cpu-type}
10094 @opindex mtune
10095 Tune to @var{cpu-type} everything applicable about the generated code, except
10096 for the ABI and the set of available instructions.  The choices for
10097 @var{cpu-type} are:
10098 @table @emph
10099 @item generic
10100 Produce code optimized for the most common IA32/AMD64/EM64T processors.
10101 If you know the CPU on which your code will run, then you should use
10102 the corresponding @option{-mtune} option instead of
10103 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
10104 of your application will have, then you should use this option.
10105
10106 As new processors are deployed in the marketplace, the behavior of this
10107 option will change.  Therefore, if you upgrade to a newer version of
10108 GCC, the code generated option will change to reflect the processors
10109 that were most common when that version of GCC was released.
10110
10111 There is no @option{-march=generic} option because @option{-march}
10112 indicates the instruction set the compiler can use, and there is no
10113 generic instruction set applicable to all processors.  In contrast,
10114 @option{-mtune} indicates the processor (or, in this case, collection of
10115 processors) for which the code is optimized.
10116 @item native
10117 This selects the CPU to tune for at compilation time by determining
10118 the processor type of the compiling machine.  Using @option{-mtune=native}
10119 will produce code optimized for the local machine under the constraints
10120 of the selected instruction set.  Using @option{-march=native} will
10121 enable all instruction subsets supported by the local machine (hence
10122 the result might not run on different machines).
10123 @item i386
10124 Original Intel's i386 CPU@.
10125 @item i486
10126 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
10127 @item i586, pentium
10128 Intel Pentium CPU with no MMX support.
10129 @item pentium-mmx
10130 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
10131 @item pentiumpro
10132 Intel PentiumPro CPU@.
10133 @item i686
10134 Same as @code{generic}, but when used as @code{march} option, PentiumPro
10135 instruction set will be used, so the code will run on all i686 family chips.
10136 @item pentium2
10137 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
10138 @item pentium3, pentium3m
10139 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
10140 support.
10141 @item pentium-m
10142 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
10143 support.  Used by Centrino notebooks.
10144 @item pentium4, pentium4m
10145 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
10146 @item prescott
10147 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
10148 set support.
10149 @item nocona
10150 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
10151 SSE2 and SSE3 instruction set support.
10152 @item core2
10153 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
10154 instruction set support.
10155 @item k6
10156 AMD K6 CPU with MMX instruction set support.
10157 @item k6-2, k6-3
10158 Improved versions of AMD K6 CPU with MMX and 3dNOW! instruction set support.
10159 @item athlon, athlon-tbird
10160 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch instructions
10161 support.
10162 @item athlon-4, athlon-xp, athlon-mp
10163 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE
10164 instruction set support.
10165 @item k8, opteron, athlon64, athlon-fx
10166 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
10167 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW! and 64-bit instruction set extensions.)
10168 @item k8-sse3, opteron-sse3, athlon64-sse3
10169 Improved versions of k8, opteron and athlon64 with SSE3 instruction set support.
10170 @item amdfam10, barcelona
10171 AMD Family 10h core based CPUs with x86-64 instruction set support.  (This
10172 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3dNOW!, enhanced 3dNOW!, ABM and 64-bit
10173 instruction set extensions.)
10174 @item winchip-c6
10175 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
10176 set support.
10177 @item winchip2
10178 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!
10179 instruction set support.
10180 @item c3
10181 Via C3 CPU with MMX and 3dNOW! instruction set support.  (No scheduling is
10182 implemented for this chip.)
10183 @item c3-2
10184 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
10185 implemented for this chip.)
10186 @item geode
10187 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
10188 @end table
10189
10190 While picking a specific @var{cpu-type} will schedule things appropriately
10191 for that particular chip, the compiler will not generate any code that
10192 does not run on the i386 without the @option{-march=@var{cpu-type}} option
10193 being used.
10194
10195 @item -march=@var{cpu-type}
10196 @opindex march
10197 Generate instructions for the machine type @var{cpu-type}.  The choices
10198 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
10199 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
10200
10201 @item -mcpu=@var{cpu-type}
10202 @opindex mcpu
10203 A deprecated synonym for @option{-mtune}.
10204
10205 @item -mfpmath=@var{unit}
10206 @opindex march
10207 Generate floating point arithmetics for selected unit @var{unit}.  The choices
10208 for @var{unit} are:
10209
10210 @table @samp
10211 @item 387
10212 Use the standard 387 floating point coprocessor present majority of chips and
10213 emulated otherwise.  Code compiled with this option will run almost everywhere.
10214 The temporary results are computed in 80bit precision instead of precision
10215 specified by the type resulting in slightly different results compared to most
10216 of other chips.  See @option{-ffloat-store} for more detailed description.
10217
10218 This is the default choice for i386 compiler.
10219
10220 @item sse
10221 Use scalar floating point instructions present in the SSE instruction set.
10222 This instruction set is supported by Pentium3 and newer chips, in the AMD line
10223 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
10224 instruction set supports only single precision arithmetics, thus the double and
10225 extended precision arithmetics is still done using 387.  Later version, present
10226 only in Pentium4 and the future AMD x86-64 chips supports double precision
10227 arithmetics too.
10228
10229 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
10230 or @option{-msse2} switches to enable SSE extensions and make this option
10231 effective.  For the x86-64 compiler, these extensions are enabled by default.
10232
10233 The resulting code should be considerably faster in the majority of cases and avoid
10234 the numerical instability problems of 387 code, but may break some existing
10235 code that expects temporaries to be 80bit.
10236
10237 This is the default choice for the x86-64 compiler.
10238
10239 @item sse,387
10240 Attempt to utilize both instruction sets at once.  This effectively double the
10241 amount of available registers and on chips with separate execution units for
10242 387 and SSE the execution resources too.  Use this option with care, as it is
10243 still experimental, because the GCC register allocator does not model separate
10244 functional units well resulting in instable performance.
10245 @end table
10246
10247 @item -masm=@var{dialect}
10248 @opindex masm=@var{dialect}
10249 Output asm instructions using selected @var{dialect}.  Supported
10250 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
10251 not support @samp{intel}.
10252
10253 @item -mieee-fp
10254 @itemx -mno-ieee-fp
10255 @opindex mieee-fp
10256 @opindex mno-ieee-fp
10257 Control whether or not the compiler uses IEEE floating point
10258 comparisons.  These handle correctly the case where the result of a
10259 comparison is unordered.
10260
10261 @item -msoft-float
10262 @opindex msoft-float
10263 Generate output containing library calls for floating point.
10264 @strong{Warning:} the requisite libraries are not part of GCC@.
10265 Normally the facilities of the machine's usual C compiler are used, but
10266 this can't be done directly in cross-compilation.  You must make your
10267 own arrangements to provide suitable library functions for
10268 cross-compilation.
10269
10270 On machines where a function returns floating point results in the 80387
10271 register stack, some floating point opcodes may be emitted even if
10272 @option{-msoft-float} is used.
10273
10274 @item -mno-fp-ret-in-387
10275 @opindex mno-fp-ret-in-387
10276 Do not use the FPU registers for return values of functions.
10277
10278 The usual calling convention has functions return values of types
10279 @code{float} and @code{double} in an FPU register, even if there
10280 is no FPU@.  The idea is that the operating system should emulate
10281 an FPU@.
10282
10283 The option @option{-mno-fp-ret-in-387} causes such values to be returned
10284 in ordinary CPU registers instead.
10285
10286 @item -mno-fancy-math-387
10287 @opindex mno-fancy-math-387
10288 Some 387 emulators do not support the @code{sin}, @code{cos} and
10289 @code{sqrt} instructions for the 387.  Specify this option to avoid
10290 generating those instructions.  This option is the default on FreeBSD,
10291 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
10292 indicates that the target cpu will always have an FPU and so the
10293 instruction will not need emulation.  As of revision 2.6.1, these
10294 instructions are not generated unless you also use the
10295 @option{-funsafe-math-optimizations} switch.
10296
10297 @item -malign-double
10298 @itemx -mno-align-double
10299 @opindex malign-double
10300 @opindex mno-align-double
10301 Control whether GCC aligns @code{double}, @code{long double}, and
10302 @code{long long} variables on a two word boundary or a one word
10303 boundary.  Aligning @code{double} variables on a two word boundary will
10304 produce code that runs somewhat faster on a @samp{Pentium} at the
10305 expense of more memory.
10306
10307 On x86-64, @option{-malign-double} is enabled by default.
10308
10309 @strong{Warning:} if you use the @option{-malign-double} switch,
10310 structures containing the above types will be aligned differently than
10311 the published application binary interface specifications for the 386
10312 and will not be binary compatible with structures in code compiled
10313 without that switch.
10314
10315 @item -m96bit-long-double
10316 @itemx -m128bit-long-double
10317 @opindex m96bit-long-double
10318 @opindex m128bit-long-double
10319 These switches control the size of @code{long double} type.  The i386
10320 application binary interface specifies the size to be 96 bits,
10321 so @option{-m96bit-long-double} is the default in 32 bit mode.
10322
10323 Modern architectures (Pentium and newer) would prefer @code{long double}
10324 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
10325 conforming to the ABI, this would not be possible.  So specifying a
10326 @option{-m128bit-long-double} will align @code{long double}
10327 to a 16 byte boundary by padding the @code{long double} with an additional
10328 32 bit zero.
10329
10330 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
10331 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
10332
10333 Notice that neither of these options enable any extra precision over the x87
10334 standard of 80 bits for a @code{long double}.
10335
10336 @strong{Warning:} if you override the default value for your target ABI, the
10337 structures and arrays containing @code{long double} variables will change
10338 their size as well as function calling convention for function taking
10339 @code{long double} will be modified.  Hence they will not be binary
10340 compatible with arrays or structures in code compiled without that switch.
10341
10342 @item -mmlarge-data-threshold=@var{number}
10343 @opindex mlarge-data-threshold=@var{number}
10344 When @option{-mcmodel=medium} is specified, the data greater than
10345 @var{threshold} are placed in large data section.  This value must be the
10346 same across all object linked into the binary and defaults to 65535.
10347
10348 @item -mrtd
10349 @opindex mrtd
10350 Use a different function-calling convention, in which functions that
10351 take a fixed number of arguments return with the @code{ret} @var{num}
10352 instruction, which pops their arguments while returning.  This saves one
10353 instruction in the caller since there is no need to pop the arguments
10354 there.
10355
10356 You can specify that an individual function is called with this calling
10357 sequence with the function attribute @samp{stdcall}.  You can also
10358 override the @option{-mrtd} option by using the function attribute
10359 @samp{cdecl}.  @xref{Function Attributes}.
10360
10361 @strong{Warning:} this calling convention is incompatible with the one
10362 normally used on Unix, so you cannot use it if you need to call
10363 libraries compiled with the Unix compiler.
10364
10365 Also, you must provide function prototypes for all functions that
10366 take variable numbers of arguments (including @code{printf});
10367 otherwise incorrect code will be generated for calls to those
10368 functions.
10369
10370 In addition, seriously incorrect code will result if you call a
10371 function with too many arguments.  (Normally, extra arguments are
10372 harmlessly ignored.)
10373
10374 @item -mregparm=@var{num}
10375 @opindex mregparm
10376 Control how many registers are used to pass integer arguments.  By
10377 default, no registers are used to pass arguments, and at most 3
10378 registers can be used.  You can control this behavior for a specific
10379 function by using the function attribute @samp{regparm}.
10380 @xref{Function Attributes}.
10381
10382 @strong{Warning:} if you use this switch, and
10383 @var{num} is nonzero, then you must build all modules with the same
10384 value, including any libraries.  This includes the system libraries and
10385 startup modules.
10386
10387 @item -msseregparm
10388 @opindex msseregparm
10389 Use SSE register passing conventions for float and double arguments
10390 and return values.  You can control this behavior for a specific
10391 function by using the function attribute @samp{sseregparm}.
10392 @xref{Function Attributes}.
10393
10394 @strong{Warning:} if you use this switch then you must build all
10395 modules with the same value, including any libraries.  This includes
10396 the system libraries and startup modules.
10397
10398 @item -mpc32
10399 @itemx -mpc64
10400 @itemx -mpc80
10401 @opindex mpc32
10402 @opindex mpc64
10403 @opindex mpc80
10404
10405 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
10406 is specified, the significands of results of floating-point operations are
10407 rounded to 24 bits (single precision); @option{-mpc64} rounds the the
10408 significands of results of floating-point operations to 53 bits (double
10409 precision) and @option{-mpc80} rounds the significands of results of
10410 floating-point operations to 64 bits (extended double precision), which is
10411 the default.  When this option is used, floating-point operations in higher
10412 precisions are not available to the programmer without setting the FPU
10413 control word explicitly.
10414
10415 Setting the rounding of floating-point operations to less than the default
10416 80 bits can speed some programs by 2% or more.  Note that some mathematical
10417 libraries assume that extended precision (80 bit) floating-point operations
10418 are enabled by default; routines in such libraries could suffer significant
10419 loss of accuracy, typically through so-called "catastrophic cancellation",
10420 when this option is used to set the precision to less than extended precision. 
10421
10422 @item -mstackrealign
10423 @opindex mstackrealign
10424 Realign the stack at entry.  On the Intel x86, the
10425 @option{-mstackrealign} option will generate an alternate prologue and
10426 epilogue that realigns the runtime stack.  This supports mixing legacy
10427 codes that keep a 4-byte aligned stack with modern codes that keep a
10428 16-byte stack for SSE compatibility.  The alternate prologue and
10429 epilogue are slower and bigger than the regular ones, and the
10430 alternate prologue requires an extra scratch register; this lowers the
10431 number of registers available if used in conjunction with the
10432 @code{regparm} attribute.  The @option{-mstackrealign} option is
10433 incompatible with the nested function prologue; this is considered a
10434 hard error.  See also the attribute @code{force_align_arg_pointer},
10435 applicable to individual functions.
10436
10437 @item -mpreferred-stack-boundary=@var{num}
10438 @opindex mpreferred-stack-boundary
10439 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
10440 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
10441 the default is 4 (16 bytes or 128 bits).
10442
10443 On Pentium and PentiumPro, @code{double} and @code{long double} values
10444 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
10445 suffer significant run time performance penalties.  On Pentium III, the
10446 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
10447 properly if it is not 16 byte aligned.
10448
10449 To ensure proper alignment of this values on the stack, the stack boundary
10450 must be as aligned as that required by any value stored on the stack.
10451 Further, every function must be generated such that it keeps the stack
10452 aligned.  Thus calling a function compiled with a higher preferred
10453 stack boundary from a function compiled with a lower preferred stack
10454 boundary will most likely misalign the stack.  It is recommended that
10455 libraries that use callbacks always use the default setting.
10456
10457 This extra alignment does consume extra stack space, and generally
10458 increases code size.  Code that is sensitive to stack space usage, such
10459 as embedded systems and operating system kernels, may want to reduce the
10460 preferred alignment to @option{-mpreferred-stack-boundary=2}.
10461
10462 @item -mmmx
10463 @itemx -mno-mmx
10464 @item -msse
10465 @itemx -mno-sse
10466 @item -msse2
10467 @itemx -mno-sse2
10468 @item -msse3
10469 @itemx -mno-sse3
10470 @item -mssse3
10471 @itemx -mno-ssse3
10472 @item -msse4.1
10473 @itemx -mno-sse4.1
10474 @item -msse4.2
10475 @itemx -mno-sse4.2
10476 @item -msse4
10477 @itemx -mno-sse4
10478 @item -msse4a
10479 @item -mno-sse4a
10480 @item -msse5
10481 @itemx -mno-sse5
10482 @item -m3dnow
10483 @itemx -mno-3dnow
10484 @item -mpopcnt
10485 @itemx -mno-popcnt
10486 @item -mabm
10487 @itemx -mno-abm
10488 @opindex mmmx
10489 @opindex mno-mmx
10490 @opindex msse
10491 @opindex mno-sse
10492 @opindex m3dnow
10493 @opindex mno-3dnow
10494 These switches enable or disable the use of instructions in the MMX,
10495 SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4A, SSE5, ABM or 3DNow! extended
10496 instruction sets.
10497 These extensions are also available as built-in functions: see
10498 @ref{X86 Built-in Functions}, for details of the functions enabled and
10499 disabled by these switches.
10500
10501 To have SSE/SSE2 instructions generated automatically from floating-point
10502 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
10503
10504 These options will enable GCC to use these extended instructions in
10505 generated code, even without @option{-mfpmath=sse}.  Applications which
10506 perform runtime CPU detection must compile separate files for each
10507 supported architecture, using the appropriate flags.  In particular,
10508 the file containing the CPU detection code should be compiled without
10509 these options.
10510
10511 @item -mcx16
10512 @opindex mcx16
10513 This option will enable GCC to use CMPXCHG16B instruction in generated code.
10514 CMPXCHG16B allows for atomic operations on 128-bit double quadword (or oword)
10515 data types.  This is useful for high resolution counters that could be updated
10516 by multiple processors (or cores).  This instruction is generated as part of
10517 atomic built-in functions: see @ref{Atomic Builtins} for details.
10518
10519 @item -msahf
10520 @opindex msahf
10521 This option will enable GCC to use SAHF instruction in generated 64-bit code.
10522 Early Intel CPUs with Intel 64 lacked LAHF and SAHF instructions supported
10523 by AMD64 until introduction of Pentium 4 G1 step in December 2005.  LAHF and
10524 SAHF are load and store instructions, respectively, for certain status flags.
10525 In 64-bit mode, SAHF instruction is used to optimize @code{fmod}, @code{drem}
10526 or @code{remainder} built-in functions: see @ref{Other Builtins} for details.
10527
10528 @item -mrecip
10529 @opindex mrecip
10530 This option will enable GCC to use RCPSS and RSQRTSS instructions (and their
10531 vectorized variants RCPPS and RSQRTPS) instead of DIVSS and SQRTSS (and their
10532 vectorized variants).  These instructions will be generated only when
10533 @option{-funsafe-math-optimizations} is enabled.
10534
10535 @item -mveclibabi=@var{type}
10536 @opindex mveclibabi
10537 Specifies the ABI type to use for vectorizing intrinsics using an
10538 external library.  Supported types are @code{acml} for the AMD
10539 math core library style of interfacing.  GCC will currently emit
10540 calls to @code{__vrd2_sin}, @code{__vrd2_cos}, @code{__vrd2_exp},
10541 @code{__vrd2_log}, @code{__vrd2_log2}, @code{__vrd2_log10},
10542 @code{__vrs4_sinf}, @code{__vrs4_cosf}, @code{__vrs4_expf},
10543 @code{__vrs4_logf}, @code{__vrs4_log2f}, @code{__vrs4_log10f}
10544 and @code{__vrs4_powf} when using this type and @option{-ftree-vectorize}
10545 is enabled.  A ACML ABI compatible library will have to be specified
10546 at link time.
10547
10548 @item -mpush-args
10549 @itemx -mno-push-args
10550 @opindex mpush-args
10551 @opindex mno-push-args
10552 Use PUSH operations to store outgoing parameters.  This method is shorter
10553 and usually equally fast as method using SUB/MOV operations and is enabled
10554 by default.  In some cases disabling it may improve performance because of
10555 improved scheduling and reduced dependencies.
10556
10557 @item -maccumulate-outgoing-args
10558 @opindex maccumulate-outgoing-args
10559 If enabled, the maximum amount of space required for outgoing arguments will be
10560 computed in the function prologue.  This is faster on most modern CPUs
10561 because of reduced dependencies, improved scheduling and reduced stack usage
10562 when preferred stack boundary is not equal to 2.  The drawback is a notable
10563 increase in code size.  This switch implies @option{-mno-push-args}.
10564
10565 @item -mthreads
10566 @opindex mthreads
10567 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
10568 on thread-safe exception handling must compile and link all code with the
10569 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
10570 @option{-D_MT}; when linking, it links in a special thread helper library
10571 @option{-lmingwthrd} which cleans up per thread exception handling data.
10572
10573 @item -mno-align-stringops
10574 @opindex mno-align-stringops
10575 Do not align destination of inlined string operations.  This switch reduces
10576 code size and improves performance in case the destination is already aligned,
10577 but GCC doesn't know about it.
10578
10579 @item -minline-all-stringops
10580 @opindex minline-all-stringops
10581 By default GCC inlines string operations only when destination is known to be
10582 aligned at least to 4 byte boundary.  This enables more inlining, increase code
10583 size, but may improve performance of code that depends on fast memcpy, strlen
10584 and memset for short lengths.
10585
10586 @item -minline-stringops-dynamically
10587 @opindex minline-stringops-dynamically
10588 For string operation of unknown size, inline runtime checks so for small
10589 blocks inline code is used, while for large blocks library call is used.
10590
10591 @item -mstringop-strategy=@var{alg}
10592 @opindex mstringop-strategy=@var{alg}
10593 Overwrite internal decision heuristic about particular algorithm to inline
10594 string operation with.  The allowed values are @code{rep_byte},
10595 @code{rep_4byte}, @code{rep_8byte} for expanding using i386 @code{rep} prefix
10596 of specified size, @code{byte_loop}, @code{loop}, @code{unrolled_loop} for
10597 expanding inline loop, @code{libcall} for always expanding library call.
10598
10599 @item -momit-leaf-frame-pointer
10600 @opindex momit-leaf-frame-pointer
10601 Don't keep the frame pointer in a register for leaf functions.  This
10602 avoids the instructions to save, set up and restore frame pointers and
10603 makes an extra register available in leaf functions.  The option
10604 @option{-fomit-frame-pointer} removes the frame pointer for all functions
10605 which might make debugging harder.
10606
10607 @item -mtls-direct-seg-refs
10608 @itemx -mno-tls-direct-seg-refs
10609 @opindex mtls-direct-seg-refs
10610 Controls whether TLS variables may be accessed with offsets from the
10611 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
10612 or whether the thread base pointer must be added.  Whether or not this
10613 is legal depends on the operating system, and whether it maps the
10614 segment to cover the entire TLS area.
10615
10616 For systems that use GNU libc, the default is on.
10617
10618 @item -mfused-madd
10619 @itemx -mno-fused-madd
10620 @opindex mfused-madd
10621 Enable automatic generation of fused floating point multiply-add instructions
10622 if the ISA supports such instructions.  The -mfused-madd option is on by
10623 default.  The fused multiply-add instructions have a different
10624 rounding behavior compared to executing a multiply followed by an add.
10625 @end table
10626
10627 These @samp{-m} switches are supported in addition to the above
10628 on AMD x86-64 processors in 64-bit environments.
10629
10630 @table @gcctabopt
10631 @item -m32
10632 @itemx -m64
10633 @opindex m32
10634 @opindex m64
10635 Generate code for a 32-bit or 64-bit environment.
10636 The 32-bit environment sets int, long and pointer to 32 bits and
10637 generates code that runs on any i386 system.
10638 The 64-bit environment sets int to 32 bits and long and pointer
10639 to 64 bits and generates code for AMD's x86-64 architecture. For
10640 darwin only the -m64 option turns off the @option{-fno-pic} and
10641 @option{-mdynamic-no-pic} options.
10642
10643 @item -mno-red-zone
10644 @opindex no-red-zone
10645 Do not use a so called red zone for x86-64 code.  The red zone is mandated
10646 by the x86-64 ABI, it is a 128-byte area beyond the location of the
10647 stack pointer that will not be modified by signal or interrupt handlers
10648 and therefore can be used for temporary data without adjusting the stack
10649 pointer.  The flag @option{-mno-red-zone} disables this red zone.
10650
10651 @item -mcmodel=small
10652 @opindex mcmodel=small
10653 Generate code for the small code model: the program and its symbols must
10654 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
10655 Programs can be statically or dynamically linked.  This is the default
10656 code model.
10657
10658 @item -mcmodel=kernel
10659 @opindex mcmodel=kernel
10660 Generate code for the kernel code model.  The kernel runs in the
10661 negative 2 GB of the address space.
10662 This model has to be used for Linux kernel code.
10663
10664 @item -mcmodel=medium
10665 @opindex mcmodel=medium
10666 Generate code for the medium model: The program is linked in the lower 2
10667 GB of the address space but symbols can be located anywhere in the
10668 address space.  Programs can be statically or dynamically linked, but
10669 building of shared libraries are not supported with the medium model.
10670
10671 @item -mcmodel=large
10672 @opindex mcmodel=large
10673 Generate code for the large model: This model makes no assumptions
10674 about addresses and sizes of sections.
10675 @end table
10676
10677 @node IA-64 Options
10678 @subsection IA-64 Options
10679 @cindex IA-64 Options
10680
10681 These are the @samp{-m} options defined for the Intel IA-64 architecture.
10682
10683 @table @gcctabopt
10684 @item -mbig-endian
10685 @opindex mbig-endian
10686 Generate code for a big endian target.  This is the default for HP-UX@.
10687
10688 @item -mlittle-endian
10689 @opindex mlittle-endian
10690 Generate code for a little endian target.  This is the default for AIX5
10691 and GNU/Linux.
10692
10693 @item -mgnu-as
10694 @itemx -mno-gnu-as
10695 @opindex mgnu-as
10696 @opindex mno-gnu-as
10697 Generate (or don't) code for the GNU assembler.  This is the default.
10698 @c Also, this is the default if the configure option @option{--with-gnu-as}
10699 @c is used.
10700
10701 @item -mgnu-ld
10702 @itemx -mno-gnu-ld
10703 @opindex mgnu-ld
10704 @opindex mno-gnu-ld
10705 Generate (or don't) code for the GNU linker.  This is the default.
10706 @c Also, this is the default if the configure option @option{--with-gnu-ld}
10707 @c is used.
10708
10709 @item -mno-pic
10710 @opindex mno-pic
10711 Generate code that does not use a global pointer register.  The result
10712 is not position independent code, and violates the IA-64 ABI@.
10713
10714 @item -mvolatile-asm-stop
10715 @itemx -mno-volatile-asm-stop
10716 @opindex mvolatile-asm-stop
10717 @opindex mno-volatile-asm-stop
10718 Generate (or don't) a stop bit immediately before and after volatile asm
10719 statements.
10720
10721 @item -mregister-names
10722 @itemx -mno-register-names
10723 @opindex mregister-names
10724 @opindex mno-register-names
10725 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
10726 the stacked registers.  This may make assembler output more readable.
10727
10728 @item -mno-sdata
10729 @itemx -msdata
10730 @opindex mno-sdata
10731 @opindex msdata
10732 Disable (or enable) optimizations that use the small data section.  This may
10733 be useful for working around optimizer bugs.
10734
10735 @item -mconstant-gp
10736 @opindex mconstant-gp
10737 Generate code that uses a single constant global pointer value.  This is
10738 useful when compiling kernel code.
10739
10740 @item -mauto-pic
10741 @opindex mauto-pic
10742 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
10743 This is useful when compiling firmware code.
10744
10745 @item -minline-float-divide-min-latency
10746 @opindex minline-float-divide-min-latency
10747 Generate code for inline divides of floating point values
10748 using the minimum latency algorithm.
10749
10750 @item -minline-float-divide-max-throughput
10751 @opindex minline-float-divide-max-throughput
10752 Generate code for inline divides of floating point values
10753 using the maximum throughput algorithm.
10754
10755 @item -minline-int-divide-min-latency
10756 @opindex minline-int-divide-min-latency
10757 Generate code for inline divides of integer values
10758 using the minimum latency algorithm.
10759
10760 @item -minline-int-divide-max-throughput
10761 @opindex minline-int-divide-max-throughput
10762 Generate code for inline divides of integer values
10763 using the maximum throughput algorithm.
10764
10765 @item -minline-sqrt-min-latency
10766 @opindex minline-sqrt-min-latency
10767 Generate code for inline square roots
10768 using the minimum latency algorithm.
10769
10770 @item -minline-sqrt-max-throughput
10771 @opindex minline-sqrt-max-throughput
10772 Generate code for inline square roots
10773 using the maximum throughput algorithm.
10774
10775 @item -mno-dwarf2-asm
10776 @itemx -mdwarf2-asm
10777 @opindex mno-dwarf2-asm
10778 @opindex mdwarf2-asm
10779 Don't (or do) generate assembler code for the DWARF2 line number debugging
10780 info.  This may be useful when not using the GNU assembler.
10781
10782 @item -mearly-stop-bits
10783 @itemx -mno-early-stop-bits
10784 @opindex mearly-stop-bits
10785 @opindex mno-early-stop-bits
10786 Allow stop bits to be placed earlier than immediately preceding the
10787 instruction that triggered the stop bit.  This can improve instruction
10788 scheduling, but does not always do so.
10789
10790 @item -mfixed-range=@var{register-range}
10791 @opindex mfixed-range
10792 Generate code treating the given register range as fixed registers.
10793 A fixed register is one that the register allocator can not use.  This is
10794 useful when compiling kernel code.  A register range is specified as
10795 two registers separated by a dash.  Multiple register ranges can be
10796 specified separated by a comma.
10797
10798 @item -mtls-size=@var{tls-size}
10799 @opindex mtls-size
10800 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
10801 64.
10802
10803 @item -mtune=@var{cpu-type}
10804 @opindex mtune
10805 Tune the instruction scheduling for a particular CPU, Valid values are
10806 itanium, itanium1, merced, itanium2, and mckinley.
10807
10808 @item -mt
10809 @itemx -pthread
10810 @opindex mt
10811 @opindex pthread
10812 Add support for multithreading using the POSIX threads library.  This
10813 option sets flags for both the preprocessor and linker.  It does
10814 not affect the thread safety of object code produced by the compiler or
10815 that of libraries supplied with it.  These are HP-UX specific flags.
10816
10817 @item -milp32
10818 @itemx -mlp64
10819 @opindex milp32
10820 @opindex mlp64
10821 Generate code for a 32-bit or 64-bit environment.
10822 The 32-bit environment sets int, long and pointer to 32 bits.
10823 The 64-bit environment sets int to 32 bits and long and pointer
10824 to 64 bits.  These are HP-UX specific flags.
10825
10826 @item -mno-sched-br-data-spec
10827 @itemx -msched-br-data-spec
10828 @opindex mno-sched-br-data-spec
10829 @opindex msched-br-data-spec
10830 (Dis/En)able data speculative scheduling before reload.
10831 This will result in generation of the ld.a instructions and
10832 the corresponding check instructions (ld.c / chk.a).
10833 The default is 'disable'.
10834
10835 @item -msched-ar-data-spec
10836 @itemx -mno-sched-ar-data-spec
10837 @opindex msched-ar-data-spec
10838 @opindex mno-sched-ar-data-spec
10839 (En/Dis)able data speculative scheduling after reload.
10840 This will result in generation of the ld.a instructions and
10841 the corresponding check instructions (ld.c / chk.a).
10842 The default is 'enable'.
10843
10844 @item -mno-sched-control-spec
10845 @itemx -msched-control-spec
10846 @opindex mno-sched-control-spec
10847 @opindex msched-control-spec
10848 (Dis/En)able control speculative scheduling.  This feature is
10849 available only during region scheduling (i.e. before reload).
10850 This will result in generation of the ld.s instructions and
10851 the corresponding check instructions chk.s .
10852 The default is 'disable'.
10853
10854 @item -msched-br-in-data-spec
10855 @itemx -mno-sched-br-in-data-spec
10856 @opindex msched-br-in-data-spec
10857 @opindex mno-sched-br-in-data-spec
10858 (En/Dis)able speculative scheduling of the instructions that
10859 are dependent on the data speculative loads before reload.
10860 This is effective only with @option{-msched-br-data-spec} enabled.
10861 The default is 'enable'.
10862
10863 @item -msched-ar-in-data-spec
10864 @itemx -mno-sched-ar-in-data-spec
10865 @opindex msched-ar-in-data-spec
10866 @opindex mno-sched-ar-in-data-spec
10867 (En/Dis)able speculative scheduling of the instructions that
10868 are dependent on the data speculative loads after reload.
10869 This is effective only with @option{-msched-ar-data-spec} enabled.
10870 The default is 'enable'.
10871
10872 @item -msched-in-control-spec
10873 @itemx -mno-sched-in-control-spec
10874 @opindex msched-in-control-spec
10875 @opindex mno-sched-in-control-spec
10876 (En/Dis)able speculative scheduling of the instructions that
10877 are dependent on the control speculative loads.
10878 This is effective only with @option{-msched-control-spec} enabled.
10879 The default is 'enable'.
10880
10881 @item -msched-ldc
10882 @itemx -mno-sched-ldc
10883 @opindex msched-ldc
10884 @opindex mno-sched-ldc
10885 (En/Dis)able use of simple data speculation checks ld.c .
10886 If disabled, only chk.a instructions will be emitted to check
10887 data speculative loads.
10888 The default is 'enable'.
10889
10890 @item -mno-sched-control-ldc
10891 @itemx -msched-control-ldc
10892 @opindex mno-sched-control-ldc
10893 @opindex msched-control-ldc
10894 (Dis/En)able use of ld.c instructions to check control speculative loads.
10895 If enabled, in case of control speculative load with no speculatively
10896 scheduled dependent instructions this load will be emitted as ld.sa and
10897 ld.c will be used to check it.
10898 The default is 'disable'.
10899
10900 @item -mno-sched-spec-verbose
10901 @itemx -msched-spec-verbose
10902 @opindex mno-sched-spec-verbose
10903 @opindex msched-spec-verbose
10904 (Dis/En)able printing of the information about speculative motions.
10905
10906 @item -mno-sched-prefer-non-data-spec-insns
10907 @itemx -msched-prefer-non-data-spec-insns
10908 @opindex mno-sched-prefer-non-data-spec-insns
10909 @opindex msched-prefer-non-data-spec-insns
10910 If enabled, data speculative instructions will be chosen for schedule
10911 only if there are no other choices at the moment.  This will make
10912 the use of the data speculation much more conservative.
10913 The default is 'disable'.
10914
10915 @item -mno-sched-prefer-non-control-spec-insns
10916 @itemx -msched-prefer-non-control-spec-insns
10917 @opindex mno-sched-prefer-non-control-spec-insns
10918 @opindex msched-prefer-non-control-spec-insns
10919 If enabled, control speculative instructions will be chosen for schedule
10920 only if there are no other choices at the moment.  This will make
10921 the use of the control speculation much more conservative.
10922 The default is 'disable'.
10923
10924 @item -mno-sched-count-spec-in-critical-path
10925 @itemx -msched-count-spec-in-critical-path
10926 @opindex mno-sched-count-spec-in-critical-path
10927 @opindex msched-count-spec-in-critical-path
10928 If enabled, speculative dependencies will be considered during
10929 computation of the instructions priorities.  This will make the use of the
10930 speculation a bit more conservative.
10931 The default is 'disable'.
10932
10933 @end table
10934
10935 @node M32C Options
10936 @subsection M32C Options
10937 @cindex M32C options
10938
10939 @table @gcctabopt
10940 @item -mcpu=@var{name}
10941 @opindex mcpu=
10942 Select the CPU for which code is generated.  @var{name} may be one of
10943 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
10944 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
10945 the M32C/80 series.
10946
10947 @item -msim
10948 @opindex msim
10949 Specifies that the program will be run on the simulator.  This causes
10950 an alternate runtime library to be linked in which supports, for
10951 example, file I/O.  You must not use this option when generating
10952 programs that will run on real hardware; you must provide your own
10953 runtime library for whatever I/O functions are needed.
10954
10955 @item -memregs=@var{number}
10956 @opindex memregs=
10957 Specifies the number of memory-based pseudo-registers GCC will use
10958 during code generation.  These pseudo-registers will be used like real
10959 registers, so there is a tradeoff between GCC's ability to fit the
10960 code into available registers, and the performance penalty of using
10961 memory instead of registers.  Note that all modules in a program must
10962 be compiled with the same value for this option.  Because of that, you
10963 must not use this option with the default runtime libraries gcc
10964 builds.
10965
10966 @end table
10967
10968 @node M32R/D Options
10969 @subsection M32R/D Options
10970 @cindex M32R/D options
10971
10972 These @option{-m} options are defined for Renesas M32R/D architectures:
10973
10974 @table @gcctabopt
10975 @item -m32r2
10976 @opindex m32r2
10977 Generate code for the M32R/2@.
10978
10979 @item -m32rx
10980 @opindex m32rx
10981 Generate code for the M32R/X@.
10982
10983 @item -m32r
10984 @opindex m32r
10985 Generate code for the M32R@.  This is the default.
10986
10987 @item -mmodel=small
10988 @opindex mmodel=small
10989 Assume all objects live in the lower 16MB of memory (so that their addresses
10990 can be loaded with the @code{ld24} instruction), and assume all subroutines
10991 are reachable with the @code{bl} instruction.
10992 This is the default.
10993
10994 The addressability of a particular object can be set with the
10995 @code{model} attribute.
10996
10997 @item -mmodel=medium
10998 @opindex mmodel=medium
10999 Assume objects may be anywhere in the 32-bit address space (the compiler
11000 will generate @code{seth/add3} instructions to load their addresses), and
11001 assume all subroutines are reachable with the @code{bl} instruction.
11002
11003 @item -mmodel=large
11004 @opindex mmodel=large
11005 Assume objects may be anywhere in the 32-bit address space (the compiler
11006 will generate @code{seth/add3} instructions to load their addresses), and
11007 assume subroutines may not be reachable with the @code{bl} instruction
11008 (the compiler will generate the much slower @code{seth/add3/jl}
11009 instruction sequence).
11010
11011 @item -msdata=none
11012 @opindex msdata=none
11013 Disable use of the small data area.  Variables will be put into
11014 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
11015 @code{section} attribute has been specified).
11016 This is the default.
11017
11018 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
11019 Objects may be explicitly put in the small data area with the
11020 @code{section} attribute using one of these sections.
11021
11022 @item -msdata=sdata
11023 @opindex msdata=sdata
11024 Put small global and static data in the small data area, but do not
11025 generate special code to reference them.
11026
11027 @item -msdata=use
11028 @opindex msdata=use
11029 Put small global and static data in the small data area, and generate
11030 special instructions to reference them.
11031
11032 @item -G @var{num}
11033 @opindex G
11034 @cindex smaller data references
11035 Put global and static objects less than or equal to @var{num} bytes
11036 into the small data or bss sections instead of the normal data or bss
11037 sections.  The default value of @var{num} is 8.
11038 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
11039 for this option to have any effect.
11040
11041 All modules should be compiled with the same @option{-G @var{num}} value.
11042 Compiling with different values of @var{num} may or may not work; if it
11043 doesn't the linker will give an error message---incorrect code will not be
11044 generated.
11045
11046 @item -mdebug
11047 @opindex mdebug
11048 Makes the M32R specific code in the compiler display some statistics
11049 that might help in debugging programs.
11050
11051 @item -malign-loops
11052 @opindex malign-loops
11053 Align all loops to a 32-byte boundary.
11054
11055 @item -mno-align-loops
11056 @opindex mno-align-loops
11057 Do not enforce a 32-byte alignment for loops.  This is the default.
11058
11059 @item -missue-rate=@var{number}
11060 @opindex missue-rate=@var{number}
11061 Issue @var{number} instructions per cycle.  @var{number} can only be 1
11062 or 2.
11063
11064 @item -mbranch-cost=@var{number}
11065 @opindex mbranch-cost=@var{number}
11066 @var{number} can only be 1 or 2.  If it is 1 then branches will be
11067 preferred over conditional code, if it is 2, then the opposite will
11068 apply.
11069
11070 @item -mflush-trap=@var{number}
11071 @opindex mflush-trap=@var{number}
11072 Specifies the trap number to use to flush the cache.  The default is
11073 12.  Valid numbers are between 0 and 15 inclusive.
11074
11075 @item -mno-flush-trap
11076 @opindex mno-flush-trap
11077 Specifies that the cache cannot be flushed by using a trap.
11078
11079 @item -mflush-func=@var{name}
11080 @opindex mflush-func=@var{name}
11081 Specifies the name of the operating system function to call to flush
11082 the cache.  The default is @emph{_flush_cache}, but a function call
11083 will only be used if a trap is not available.
11084
11085 @item -mno-flush-func
11086 @opindex mno-flush-func
11087 Indicates that there is no OS function for flushing the cache.
11088
11089 @end table
11090
11091 @node M680x0 Options
11092 @subsection M680x0 Options
11093 @cindex M680x0 options
11094
11095 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
11096 The default settings depend on which architecture was selected when
11097 the compiler was configured; the defaults for the most common choices
11098 are given below.
11099
11100 @table @gcctabopt
11101 @item -march=@var{arch}
11102 @opindex march
11103 Generate code for a specific M680x0 or ColdFire instruction set
11104 architecture.  Permissible values of @var{arch} for M680x0
11105 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
11106 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
11107 architectures are selected according to Freescale's ISA classification
11108 and the permissible values are: @samp{isaa}, @samp{isaaplus},
11109 @samp{isab} and @samp{isac}.
11110
11111 gcc defines a macro @samp{__mcf@var{arch}__} whenever it is generating
11112 code for a ColdFire target.  The @var{arch} in this macro is one of the
11113 @option{-march} arguments given above.
11114
11115 When used together, @option{-march} and @option{-mtune} select code
11116 that runs on a family of similar processors but that is optimized
11117 for a particular microarchitecture.
11118
11119 @item -mcpu=@var{cpu}
11120 @opindex mcpu
11121 Generate code for a specific M680x0 or ColdFire processor.
11122 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
11123 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
11124 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
11125 below, which also classifies the CPUs into families:
11126
11127 @multitable @columnfractions 0.20 0.80
11128 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
11129 @item @samp{51qe} @tab @samp{51qe}
11130 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
11131 @item @samp{5206e} @tab @samp{5206e}
11132 @item @samp{5208} @tab @samp{5207} @samp{5208}
11133 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
11134 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
11135 @item @samp{5216} @tab @samp{5214} @samp{5216}
11136 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
11137 @item @samp{5225} @tab @samp{5224} @samp{5225}
11138 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
11139 @item @samp{5249} @tab @samp{5249}
11140 @item @samp{5250} @tab @samp{5250}
11141 @item @samp{5271} @tab @samp{5270} @samp{5271}
11142 @item @samp{5272} @tab @samp{5272}
11143 @item @samp{5275} @tab @samp{5274} @samp{5275}
11144 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
11145 @item @samp{5307} @tab @samp{5307}
11146 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
11147 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
11148 @item @samp{5407} @tab @samp{5407}
11149 @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}
11150 @end multitable
11151
11152 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
11153 @var{arch} is compatible with @var{cpu}.  Other combinations of
11154 @option{-mcpu} and @option{-march} are rejected.
11155
11156 gcc defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
11157 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
11158 where the value of @var{family} is given by the table above.
11159
11160 @item -mtune=@var{tune}
11161 @opindex mtune
11162 Tune the code for a particular microarchitecture, within the
11163 constraints set by @option{-march} and @option{-mcpu}.
11164 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
11165 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
11166 and @samp{cpu32}.  The ColdFire microarchitectures
11167 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
11168
11169 You can also use @option{-mtune=68020-40} for code that needs
11170 to run relatively well on 68020, 68030 and 68040 targets.
11171 @option{-mtune=68020-60} is similar but includes 68060 targets
11172 as well.  These two options select the same tuning decisions as
11173 @option{-m68020-40} and @option{-m68020-60} respectively.
11174
11175 gcc defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
11176 when tuning for 680x0 architecture @var{arch}.  It also defines
11177 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
11178 option is used.  If gcc is tuning for a range of architectures,
11179 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
11180 it defines the macros for every architecture in the range.
11181
11182 gcc also defines the macro @samp{__m@var{uarch}__} when tuning for
11183 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
11184 of the arguments given above.
11185
11186 @item -m68000
11187 @itemx -mc68000
11188 @opindex m68000
11189 @opindex mc68000
11190 Generate output for a 68000.  This is the default
11191 when the compiler is configured for 68000-based systems.
11192 It is equivalent to @option{-march=68000}.
11193
11194 Use this option for microcontrollers with a 68000 or EC000 core,
11195 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
11196
11197 @item -m68010
11198 @opindex m68010
11199 Generate output for a 68010.  This is the default
11200 when the compiler is configured for 68010-based systems.
11201 It is equivalent to @option{-march=68010}.
11202
11203 @item -m68020
11204 @itemx -mc68020
11205 @opindex m68020
11206 @opindex mc68020
11207 Generate output for a 68020.  This is the default
11208 when the compiler is configured for 68020-based systems.
11209 It is equivalent to @option{-march=68020}.
11210
11211 @item -m68030
11212 @opindex m68030
11213 Generate output for a 68030.  This is the default when the compiler is
11214 configured for 68030-based systems.  It is equivalent to
11215 @option{-march=68030}.
11216
11217 @item -m68040
11218 @opindex m68040
11219 Generate output for a 68040.  This is the default when the compiler is
11220 configured for 68040-based systems.  It is equivalent to
11221 @option{-march=68040}.
11222
11223 This option inhibits the use of 68881/68882 instructions that have to be
11224 emulated by software on the 68040.  Use this option if your 68040 does not
11225 have code to emulate those instructions.
11226
11227 @item -m68060
11228 @opindex m68060
11229 Generate output for a 68060.  This is the default when the compiler is
11230 configured for 68060-based systems.  It is equivalent to
11231 @option{-march=68060}.
11232
11233 This option inhibits the use of 68020 and 68881/68882 instructions that
11234 have to be emulated by software on the 68060.  Use this option if your 68060
11235 does not have code to emulate those instructions.
11236
11237 @item -mcpu32
11238 @opindex mcpu32
11239 Generate output for a CPU32.  This is the default
11240 when the compiler is configured for CPU32-based systems.
11241 It is equivalent to @option{-march=cpu32}.
11242
11243 Use this option for microcontrollers with a
11244 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
11245 68336, 68340, 68341, 68349 and 68360.
11246
11247 @item -m5200
11248 @opindex m5200
11249 Generate output for a 520X ColdFire CPU.  This is the default
11250 when the compiler is configured for 520X-based systems.
11251 It is equivalent to @option{-mcpu=5206}, and is now deprecated
11252 in favor of that option.
11253
11254 Use this option for microcontroller with a 5200 core, including
11255 the MCF5202, MCF5203, MCF5204 and MCF5206.
11256
11257 @item -m5206e
11258 @opindex m5206e
11259 Generate output for a 5206e ColdFire CPU.  The option is now
11260 deprecated in favor of the equivalent @option{-mcpu=5206e}.
11261
11262 @item -m528x
11263 @opindex m528x
11264 Generate output for a member of the ColdFire 528X family.
11265 The option is now deprecated in favor of the equivalent
11266 @option{-mcpu=528x}.
11267
11268 @item -m5307
11269 @opindex m5307
11270 Generate output for a ColdFire 5307 CPU.  The option is now deprecated
11271 in favor of the equivalent @option{-mcpu=5307}.
11272
11273 @item -m5407
11274 @opindex m5407
11275 Generate output for a ColdFire 5407 CPU.  The option is now deprecated
11276 in favor of the equivalent @option{-mcpu=5407}.
11277
11278 @item -mcfv4e
11279 @opindex mcfv4e
11280 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
11281 This includes use of hardware floating point instructions.
11282 The option is equivalent to @option{-mcpu=547x}, and is now
11283 deprecated in favor of that option.
11284
11285 @item -m68020-40
11286 @opindex m68020-40
11287 Generate output for a 68040, without using any of the new instructions.
11288 This results in code which can run relatively efficiently on either a
11289 68020/68881 or a 68030 or a 68040.  The generated code does use the
11290 68881 instructions that are emulated on the 68040.
11291
11292 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
11293
11294 @item -m68020-60
11295 @opindex m68020-60
11296 Generate output for a 68060, without using any of the new instructions.
11297 This results in code which can run relatively efficiently on either a
11298 68020/68881 or a 68030 or a 68040.  The generated code does use the
11299 68881 instructions that are emulated on the 68060.
11300
11301 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
11302
11303 @item -mhard-float
11304 @itemx -m68881
11305 @opindex mhard-float
11306 @opindex m68881
11307 Generate floating-point instructions.  This is the default for 68020
11308 and above, and for ColdFire devices that have an FPU.  It defines the
11309 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
11310 on ColdFire targets.
11311
11312 @item -msoft-float
11313 @opindex msoft-float
11314 Do not generate floating-point instructions; use library calls instead.
11315 This is the default for 68000, 68010, and 68832 targets.  It is also
11316 the default for ColdFire devices that have no FPU.
11317
11318 @item -mdiv
11319 @itemx -mno-div
11320 @opindex mdiv
11321 @opindex mno-div
11322 Generate (do not generate) ColdFire hardware divide and remainder
11323 instructions.  If @option{-march} is used without @option{-mcpu},
11324 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
11325 architectures.  Otherwise, the default is taken from the target CPU
11326 (either the default CPU, or the one specified by @option{-mcpu}).  For
11327 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
11328 @option{-mcpu=5206e}.
11329
11330 gcc defines the macro @samp{__mcfhwdiv__} when this option is enabled.
11331
11332 @item -mshort
11333 @opindex mshort
11334 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11335 Additionally, parameters passed on the stack are also aligned to a
11336 16-bit boundary even on targets whose API mandates promotion to 32-bit.
11337
11338 @item -mno-short
11339 @opindex mno-short
11340 Do not consider type @code{int} to be 16 bits wide.  This is the default.
11341
11342 @item -mnobitfield
11343 @itemx -mno-bitfield
11344 @opindex mnobitfield
11345 @opindex mno-bitfield
11346 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
11347 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
11348
11349 @item -mbitfield
11350 @opindex mbitfield
11351 Do use the bit-field instructions.  The @option{-m68020} option implies
11352 @option{-mbitfield}.  This is the default if you use a configuration
11353 designed for a 68020.
11354
11355 @item -mrtd
11356 @opindex mrtd
11357 Use a different function-calling convention, in which functions
11358 that take a fixed number of arguments return with the @code{rtd}
11359 instruction, which pops their arguments while returning.  This
11360 saves one instruction in the caller since there is no need to pop
11361 the arguments there.
11362
11363 This calling convention is incompatible with the one normally
11364 used on Unix, so you cannot use it if you need to call libraries
11365 compiled with the Unix compiler.
11366
11367 Also, you must provide function prototypes for all functions that
11368 take variable numbers of arguments (including @code{printf});
11369 otherwise incorrect code will be generated for calls to those
11370 functions.
11371
11372 In addition, seriously incorrect code will result if you call a
11373 function with too many arguments.  (Normally, extra arguments are
11374 harmlessly ignored.)
11375
11376 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
11377 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
11378
11379 @item -mno-rtd
11380 @opindex mno-rtd
11381 Do not use the calling conventions selected by @option{-mrtd}.
11382 This is the default.
11383
11384 @item -malign-int
11385 @itemx -mno-align-int
11386 @opindex malign-int
11387 @opindex mno-align-int
11388 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
11389 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
11390 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
11391 Aligning variables on 32-bit boundaries produces code that runs somewhat
11392 faster on processors with 32-bit busses at the expense of more memory.
11393
11394 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
11395 align structures containing the above types  differently than
11396 most published application binary interface specifications for the m68k.
11397
11398 @item -mpcrel
11399 @opindex mpcrel
11400 Use the pc-relative addressing mode of the 68000 directly, instead of
11401 using a global offset table.  At present, this option implies @option{-fpic},
11402 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
11403 not presently supported with @option{-mpcrel}, though this could be supported for
11404 68020 and higher processors.
11405
11406 @item -mno-strict-align
11407 @itemx -mstrict-align
11408 @opindex mno-strict-align
11409 @opindex mstrict-align
11410 Do not (do) assume that unaligned memory references will be handled by
11411 the system.
11412
11413 @item -msep-data
11414 Generate code that allows the data segment to be located in a different
11415 area of memory from the text segment.  This allows for execute in place in
11416 an environment without virtual memory management.  This option implies
11417 @option{-fPIC}.
11418
11419 @item -mno-sep-data
11420 Generate code that assumes that the data segment follows the text segment.
11421 This is the default.
11422
11423 @item -mid-shared-library
11424 Generate code that supports shared libraries via the library ID method.
11425 This allows for execute in place and shared libraries in an environment
11426 without virtual memory management.  This option implies @option{-fPIC}.
11427
11428 @item -mno-id-shared-library
11429 Generate code that doesn't assume ID based shared libraries are being used.
11430 This is the default.
11431
11432 @item -mshared-library-id=n
11433 Specified the identification number of the ID based shared library being
11434 compiled.  Specifying a value of 0 will generate more compact code, specifying
11435 other values will force the allocation of that number to the current
11436 library but is no more space or time efficient than omitting this option.
11437
11438 @end table
11439
11440 @node M68hc1x Options
11441 @subsection M68hc1x Options
11442 @cindex M68hc1x options
11443
11444 These are the @samp{-m} options defined for the 68hc11 and 68hc12
11445 microcontrollers.  The default values for these options depends on
11446 which style of microcontroller was selected when the compiler was configured;
11447 the defaults for the most common choices are given below.
11448
11449 @table @gcctabopt
11450 @item -m6811
11451 @itemx -m68hc11
11452 @opindex m6811
11453 @opindex m68hc11
11454 Generate output for a 68HC11.  This is the default
11455 when the compiler is configured for 68HC11-based systems.
11456
11457 @item -m6812
11458 @itemx -m68hc12
11459 @opindex m6812
11460 @opindex m68hc12
11461 Generate output for a 68HC12.  This is the default
11462 when the compiler is configured for 68HC12-based systems.
11463
11464 @item -m68S12
11465 @itemx -m68hcs12
11466 @opindex m68S12
11467 @opindex m68hcs12
11468 Generate output for a 68HCS12.
11469
11470 @item -mauto-incdec
11471 @opindex mauto-incdec
11472 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
11473 addressing modes.
11474
11475 @item -minmax
11476 @itemx -nominmax
11477 @opindex minmax
11478 @opindex mnominmax
11479 Enable the use of 68HC12 min and max instructions.
11480
11481 @item -mlong-calls
11482 @itemx -mno-long-calls
11483 @opindex mlong-calls
11484 @opindex mno-long-calls
11485 Treat all calls as being far away (near).  If calls are assumed to be
11486 far away, the compiler will use the @code{call} instruction to
11487 call a function and the @code{rtc} instruction for returning.
11488
11489 @item -mshort
11490 @opindex mshort
11491 Consider type @code{int} to be 16 bits wide, like @code{short int}.
11492
11493 @item -msoft-reg-count=@var{count}
11494 @opindex msoft-reg-count
11495 Specify the number of pseudo-soft registers which are used for the
11496 code generation.  The maximum number is 32.  Using more pseudo-soft
11497 register may or may not result in better code depending on the program.
11498 The default is 4 for 68HC11 and 2 for 68HC12.
11499
11500 @end table
11501
11502 @node MCore Options
11503 @subsection MCore Options
11504 @cindex MCore options
11505
11506 These are the @samp{-m} options defined for the Motorola M*Core
11507 processors.
11508
11509 @table @gcctabopt
11510
11511 @item -mhardlit
11512 @itemx -mno-hardlit
11513 @opindex mhardlit
11514 @opindex mno-hardlit
11515 Inline constants into the code stream if it can be done in two
11516 instructions or less.
11517
11518 @item -mdiv
11519 @itemx -mno-div
11520 @opindex mdiv
11521 @opindex mno-div
11522 Use the divide instruction.  (Enabled by default).
11523
11524 @item -mrelax-immediate
11525 @itemx -mno-relax-immediate
11526 @opindex mrelax-immediate
11527 @opindex mno-relax-immediate
11528 Allow arbitrary sized immediates in bit operations.
11529
11530 @item -mwide-bitfields
11531 @itemx -mno-wide-bitfields
11532 @opindex mwide-bitfields
11533 @opindex mno-wide-bitfields
11534 Always treat bit-fields as int-sized.
11535
11536 @item -m4byte-functions
11537 @itemx -mno-4byte-functions
11538 @opindex m4byte-functions
11539 @opindex mno-4byte-functions
11540 Force all functions to be aligned to a four byte boundary.
11541
11542 @item -mcallgraph-data
11543 @itemx -mno-callgraph-data
11544 @opindex mcallgraph-data
11545 @opindex mno-callgraph-data
11546 Emit callgraph information.
11547
11548 @item -mslow-bytes
11549 @itemx -mno-slow-bytes
11550 @opindex mslow-bytes
11551 @opindex mno-slow-bytes
11552 Prefer word access when reading byte quantities.
11553
11554 @item -mlittle-endian
11555 @itemx -mbig-endian
11556 @opindex mlittle-endian
11557 @opindex mbig-endian
11558 Generate code for a little endian target.
11559
11560 @item -m210
11561 @itemx -m340
11562 @opindex m210
11563 @opindex m340
11564 Generate code for the 210 processor.
11565 @end table
11566
11567 @node MIPS Options
11568 @subsection MIPS Options
11569 @cindex MIPS options
11570
11571 @table @gcctabopt
11572
11573 @item -EB
11574 @opindex EB
11575 Generate big-endian code.
11576
11577 @item -EL
11578 @opindex EL
11579 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
11580 configurations.
11581
11582 @item -march=@var{arch}
11583 @opindex march
11584 Generate code that will run on @var{arch}, which can be the name of a
11585 generic MIPS ISA, or the name of a particular processor.
11586 The ISA names are:
11587 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
11588 @samp{mips32}, @samp{mips32r2}, and @samp{mips64}.
11589 The processor names are:
11590 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
11591 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
11592 @samp{5kc}, @samp{5kf},
11593 @samp{20kc},
11594 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
11595 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
11596 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1},
11597 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
11598 @samp{m4k},
11599 @samp{orion},
11600 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
11601 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
11602 @samp{rm7000}, @samp{rm9000},
11603 @samp{sb1},
11604 @samp{sr71000},
11605 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
11606 @samp{vr5000}, @samp{vr5400} and @samp{vr5500}.
11607 The special value @samp{from-abi} selects the
11608 most compatible architecture for the selected ABI (that is,
11609 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
11610
11611 In processor names, a final @samp{000} can be abbreviated as @samp{k}
11612 (for example, @samp{-march=r2k}).  Prefixes are optional, and
11613 @samp{vr} may be written @samp{r}.
11614
11615 Names of the form @samp{@var{n}f2_1} refer to processors with
11616 FPUs clocked at half the rate of the core, names of the form
11617 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
11618 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
11619 processors with FPUs clocked a ratio of 3:2 with respect to the core.
11620 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
11621 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
11622 accepted as synonyms for @samp{@var{n}f1_1}.
11623
11624 GCC defines two macros based on the value of this option.  The first
11625 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
11626 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
11627 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
11628 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
11629 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
11630
11631 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
11632 above.  In other words, it will have the full prefix and will not
11633 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
11634 the macro names the resolved architecture (either @samp{"mips1"} or
11635 @samp{"mips3"}).  It names the default architecture when no
11636 @option{-march} option is given.
11637
11638 @item -mtune=@var{arch}
11639 @opindex mtune
11640 Optimize for @var{arch}.  Among other things, this option controls
11641 the way instructions are scheduled, and the perceived cost of arithmetic
11642 operations.  The list of @var{arch} values is the same as for
11643 @option{-march}.
11644
11645 When this option is not used, GCC will optimize for the processor
11646 specified by @option{-march}.  By using @option{-march} and
11647 @option{-mtune} together, it is possible to generate code that will
11648 run on a family of processors, but optimize the code for one
11649 particular member of that family.
11650
11651 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
11652 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
11653 @samp{-march} ones described above.
11654
11655 @item -mips1
11656 @opindex mips1
11657 Equivalent to @samp{-march=mips1}.
11658
11659 @item -mips2
11660 @opindex mips2
11661 Equivalent to @samp{-march=mips2}.
11662
11663 @item -mips3
11664 @opindex mips3
11665 Equivalent to @samp{-march=mips3}.
11666
11667 @item -mips4
11668 @opindex mips4
11669 Equivalent to @samp{-march=mips4}.
11670
11671 @item -mips32
11672 @opindex mips32
11673 Equivalent to @samp{-march=mips32}.
11674
11675 @item -mips32r2
11676 @opindex mips32r2
11677 Equivalent to @samp{-march=mips32r2}.
11678
11679 @item -mips64
11680 @opindex mips64
11681 Equivalent to @samp{-march=mips64}.
11682
11683 @item -mips16
11684 @itemx -mno-mips16
11685 @opindex mips16
11686 @opindex mno-mips16
11687 Generate (do not generate) MIPS16 code.  If GCC is targetting a
11688 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
11689
11690 MIPS16 code generation can also be controlled on a per-function basis
11691 by means of @code{mips16} and @code{nomips16} attributes.  
11692 @xref{Function Attributes}, for more information.
11693
11694 @item -mflip-mips16
11695 @opindex mflip-mips16
11696 Generate MIPS16 code on alternating functions.  This option is provided
11697 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
11698 not intended for ordinary use in compiling user code.
11699
11700 @item -minterlink-mips16
11701 @itemx -mno-interlink-mips16
11702 @opindex minterlink-mips16
11703 @opindex mno-interlink-mips16
11704 Require (do not require) that non-MIPS16 code be link-compatible with
11705 MIPS16 code.
11706
11707 For example, non-MIPS16 code cannot jump directly to MIPS16 code;
11708 it must either use a call or an indirect jump.  @option{-minterlink-mips16}
11709 therefore disables direct jumps unless GCC knows that the target of the
11710 jump is not MIPS16.
11711
11712 @item -mabi=32
11713 @itemx -mabi=o64
11714 @itemx -mabi=n32
11715 @itemx -mabi=64
11716 @itemx -mabi=eabi
11717 @opindex mabi=32
11718 @opindex mabi=o64
11719 @opindex mabi=n32
11720 @opindex mabi=64
11721 @opindex mabi=eabi
11722 Generate code for the given ABI@.
11723
11724 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
11725 generates 64-bit code when you select a 64-bit architecture, but you
11726 can use @option{-mgp32} to get 32-bit code instead.
11727
11728 For information about the O64 ABI, see
11729 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
11730
11731 GCC supports a variant of the o32 ABI in which floating-point registers
11732 are 64 rather than 32 bits wide.  You can select this combination with
11733 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @samp{mthc1}
11734 and @samp{mfhc1} instructions and is therefore only supported for
11735 MIPS32R2 processors.
11736
11737 The register assignments for arguments and return values remain the
11738 same, but each scalar value is passed in a single 64-bit register
11739 rather than a pair of 32-bit registers.  For example, scalar
11740 floating-point values are returned in @samp{$f0} only, not a
11741 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
11742 remains the same, but all 64 bits are saved.
11743
11744 @item -mabicalls
11745 @itemx -mno-abicalls
11746 @opindex mabicalls
11747 @opindex mno-abicalls
11748 Generate (do not generate) code that is suitable for SVR4-style
11749 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
11750 systems.
11751
11752 @item -mshared
11753 @itemx -mno-shared
11754 Generate (do not generate) code that is fully position-independent,
11755 and that can therefore be linked into shared libraries.  This option
11756 only affects @option{-mabicalls}.
11757
11758 All @option{-mabicalls} code has traditionally been position-independent,
11759 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
11760 as an extension, the GNU toolchain allows executables to use absolute
11761 accesses for locally-binding symbols.  It can also use shorter GP
11762 initialization sequences and generate direct calls to locally-defined
11763 functions.  This mode is selected by @option{-mno-shared}.
11764
11765 @option{-mno-shared} depends on binutils 2.16 or higher and generates
11766 objects that can only be linked by the GNU linker.  However, the option
11767 does not affect the ABI of the final executable; it only affects the ABI
11768 of relocatable objects.  Using @option{-mno-shared} will generally make
11769 executables both smaller and quicker.
11770
11771 @option{-mshared} is the default.
11772
11773 @item -mxgot
11774 @itemx -mno-xgot
11775 @opindex mxgot
11776 @opindex mno-xgot
11777 Lift (do not lift) the usual restrictions on the size of the global
11778 offset table.
11779
11780 GCC normally uses a single instruction to load values from the GOT@.
11781 While this is relatively efficient, it will only work if the GOT
11782 is smaller than about 64k.  Anything larger will cause the linker
11783 to report an error such as:
11784
11785 @cindex relocation truncated to fit (MIPS)
11786 @smallexample
11787 relocation truncated to fit: R_MIPS_GOT16 foobar
11788 @end smallexample
11789
11790 If this happens, you should recompile your code with @option{-mxgot}.
11791 It should then work with very large GOTs, although it will also be
11792 less efficient, since it will take three instructions to fetch the
11793 value of a global symbol.
11794
11795 Note that some linkers can create multiple GOTs.  If you have such a
11796 linker, you should only need to use @option{-mxgot} when a single object
11797 file accesses more than 64k's worth of GOT entries.  Very few do.
11798
11799 These options have no effect unless GCC is generating position
11800 independent code.
11801
11802 @item -mgp32
11803 @opindex mgp32
11804 Assume that general-purpose registers are 32 bits wide.
11805
11806 @item -mgp64
11807 @opindex mgp64
11808 Assume that general-purpose registers are 64 bits wide.
11809
11810 @item -mfp32
11811 @opindex mfp32
11812 Assume that floating-point registers are 32 bits wide.
11813
11814 @item -mfp64
11815 @opindex mfp64
11816 Assume that floating-point registers are 64 bits wide.
11817
11818 @item -mhard-float
11819 @opindex mhard-float
11820 Use floating-point coprocessor instructions.
11821
11822 @item -msoft-float
11823 @opindex msoft-float
11824 Do not use floating-point coprocessor instructions.  Implement
11825 floating-point calculations using library calls instead.
11826
11827 @item -msingle-float
11828 @opindex msingle-float
11829 Assume that the floating-point coprocessor only supports single-precision
11830 operations.
11831
11832 @item -mdouble-float
11833 @opindex mdouble-float
11834 Assume that the floating-point coprocessor supports double-precision
11835 operations.  This is the default.
11836
11837 @item -mllsc
11838 @itemx -mno-llsc
11839 @opindex mllsc
11840 @opindex mno-llsc
11841 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
11842 implement atomic memory built-in functions.  When neither option is
11843 specified, GCC will use the instructions if the target architecture
11844 supports them.
11845
11846 @option{-mllsc} is useful if the runtime environment can emulate the
11847 instructions and @option{-mno-llsc} can be useful when compiling for
11848 nonstandard ISAs.  You can make either option the default by
11849 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
11850 respectively.  @option{--with-llsc} is the default for some
11851 configurations; see the installation documentation for details.
11852
11853 @item -mdsp
11854 @itemx -mno-dsp
11855 @opindex mdsp
11856 @opindex mno-dsp
11857 Use (do not use) revision 1 of the MIPS DSP ASE.
11858 @xref{MIPS DSP Built-in Functions}.  This option defines the
11859 preprocessor macro @samp{__mips_dsp}.  It also defines
11860 @samp{__mips_dsp_rev} to 1.
11861
11862 @item -mdspr2
11863 @itemx -mno-dspr2
11864 @opindex mdspr2
11865 @opindex mno-dspr2
11866 Use (do not use) revision 2 of the MIPS DSP ASE.
11867 @xref{MIPS DSP Built-in Functions}.  This option defines the
11868 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
11869 It also defines @samp{__mips_dsp_rev} to 2.
11870
11871 @item -msmartmips
11872 @itemx -mno-smartmips
11873 @opindex msmartmips
11874 @opindex mno-smartmips
11875 Use (do not use) the MIPS SmartMIPS ASE.
11876
11877 @item -mpaired-single
11878 @itemx -mno-paired-single
11879 @opindex mpaired-single
11880 @opindex mno-paired-single
11881 Use (do not use) paired-single floating-point instructions.
11882 @xref{MIPS Paired-Single Support}.  This option requires
11883 hardware floating-point support to be enabled.
11884
11885 @item -mdmx
11886 @itemx -mno-mdmx
11887 @opindex mdmx
11888 @opindex mno-mdmx
11889 Use (do not use) MIPS Digital Media Extension instructions.
11890 This option can only be used when generating 64-bit code and requires
11891 hardware floating-point support to be enabled.
11892
11893 @item -mips3d
11894 @itemx -mno-mips3d
11895 @opindex mips3d
11896 @opindex mno-mips3d
11897 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
11898 The option @option{-mips3d} implies @option{-mpaired-single}.
11899
11900 @item -mmt
11901 @itemx -mno-mt
11902 @opindex mmt
11903 @opindex mno-mt
11904 Use (do not use) MT Multithreading instructions.
11905
11906 @item -mlong64
11907 @opindex mlong64
11908 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
11909 an explanation of the default and the way that the pointer size is
11910 determined.
11911
11912 @item -mlong32
11913 @opindex mlong32
11914 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
11915
11916 The default size of @code{int}s, @code{long}s and pointers depends on
11917 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
11918 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
11919 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
11920 or the same size as integer registers, whichever is smaller.
11921
11922 @item -msym32
11923 @itemx -mno-sym32
11924 @opindex msym32
11925 @opindex mno-sym32
11926 Assume (do not assume) that all symbols have 32-bit values, regardless
11927 of the selected ABI@.  This option is useful in combination with
11928 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
11929 to generate shorter and faster references to symbolic addresses.
11930
11931 @item -G @var{num}
11932 @opindex G
11933 Put definitions of externally-visible data in a small data section
11934 if that data is no bigger than @var{num} bytes.  GCC can then access
11935 the data more efficiently; see @option{-mgpopt} for details.
11936
11937 The default @option{-G} option depends on the configuration.
11938
11939 @item -mlocal-sdata
11940 @itemx -mno-local-sdata
11941 @opindex mlocal-sdata
11942 @opindex mno-local-sdata
11943 Extend (do not extend) the @option{-G} behavior to local data too,
11944 such as to static variables in C.  @option{-mlocal-sdata} is the
11945 default for all configurations.
11946
11947 If the linker complains that an application is using too much small data,
11948 you might want to try rebuilding the less performance-critical parts with
11949 @option{-mno-local-sdata}.  You might also want to build large
11950 libraries with @option{-mno-local-sdata}, so that the libraries leave
11951 more room for the main program.
11952
11953 @item -mextern-sdata
11954 @itemx -mno-extern-sdata
11955 @opindex mextern-sdata
11956 @opindex mno-extern-sdata
11957 Assume (do not assume) that externally-defined data will be in
11958 a small data section if that data is within the @option{-G} limit.
11959 @option{-mextern-sdata} is the default for all configurations.
11960
11961 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
11962 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
11963 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
11964 is placed in a small data section.  If @var{Var} is defined by another
11965 module, you must either compile that module with a high-enough
11966 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
11967 definition.  If @var{Var} is common, you must link the application
11968 with a high-enough @option{-G} setting.
11969
11970 The easiest way of satisfying these restrictions is to compile
11971 and link every module with the same @option{-G} option.  However,
11972 you may wish to build a library that supports several different
11973 small data limits.  You can do this by compiling the library with
11974 the highest supported @option{-G} setting and additionally using
11975 @option{-mno-extern-sdata} to stop the library from making assumptions
11976 about externally-defined data.
11977
11978 @item -mgpopt
11979 @itemx -mno-gpopt
11980 @opindex mgpopt
11981 @opindex mno-gpopt
11982 Use (do not use) GP-relative accesses for symbols that are known to be
11983 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
11984 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
11985 configurations.
11986
11987 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
11988 might not hold the value of @code{_gp}.  For example, if the code is
11989 part of a library that might be used in a boot monitor, programs that
11990 call boot monitor routines will pass an unknown value in @code{$gp}.
11991 (In such situations, the boot monitor itself would usually be compiled
11992 with @option{-G0}.)
11993
11994 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
11995 @option{-mno-extern-sdata}.
11996
11997 @item -membedded-data
11998 @itemx -mno-embedded-data
11999 @opindex membedded-data
12000 @opindex mno-embedded-data
12001 Allocate variables to the read-only data section first if possible, then
12002 next in the small data section if possible, otherwise in data.  This gives
12003 slightly slower code than the default, but reduces the amount of RAM required
12004 when executing, and thus may be preferred for some embedded systems.
12005
12006 @item -muninit-const-in-rodata
12007 @itemx -mno-uninit-const-in-rodata
12008 @opindex muninit-const-in-rodata
12009 @opindex mno-uninit-const-in-rodata
12010 Put uninitialized @code{const} variables in the read-only data section.
12011 This option is only meaningful in conjunction with @option{-membedded-data}.
12012
12013 @item -mcode-readable=@var{setting}
12014 @opindex mcode-readable
12015 Specify whether GCC may generate code that reads from executable sections.
12016 There are three possible settings:
12017
12018 @table @gcctabopt
12019 @item -mcode-readable=yes
12020 Instructions may freely access executable sections.  This is the
12021 default setting.
12022
12023 @item -mcode-readable=pcrel
12024 MIPS16 PC-relative load instructions can access executable sections,
12025 but other instructions must not do so.  This option is useful on 4KSc
12026 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
12027 It is also useful on processors that can be configured to have a dual
12028 instruction/data SRAM interface and that, like the M4K, automatically
12029 redirect PC-relative loads to the instruction RAM.
12030
12031 @item -mcode-readable=no
12032 Instructions must not access executable sections.  This option can be
12033 useful on targets that are configured to have a dual instruction/data
12034 SRAM interface but that (unlike the M4K) do not automatically redirect
12035 PC-relative loads to the instruction RAM.
12036 @end table
12037
12038 @item -msplit-addresses
12039 @itemx -mno-split-addresses
12040 @opindex msplit-addresses
12041 @opindex mno-split-addresses
12042 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
12043 relocation operators.  This option has been superseded by
12044 @option{-mexplicit-relocs} but is retained for backwards compatibility.
12045
12046 @item -mexplicit-relocs
12047 @itemx -mno-explicit-relocs
12048 @opindex mexplicit-relocs
12049 @opindex mno-explicit-relocs
12050 Use (do not use) assembler relocation operators when dealing with symbolic
12051 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
12052 is to use assembler macros instead.
12053
12054 @option{-mexplicit-relocs} is the default if GCC was configured
12055 to use an assembler that supports relocation operators.
12056
12057 @item -mcheck-zero-division
12058 @itemx -mno-check-zero-division
12059 @opindex mcheck-zero-division
12060 @opindex mno-check-zero-division
12061 Trap (do not trap) on integer division by zero.
12062
12063 The default is @option{-mcheck-zero-division}.
12064
12065 @item -mdivide-traps
12066 @itemx -mdivide-breaks
12067 @opindex mdivide-traps
12068 @opindex mdivide-breaks
12069 MIPS systems check for division by zero by generating either a
12070 conditional trap or a break instruction.  Using traps results in
12071 smaller code, but is only supported on MIPS II and later.  Also, some
12072 versions of the Linux kernel have a bug that prevents trap from
12073 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
12074 allow conditional traps on architectures that support them and
12075 @option{-mdivide-breaks} to force the use of breaks.
12076
12077 The default is usually @option{-mdivide-traps}, but this can be
12078 overridden at configure time using @option{--with-divide=breaks}.
12079 Divide-by-zero checks can be completely disabled using
12080 @option{-mno-check-zero-division}.
12081
12082 @item -mmemcpy
12083 @itemx -mno-memcpy
12084 @opindex mmemcpy
12085 @opindex mno-memcpy
12086 Force (do not force) the use of @code{memcpy()} for non-trivial block
12087 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
12088 most constant-sized copies.
12089
12090 @item -mlong-calls
12091 @itemx -mno-long-calls
12092 @opindex mlong-calls
12093 @opindex mno-long-calls
12094 Disable (do not disable) use of the @code{jal} instruction.  Calling
12095 functions using @code{jal} is more efficient but requires the caller
12096 and callee to be in the same 256 megabyte segment.
12097
12098 This option has no effect on abicalls code.  The default is
12099 @option{-mno-long-calls}.
12100
12101 @item -mmad
12102 @itemx -mno-mad
12103 @opindex mmad
12104 @opindex mno-mad
12105 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
12106 instructions, as provided by the R4650 ISA@.
12107
12108 @item -mfused-madd
12109 @itemx -mno-fused-madd
12110 @opindex mfused-madd
12111 @opindex mno-fused-madd
12112 Enable (disable) use of the floating point multiply-accumulate
12113 instructions, when they are available.  The default is
12114 @option{-mfused-madd}.
12115
12116 When multiply-accumulate instructions are used, the intermediate
12117 product is calculated to infinite precision and is not subject to
12118 the FCSR Flush to Zero bit.  This may be undesirable in some
12119 circumstances.
12120
12121 @item -nocpp
12122 @opindex nocpp
12123 Tell the MIPS assembler to not run its preprocessor over user
12124 assembler files (with a @samp{.s} suffix) when assembling them.
12125
12126 @item -mfix-r4000
12127 @itemx -mno-fix-r4000
12128 @opindex mfix-r4000
12129 @opindex mno-fix-r4000
12130 Work around certain R4000 CPU errata:
12131 @itemize @minus
12132 @item
12133 A double-word or a variable shift may give an incorrect result if executed
12134 immediately after starting an integer division.
12135 @item
12136 A double-word or a variable shift may give an incorrect result if executed
12137 while an integer multiplication is in progress.
12138 @item
12139 An integer division may give an incorrect result if started in a delay slot
12140 of a taken branch or a jump.
12141 @end itemize
12142
12143 @item -mfix-r4400
12144 @itemx -mno-fix-r4400
12145 @opindex mfix-r4400
12146 @opindex mno-fix-r4400
12147 Work around certain R4400 CPU errata:
12148 @itemize @minus
12149 @item
12150 A double-word or a variable shift may give an incorrect result if executed
12151 immediately after starting an integer division.
12152 @end itemize
12153
12154 @item -mfix-vr4120
12155 @itemx -mno-fix-vr4120
12156 @opindex mfix-vr4120
12157 Work around certain VR4120 errata:
12158 @itemize @minus
12159 @item
12160 @code{dmultu} does not always produce the correct result.
12161 @item
12162 @code{div} and @code{ddiv} do not always produce the correct result if one
12163 of the operands is negative.
12164 @end itemize
12165 The workarounds for the division errata rely on special functions in
12166 @file{libgcc.a}.  At present, these functions are only provided by
12167 the @code{mips64vr*-elf} configurations.
12168
12169 Other VR4120 errata require a nop to be inserted between certain pairs of
12170 instructions.  These errata are handled by the assembler, not by GCC itself.
12171
12172 @item -mfix-vr4130
12173 @opindex mfix-vr4130
12174 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
12175 workarounds are implemented by the assembler rather than by GCC,
12176 although GCC will avoid using @code{mflo} and @code{mfhi} if the
12177 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
12178 instructions are available instead.
12179
12180 @item -mfix-sb1
12181 @itemx -mno-fix-sb1
12182 @opindex mfix-sb1
12183 Work around certain SB-1 CPU core errata.
12184 (This flag currently works around the SB-1 revision 2
12185 ``F1'' and ``F2'' floating point errata.)
12186
12187 @item -mflush-func=@var{func}
12188 @itemx -mno-flush-func
12189 @opindex mflush-func
12190 Specifies the function to call to flush the I and D caches, or to not
12191 call any such function.  If called, the function must take the same
12192 arguments as the common @code{_flush_func()}, that is, the address of the
12193 memory range for which the cache is being flushed, the size of the
12194 memory range, and the number 3 (to flush both caches).  The default
12195 depends on the target GCC was configured for, but commonly is either
12196 @samp{_flush_func} or @samp{__cpu_flush}.
12197
12198 @item mbranch-cost=@var{num}
12199 @opindex mbranch-cost
12200 Set the cost of branches to roughly @var{num} ``simple'' instructions.
12201 This cost is only a heuristic and is not guaranteed to produce
12202 consistent results across releases.  A zero cost redundantly selects
12203 the default, which is based on the @option{-mtune} setting.
12204
12205 @item -mbranch-likely
12206 @itemx -mno-branch-likely
12207 @opindex mbranch-likely
12208 @opindex mno-branch-likely
12209 Enable or disable use of Branch Likely instructions, regardless of the
12210 default for the selected architecture.  By default, Branch Likely
12211 instructions may be generated if they are supported by the selected
12212 architecture.  An exception is for the MIPS32 and MIPS64 architectures
12213 and processors which implement those architectures; for those, Branch
12214 Likely instructions will not be generated by default because the MIPS32
12215 and MIPS64 architectures specifically deprecate their use.
12216
12217 @item -mfp-exceptions
12218 @itemx -mno-fp-exceptions
12219 @opindex mfp-exceptions
12220 Specifies whether FP exceptions are enabled.  This affects how we schedule
12221 FP instructions for some processors.  The default is that FP exceptions are
12222 enabled.
12223
12224 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
12225 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
12226 FP pipe.
12227
12228 @item -mvr4130-align
12229 @itemx -mno-vr4130-align
12230 @opindex mvr4130-align
12231 The VR4130 pipeline is two-way superscalar, but can only issue two
12232 instructions together if the first one is 8-byte aligned.  When this
12233 option is enabled, GCC will align pairs of instructions that it
12234 thinks should execute in parallel.
12235
12236 This option only has an effect when optimizing for the VR4130.
12237 It normally makes code faster, but at the expense of making it bigger.
12238 It is enabled by default at optimization level @option{-O3}.
12239 @end table
12240
12241 @node MMIX Options
12242 @subsection MMIX Options
12243 @cindex MMIX Options
12244
12245 These options are defined for the MMIX:
12246
12247 @table @gcctabopt
12248 @item -mlibfuncs
12249 @itemx -mno-libfuncs
12250 @opindex mlibfuncs
12251 @opindex mno-libfuncs
12252 Specify that intrinsic library functions are being compiled, passing all
12253 values in registers, no matter the size.
12254
12255 @item -mepsilon
12256 @itemx -mno-epsilon
12257 @opindex mepsilon
12258 @opindex mno-epsilon
12259 Generate floating-point comparison instructions that compare with respect
12260 to the @code{rE} epsilon register.
12261
12262 @item -mabi=mmixware
12263 @itemx -mabi=gnu
12264 @opindex mabi-mmixware
12265 @opindex mabi=gnu
12266 Generate code that passes function parameters and return values that (in
12267 the called function) are seen as registers @code{$0} and up, as opposed to
12268 the GNU ABI which uses global registers @code{$231} and up.
12269
12270 @item -mzero-extend
12271 @itemx -mno-zero-extend
12272 @opindex mzero-extend
12273 @opindex mno-zero-extend
12274 When reading data from memory in sizes shorter than 64 bits, use (do not
12275 use) zero-extending load instructions by default, rather than
12276 sign-extending ones.
12277
12278 @item -mknuthdiv
12279 @itemx -mno-knuthdiv
12280 @opindex mknuthdiv
12281 @opindex mno-knuthdiv
12282 Make the result of a division yielding a remainder have the same sign as
12283 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
12284 remainder follows the sign of the dividend.  Both methods are
12285 arithmetically valid, the latter being almost exclusively used.
12286
12287 @item -mtoplevel-symbols
12288 @itemx -mno-toplevel-symbols
12289 @opindex mtoplevel-symbols
12290 @opindex mno-toplevel-symbols
12291 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
12292 code can be used with the @code{PREFIX} assembly directive.
12293
12294 @item -melf
12295 @opindex melf
12296 Generate an executable in the ELF format, rather than the default
12297 @samp{mmo} format used by the @command{mmix} simulator.
12298
12299 @item -mbranch-predict
12300 @itemx -mno-branch-predict
12301 @opindex mbranch-predict
12302 @opindex mno-branch-predict
12303 Use (do not use) the probable-branch instructions, when static branch
12304 prediction indicates a probable branch.
12305
12306 @item -mbase-addresses
12307 @itemx -mno-base-addresses
12308 @opindex mbase-addresses
12309 @opindex mno-base-addresses
12310 Generate (do not generate) code that uses @emph{base addresses}.  Using a
12311 base address automatically generates a request (handled by the assembler
12312 and the linker) for a constant to be set up in a global register.  The
12313 register is used for one or more base address requests within the range 0
12314 to 255 from the value held in the register.  The generally leads to short
12315 and fast code, but the number of different data items that can be
12316 addressed is limited.  This means that a program that uses lots of static
12317 data may require @option{-mno-base-addresses}.
12318
12319 @item -msingle-exit
12320 @itemx -mno-single-exit
12321 @opindex msingle-exit
12322 @opindex mno-single-exit
12323 Force (do not force) generated code to have a single exit point in each
12324 function.
12325 @end table
12326
12327 @node MN10300 Options
12328 @subsection MN10300 Options
12329 @cindex MN10300 options
12330
12331 These @option{-m} options are defined for Matsushita MN10300 architectures:
12332
12333 @table @gcctabopt
12334 @item -mmult-bug
12335 @opindex mmult-bug
12336 Generate code to avoid bugs in the multiply instructions for the MN10300
12337 processors.  This is the default.
12338
12339 @item -mno-mult-bug
12340 @opindex mno-mult-bug
12341 Do not generate code to avoid bugs in the multiply instructions for the
12342 MN10300 processors.
12343
12344 @item -mam33
12345 @opindex mam33
12346 Generate code which uses features specific to the AM33 processor.
12347
12348 @item -mno-am33
12349 @opindex mno-am33
12350 Do not generate code which uses features specific to the AM33 processor.  This
12351 is the default.
12352
12353 @item -mreturn-pointer-on-d0
12354 @opindex mreturn-pointer-on-d0
12355 When generating a function which returns a pointer, return the pointer
12356 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
12357 only in a0, and attempts to call such functions without a prototype
12358 would result in errors.  Note that this option is on by default; use
12359 @option{-mno-return-pointer-on-d0} to disable it.
12360
12361 @item -mno-crt0
12362 @opindex mno-crt0
12363 Do not link in the C run-time initialization object file.
12364
12365 @item -mrelax
12366 @opindex mrelax
12367 Indicate to the linker that it should perform a relaxation optimization pass
12368 to shorten branches, calls and absolute memory addresses.  This option only
12369 has an effect when used on the command line for the final link step.
12370
12371 This option makes symbolic debugging impossible.
12372 @end table
12373
12374 @node MT Options
12375 @subsection MT Options
12376 @cindex MT options
12377
12378 These @option{-m} options are defined for Morpho MT architectures:
12379
12380 @table @gcctabopt
12381
12382 @item -march=@var{cpu-type}
12383 @opindex march
12384 Generate code that will run on @var{cpu-type}, which is the name of a system
12385 representing a certain processor type.  Possible values for
12386 @var{cpu-type} are @samp{ms1-64-001}, @samp{ms1-16-002},
12387 @samp{ms1-16-003} and @samp{ms2}.
12388
12389 When this option is not used, the default is @option{-march=ms1-16-002}.
12390
12391 @item -mbacc
12392 @opindex mbacc
12393 Use byte loads and stores when generating code.
12394
12395 @item -mno-bacc
12396 @opindex mno-bacc
12397 Do not use byte loads and stores when generating code.
12398
12399 @item -msim
12400 @opindex msim
12401 Use simulator runtime
12402
12403 @item -mno-crt0
12404 @opindex mno-crt0
12405 Do not link in the C run-time initialization object file
12406 @file{crti.o}.  Other run-time initialization and termination files
12407 such as @file{startup.o} and @file{exit.o} are still included on the
12408 linker command line.
12409
12410 @end table
12411
12412 @node PDP-11 Options
12413 @subsection PDP-11 Options
12414 @cindex PDP-11 Options
12415
12416 These options are defined for the PDP-11:
12417
12418 @table @gcctabopt
12419 @item -mfpu
12420 @opindex mfpu
12421 Use hardware FPP floating point.  This is the default.  (FIS floating
12422 point on the PDP-11/40 is not supported.)
12423
12424 @item -msoft-float
12425 @opindex msoft-float
12426 Do not use hardware floating point.
12427
12428 @item -mac0
12429 @opindex mac0
12430 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
12431
12432 @item -mno-ac0
12433 @opindex mno-ac0
12434 Return floating-point results in memory.  This is the default.
12435
12436 @item -m40
12437 @opindex m40
12438 Generate code for a PDP-11/40.
12439
12440 @item -m45
12441 @opindex m45
12442 Generate code for a PDP-11/45.  This is the default.
12443
12444 @item -m10
12445 @opindex m10
12446 Generate code for a PDP-11/10.
12447
12448 @item -mbcopy-builtin
12449 @opindex bcopy-builtin
12450 Use inline @code{movmemhi} patterns for copying memory.  This is the
12451 default.
12452
12453 @item -mbcopy
12454 @opindex mbcopy
12455 Do not use inline @code{movmemhi} patterns for copying memory.
12456
12457 @item -mint16
12458 @itemx -mno-int32
12459 @opindex mint16
12460 @opindex mno-int32
12461 Use 16-bit @code{int}.  This is the default.
12462
12463 @item -mint32
12464 @itemx -mno-int16
12465 @opindex mint32
12466 @opindex mno-int16
12467 Use 32-bit @code{int}.
12468
12469 @item -mfloat64
12470 @itemx -mno-float32
12471 @opindex mfloat64
12472 @opindex mno-float32
12473 Use 64-bit @code{float}.  This is the default.
12474
12475 @item -mfloat32
12476 @itemx -mno-float64
12477 @opindex mfloat32
12478 @opindex mno-float64
12479 Use 32-bit @code{float}.
12480
12481 @item -mabshi
12482 @opindex mabshi
12483 Use @code{abshi2} pattern.  This is the default.
12484
12485 @item -mno-abshi
12486 @opindex mno-abshi
12487 Do not use @code{abshi2} pattern.
12488
12489 @item -mbranch-expensive
12490 @opindex mbranch-expensive
12491 Pretend that branches are expensive.  This is for experimenting with
12492 code generation only.
12493
12494 @item -mbranch-cheap
12495 @opindex mbranch-cheap
12496 Do not pretend that branches are expensive.  This is the default.
12497
12498 @item -msplit
12499 @opindex msplit
12500 Generate code for a system with split I&D@.
12501
12502 @item -mno-split
12503 @opindex mno-split
12504 Generate code for a system without split I&D@.  This is the default.
12505
12506 @item -munix-asm
12507 @opindex munix-asm
12508 Use Unix assembler syntax.  This is the default when configured for
12509 @samp{pdp11-*-bsd}.
12510
12511 @item -mdec-asm
12512 @opindex mdec-asm
12513 Use DEC assembler syntax.  This is the default when configured for any
12514 PDP-11 target other than @samp{pdp11-*-bsd}.
12515 @end table
12516
12517 @node PowerPC Options
12518 @subsection PowerPC Options
12519 @cindex PowerPC options
12520
12521 These are listed under @xref{RS/6000 and PowerPC Options}.
12522
12523 @node RS/6000 and PowerPC Options
12524 @subsection IBM RS/6000 and PowerPC Options
12525 @cindex RS/6000 and PowerPC Options
12526 @cindex IBM RS/6000 and PowerPC Options
12527
12528 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
12529 @table @gcctabopt
12530 @item -mpower
12531 @itemx -mno-power
12532 @itemx -mpower2
12533 @itemx -mno-power2
12534 @itemx -mpowerpc
12535 @itemx -mno-powerpc
12536 @itemx -mpowerpc-gpopt
12537 @itemx -mno-powerpc-gpopt
12538 @itemx -mpowerpc-gfxopt
12539 @itemx -mno-powerpc-gfxopt
12540 @itemx -mpowerpc64
12541 @itemx -mno-powerpc64
12542 @itemx -mmfcrf
12543 @itemx -mno-mfcrf
12544 @itemx -mpopcntb
12545 @itemx -mno-popcntb
12546 @itemx -mfprnd
12547 @itemx -mno-fprnd
12548 @itemx -mcmpb
12549 @itemx -mno-cmpb
12550 @itemx -mmfpgpr
12551 @itemx -mno-mfpgpr
12552 @itemx -mdfp
12553 @itemx -mno-dfp
12554 @opindex mpower
12555 @opindex mno-power
12556 @opindex mpower2
12557 @opindex mno-power2
12558 @opindex mpowerpc
12559 @opindex mno-powerpc
12560 @opindex mpowerpc-gpopt
12561 @opindex mno-powerpc-gpopt
12562 @opindex mpowerpc-gfxopt
12563 @opindex mno-powerpc-gfxopt
12564 @opindex mpowerpc64
12565 @opindex mno-powerpc64
12566 @opindex mmfcrf
12567 @opindex mno-mfcrf
12568 @opindex mpopcntb
12569 @opindex mno-popcntb
12570 @opindex mfprnd
12571 @opindex mno-fprnd
12572 @opindex mcmpb
12573 @opindex mno-cmpb
12574 @opindex mmfpgpr
12575 @opindex mno-mfpgpr
12576 @opindex mdfp
12577 @opindex mno-dfp
12578 GCC supports two related instruction set architectures for the
12579 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
12580 instructions supported by the @samp{rios} chip set used in the original
12581 RS/6000 systems and the @dfn{PowerPC} instruction set is the
12582 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
12583 the IBM 4xx, 6xx, and follow-on microprocessors.
12584
12585 Neither architecture is a subset of the other.  However there is a
12586 large common subset of instructions supported by both.  An MQ
12587 register is included in processors supporting the POWER architecture.
12588
12589 You use these options to specify which instructions are available on the
12590 processor you are using.  The default value of these options is
12591 determined when configuring GCC@.  Specifying the
12592 @option{-mcpu=@var{cpu_type}} overrides the specification of these
12593 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
12594 rather than the options listed above.
12595
12596 The @option{-mpower} option allows GCC to generate instructions that
12597 are found only in the POWER architecture and to use the MQ register.
12598 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
12599 to generate instructions that are present in the POWER2 architecture but
12600 not the original POWER architecture.
12601
12602 The @option{-mpowerpc} option allows GCC to generate instructions that
12603 are found only in the 32-bit subset of the PowerPC architecture.
12604 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
12605 GCC to use the optional PowerPC architecture instructions in the
12606 General Purpose group, including floating-point square root.  Specifying
12607 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
12608 use the optional PowerPC architecture instructions in the Graphics
12609 group, including floating-point select.
12610
12611 The @option{-mmfcrf} option allows GCC to generate the move from
12612 condition register field instruction implemented on the POWER4
12613 processor and other processors that support the PowerPC V2.01
12614 architecture.
12615 The @option{-mpopcntb} option allows GCC to generate the popcount and
12616 double precision FP reciprocal estimate instruction implemented on the
12617 POWER5 processor and other processors that support the PowerPC V2.02
12618 architecture.
12619 The @option{-mfprnd} option allows GCC to generate the FP round to
12620 integer instructions implemented on the POWER5+ processor and other
12621 processors that support the PowerPC V2.03 architecture.
12622 The @option{-mcmpb} option allows GCC to generate the compare bytes
12623 instruction implemented on the POWER6 processor and other processors
12624 that support the PowerPC V2.05 architecture.
12625 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
12626 general purpose register instructions implemented on the POWER6X
12627 processor and other processors that support the extended PowerPC V2.05
12628 architecture.
12629 The @option{-mdfp} option allows GCC to generate the decimal floating
12630 point instructions implemented on some POWER processors.
12631
12632 The @option{-mpowerpc64} option allows GCC to generate the additional
12633 64-bit instructions that are found in the full PowerPC64 architecture
12634 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
12635 @option{-mno-powerpc64}.
12636
12637 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
12638 will use only the instructions in the common subset of both
12639 architectures plus some special AIX common-mode calls, and will not use
12640 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
12641 permits GCC to use any instruction from either architecture and to
12642 allow use of the MQ register; specify this for the Motorola MPC601.
12643
12644 @item -mnew-mnemonics
12645 @itemx -mold-mnemonics
12646 @opindex mnew-mnemonics
12647 @opindex mold-mnemonics
12648 Select which mnemonics to use in the generated assembler code.  With
12649 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
12650 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
12651 assembler mnemonics defined for the POWER architecture.  Instructions
12652 defined in only one architecture have only one mnemonic; GCC uses that
12653 mnemonic irrespective of which of these options is specified.
12654
12655 GCC defaults to the mnemonics appropriate for the architecture in
12656 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
12657 value of these option.  Unless you are building a cross-compiler, you
12658 should normally not specify either @option{-mnew-mnemonics} or
12659 @option{-mold-mnemonics}, but should instead accept the default.
12660
12661 @item -mcpu=@var{cpu_type}
12662 @opindex mcpu
12663 Set architecture type, register usage, choice of mnemonics, and
12664 instruction scheduling parameters for machine type @var{cpu_type}.
12665 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
12666 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{505},
12667 @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
12668 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
12669 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
12670 @samp{860}, @samp{970}, @samp{8540}, @samp{ec603e}, @samp{G3},
12671 @samp{G4}, @samp{G5}, @samp{power}, @samp{power2}, @samp{power3},
12672 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6},
12673 @samp{power6x}, @samp{common}, @samp{powerpc}, @samp{powerpc64},
12674 @samp{rios}, @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
12675
12676 @option{-mcpu=common} selects a completely generic processor.  Code
12677 generated under this option will run on any POWER or PowerPC processor.
12678 GCC will use only the instructions in the common subset of both
12679 architectures, and will not use the MQ register.  GCC assumes a generic
12680 processor model for scheduling purposes.
12681
12682 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
12683 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
12684 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
12685 types, with an appropriate, generic processor model assumed for
12686 scheduling purposes.
12687
12688 The other options specify a specific processor.  Code generated under
12689 those options will run best on that processor, and may not run at all on
12690 others.
12691
12692 The @option{-mcpu} options automatically enable or disable the
12693 following options:
12694
12695 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
12696 -mnew-mnemonics  -mpopcntb  -mpower  -mpower2  -mpowerpc64 @gol
12697 -mpowerpc-gpopt  -mpowerpc-gfxopt  -mstring  -mmulhw  -mdlmzb  -mmfpgpr}
12698
12699 The particular options set for any particular CPU will vary between
12700 compiler versions, depending on what setting seems to produce optimal
12701 code for that CPU; it doesn't necessarily reflect the actual hardware's
12702 capabilities.  If you wish to set an individual option to a particular
12703 value, you may specify it after the @option{-mcpu} option, like
12704 @samp{-mcpu=970 -mno-altivec}.
12705
12706 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
12707 not enabled or disabled by the @option{-mcpu} option at present because
12708 AIX does not have full support for these options.  You may still
12709 enable or disable them individually if you're sure it'll work in your
12710 environment.
12711
12712 @item -mtune=@var{cpu_type}
12713 @opindex mtune
12714 Set the instruction scheduling parameters for machine type
12715 @var{cpu_type}, but do not set the architecture type, register usage, or
12716 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
12717 values for @var{cpu_type} are used for @option{-mtune} as for
12718 @option{-mcpu}.  If both are specified, the code generated will use the
12719 architecture, registers, and mnemonics set by @option{-mcpu}, but the
12720 scheduling parameters set by @option{-mtune}.
12721
12722 @item -mswdiv
12723 @itemx -mno-swdiv
12724 @opindex mswdiv
12725 @opindex mno-swdiv
12726 Generate code to compute division as reciprocal estimate and iterative
12727 refinement, creating opportunities for increased throughput.  This
12728 feature requires: optional PowerPC Graphics instruction set for single
12729 precision and FRE instruction for double precision, assuming divides
12730 cannot generate user-visible traps, and the domain values not include
12731 Infinities, denormals or zero denominator.
12732
12733 @item -maltivec
12734 @itemx -mno-altivec
12735 @opindex maltivec
12736 @opindex mno-altivec
12737 Generate code that uses (does not use) AltiVec instructions, and also
12738 enable the use of built-in functions that allow more direct access to
12739 the AltiVec instruction set.  You may also need to set
12740 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
12741 enhancements.
12742
12743 @item -mvrsave
12744 @item -mno-vrsave
12745 @opindex mvrsave
12746 @opindex mno-vrsave
12747 Generate VRSAVE instructions when generating AltiVec code.
12748
12749 @item -msecure-plt
12750 @opindex msecure-plt
12751 Generate code that allows ld and ld.so to build executables and shared
12752 libraries with non-exec .plt and .got sections.  This is a PowerPC
12753 32-bit SYSV ABI option.
12754
12755 @item -mbss-plt
12756 @opindex mbss-plt
12757 Generate code that uses a BSS .plt section that ld.so fills in, and
12758 requires .plt and .got sections that are both writable and executable.
12759 This is a PowerPC 32-bit SYSV ABI option.
12760
12761 @item -misel
12762 @itemx -mno-isel
12763 @opindex misel
12764 @opindex mno-isel
12765 This switch enables or disables the generation of ISEL instructions.
12766
12767 @item -misel=@var{yes/no}
12768 This switch has been deprecated.  Use @option{-misel} and
12769 @option{-mno-isel} instead.
12770
12771 @item -mspe
12772 @itemx -mno-spe
12773 @opindex mspe
12774 @opindex mno-spe
12775 This switch enables or disables the generation of SPE simd
12776 instructions.
12777
12778 @item -mpaired
12779 @itemx -mno-paired
12780 @opindex mpaired
12781 @opindex mno-paired
12782 This switch enables or disables the generation of PAIRED simd
12783 instructions.
12784
12785 @item -mspe=@var{yes/no}
12786 This option has been deprecated.  Use @option{-mspe} and
12787 @option{-mno-spe} instead.
12788
12789 @item -mfloat-gprs=@var{yes/single/double/no}
12790 @itemx -mfloat-gprs
12791 @opindex mfloat-gprs
12792 This switch enables or disables the generation of floating point
12793 operations on the general purpose registers for architectures that
12794 support it.
12795
12796 The argument @var{yes} or @var{single} enables the use of
12797 single-precision floating point operations.
12798
12799 The argument @var{double} enables the use of single and
12800 double-precision floating point operations.
12801
12802 The argument @var{no} disables floating point operations on the
12803 general purpose registers.
12804
12805 This option is currently only available on the MPC854x.
12806
12807 @item -m32
12808 @itemx -m64
12809 @opindex m32
12810 @opindex m64
12811 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
12812 targets (including GNU/Linux).  The 32-bit environment sets int, long
12813 and pointer to 32 bits and generates code that runs on any PowerPC
12814 variant.  The 64-bit environment sets int to 32 bits and long and
12815 pointer to 64 bits, and generates code for PowerPC64, as for
12816 @option{-mpowerpc64}.
12817
12818 @item -mfull-toc
12819 @itemx -mno-fp-in-toc
12820 @itemx -mno-sum-in-toc
12821 @itemx -mminimal-toc
12822 @opindex mfull-toc
12823 @opindex mno-fp-in-toc
12824 @opindex mno-sum-in-toc
12825 @opindex mminimal-toc
12826 Modify generation of the TOC (Table Of Contents), which is created for
12827 every executable file.  The @option{-mfull-toc} option is selected by
12828 default.  In that case, GCC will allocate at least one TOC entry for
12829 each unique non-automatic variable reference in your program.  GCC
12830 will also place floating-point constants in the TOC@.  However, only
12831 16,384 entries are available in the TOC@.
12832
12833 If you receive a linker error message that saying you have overflowed
12834 the available TOC space, you can reduce the amount of TOC space used
12835 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
12836 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
12837 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
12838 generate code to calculate the sum of an address and a constant at
12839 run-time instead of putting that sum into the TOC@.  You may specify one
12840 or both of these options.  Each causes GCC to produce very slightly
12841 slower and larger code at the expense of conserving TOC space.
12842
12843 If you still run out of space in the TOC even when you specify both of
12844 these options, specify @option{-mminimal-toc} instead.  This option causes
12845 GCC to make only one TOC entry for every file.  When you specify this
12846 option, GCC will produce code that is slower and larger but which
12847 uses extremely little TOC space.  You may wish to use this option
12848 only on files that contain less frequently executed code.
12849
12850 @item -maix64
12851 @itemx -maix32
12852 @opindex maix64
12853 @opindex maix32
12854 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
12855 @code{long} type, and the infrastructure needed to support them.
12856 Specifying @option{-maix64} implies @option{-mpowerpc64} and
12857 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
12858 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
12859
12860 @item -mxl-compat
12861 @itemx -mno-xl-compat
12862 @opindex mxl-compat
12863 @opindex mno-xl-compat
12864 Produce code that conforms more closely to IBM XL compiler semantics
12865 when using AIX-compatible ABI.  Pass floating-point arguments to
12866 prototyped functions beyond the register save area (RSA) on the stack
12867 in addition to argument FPRs.  Do not assume that most significant
12868 double in 128-bit long double value is properly rounded when comparing
12869 values and converting to double.  Use XL symbol names for long double
12870 support routines.
12871
12872 The AIX calling convention was extended but not initially documented to
12873 handle an obscure K&R C case of calling a function that takes the
12874 address of its arguments with fewer arguments than declared.  IBM XL
12875 compilers access floating point arguments which do not fit in the
12876 RSA from the stack when a subroutine is compiled without
12877 optimization.  Because always storing floating-point arguments on the
12878 stack is inefficient and rarely needed, this option is not enabled by
12879 default and only is necessary when calling subroutines compiled by IBM
12880 XL compilers without optimization.
12881
12882 @item -mpe
12883 @opindex mpe
12884 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
12885 application written to use message passing with special startup code to
12886 enable the application to run.  The system must have PE installed in the
12887 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
12888 must be overridden with the @option{-specs=} option to specify the
12889 appropriate directory location.  The Parallel Environment does not
12890 support threads, so the @option{-mpe} option and the @option{-pthread}
12891 option are incompatible.
12892
12893 @item -malign-natural
12894 @itemx -malign-power
12895 @opindex malign-natural
12896 @opindex malign-power
12897 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
12898 @option{-malign-natural} overrides the ABI-defined alignment of larger
12899 types, such as floating-point doubles, on their natural size-based boundary.
12900 The option @option{-malign-power} instructs GCC to follow the ABI-specified
12901 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
12902
12903 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
12904 is not supported.
12905
12906 @item -msoft-float
12907 @itemx -mhard-float
12908 @opindex msoft-float
12909 @opindex mhard-float
12910 Generate code that does not use (uses) the floating-point register set.
12911 Software floating point emulation is provided if you use the
12912 @option{-msoft-float} option, and pass the option to GCC when linking.
12913
12914 @item -mmultiple
12915 @itemx -mno-multiple
12916 @opindex mmultiple
12917 @opindex mno-multiple
12918 Generate code that uses (does not use) the load multiple word
12919 instructions and the store multiple word instructions.  These
12920 instructions are generated by default on POWER systems, and not
12921 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
12922 endian PowerPC systems, since those instructions do not work when the
12923 processor is in little endian mode.  The exceptions are PPC740 and
12924 PPC750 which permit the instructions usage in little endian mode.
12925
12926 @item -mstring
12927 @itemx -mno-string
12928 @opindex mstring
12929 @opindex mno-string
12930 Generate code that uses (does not use) the load string instructions
12931 and the store string word instructions to save multiple registers and
12932 do small block moves.  These instructions are generated by default on
12933 POWER systems, and not generated on PowerPC systems.  Do not use
12934 @option{-mstring} on little endian PowerPC systems, since those
12935 instructions do not work when the processor is in little endian mode.
12936 The exceptions are PPC740 and PPC750 which permit the instructions
12937 usage in little endian mode.
12938
12939 @item -mupdate
12940 @itemx -mno-update
12941 @opindex mupdate
12942 @opindex mno-update
12943 Generate code that uses (does not use) the load or store instructions
12944 that update the base register to the address of the calculated memory
12945 location.  These instructions are generated by default.  If you use
12946 @option{-mno-update}, there is a small window between the time that the
12947 stack pointer is updated and the address of the previous frame is
12948 stored, which means code that walks the stack frame across interrupts or
12949 signals may get corrupted data.
12950
12951 @item -mfused-madd
12952 @itemx -mno-fused-madd
12953 @opindex mfused-madd
12954 @opindex mno-fused-madd
12955 Generate code that uses (does not use) the floating point multiply and
12956 accumulate instructions.  These instructions are generated by default if
12957 hardware floating is used.
12958
12959 @item -mmulhw
12960 @itemx -mno-mulhw
12961 @opindex mmulhw
12962 @opindex mno-mulhw
12963 Generate code that uses (does not use) the half-word multiply and
12964 multiply-accumulate instructions on the IBM 405 and 440 processors.
12965 These instructions are generated by default when targetting those
12966 processors.
12967
12968 @item -mdlmzb
12969 @itemx -mno-dlmzb
12970 @opindex mdlmzb
12971 @opindex mno-dlmzb
12972 Generate code that uses (does not use) the string-search @samp{dlmzb}
12973 instruction on the IBM 405 and 440 processors.  This instruction is
12974 generated by default when targetting those processors.
12975
12976 @item -mno-bit-align
12977 @itemx -mbit-align
12978 @opindex mno-bit-align
12979 @opindex mbit-align
12980 On System V.4 and embedded PowerPC systems do not (do) force structures
12981 and unions that contain bit-fields to be aligned to the base type of the
12982 bit-field.
12983
12984 For example, by default a structure containing nothing but 8
12985 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
12986 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
12987 the structure would be aligned to a 1 byte boundary and be one byte in
12988 size.
12989
12990 @item -mno-strict-align
12991 @itemx -mstrict-align
12992 @opindex mno-strict-align
12993 @opindex mstrict-align
12994 On System V.4 and embedded PowerPC systems do not (do) assume that
12995 unaligned memory references will be handled by the system.
12996
12997 @item -mrelocatable
12998 @itemx -mno-relocatable
12999 @opindex mrelocatable
13000 @opindex mno-relocatable
13001 On embedded PowerPC systems generate code that allows (does not allow)
13002 the program to be relocated to a different address at runtime.  If you
13003 use @option{-mrelocatable} on any module, all objects linked together must
13004 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
13005
13006 @item -mrelocatable-lib
13007 @itemx -mno-relocatable-lib
13008 @opindex mrelocatable-lib
13009 @opindex mno-relocatable-lib
13010 On embedded PowerPC systems generate code that allows (does not allow)
13011 the program to be relocated to a different address at runtime.  Modules
13012 compiled with @option{-mrelocatable-lib} can be linked with either modules
13013 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
13014 with modules compiled with the @option{-mrelocatable} options.
13015
13016 @item -mno-toc
13017 @itemx -mtoc
13018 @opindex mno-toc
13019 @opindex mtoc
13020 On System V.4 and embedded PowerPC systems do not (do) assume that
13021 register 2 contains a pointer to a global area pointing to the addresses
13022 used in the program.
13023
13024 @item -mlittle
13025 @itemx -mlittle-endian
13026 @opindex mlittle
13027 @opindex mlittle-endian
13028 On System V.4 and embedded PowerPC systems compile code for the
13029 processor in little endian mode.  The @option{-mlittle-endian} option is
13030 the same as @option{-mlittle}.
13031
13032 @item -mbig
13033 @itemx -mbig-endian
13034 @opindex mbig
13035 @opindex mbig-endian
13036 On System V.4 and embedded PowerPC systems compile code for the
13037 processor in big endian mode.  The @option{-mbig-endian} option is
13038 the same as @option{-mbig}.
13039
13040 @item -mdynamic-no-pic
13041 @opindex mdynamic-no-pic
13042 On Darwin and Mac OS X systems, compile code so that it is not
13043 relocatable, but that its external references are relocatable.  The
13044 resulting code is suitable for applications, but not shared
13045 libraries.
13046
13047 @item -mprioritize-restricted-insns=@var{priority}
13048 @opindex mprioritize-restricted-insns
13049 This option controls the priority that is assigned to
13050 dispatch-slot restricted instructions during the second scheduling
13051 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
13052 @var{no/highest/second-highest} priority to dispatch slot restricted
13053 instructions.
13054
13055 @item -msched-costly-dep=@var{dependence_type}
13056 @opindex msched-costly-dep
13057 This option controls which dependences are considered costly
13058 by the target during instruction scheduling.  The argument
13059 @var{dependence_type} takes one of the following values:
13060 @var{no}: no dependence is costly,
13061 @var{all}: all dependences are costly,
13062 @var{true_store_to_load}: a true dependence from store to load is costly,
13063 @var{store_to_load}: any dependence from store to load is costly,
13064 @var{number}: any dependence which latency >= @var{number} is costly.
13065
13066 @item -minsert-sched-nops=@var{scheme}
13067 @opindex minsert-sched-nops
13068 This option controls which nop insertion scheme will be used during
13069 the second scheduling pass.  The argument @var{scheme} takes one of the
13070 following values:
13071 @var{no}: Don't insert nops.
13072 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
13073 according to the scheduler's grouping.
13074 @var{regroup_exact}: Insert nops to force costly dependent insns into
13075 separate groups.  Insert exactly as many nops as needed to force an insn
13076 to a new group, according to the estimated processor grouping.
13077 @var{number}: Insert nops to force costly dependent insns into
13078 separate groups.  Insert @var{number} nops to force an insn to a new group.
13079
13080 @item -mcall-sysv
13081 @opindex mcall-sysv
13082 On System V.4 and embedded PowerPC systems compile code using calling
13083 conventions that adheres to the March 1995 draft of the System V
13084 Application Binary Interface, PowerPC processor supplement.  This is the
13085 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
13086
13087 @item -mcall-sysv-eabi
13088 @opindex mcall-sysv-eabi
13089 Specify both @option{-mcall-sysv} and @option{-meabi} options.
13090
13091 @item -mcall-sysv-noeabi
13092 @opindex mcall-sysv-noeabi
13093 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
13094
13095 @item -mcall-solaris
13096 @opindex mcall-solaris
13097 On System V.4 and embedded PowerPC systems compile code for the Solaris
13098 operating system.
13099
13100 @item -mcall-linux
13101 @opindex mcall-linux
13102 On System V.4 and embedded PowerPC systems compile code for the
13103 Linux-based GNU system.
13104
13105 @item -mcall-gnu
13106 @opindex mcall-gnu
13107 On System V.4 and embedded PowerPC systems compile code for the
13108 Hurd-based GNU system.
13109
13110 @item -mcall-netbsd
13111 @opindex mcall-netbsd
13112 On System V.4 and embedded PowerPC systems compile code for the
13113 NetBSD operating system.
13114
13115 @item -maix-struct-return
13116 @opindex maix-struct-return
13117 Return all structures in memory (as specified by the AIX ABI)@.
13118
13119 @item -msvr4-struct-return
13120 @opindex msvr4-struct-return
13121 Return structures smaller than 8 bytes in registers (as specified by the
13122 SVR4 ABI)@.
13123
13124 @item -mabi=@var{abi-type}
13125 @opindex mabi
13126 Extend the current ABI with a particular extension, or remove such extension.
13127 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
13128 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
13129
13130 @item -mabi=spe
13131 @opindex mabi=spe
13132 Extend the current ABI with SPE ABI extensions.  This does not change
13133 the default ABI, instead it adds the SPE ABI extensions to the current
13134 ABI@.
13135
13136 @item -mabi=no-spe
13137 @opindex mabi=no-spe
13138 Disable Booke SPE ABI extensions for the current ABI@.
13139
13140 @item -mabi=ibmlongdouble
13141 @opindex mabi=ibmlongdouble
13142 Change the current ABI to use IBM extended precision long double.
13143 This is a PowerPC 32-bit SYSV ABI option.
13144
13145 @item -mabi=ieeelongdouble
13146 @opindex mabi=ieeelongdouble
13147 Change the current ABI to use IEEE extended precision long double.
13148 This is a PowerPC 32-bit Linux ABI option.
13149
13150 @item -mprototype
13151 @itemx -mno-prototype
13152 @opindex mprototype
13153 @opindex mno-prototype
13154 On System V.4 and embedded PowerPC systems assume that all calls to
13155 variable argument functions are properly prototyped.  Otherwise, the
13156 compiler must insert an instruction before every non prototyped call to
13157 set or clear bit 6 of the condition code register (@var{CR}) to
13158 indicate whether floating point values were passed in the floating point
13159 registers in case the function takes a variable arguments.  With
13160 @option{-mprototype}, only calls to prototyped variable argument functions
13161 will set or clear the bit.
13162
13163 @item -msim
13164 @opindex msim
13165 On embedded PowerPC systems, assume that the startup module is called
13166 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
13167 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}.
13168 configurations.
13169
13170 @item -mmvme
13171 @opindex mmvme
13172 On embedded PowerPC systems, assume that the startup module is called
13173 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
13174 @file{libc.a}.
13175
13176 @item -mads
13177 @opindex mads
13178 On embedded PowerPC systems, assume that the startup module is called
13179 @file{crt0.o} and the standard C libraries are @file{libads.a} and
13180 @file{libc.a}.
13181
13182 @item -myellowknife
13183 @opindex myellowknife
13184 On embedded PowerPC systems, assume that the startup module is called
13185 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
13186 @file{libc.a}.
13187
13188 @item -mvxworks
13189 @opindex mvxworks
13190 On System V.4 and embedded PowerPC systems, specify that you are
13191 compiling for a VxWorks system.
13192
13193 @item -mwindiss
13194 @opindex mwindiss
13195 Specify that you are compiling for the WindISS simulation environment.
13196
13197 @item -memb
13198 @opindex memb
13199 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
13200 header to indicate that @samp{eabi} extended relocations are used.
13201
13202 @item -meabi
13203 @itemx -mno-eabi
13204 @opindex meabi
13205 @opindex mno-eabi
13206 On System V.4 and embedded PowerPC systems do (do not) adhere to the
13207 Embedded Applications Binary Interface (eabi) which is a set of
13208 modifications to the System V.4 specifications.  Selecting @option{-meabi}
13209 means that the stack is aligned to an 8 byte boundary, a function
13210 @code{__eabi} is called to from @code{main} to set up the eabi
13211 environment, and the @option{-msdata} option can use both @code{r2} and
13212 @code{r13} to point to two separate small data areas.  Selecting
13213 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
13214 do not call an initialization function from @code{main}, and the
13215 @option{-msdata} option will only use @code{r13} to point to a single
13216 small data area.  The @option{-meabi} option is on by default if you
13217 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
13218
13219 @item -msdata=eabi
13220 @opindex msdata=eabi
13221 On System V.4 and embedded PowerPC systems, put small initialized
13222 @code{const} global and static data in the @samp{.sdata2} section, which
13223 is pointed to by register @code{r2}.  Put small initialized
13224 non-@code{const} global and static data in the @samp{.sdata} section,
13225 which is pointed to by register @code{r13}.  Put small uninitialized
13226 global and static data in the @samp{.sbss} section, which is adjacent to
13227 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
13228 incompatible with the @option{-mrelocatable} option.  The
13229 @option{-msdata=eabi} option also sets the @option{-memb} option.
13230
13231 @item -msdata=sysv
13232 @opindex msdata=sysv
13233 On System V.4 and embedded PowerPC systems, put small global and static
13234 data in the @samp{.sdata} section, which is pointed to by register
13235 @code{r13}.  Put small uninitialized global and static data in the
13236 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
13237 The @option{-msdata=sysv} option is incompatible with the
13238 @option{-mrelocatable} option.
13239
13240 @item -msdata=default
13241 @itemx -msdata
13242 @opindex msdata=default
13243 @opindex msdata
13244 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
13245 compile code the same as @option{-msdata=eabi}, otherwise compile code the
13246 same as @option{-msdata=sysv}.
13247
13248 @item -msdata-data
13249 @opindex msdata-data
13250 On System V.4 and embedded PowerPC systems, put small global
13251 data in the @samp{.sdata} section.  Put small uninitialized global
13252 data in the @samp{.sbss} section.  Do not use register @code{r13}
13253 to address small data however.  This is the default behavior unless
13254 other @option{-msdata} options are used.
13255
13256 @item -msdata=none
13257 @itemx -mno-sdata
13258 @opindex msdata=none
13259 @opindex mno-sdata
13260 On embedded PowerPC systems, put all initialized global and static data
13261 in the @samp{.data} section, and all uninitialized data in the
13262 @samp{.bss} section.
13263
13264 @item -G @var{num}
13265 @opindex G
13266 @cindex smaller data references (PowerPC)
13267 @cindex .sdata/.sdata2 references (PowerPC)
13268 On embedded PowerPC systems, put global and static items less than or
13269 equal to @var{num} bytes into the small data or bss sections instead of
13270 the normal data or bss section.  By default, @var{num} is 8.  The
13271 @option{-G @var{num}} switch is also passed to the linker.
13272 All modules should be compiled with the same @option{-G @var{num}} value.
13273
13274 @item -mregnames
13275 @itemx -mno-regnames
13276 @opindex mregnames
13277 @opindex mno-regnames
13278 On System V.4 and embedded PowerPC systems do (do not) emit register
13279 names in the assembly language output using symbolic forms.
13280
13281 @item -mlongcall
13282 @itemx -mno-longcall
13283 @opindex mlongcall
13284 @opindex mno-longcall
13285 By default assume that all calls are far away so that a longer more
13286 expensive calling sequence is required.  This is required for calls
13287 further than 32 megabytes (33,554,432 bytes) from the current location.
13288 A short call will be generated if the compiler knows
13289 the call cannot be that far away.  This setting can be overridden by
13290 the @code{shortcall} function attribute, or by @code{#pragma
13291 longcall(0)}.
13292
13293 Some linkers are capable of detecting out-of-range calls and generating
13294 glue code on the fly.  On these systems, long calls are unnecessary and
13295 generate slower code.  As of this writing, the AIX linker can do this,
13296 as can the GNU linker for PowerPC/64.  It is planned to add this feature
13297 to the GNU linker for 32-bit PowerPC systems as well.
13298
13299 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
13300 callee, L42'', plus a ``branch island'' (glue code).  The two target
13301 addresses represent the callee and the ``branch island''.  The
13302 Darwin/PPC linker will prefer the first address and generate a ``bl
13303 callee'' if the PPC ``bl'' instruction will reach the callee directly;
13304 otherwise, the linker will generate ``bl L42'' to call the ``branch
13305 island''.  The ``branch island'' is appended to the body of the
13306 calling function; it computes the full 32-bit address of the callee
13307 and jumps to it.
13308
13309 On Mach-O (Darwin) systems, this option directs the compiler emit to
13310 the glue for every direct call, and the Darwin linker decides whether
13311 to use or discard it.
13312
13313 In the future, we may cause GCC to ignore all longcall specifications
13314 when the linker is known to generate glue.
13315
13316 @item -pthread
13317 @opindex pthread
13318 Adds support for multithreading with the @dfn{pthreads} library.
13319 This option sets flags for both the preprocessor and linker.
13320
13321 @end table
13322
13323 @node S/390 and zSeries Options
13324 @subsection S/390 and zSeries Options
13325 @cindex S/390 and zSeries Options
13326
13327 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
13328
13329 @table @gcctabopt
13330 @item -mhard-float
13331 @itemx -msoft-float
13332 @opindex mhard-float
13333 @opindex msoft-float
13334 Use (do not use) the hardware floating-point instructions and registers
13335 for floating-point operations.  When @option{-msoft-float} is specified,
13336 functions in @file{libgcc.a} will be used to perform floating-point
13337 operations.  When @option{-mhard-float} is specified, the compiler
13338 generates IEEE floating-point instructions.  This is the default.
13339
13340 @item -mlong-double-64
13341 @itemx -mlong-double-128
13342 @opindex mlong-double-64
13343 @opindex mlong-double-128
13344 These switches control the size of @code{long double} type. A size
13345 of 64bit makes the @code{long double} type equivalent to the @code{double}
13346 type. This is the default.
13347
13348 @item -mbackchain
13349 @itemx -mno-backchain
13350 @opindex mbackchain
13351 @opindex mno-backchain
13352 Store (do not store) the address of the caller's frame as backchain pointer
13353 into the callee's stack frame.
13354 A backchain may be needed to allow debugging using tools that do not understand
13355 DWARF-2 call frame information.
13356 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
13357 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
13358 the backchain is placed into the topmost word of the 96/160 byte register
13359 save area.
13360
13361 In general, code compiled with @option{-mbackchain} is call-compatible with
13362 code compiled with @option{-mmo-backchain}; however, use of the backchain
13363 for debugging purposes usually requires that the whole binary is built with
13364 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
13365 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13366 to build a linux kernel use @option{-msoft-float}.
13367
13368 The default is to not maintain the backchain.
13369
13370 @item -mpacked-stack
13371 @item -mno-packed-stack
13372 @opindex mpacked-stack
13373 @opindex mno-packed-stack
13374 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
13375 specified, the compiler uses the all fields of the 96/160 byte register save
13376 area only for their default purpose; unused fields still take up stack space.
13377 When @option{-mpacked-stack} is specified, register save slots are densely
13378 packed at the top of the register save area; unused space is reused for other
13379 purposes, allowing for more efficient use of the available stack space.
13380 However, when @option{-mbackchain} is also in effect, the topmost word of
13381 the save area is always used to store the backchain, and the return address
13382 register is always saved two words below the backchain.
13383
13384 As long as the stack frame backchain is not used, code generated with
13385 @option{-mpacked-stack} is call-compatible with code generated with
13386 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
13387 S/390 or zSeries generated code that uses the stack frame backchain at run
13388 time, not just for debugging purposes.  Such code is not call-compatible
13389 with code compiled with @option{-mpacked-stack}.  Also, note that the
13390 combination of @option{-mbackchain},
13391 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
13392 to build a linux kernel use @option{-msoft-float}.
13393
13394 The default is to not use the packed stack layout.
13395
13396 @item -msmall-exec
13397 @itemx -mno-small-exec
13398 @opindex msmall-exec
13399 @opindex mno-small-exec
13400 Generate (or do not generate) code using the @code{bras} instruction
13401 to do subroutine calls.
13402 This only works reliably if the total executable size does not
13403 exceed 64k.  The default is to use the @code{basr} instruction instead,
13404 which does not have this limitation.
13405
13406 @item -m64
13407 @itemx -m31
13408 @opindex m64
13409 @opindex m31
13410 When @option{-m31} is specified, generate code compliant to the
13411 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
13412 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
13413 particular to generate 64-bit instructions.  For the @samp{s390}
13414 targets, the default is @option{-m31}, while the @samp{s390x}
13415 targets default to @option{-m64}.
13416
13417 @item -mzarch
13418 @itemx -mesa
13419 @opindex mzarch
13420 @opindex mesa
13421 When @option{-mzarch} is specified, generate code using the
13422 instructions available on z/Architecture.
13423 When @option{-mesa} is specified, generate code using the
13424 instructions available on ESA/390.  Note that @option{-mesa} is
13425 not possible with @option{-m64}.
13426 When generating code compliant to the GNU/Linux for S/390 ABI,
13427 the default is @option{-mesa}.  When generating code compliant
13428 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
13429
13430 @item -mmvcle
13431 @itemx -mno-mvcle
13432 @opindex mmvcle
13433 @opindex mno-mvcle
13434 Generate (or do not generate) code using the @code{mvcle} instruction
13435 to perform block moves.  When @option{-mno-mvcle} is specified,
13436 use a @code{mvc} loop instead.  This is the default unless optimizing for
13437 size.
13438
13439 @item -mdebug
13440 @itemx -mno-debug
13441 @opindex mdebug
13442 @opindex mno-debug
13443 Print (or do not print) additional debug information when compiling.
13444 The default is to not print debug information.
13445
13446 @item -march=@var{cpu-type}
13447 @opindex march
13448 Generate code that will run on @var{cpu-type}, which is the name of a system
13449 representing a certain processor type.  Possible values for
13450 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
13451 When generating code using the instructions available on z/Architecture,
13452 the default is @option{-march=z900}.  Otherwise, the default is
13453 @option{-march=g5}.
13454
13455 @item -mtune=@var{cpu-type}
13456 @opindex mtune
13457 Tune to @var{cpu-type} everything applicable about the generated code,
13458 except for the ABI and the set of available instructions.
13459 The list of @var{cpu-type} values is the same as for @option{-march}.
13460 The default is the value used for @option{-march}.
13461
13462 @item -mtpf-trace
13463 @itemx -mno-tpf-trace
13464 @opindex mtpf-trace
13465 @opindex mno-tpf-trace
13466 Generate code that adds (does not add) in TPF OS specific branches to trace
13467 routines in the operating system.  This option is off by default, even
13468 when compiling for the TPF OS@.
13469
13470 @item -mfused-madd
13471 @itemx -mno-fused-madd
13472 @opindex mfused-madd
13473 @opindex mno-fused-madd
13474 Generate code that uses (does not use) the floating point multiply and
13475 accumulate instructions.  These instructions are generated by default if
13476 hardware floating point is used.
13477
13478 @item -mwarn-framesize=@var{framesize}
13479 @opindex mwarn-framesize
13480 Emit a warning if the current function exceeds the given frame size.  Because
13481 this is a compile time check it doesn't need to be a real problem when the program
13482 runs.  It is intended to identify functions which most probably cause
13483 a stack overflow.  It is useful to be used in an environment with limited stack
13484 size e.g.@: the linux kernel.
13485
13486 @item -mwarn-dynamicstack
13487 @opindex mwarn-dynamicstack
13488 Emit a warning if the function calls alloca or uses dynamically
13489 sized arrays.  This is generally a bad idea with a limited stack size.
13490
13491 @item -mstack-guard=@var{stack-guard}
13492 @item -mstack-size=@var{stack-size}
13493 @opindex mstack-guard
13494 @opindex mstack-size
13495 If these options are provided the s390 back end emits additional instructions in
13496 the function prologue which trigger a trap if the stack size is @var{stack-guard}
13497 bytes above the @var{stack-size} (remember that the stack on s390 grows downward).
13498 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
13499 the frame size of the compiled function is chosen.
13500 These options are intended to be used to help debugging stack overflow problems.
13501 The additionally emitted code causes only little overhead and hence can also be
13502 used in production like systems without greater performance degradation.  The given
13503 values have to be exact powers of 2 and @var{stack-size} has to be greater than
13504 @var{stack-guard} without exceeding 64k.
13505 In order to be efficient the extra code makes the assumption that the stack starts
13506 at an address aligned to the value given by @var{stack-size}.
13507 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
13508 @end table
13509
13510 @node Score Options
13511 @subsection Score Options
13512 @cindex Score Options
13513
13514 These options are defined for Score implementations:
13515
13516 @table @gcctabopt
13517 @item -meb
13518 @opindex meb
13519 Compile code for big endian mode.  This is the default.
13520
13521 @item -mel
13522 @opindex mel
13523 Compile code for little endian mode. 
13524
13525 @item -mnhwloop
13526 @opindex mnhwloop
13527 Disable generate bcnz instruction.
13528
13529 @item -muls
13530 @opindex muls
13531 Enable generate unaligned load and store instruction.
13532
13533 @item -mmac
13534 @opindex mmac
13535 Enable the use of multiply-accumulate instructions. Disabled by default. 
13536
13537 @item -mscore5
13538 @opindex mscore5
13539 Specify the SCORE5 as the target architecture.
13540
13541 @item -mscore5u
13542 @opindex mscore5u
13543 Specify the SCORE5U of the target architecture.
13544
13545 @item -mscore7
13546 @opindex mscore7
13547 Specify the SCORE7 as the target architecture. This is the default.
13548
13549 @item -mscore7d
13550 @opindex mscore7d
13551 Specify the SCORE7D as the target architecture.
13552 @end table
13553
13554 @node SH Options
13555 @subsection SH Options
13556
13557 These @samp{-m} options are defined for the SH implementations:
13558
13559 @table @gcctabopt
13560 @item -m1
13561 @opindex m1
13562 Generate code for the SH1.
13563
13564 @item -m2
13565 @opindex m2
13566 Generate code for the SH2.
13567
13568 @item -m2e
13569 Generate code for the SH2e.
13570
13571 @item -m3
13572 @opindex m3
13573 Generate code for the SH3.
13574
13575 @item -m3e
13576 @opindex m3e
13577 Generate code for the SH3e.
13578
13579 @item -m4-nofpu
13580 @opindex m4-nofpu
13581 Generate code for the SH4 without a floating-point unit.
13582
13583 @item -m4-single-only
13584 @opindex m4-single-only
13585 Generate code for the SH4 with a floating-point unit that only
13586 supports single-precision arithmetic.
13587
13588 @item -m4-single
13589 @opindex m4-single
13590 Generate code for the SH4 assuming the floating-point unit is in
13591 single-precision mode by default.
13592
13593 @item -m4
13594 @opindex m4
13595 Generate code for the SH4.
13596
13597 @item -m4a-nofpu
13598 @opindex m4a-nofpu
13599 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
13600 floating-point unit is not used.
13601
13602 @item -m4a-single-only
13603 @opindex m4a-single-only
13604 Generate code for the SH4a, in such a way that no double-precision
13605 floating point operations are used.
13606
13607 @item -m4a-single
13608 @opindex m4a-single
13609 Generate code for the SH4a assuming the floating-point unit is in
13610 single-precision mode by default.
13611
13612 @item -m4a
13613 @opindex m4a
13614 Generate code for the SH4a.
13615
13616 @item -m4al
13617 @opindex m4al
13618 Same as @option{-m4a-nofpu}, except that it implicitly passes
13619 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
13620 instructions at the moment.
13621
13622 @item -mb
13623 @opindex mb
13624 Compile code for the processor in big endian mode.
13625
13626 @item -ml
13627 @opindex ml
13628 Compile code for the processor in little endian mode.
13629
13630 @item -mdalign
13631 @opindex mdalign
13632 Align doubles at 64-bit boundaries.  Note that this changes the calling
13633 conventions, and thus some functions from the standard C library will
13634 not work unless you recompile it first with @option{-mdalign}.
13635
13636 @item -mrelax
13637 @opindex mrelax
13638 Shorten some address references at link time, when possible; uses the
13639 linker option @option{-relax}.
13640
13641 @item -mbigtable
13642 @opindex mbigtable
13643 Use 32-bit offsets in @code{switch} tables.  The default is to use
13644 16-bit offsets.
13645
13646 @item -mfmovd
13647 @opindex mfmovd
13648 Enable the use of the instruction @code{fmovd}.
13649
13650 @item -mhitachi
13651 @opindex mhitachi
13652 Comply with the calling conventions defined by Renesas.
13653
13654 @item -mrenesas
13655 @opindex mhitachi
13656 Comply with the calling conventions defined by Renesas.
13657
13658 @item -mno-renesas
13659 @opindex mhitachi
13660 Comply with the calling conventions defined for GCC before the Renesas
13661 conventions were available.  This option is the default for all
13662 targets of the SH toolchain except for @samp{sh-symbianelf}.
13663
13664 @item -mnomacsave
13665 @opindex mnomacsave
13666 Mark the @code{MAC} register as call-clobbered, even if
13667 @option{-mhitachi} is given.
13668
13669 @item -mieee
13670 @opindex mieee
13671 Increase IEEE-compliance of floating-point code.
13672 At the moment, this is equivalent to @option{-fno-finite-math-only}.
13673 When generating 16 bit SH opcodes, getting IEEE-conforming results for
13674 comparisons of NANs / infinities incurs extra overhead in every
13675 floating point comparison, therefore the default is set to
13676 @option{-ffinite-math-only}.
13677
13678 @item -minline-ic_invalidate
13679 @opindex minline-ic_invalidate
13680 Inline code to invalidate instruction cache entries after setting up
13681 nested function trampolines.
13682 This option has no effect if -musermode is in effect and the selected
13683 code generation option (e.g. -m4) does not allow the use of the icbi
13684 instruction.
13685 If the selected code generation option does not allow the use of the icbi
13686 instruction, and -musermode is not in effect, the inlined code will
13687 manipulate the instruction cache address array directly with an associative
13688 write.  This not only requires privileged mode, but it will also
13689 fail if the cache line had been mapped via the TLB and has become unmapped.
13690
13691 @item -misize
13692 @opindex misize
13693 Dump instruction size and location in the assembly code.
13694
13695 @item -mpadstruct
13696 @opindex mpadstruct
13697 This option is deprecated.  It pads structures to multiple of 4 bytes,
13698 which is incompatible with the SH ABI@.
13699
13700 @item -mspace
13701 @opindex mspace
13702 Optimize for space instead of speed.  Implied by @option{-Os}.
13703
13704 @item -mprefergot
13705 @opindex mprefergot
13706 When generating position-independent code, emit function calls using
13707 the Global Offset Table instead of the Procedure Linkage Table.
13708
13709 @item -musermode
13710 @opindex musermode
13711 Don't generate privileged mode only code; implies -mno-inline-ic_invalidate
13712 if the inlined code would not work in user mode.
13713 This is the default when the target is @code{sh-*-linux*}.
13714
13715 @item -multcost=@var{number}
13716 @opindex multcost=@var{number}
13717 Set the cost to assume for a multiply insn.
13718
13719 @item -mdiv=@var{strategy}
13720 @opindex mdiv=@var{strategy}
13721 Set the division strategy to use for SHmedia code.  @var{strategy} must be
13722 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
13723 inv:call2, inv:fp .
13724 "fp" performs the operation in floating point.  This has a very high latency,
13725 but needs only a few instructions, so it might be a good choice if
13726 your code has enough easily exploitable ILP to allow the compiler to
13727 schedule the floating point instructions together with other instructions.
13728 Division by zero causes a floating point exception.
13729 "inv" uses integer operations to calculate the inverse of the divisor,
13730 and then multiplies the dividend with the inverse.  This strategy allows
13731 cse and hoisting of the inverse calculation.  Division by zero calculates
13732 an unspecified result, but does not trap.
13733 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
13734 have been found, or if the entire operation has been hoisted to the same
13735 place, the last stages of the inverse calculation are intertwined with the
13736 final multiply to reduce the overall latency, at the expense of using a few
13737 more instructions, and thus offering fewer scheduling opportunities with
13738 other code.
13739 "call" calls a library function that usually implements the inv:minlat
13740 strategy.
13741 This gives high code density for m5-*media-nofpu compilations.
13742 "call2" uses a different entry point of the same library function, where it
13743 assumes that a pointer to a lookup table has already been set up, which
13744 exposes the pointer load to cse / code hoisting optimizations.
13745 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
13746 code generation, but if the code stays unoptimized, revert to the "call",
13747 "call2", or "fp" strategies, respectively.  Note that the
13748 potentially-trapping side effect of division by zero is carried by a
13749 separate instruction, so it is possible that all the integer instructions
13750 are hoisted out, but the marker for the side effect stays where it is.
13751 A recombination to fp operations or a call is not possible in that case.
13752 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
13753 that the inverse calculation was nor separated from the multiply, they speed
13754 up division where the dividend fits into 20 bits (plus sign where applicable),
13755 by inserting a test to skip a number of operations in this case; this test
13756 slows down the case of larger dividends.  inv20u assumes the case of a such
13757 a small dividend to be unlikely, and inv20l assumes it to be likely.
13758
13759 @item -mdivsi3_libfunc=@var{name}
13760 @opindex mdivsi3_libfunc=@var{name}
13761 Set the name of the library function used for 32 bit signed division to
13762 @var{name}.  This only affect the name used in the call and inv:call
13763 division strategies, and the compiler will still expect the same
13764 sets of input/output/clobbered registers as if this option was not present.
13765
13766 @item -madjust-unroll
13767 @opindex madjust-unroll
13768 Throttle unrolling to avoid thrashing target registers.
13769 This option only has an effect if the gcc code base supports the
13770 TARGET_ADJUST_UNROLL_MAX target hook.
13771
13772 @item -mindexed-addressing
13773 @opindex mindexed-addressing
13774 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
13775 This is only safe if the hardware and/or OS implement 32 bit wrap-around
13776 semantics for the indexed addressing mode.  The architecture allows the
13777 implementation of processors with 64 bit MMU, which the OS could use to
13778 get 32 bit addressing, but since no current hardware implementation supports
13779 this or any other way to make the indexed addressing mode safe to use in
13780 the 32 bit ABI, the default is -mno-indexed-addressing.
13781
13782 @item -mgettrcost=@var{number}
13783 @opindex mgettrcost=@var{number}
13784 Set the cost assumed for the gettr instruction to @var{number}.
13785 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
13786
13787 @item -mpt-fixed
13788 @opindex mpt-fixed
13789 Assume pt* instructions won't trap.  This will generally generate better
13790 scheduled code, but is unsafe on current hardware.  The current architecture
13791 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
13792 This has the unintentional effect of making it unsafe to schedule ptabs /
13793 ptrel before a branch, or hoist it out of a loop.  For example,
13794 __do_global_ctors, a part of libgcc that runs constructors at program
13795 startup, calls functions in a list which is delimited by @minus{}1.  With the
13796 -mpt-fixed option, the ptabs will be done before testing against @minus{}1.
13797 That means that all the constructors will be run a bit quicker, but when
13798 the loop comes to the end of the list, the program crashes because ptabs
13799 loads @minus{}1 into a target register.  Since this option is unsafe for any
13800 hardware implementing the current architecture specification, the default
13801 is -mno-pt-fixed.  Unless the user specifies a specific cost with
13802 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
13803 this deters register allocation using target registers for storing
13804 ordinary integers.
13805
13806 @item -minvalid-symbols
13807 @opindex minvalid-symbols
13808 Assume symbols might be invalid.  Ordinary function symbols generated by
13809 the compiler will always be valid to load with movi/shori/ptabs or
13810 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
13811 to generate symbols that will cause ptabs / ptrel to trap.
13812 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
13813 It will then prevent cross-basic-block cse, hoisting and most scheduling
13814 of symbol loads.  The default is @option{-mno-invalid-symbols}.
13815 @end table
13816
13817 @node SPARC Options
13818 @subsection SPARC Options
13819 @cindex SPARC options
13820
13821 These @samp{-m} options are supported on the SPARC:
13822
13823 @table @gcctabopt
13824 @item -mno-app-regs
13825 @itemx -mapp-regs
13826 @opindex mno-app-regs
13827 @opindex mapp-regs
13828 Specify @option{-mapp-regs} to generate output using the global registers
13829 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
13830 is the default.
13831
13832 To be fully SVR4 ABI compliant at the cost of some performance loss,
13833 specify @option{-mno-app-regs}.  You should compile libraries and system
13834 software with this option.
13835
13836 @item -mfpu
13837 @itemx -mhard-float
13838 @opindex mfpu
13839 @opindex mhard-float
13840 Generate output containing floating point instructions.  This is the
13841 default.
13842
13843 @item -mno-fpu
13844 @itemx -msoft-float
13845 @opindex mno-fpu
13846 @opindex msoft-float
13847 Generate output containing library calls for floating point.
13848 @strong{Warning:} the requisite libraries are not available for all SPARC
13849 targets.  Normally the facilities of the machine's usual C compiler are
13850 used, but this cannot be done directly in cross-compilation.  You must make
13851 your own arrangements to provide suitable library functions for
13852 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
13853 @samp{sparclite-*-*} do provide software floating point support.
13854
13855 @option{-msoft-float} changes the calling convention in the output file;
13856 therefore, it is only useful if you compile @emph{all} of a program with
13857 this option.  In particular, you need to compile @file{libgcc.a}, the
13858 library that comes with GCC, with @option{-msoft-float} in order for
13859 this to work.
13860
13861 @item -mhard-quad-float
13862 @opindex mhard-quad-float
13863 Generate output containing quad-word (long double) floating point
13864 instructions.
13865
13866 @item -msoft-quad-float
13867 @opindex msoft-quad-float
13868 Generate output containing library calls for quad-word (long double)
13869 floating point instructions.  The functions called are those specified
13870 in the SPARC ABI@.  This is the default.
13871
13872 As of this writing, there are no SPARC implementations that have hardware
13873 support for the quad-word floating point instructions.  They all invoke
13874 a trap handler for one of these instructions, and then the trap handler
13875 emulates the effect of the instruction.  Because of the trap handler overhead,
13876 this is much slower than calling the ABI library routines.  Thus the
13877 @option{-msoft-quad-float} option is the default.
13878
13879 @item -mno-unaligned-doubles
13880 @itemx -munaligned-doubles
13881 @opindex mno-unaligned-doubles
13882 @opindex munaligned-doubles
13883 Assume that doubles have 8 byte alignment.  This is the default.
13884
13885 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
13886 alignment only if they are contained in another type, or if they have an
13887 absolute address.  Otherwise, it assumes they have 4 byte alignment.
13888 Specifying this option avoids some rare compatibility problems with code
13889 generated by other compilers.  It is not the default because it results
13890 in a performance loss, especially for floating point code.
13891
13892 @item -mno-faster-structs
13893 @itemx -mfaster-structs
13894 @opindex mno-faster-structs
13895 @opindex mfaster-structs
13896 With @option{-mfaster-structs}, the compiler assumes that structures
13897 should have 8 byte alignment.  This enables the use of pairs of
13898 @code{ldd} and @code{std} instructions for copies in structure
13899 assignment, in place of twice as many @code{ld} and @code{st} pairs.
13900 However, the use of this changed alignment directly violates the SPARC
13901 ABI@.  Thus, it's intended only for use on targets where the developer
13902 acknowledges that their resulting code will not be directly in line with
13903 the rules of the ABI@.
13904
13905 @item -mimpure-text
13906 @opindex mimpure-text
13907 @option{-mimpure-text}, used in addition to @option{-shared}, tells
13908 the compiler to not pass @option{-z text} to the linker when linking a
13909 shared object.  Using this option, you can link position-dependent
13910 code into a shared object.
13911
13912 @option{-mimpure-text} suppresses the ``relocations remain against
13913 allocatable but non-writable sections'' linker error message.
13914 However, the necessary relocations will trigger copy-on-write, and the
13915 shared object is not actually shared across processes.  Instead of
13916 using @option{-mimpure-text}, you should compile all source code with
13917 @option{-fpic} or @option{-fPIC}.
13918
13919 This option is only available on SunOS and Solaris.
13920
13921 @item -mcpu=@var{cpu_type}
13922 @opindex mcpu
13923 Set the instruction set, register set, and instruction scheduling parameters
13924 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
13925 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
13926 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
13927 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
13928 @samp{ultrasparc3}, @samp{niagara} and @samp{niagara2}.
13929
13930 Default instruction scheduling parameters are used for values that select
13931 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
13932 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
13933
13934 Here is a list of each supported architecture and their supported
13935 implementations.
13936
13937 @smallexample
13938     v7:             cypress
13939     v8:             supersparc, hypersparc
13940     sparclite:      f930, f934, sparclite86x
13941     sparclet:       tsc701
13942     v9:             ultrasparc, ultrasparc3, niagara, niagara2
13943 @end smallexample
13944
13945 By default (unless configured otherwise), GCC generates code for the V7
13946 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
13947 additionally optimizes it for the Cypress CY7C602 chip, as used in the
13948 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
13949 SPARCStation 1, 2, IPX etc.
13950
13951 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
13952 architecture.  The only difference from V7 code is that the compiler emits
13953 the integer multiply and integer divide instructions which exist in SPARC-V8
13954 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
13955 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
13956 2000 series.
13957
13958 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
13959 the SPARC architecture.  This adds the integer multiply, integer divide step
13960 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
13961 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
13962 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
13963 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
13964 MB86934 chip, which is the more recent SPARClite with FPU@.
13965
13966 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
13967 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
13968 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
13969 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
13970 optimizes it for the TEMIC SPARClet chip.
13971
13972 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
13973 architecture.  This adds 64-bit integer and floating-point move instructions,
13974 3 additional floating-point condition code registers and conditional move
13975 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
13976 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
13977 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
13978 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
13979 @option{-mcpu=niagara}, the compiler additionally optimizes it for
13980 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
13981 additionally optimizes it for Sun UltraSPARC T2 chips.
13982
13983 @item -mtune=@var{cpu_type}
13984 @opindex mtune
13985 Set the instruction scheduling parameters for machine type
13986 @var{cpu_type}, but do not set the instruction set or register set that the
13987 option @option{-mcpu=@var{cpu_type}} would.
13988
13989 The same values for @option{-mcpu=@var{cpu_type}} can be used for
13990 @option{-mtune=@var{cpu_type}}, but the only useful values are those
13991 that select a particular cpu implementation.  Those are @samp{cypress},
13992 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
13993 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
13994 @samp{ultrasparc3}, @samp{niagara}, and @samp{niagara2}.
13995
13996 @item -mv8plus
13997 @itemx -mno-v8plus
13998 @opindex mv8plus
13999 @opindex mno-v8plus
14000 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
14001 difference from the V8 ABI is that the global and out registers are
14002 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
14003 mode for all SPARC-V9 processors.
14004
14005 @item -mvis
14006 @itemx -mno-vis
14007 @opindex mvis
14008 @opindex mno-vis
14009 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
14010 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
14011 @end table
14012
14013 These @samp{-m} options are supported in addition to the above
14014 on SPARC-V9 processors in 64-bit environments:
14015
14016 @table @gcctabopt
14017 @item -mlittle-endian
14018 @opindex mlittle-endian
14019 Generate code for a processor running in little-endian mode.  It is only
14020 available for a few configurations and most notably not on Solaris and Linux.
14021
14022 @item -m32
14023 @itemx -m64
14024 @opindex m32
14025 @opindex m64
14026 Generate code for a 32-bit or 64-bit environment.
14027 The 32-bit environment sets int, long and pointer to 32 bits.
14028 The 64-bit environment sets int to 32 bits and long and pointer
14029 to 64 bits.
14030
14031 @item -mcmodel=medlow
14032 @opindex mcmodel=medlow
14033 Generate code for the Medium/Low code model: 64-bit addresses, programs
14034 must be linked in the low 32 bits of memory.  Programs can be statically
14035 or dynamically linked.
14036
14037 @item -mcmodel=medmid
14038 @opindex mcmodel=medmid
14039 Generate code for the Medium/Middle code model: 64-bit addresses, programs
14040 must be linked in the low 44 bits of memory, the text and data segments must
14041 be less than 2GB in size and the data segment must be located within 2GB of
14042 the text segment.
14043
14044 @item -mcmodel=medany
14045 @opindex mcmodel=medany
14046 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
14047 may be linked anywhere in memory, the text and data segments must be less
14048 than 2GB in size and the data segment must be located within 2GB of the
14049 text segment.
14050
14051 @item -mcmodel=embmedany
14052 @opindex mcmodel=embmedany
14053 Generate code for the Medium/Anywhere code model for embedded systems:
14054 64-bit addresses, the text and data segments must be less than 2GB in
14055 size, both starting anywhere in memory (determined at link time).  The
14056 global register %g4 points to the base of the data segment.  Programs
14057 are statically linked and PIC is not supported.
14058
14059 @item -mstack-bias
14060 @itemx -mno-stack-bias
14061 @opindex mstack-bias
14062 @opindex mno-stack-bias
14063 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
14064 frame pointer if present, are offset by @minus{}2047 which must be added back
14065 when making stack frame references.  This is the default in 64-bit mode.
14066 Otherwise, assume no such offset is present.
14067 @end table
14068
14069 These switches are supported in addition to the above on Solaris:
14070
14071 @table @gcctabopt
14072 @item -threads
14073 @opindex threads
14074 Add support for multithreading using the Solaris threads library.  This
14075 option sets flags for both the preprocessor and linker.  This option does
14076 not affect the thread safety of object code produced by the compiler or
14077 that of libraries supplied with it.
14078
14079 @item -pthreads
14080 @opindex pthreads
14081 Add support for multithreading using the POSIX threads library.  This
14082 option sets flags for both the preprocessor and linker.  This option does
14083 not affect the thread safety of object code produced  by the compiler or
14084 that of libraries supplied with it.
14085
14086 @item -pthread
14087 @opindex pthread
14088 This is a synonym for @option{-pthreads}.
14089 @end table
14090
14091 @node SPU Options
14092 @subsection SPU Options
14093 @cindex SPU options
14094
14095 These @samp{-m} options are supported on the SPU:
14096
14097 @table @gcctabopt
14098 @item -mwarn-reloc
14099 @itemx -merror-reloc
14100 @opindex mwarn-reloc
14101 @opindex merror-reloc
14102
14103 The loader for SPU does not handle dynamic relocations.  By default, GCC
14104 will give an error when it generates code that requires a dynamic
14105 relocation.  @option{-mno-error-reloc} disables the error,
14106 @option{-mwarn-reloc} will generate a warning instead.
14107
14108 @item -msafe-dma
14109 @itemx -munsafe-dma
14110 @opindex msafe-dma
14111 @opindex munsafe-dma
14112
14113 Instructions which initiate or test completion of DMA must not be
14114 reordered with respect to loads and stores of the memory which is being
14115 accessed.  Users typically address this problem using the volatile
14116 keyword, but that can lead to inefficient code in places where the
14117 memory is known to not change.  Rather than mark the memory as volatile
14118 we treat the DMA instructions as potentially effecting all memory.  With
14119 @option{-munsafe-dma} users must use the volatile keyword to protect
14120 memory accesses.
14121
14122 @item -mbranch-hints
14123 @opindex mbranch-hints
14124
14125 By default, GCC will generate a branch hint instruction to avoid
14126 pipeline stalls for always taken or probably taken branches.  A hint
14127 will not be generated closer than 8 instructions away from its branch.
14128 There is little reason to disable them, except for debugging purposes,
14129 or to make an object a little bit smaller.
14130
14131 @item -msmall-mem
14132 @itemx -mlarge-mem
14133 @opindex msmall-mem
14134 @opindex mlarge-mem
14135
14136 By default, GCC generates code assuming that addresses are never larger
14137 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
14138 a full 32 bit address.
14139
14140 @item -mstdmain
14141 @opindex mstdmain
14142
14143 By default, GCC links against startup code that assumes the SPU-style
14144 main function interface (which has an unconventional parameter list).
14145 With @option{-mstdmain}, GCC will link your program against startup
14146 code that assumes a C99-style interface to @code{main}, including a
14147 local copy of @code{argv} strings.
14148
14149 @item -mfixed-range=@var{register-range}
14150 @opindex mfixed-range
14151 Generate code treating the given register range as fixed registers.
14152 A fixed register is one that the register allocator can not use.  This is
14153 useful when compiling kernel code.  A register range is specified as
14154 two registers separated by a dash.  Multiple register ranges can be
14155 specified separated by a comma.
14156
14157 @end table
14158
14159 @node System V Options
14160 @subsection Options for System V
14161
14162 These additional options are available on System V Release 4 for
14163 compatibility with other compilers on those systems:
14164
14165 @table @gcctabopt
14166 @item -G
14167 @opindex G
14168 Create a shared object.
14169 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
14170
14171 @item -Qy
14172 @opindex Qy
14173 Identify the versions of each tool used by the compiler, in a
14174 @code{.ident} assembler directive in the output.
14175
14176 @item -Qn
14177 @opindex Qn
14178 Refrain from adding @code{.ident} directives to the output file (this is
14179 the default).
14180
14181 @item -YP,@var{dirs}
14182 @opindex YP
14183 Search the directories @var{dirs}, and no others, for libraries
14184 specified with @option{-l}.
14185
14186 @item -Ym,@var{dir}
14187 @opindex Ym
14188 Look in the directory @var{dir} to find the M4 preprocessor.
14189 The assembler uses this option.
14190 @c This is supposed to go with a -Yd for predefined M4 macro files, but
14191 @c the generic assembler that comes with Solaris takes just -Ym.
14192 @end table
14193
14194 @node TMS320C3x/C4x Options
14195 @subsection TMS320C3x/C4x Options
14196 @cindex TMS320C3x/C4x Options
14197
14198 These @samp{-m} options are defined for TMS320C3x/C4x implementations:
14199
14200 @table @gcctabopt
14201
14202 @item -mcpu=@var{cpu_type}
14203 @opindex mcpu
14204 Set the instruction set, register set, and instruction scheduling
14205 parameters for machine type @var{cpu_type}.  Supported values for
14206 @var{cpu_type} are @samp{c30}, @samp{c31}, @samp{c32}, @samp{c40}, and
14207 @samp{c44}.  The default is @samp{c40} to generate code for the
14208 TMS320C40.
14209
14210 @item -mbig-memory
14211 @itemx -mbig
14212 @itemx -msmall-memory
14213 @itemx -msmall
14214 @opindex mbig-memory
14215 @opindex mbig
14216 @opindex msmall-memory
14217 @opindex msmall
14218 Generates code for the big or small memory model.  The small memory
14219 model assumed that all data fits into one 64K word page.  At run-time
14220 the data page (DP) register must be set to point to the 64K page
14221 containing the .bss and .data program sections.  The big memory model is
14222 the default and requires reloading of the DP register for every direct
14223 memory access.
14224
14225 @item -mbk
14226 @itemx -mno-bk
14227 @opindex mbk
14228 @opindex mno-bk
14229 Allow (disallow) allocation of general integer operands into the block
14230 count register BK@.
14231
14232 @item -mdb
14233 @itemx -mno-db
14234 @opindex mdb
14235 @opindex mno-db
14236 Enable (disable) generation of code using decrement and branch,
14237 DBcond(D), instructions.  This is enabled by default for the C4x.  To be
14238 on the safe side, this is disabled for the C3x, since the maximum
14239 iteration count on the C3x is @math{2^{23} + 1} (but who iterates loops more than
14240 @math{2^{23}} times on the C3x?).  Note that GCC will try to reverse a loop so
14241 that it can utilize the decrement and branch instruction, but will give
14242 up if there is more than one memory reference in the loop.  Thus a loop
14243 where the loop counter is decremented can generate slightly more
14244 efficient code, in cases where the RPTB instruction cannot be utilized.
14245
14246 @item -mdp-isr-reload
14247 @itemx -mparanoid
14248 @opindex mdp-isr-reload
14249 @opindex mparanoid
14250 Force the DP register to be saved on entry to an interrupt service
14251 routine (ISR), reloaded to point to the data section, and restored on
14252 exit from the ISR@.  This should not be required unless someone has
14253 violated the small memory model by modifying the DP register, say within
14254 an object library.
14255
14256 @item -mmpyi
14257 @itemx -mno-mpyi
14258 @opindex mmpyi
14259 @opindex mno-mpyi
14260 For the C3x use the 24-bit MPYI instruction for integer multiplies
14261 instead of a library call to guarantee 32-bit results.  Note that if one
14262 of the operands is a constant, then the multiplication will be performed
14263 using shifts and adds.  If the @option{-mmpyi} option is not specified for the C3x,
14264 then squaring operations are performed inline instead of a library call.
14265
14266 @item -mfast-fix
14267 @itemx -mno-fast-fix
14268 @opindex mfast-fix
14269 @opindex mno-fast-fix
14270 The C3x/C4x FIX instruction to convert a floating point value to an
14271 integer value chooses the nearest integer less than or equal to the
14272 floating point value rather than to the nearest integer.  Thus if the
14273 floating point number is negative, the result will be incorrectly
14274 truncated an additional code is necessary to detect and correct this
14275 case.  This option can be used to disable generation of the additional
14276 code required to correct the result.
14277
14278 @item -mrptb
14279 @itemx -mno-rptb
14280 @opindex mrptb
14281 @opindex mno-rptb
14282 Enable (disable) generation of repeat block sequences using the RPTB
14283 instruction for zero overhead looping.  The RPTB construct is only used
14284 for innermost loops that do not call functions or jump across the loop
14285 boundaries.  There is no advantage having nested RPTB loops due to the
14286 overhead required to save and restore the RC, RS, and RE registers.
14287 This is enabled by default with @option{-O2}.
14288
14289 @item -mrpts=@var{count}
14290 @itemx -mno-rpts
14291 @opindex mrpts
14292 @opindex mno-rpts
14293 Enable (disable) the use of the single instruction repeat instruction
14294 RPTS@.  If a repeat block contains a single instruction, and the loop
14295 count can be guaranteed to be less than the value @var{count}, GCC will
14296 emit a RPTS instruction instead of a RPTB@.  If no value is specified,
14297 then a RPTS will be emitted even if the loop count cannot be determined
14298 at compile time.  Note that the repeated instruction following RPTS does
14299 not have to be reloaded from memory each iteration, thus freeing up the
14300 CPU buses for operands.  However, since interrupts are blocked by this
14301 instruction, it is disabled by default.
14302
14303 @item -mloop-unsigned
14304 @itemx -mno-loop-unsigned
14305 @opindex mloop-unsigned
14306 @opindex mno-loop-unsigned
14307 The maximum iteration count when using RPTS and RPTB (and DB on the C40)
14308 is @math{2^{31} + 1} since these instructions test if the iteration count is
14309 negative to terminate the loop.  If the iteration count is unsigned
14310 there is a possibility than the @math{2^{31} + 1} maximum iteration count may be
14311 exceeded.  This switch allows an unsigned iteration count.
14312
14313 @item -mti
14314 @opindex mti
14315 Try to emit an assembler syntax that the TI assembler (asm30) is happy
14316 with.  This also enforces compatibility with the API employed by the TI
14317 C3x C compiler.  For example, long doubles are passed as structures
14318 rather than in floating point registers.
14319
14320 @item -mregparm
14321 @itemx -mmemparm
14322 @opindex mregparm
14323 @opindex mmemparm
14324 Generate code that uses registers (stack) for passing arguments to functions.
14325 By default, arguments are passed in registers where possible rather
14326 than by pushing arguments on to the stack.
14327
14328 @item -mparallel-insns
14329 @itemx -mno-parallel-insns
14330 @opindex mparallel-insns
14331 @opindex mno-parallel-insns
14332 Allow the generation of parallel instructions.  This is enabled by
14333 default with @option{-O2}.
14334
14335 @item -mparallel-mpy
14336 @itemx -mno-parallel-mpy
14337 @opindex mparallel-mpy
14338 @opindex mno-parallel-mpy
14339 Allow the generation of MPY||ADD and MPY||SUB parallel instructions,
14340 provided @option{-mparallel-insns} is also specified.  These instructions have
14341 tight register constraints which can pessimize the code generation
14342 of large functions.
14343
14344 @end table
14345
14346 @node V850 Options
14347 @subsection V850 Options
14348 @cindex V850 Options
14349
14350 These @samp{-m} options are defined for V850 implementations:
14351
14352 @table @gcctabopt
14353 @item -mlong-calls
14354 @itemx -mno-long-calls
14355 @opindex mlong-calls
14356 @opindex mno-long-calls
14357 Treat all calls as being far away (near).  If calls are assumed to be
14358 far away, the compiler will always load the functions address up into a
14359 register, and call indirect through the pointer.
14360
14361 @item -mno-ep
14362 @itemx -mep
14363 @opindex mno-ep
14364 @opindex mep
14365 Do not optimize (do optimize) basic blocks that use the same index
14366 pointer 4 or more times to copy pointer into the @code{ep} register, and
14367 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
14368 option is on by default if you optimize.
14369
14370 @item -mno-prolog-function
14371 @itemx -mprolog-function
14372 @opindex mno-prolog-function
14373 @opindex mprolog-function
14374 Do not use (do use) external functions to save and restore registers
14375 at the prologue and epilogue of a function.  The external functions
14376 are slower, but use less code space if more than one function saves
14377 the same number of registers.  The @option{-mprolog-function} option
14378 is on by default if you optimize.
14379
14380 @item -mspace
14381 @opindex mspace
14382 Try to make the code as small as possible.  At present, this just turns
14383 on the @option{-mep} and @option{-mprolog-function} options.
14384
14385 @item -mtda=@var{n}
14386 @opindex mtda
14387 Put static or global variables whose size is @var{n} bytes or less into
14388 the tiny data area that register @code{ep} points to.  The tiny data
14389 area can hold up to 256 bytes in total (128 bytes for byte references).
14390
14391 @item -msda=@var{n}
14392 @opindex msda
14393 Put static or global variables whose size is @var{n} bytes or less into
14394 the small data area that register @code{gp} points to.  The small data
14395 area can hold up to 64 kilobytes.
14396
14397 @item -mzda=@var{n}
14398 @opindex mzda
14399 Put static or global variables whose size is @var{n} bytes or less into
14400 the first 32 kilobytes of memory.
14401
14402 @item -mv850
14403 @opindex mv850
14404 Specify that the target processor is the V850.
14405
14406 @item -mbig-switch
14407 @opindex mbig-switch
14408 Generate code suitable for big switch tables.  Use this option only if
14409 the assembler/linker complain about out of range branches within a switch
14410 table.
14411
14412 @item -mapp-regs
14413 @opindex mapp-regs
14414 This option will cause r2 and r5 to be used in the code generated by
14415 the compiler.  This setting is the default.
14416
14417 @item -mno-app-regs
14418 @opindex mno-app-regs
14419 This option will cause r2 and r5 to be treated as fixed registers.
14420
14421 @item -mv850e1
14422 @opindex mv850e1
14423 Specify that the target processor is the V850E1.  The preprocessor
14424 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
14425 this option is used.
14426
14427 @item -mv850e
14428 @opindex mv850e
14429 Specify that the target processor is the V850E@.  The preprocessor
14430 constant @samp{__v850e__} will be defined if this option is used.
14431
14432 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
14433 are defined then a default target processor will be chosen and the
14434 relevant @samp{__v850*__} preprocessor constant will be defined.
14435
14436 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
14437 defined, regardless of which processor variant is the target.
14438
14439 @item -mdisable-callt
14440 @opindex mdisable-callt
14441 This option will suppress generation of the CALLT instruction for the
14442 v850e and v850e1 flavors of the v850 architecture.  The default is
14443 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
14444
14445 @end table
14446
14447 @node VAX Options
14448 @subsection VAX Options
14449 @cindex VAX options
14450
14451 These @samp{-m} options are defined for the VAX:
14452
14453 @table @gcctabopt
14454 @item -munix
14455 @opindex munix
14456 Do not output certain jump instructions (@code{aobleq} and so on)
14457 that the Unix assembler for the VAX cannot handle across long
14458 ranges.
14459
14460 @item -mgnu
14461 @opindex mgnu
14462 Do output those jump instructions, on the assumption that you
14463 will assemble with the GNU assembler.
14464
14465 @item -mg
14466 @opindex mg
14467 Output code for g-format floating point numbers instead of d-format.
14468 @end table
14469
14470 @node VxWorks Options
14471 @subsection VxWorks Options
14472 @cindex VxWorks Options
14473
14474 The options in this section are defined for all VxWorks targets.
14475 Options specific to the target hardware are listed with the other
14476 options for that target.
14477
14478 @table @gcctabopt
14479 @item -mrtp
14480 @opindex mrtp
14481 GCC can generate code for both VxWorks kernels and real time processes
14482 (RTPs).  This option switches from the former to the latter.  It also
14483 defines the preprocessor macro @code{__RTP__}.
14484
14485 @item -non-static
14486 @opindex non-static
14487 Link an RTP executable against shared libraries rather than static
14488 libraries.  The options @option{-static} and @option{-shared} can
14489 also be used for RTPs (@pxref{Link Options}); @option{-static}
14490 is the default.
14491
14492 @item -Bstatic
14493 @itemx -Bdynamic
14494 @opindex Bstatic
14495 @opindex Bdynamic
14496 These options are passed down to the linker.  They are defined for
14497 compatibility with Diab.
14498
14499 @item -Xbind-lazy
14500 @opindex Xbind-lazy
14501 Enable lazy binding of function calls.  This option is equivalent to
14502 @option{-Wl,-z,now} and is defined for compatibility with Diab.
14503
14504 @item -Xbind-now
14505 @opindex Xbind-now
14506 Disable lazy binding of function calls.  This option is the default and
14507 is defined for compatibility with Diab.
14508 @end table
14509
14510 @node x86-64 Options
14511 @subsection x86-64 Options
14512 @cindex x86-64 options
14513
14514 These are listed under @xref{i386 and x86-64 Options}.
14515
14516 @node Xstormy16 Options
14517 @subsection Xstormy16 Options
14518 @cindex Xstormy16 Options
14519
14520 These options are defined for Xstormy16:
14521
14522 @table @gcctabopt
14523 @item -msim
14524 @opindex msim
14525 Choose startup files and linker script suitable for the simulator.
14526 @end table
14527
14528 @node Xtensa Options
14529 @subsection Xtensa Options
14530 @cindex Xtensa Options
14531
14532 These options are supported for Xtensa targets:
14533
14534 @table @gcctabopt
14535 @item -mconst16
14536 @itemx -mno-const16
14537 @opindex mconst16
14538 @opindex mno-const16
14539 Enable or disable use of @code{CONST16} instructions for loading
14540 constant values.  The @code{CONST16} instruction is currently not a
14541 standard option from Tensilica.  When enabled, @code{CONST16}
14542 instructions are always used in place of the standard @code{L32R}
14543 instructions.  The use of @code{CONST16} is enabled by default only if
14544 the @code{L32R} instruction is not available.
14545
14546 @item -mfused-madd
14547 @itemx -mno-fused-madd
14548 @opindex mfused-madd
14549 @opindex mno-fused-madd
14550 Enable or disable use of fused multiply/add and multiply/subtract
14551 instructions in the floating-point option.  This has no effect if the
14552 floating-point option is not also enabled.  Disabling fused multiply/add
14553 and multiply/subtract instructions forces the compiler to use separate
14554 instructions for the multiply and add/subtract operations.  This may be
14555 desirable in some cases where strict IEEE 754-compliant results are
14556 required: the fused multiply add/subtract instructions do not round the
14557 intermediate result, thereby producing results with @emph{more} bits of
14558 precision than specified by the IEEE standard.  Disabling fused multiply
14559 add/subtract instructions also ensures that the program output is not
14560 sensitive to the compiler's ability to combine multiply and add/subtract
14561 operations.
14562
14563 @item -mtext-section-literals
14564 @itemx -mno-text-section-literals
14565 @opindex mtext-section-literals
14566 @opindex mno-text-section-literals
14567 Control the treatment of literal pools.  The default is
14568 @option{-mno-text-section-literals}, which places literals in a separate
14569 section in the output file.  This allows the literal pool to be placed
14570 in a data RAM/ROM, and it also allows the linker to combine literal
14571 pools from separate object files to remove redundant literals and
14572 improve code size.  With @option{-mtext-section-literals}, the literals
14573 are interspersed in the text section in order to keep them as close as
14574 possible to their references.  This may be necessary for large assembly
14575 files.
14576
14577 @item -mtarget-align
14578 @itemx -mno-target-align
14579 @opindex mtarget-align
14580 @opindex mno-target-align
14581 When this option is enabled, GCC instructs the assembler to
14582 automatically align instructions to reduce branch penalties at the
14583 expense of some code density.  The assembler attempts to widen density
14584 instructions to align branch targets and the instructions following call
14585 instructions.  If there are not enough preceding safe density
14586 instructions to align a target, no widening will be performed.  The
14587 default is @option{-mtarget-align}.  These options do not affect the
14588 treatment of auto-aligned instructions like @code{LOOP}, which the
14589 assembler will always align, either by widening density instructions or
14590 by inserting no-op instructions.
14591
14592 @item -mlongcalls
14593 @itemx -mno-longcalls
14594 @opindex mlongcalls
14595 @opindex mno-longcalls
14596 When this option is enabled, GCC instructs the assembler to translate
14597 direct calls to indirect calls unless it can determine that the target
14598 of a direct call is in the range allowed by the call instruction.  This
14599 translation typically occurs for calls to functions in other source
14600 files.  Specifically, the assembler translates a direct @code{CALL}
14601 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
14602 The default is @option{-mno-longcalls}.  This option should be used in
14603 programs where the call target can potentially be out of range.  This
14604 option is implemented in the assembler, not the compiler, so the
14605 assembly code generated by GCC will still show direct call
14606 instructions---look at the disassembled object code to see the actual
14607 instructions.  Note that the assembler will use an indirect call for
14608 every cross-file call, not just those that really will be out of range.
14609 @end table
14610
14611 @node zSeries Options
14612 @subsection zSeries Options
14613 @cindex zSeries options
14614
14615 These are listed under @xref{S/390 and zSeries Options}.
14616
14617 @node Code Gen Options
14618 @section Options for Code Generation Conventions
14619 @cindex code generation conventions
14620 @cindex options, code generation
14621 @cindex run-time options
14622
14623 These machine-independent options control the interface conventions
14624 used in code generation.
14625
14626 Most of them have both positive and negative forms; the negative form
14627 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
14628 one of the forms is listed---the one which is not the default.  You
14629 can figure out the other form by either removing @samp{no-} or adding
14630 it.
14631
14632 @table @gcctabopt
14633 @item -fbounds-check
14634 @opindex fbounds-check
14635 For front-ends that support it, generate additional code to check that
14636 indices used to access arrays are within the declared range.  This is
14637 currently only supported by the Java and Fortran front-ends, where
14638 this option defaults to true and false respectively.
14639
14640 @item -ftrapv
14641 @opindex ftrapv
14642 This option generates traps for signed overflow on addition, subtraction,
14643 multiplication operations.
14644
14645 @item -fwrapv
14646 @opindex fwrapv
14647 This option instructs the compiler to assume that signed arithmetic
14648 overflow of addition, subtraction and multiplication wraps around
14649 using twos-complement representation.  This flag enables some optimizations
14650 and disables others.  This option is enabled by default for the Java
14651 front-end, as required by the Java language specification.
14652
14653 @item -fexceptions
14654 @opindex fexceptions
14655 Enable exception handling.  Generates extra code needed to propagate
14656 exceptions.  For some targets, this implies GCC will generate frame
14657 unwind information for all functions, which can produce significant data
14658 size overhead, although it does not affect execution.  If you do not
14659 specify this option, GCC will enable it by default for languages like
14660 C++ which normally require exception handling, and disable it for
14661 languages like C that do not normally require it.  However, you may need
14662 to enable this option when compiling C code that needs to interoperate
14663 properly with exception handlers written in C++.  You may also wish to
14664 disable this option if you are compiling older C++ programs that don't
14665 use exception handling.
14666
14667 @item -fnon-call-exceptions
14668 @opindex fnon-call-exceptions
14669 Generate code that allows trapping instructions to throw exceptions.
14670 Note that this requires platform-specific runtime support that does
14671 not exist everywhere.  Moreover, it only allows @emph{trapping}
14672 instructions to throw exceptions, i.e.@: memory references or floating
14673 point instructions.  It does not allow exceptions to be thrown from
14674 arbitrary signal handlers such as @code{SIGALRM}.
14675
14676 @item -funwind-tables
14677 @opindex funwind-tables
14678 Similar to @option{-fexceptions}, except that it will just generate any needed
14679 static data, but will not affect the generated code in any other way.
14680 You will normally not enable this option; instead, a language processor
14681 that needs this handling would enable it on your behalf.
14682
14683 @item -fasynchronous-unwind-tables
14684 @opindex fasynchronous-unwind-tables
14685 Generate unwind table in dwarf2 format, if supported by target machine.  The
14686 table is exact at each instruction boundary, so it can be used for stack
14687 unwinding from asynchronous events (such as debugger or garbage collector).
14688
14689 @item -fpcc-struct-return
14690 @opindex fpcc-struct-return
14691 Return ``short'' @code{struct} and @code{union} values in memory like
14692 longer ones, rather than in registers.  This convention is less
14693 efficient, but it has the advantage of allowing intercallability between
14694 GCC-compiled files and files compiled with other compilers, particularly
14695 the Portable C Compiler (pcc).
14696
14697 The precise convention for returning structures in memory depends
14698 on the target configuration macros.
14699
14700 Short structures and unions are those whose size and alignment match
14701 that of some integer type.
14702
14703 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
14704 switch is not binary compatible with code compiled with the
14705 @option{-freg-struct-return} switch.
14706 Use it to conform to a non-default application binary interface.
14707
14708 @item -freg-struct-return
14709 @opindex freg-struct-return
14710 Return @code{struct} and @code{union} values in registers when possible.
14711 This is more efficient for small structures than
14712 @option{-fpcc-struct-return}.
14713
14714 If you specify neither @option{-fpcc-struct-return} nor
14715 @option{-freg-struct-return}, GCC defaults to whichever convention is
14716 standard for the target.  If there is no standard convention, GCC
14717 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
14718 the principal compiler.  In those cases, we can choose the standard, and
14719 we chose the more efficient register return alternative.
14720
14721 @strong{Warning:} code compiled with the @option{-freg-struct-return}
14722 switch is not binary compatible with code compiled with the
14723 @option{-fpcc-struct-return} switch.
14724 Use it to conform to a non-default application binary interface.
14725
14726 @item -fshort-enums
14727 @opindex fshort-enums
14728 Allocate to an @code{enum} type only as many bytes as it needs for the
14729 declared range of possible values.  Specifically, the @code{enum} type
14730 will be equivalent to the smallest integer type which has enough room.
14731
14732 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
14733 code that is not binary compatible with code generated without that switch.
14734 Use it to conform to a non-default application binary interface.
14735
14736 @item -fshort-double
14737 @opindex fshort-double
14738 Use the same size for @code{double} as for @code{float}.
14739
14740 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
14741 code that is not binary compatible with code generated without that switch.
14742 Use it to conform to a non-default application binary interface.
14743
14744 @item -fshort-wchar
14745 @opindex fshort-wchar
14746 Override the underlying type for @samp{wchar_t} to be @samp{short
14747 unsigned int} instead of the default for the target.  This option is
14748 useful for building programs to run under WINE@.
14749
14750 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
14751 code that is not binary compatible with code generated without that switch.
14752 Use it to conform to a non-default application binary interface.
14753
14754 @item -fno-common
14755 @opindex fno-common
14756 In C, allocate even uninitialized global variables in the data section of the
14757 object file, rather than generating them as common blocks.  This has the
14758 effect that if the same variable is declared (without @code{extern}) in
14759 two different compilations, you will get an error when you link them.
14760 The only reason this might be useful is if you wish to verify that the
14761 program will work on other systems which always work this way.
14762
14763 @item -fno-ident
14764 @opindex fno-ident
14765 Ignore the @samp{#ident} directive.
14766
14767 @item -finhibit-size-directive
14768 @opindex finhibit-size-directive
14769 Don't output a @code{.size} assembler directive, or anything else that
14770 would cause trouble if the function is split in the middle, and the
14771 two halves are placed at locations far apart in memory.  This option is
14772 used when compiling @file{crtstuff.c}; you should not need to use it
14773 for anything else.
14774
14775 @item -fverbose-asm
14776 @opindex fverbose-asm
14777 Put extra commentary information in the generated assembly code to
14778 make it more readable.  This option is generally only of use to those
14779 who actually need to read the generated assembly code (perhaps while
14780 debugging the compiler itself).
14781
14782 @option{-fno-verbose-asm}, the default, causes the
14783 extra information to be omitted and is useful when comparing two assembler
14784 files.
14785
14786 @item -frecord-gcc-switches
14787 @opindex frecord-gcc-switches
14788 This switch causes the command line that was used to invoke the
14789 compiler to be recorded into the object file that is being created.
14790 This switch is only implemented on some targets and the exact format
14791 of the recording is target and binary file format dependent, but it
14792 usually takes the form of a section containing ASCII text.  This
14793 switch is related to the @option{-fverbose-asm} switch, but that
14794 switch only records information in the assembler output file as
14795 comments, so it never reaches the object file.
14796
14797 @item -fpic
14798 @opindex fpic
14799 @cindex global offset table
14800 @cindex PIC
14801 Generate position-independent code (PIC) suitable for use in a shared
14802 library, if supported for the target machine.  Such code accesses all
14803 constant addresses through a global offset table (GOT)@.  The dynamic
14804 loader resolves the GOT entries when the program starts (the dynamic
14805 loader is not part of GCC; it is part of the operating system).  If
14806 the GOT size for the linked executable exceeds a machine-specific
14807 maximum size, you get an error message from the linker indicating that
14808 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
14809 instead.  (These maximums are 8k on the SPARC and 32k
14810 on the m68k and RS/6000.  The 386 has no such limit.)
14811
14812 Position-independent code requires special support, and therefore works
14813 only on certain machines.  For the 386, GCC supports PIC for System V
14814 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
14815 position-independent.
14816
14817 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14818 are defined to 1.
14819
14820 @item -fPIC
14821 @opindex fPIC
14822 If supported for the target machine, emit position-independent code,
14823 suitable for dynamic linking and avoiding any limit on the size of the
14824 global offset table.  This option makes a difference on the m68k,
14825 PowerPC and SPARC@.
14826
14827 Position-independent code requires special support, and therefore works
14828 only on certain machines.
14829
14830 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
14831 are defined to 2.
14832
14833 @item -fpie
14834 @itemx -fPIE
14835 @opindex fpie
14836 @opindex fPIE
14837 These options are similar to @option{-fpic} and @option{-fPIC}, but
14838 generated position independent code can be only linked into executables.
14839 Usually these options are used when @option{-pie} GCC option will be
14840 used during linking.
14841
14842 @option{-fpie} and @option{-fPIE} both define the macros
14843 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
14844 for @option{-fpie} and 2 for @option{-fPIE}.
14845
14846 @item -fno-jump-tables
14847 @opindex fno-jump-tables
14848 Do not use jump tables for switch statements even where it would be
14849 more efficient than other code generation strategies.  This option is
14850 of use in conjunction with @option{-fpic} or @option{-fPIC} for
14851 building code which forms part of a dynamic linker and cannot
14852 reference the address of a jump table.  On some targets, jump tables
14853 do not require a GOT and this option is not needed.
14854
14855 @item -ffixed-@var{reg}
14856 @opindex ffixed
14857 Treat the register named @var{reg} as a fixed register; generated code
14858 should never refer to it (except perhaps as a stack pointer, frame
14859 pointer or in some other fixed role).
14860
14861 @var{reg} must be the name of a register.  The register names accepted
14862 are machine-specific and are defined in the @code{REGISTER_NAMES}
14863 macro in the machine description macro file.
14864
14865 This flag does not have a negative form, because it specifies a
14866 three-way choice.
14867
14868 @item -fcall-used-@var{reg}
14869 @opindex fcall-used
14870 Treat the register named @var{reg} as an allocable register that is
14871 clobbered by function calls.  It may be allocated for temporaries or
14872 variables that do not live across a call.  Functions compiled this way
14873 will not save and restore the register @var{reg}.
14874
14875 It is an error to used this flag with the frame pointer or stack pointer.
14876 Use of this flag for other registers that have fixed pervasive roles in
14877 the machine's execution model will produce disastrous results.
14878
14879 This flag does not have a negative form, because it specifies a
14880 three-way choice.
14881
14882 @item -fcall-saved-@var{reg}
14883 @opindex fcall-saved
14884 Treat the register named @var{reg} as an allocable register saved by
14885 functions.  It may be allocated even for temporaries or variables that
14886 live across a call.  Functions compiled this way will save and restore
14887 the register @var{reg} if they use it.
14888
14889 It is an error to used this flag with the frame pointer or stack pointer.
14890 Use of this flag for other registers that have fixed pervasive roles in
14891 the machine's execution model will produce disastrous results.
14892
14893 A different sort of disaster will result from the use of this flag for
14894 a register in which function values may be returned.
14895
14896 This flag does not have a negative form, because it specifies a
14897 three-way choice.
14898
14899 @item -fpack-struct[=@var{n}]
14900 @opindex fpack-struct
14901 Without a value specified, pack all structure members together without
14902 holes.  When a value is specified (which must be a small power of two), pack
14903 structure members according to this value, representing the maximum
14904 alignment (that is, objects with default alignment requirements larger than
14905 this will be output potentially unaligned at the next fitting location.
14906
14907 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
14908 code that is not binary compatible with code generated without that switch.
14909 Additionally, it makes the code suboptimal.
14910 Use it to conform to a non-default application binary interface.
14911
14912 @item -finstrument-functions
14913 @opindex finstrument-functions
14914 Generate instrumentation calls for entry and exit to functions.  Just
14915 after function entry and just before function exit, the following
14916 profiling functions will be called with the address of the current
14917 function and its call site.  (On some platforms,
14918 @code{__builtin_return_address} does not work beyond the current
14919 function, so the call site information may not be available to the
14920 profiling functions otherwise.)
14921
14922 @smallexample
14923 void __cyg_profile_func_enter (void *this_fn,
14924                                void *call_site);
14925 void __cyg_profile_func_exit  (void *this_fn,
14926                                void *call_site);
14927 @end smallexample
14928
14929 The first argument is the address of the start of the current function,
14930 which may be looked up exactly in the symbol table.
14931
14932 This instrumentation is also done for functions expanded inline in other
14933 functions.  The profiling calls will indicate where, conceptually, the
14934 inline function is entered and exited.  This means that addressable
14935 versions of such functions must be available.  If all your uses of a
14936 function are expanded inline, this may mean an additional expansion of
14937 code size.  If you use @samp{extern inline} in your C code, an
14938 addressable version of such functions must be provided.  (This is
14939 normally the case anyways, but if you get lucky and the optimizer always
14940 expands the functions inline, you might have gotten away without
14941 providing static copies.)
14942
14943 A function may be given the attribute @code{no_instrument_function}, in
14944 which case this instrumentation will not be done.  This can be used, for
14945 example, for the profiling functions listed above, high-priority
14946 interrupt routines, and any functions from which the profiling functions
14947 cannot safely be called (perhaps signal handlers, if the profiling
14948 routines generate output or allocate memory).
14949
14950 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
14951 @opindex finstrument-functions-exclude-file-list
14952
14953 Set the list of functions that are excluded from instrumentation (see
14954 the description of @code{-finstrument-functions}).  If the file that
14955 contains a function definition matches with one of @var{file}, then
14956 that function is not instrumented.  The match is done on substrings:
14957 if the @var{file} parameter is a substring of the file name, it is
14958 considered to be a match.
14959
14960 For example,
14961 @code{-finstrument-functions-exclude-file-list=/bits/stl,include/sys}
14962 will exclude any inline function defined in files whose pathnames
14963 contain @code{/bits/stl} or @code{include/sys}.
14964
14965 If, for some reason, you want to include letter @code{','} in one of
14966 @var{sym}, write @code{'\,'}. For example,
14967 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
14968 (note the single quote surrounding the option).
14969
14970 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
14971 @opindex finstrument-functions-exclude-function-list
14972
14973 This is similar to @code{-finstrument-functions-exclude-file-list},
14974 but this option sets the list of function names to be excluded from
14975 instrumentation.  The function name to be matched is its user-visible
14976 name, such as @code{vector<int> blah(const vector<int> &)}, not the
14977 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
14978 match is done on substrings: if the @var{sym} parameter is a substring
14979 of the function name, it is considered to be a match.
14980
14981 @item -fstack-check
14982 @opindex fstack-check
14983 Generate code to verify that you do not go beyond the boundary of the
14984 stack.  You should specify this flag if you are running in an
14985 environment with multiple threads, but only rarely need to specify it in
14986 a single-threaded environment since stack overflow is automatically
14987 detected on nearly all systems if there is only one stack.
14988
14989 Note that this switch does not actually cause checking to be done; the
14990 operating system must do that.  The switch causes generation of code
14991 to ensure that the operating system sees the stack being extended.
14992
14993 @item -fstack-limit-register=@var{reg}
14994 @itemx -fstack-limit-symbol=@var{sym}
14995 @itemx -fno-stack-limit
14996 @opindex fstack-limit-register
14997 @opindex fstack-limit-symbol
14998 @opindex fno-stack-limit
14999 Generate code to ensure that the stack does not grow beyond a certain value,
15000 either the value of a register or the address of a symbol.  If the stack
15001 would grow beyond the value, a signal is raised.  For most targets,
15002 the signal is raised before the stack overruns the boundary, so
15003 it is possible to catch the signal without taking special precautions.
15004
15005 For instance, if the stack starts at absolute address @samp{0x80000000}
15006 and grows downwards, you can use the flags
15007 @option{-fstack-limit-symbol=__stack_limit} and
15008 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
15009 of 128KB@.  Note that this may only work with the GNU linker.
15010
15011 @cindex aliasing of parameters
15012 @cindex parameters, aliased
15013 @item -fargument-alias
15014 @itemx -fargument-noalias
15015 @itemx -fargument-noalias-global
15016 @itemx -fargument-noalias-anything
15017 @opindex fargument-alias
15018 @opindex fargument-noalias
15019 @opindex fargument-noalias-global
15020 @opindex fargument-noalias-anything
15021 Specify the possible relationships among parameters and between
15022 parameters and global data.
15023
15024 @option{-fargument-alias} specifies that arguments (parameters) may
15025 alias each other and may alias global storage.@*
15026 @option{-fargument-noalias} specifies that arguments do not alias
15027 each other, but may alias global storage.@*
15028 @option{-fargument-noalias-global} specifies that arguments do not
15029 alias each other and do not alias global storage.
15030 @option{-fargument-noalias-anything} specifies that arguments do not
15031 alias any other storage.
15032
15033 Each language will automatically use whatever option is required by
15034 the language standard.  You should not need to use these options yourself.
15035
15036 @item -fleading-underscore
15037 @opindex fleading-underscore
15038 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
15039 change the way C symbols are represented in the object file.  One use
15040 is to help link with legacy assembly code.
15041
15042 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
15043 generate code that is not binary compatible with code generated without that
15044 switch.  Use it to conform to a non-default application binary interface.
15045 Not all targets provide complete support for this switch.
15046
15047 @item -ftls-model=@var{model}
15048 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
15049 The @var{model} argument should be one of @code{global-dynamic},
15050 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
15051
15052 The default without @option{-fpic} is @code{initial-exec}; with
15053 @option{-fpic} the default is @code{global-dynamic}.
15054
15055 @item -fvisibility=@var{default|internal|hidden|protected}
15056 @opindex fvisibility
15057 Set the default ELF image symbol visibility to the specified option---all
15058 symbols will be marked with this unless overridden within the code.
15059 Using this feature can very substantially improve linking and
15060 load times of shared object libraries, produce more optimized
15061 code, provide near-perfect API export and prevent symbol clashes.
15062 It is @strong{strongly} recommended that you use this in any shared objects
15063 you distribute.
15064
15065 Despite the nomenclature, @code{default} always means public ie;
15066 available to be linked against from outside the shared object.
15067 @code{protected} and @code{internal} are pretty useless in real-world
15068 usage so the only other commonly used option will be @code{hidden}.
15069 The default if @option{-fvisibility} isn't specified is
15070 @code{default}, i.e., make every
15071 symbol public---this causes the same behavior as previous versions of
15072 GCC@.
15073
15074 A good explanation of the benefits offered by ensuring ELF
15075 symbols have the correct visibility is given by ``How To Write
15076 Shared Libraries'' by Ulrich Drepper (which can be found at
15077 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
15078 solution made possible by this option to marking things hidden when
15079 the default is public is to make the default hidden and mark things
15080 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
15081 and @code{__attribute__ ((visibility("default")))} instead of
15082 @code{__declspec(dllexport)} you get almost identical semantics with
15083 identical syntax.  This is a great boon to those working with
15084 cross-platform projects.
15085
15086 For those adding visibility support to existing code, you may find
15087 @samp{#pragma GCC visibility} of use.  This works by you enclosing
15088 the declarations you wish to set visibility for with (for example)
15089 @samp{#pragma GCC visibility push(hidden)} and
15090 @samp{#pragma GCC visibility pop}.
15091 Bear in mind that symbol visibility should be viewed @strong{as
15092 part of the API interface contract} and thus all new code should
15093 always specify visibility when it is not the default ie; declarations
15094 only for use within the local DSO should @strong{always} be marked explicitly
15095 as hidden as so to avoid PLT indirection overheads---making this
15096 abundantly clear also aids readability and self-documentation of the code.
15097 Note that due to ISO C++ specification requirements, operator new and
15098 operator delete must always be of default visibility.
15099
15100 Be aware that headers from outside your project, in particular system
15101 headers and headers from any other library you use, may not be
15102 expecting to be compiled with visibility other than the default.  You
15103 may need to explicitly say @samp{#pragma GCC visibility push(default)}
15104 before including any such headers.
15105
15106 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
15107 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
15108 no modifications.  However, this means that calls to @samp{extern}
15109 functions with no explicit visibility will use the PLT, so it is more
15110 effective to use @samp{__attribute ((visibility))} and/or
15111 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
15112 declarations should be treated as hidden.
15113
15114 Note that @samp{-fvisibility} does affect C++ vague linkage
15115 entities. This means that, for instance, an exception class that will
15116 be thrown between DSOs must be explicitly marked with default
15117 visibility so that the @samp{type_info} nodes will be unified between
15118 the DSOs.
15119
15120 An overview of these techniques, their benefits and how to use them
15121 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
15122
15123 @end table
15124
15125 @c man end
15126
15127 @node Environment Variables
15128 @section Environment Variables Affecting GCC
15129 @cindex environment variables
15130
15131 @c man begin ENVIRONMENT
15132 This section describes several environment variables that affect how GCC
15133 operates.  Some of them work by specifying directories or prefixes to use
15134 when searching for various kinds of files.  Some are used to specify other
15135 aspects of the compilation environment.
15136
15137 Note that you can also specify places to search using options such as
15138 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
15139 take precedence over places specified using environment variables, which
15140 in turn take precedence over those specified by the configuration of GCC@.
15141 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
15142 GNU Compiler Collection (GCC) Internals}.
15143
15144 @table @env
15145 @item LANG
15146 @itemx LC_CTYPE
15147 @c @itemx LC_COLLATE
15148 @itemx LC_MESSAGES
15149 @c @itemx LC_MONETARY
15150 @c @itemx LC_NUMERIC
15151 @c @itemx LC_TIME
15152 @itemx LC_ALL
15153 @findex LANG
15154 @findex LC_CTYPE
15155 @c @findex LC_COLLATE
15156 @findex LC_MESSAGES
15157 @c @findex LC_MONETARY
15158 @c @findex LC_NUMERIC
15159 @c @findex LC_TIME
15160 @findex LC_ALL
15161 @cindex locale
15162 These environment variables control the way that GCC uses
15163 localization information that allow GCC to work with different
15164 national conventions.  GCC inspects the locale categories
15165 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
15166 so.  These locale categories can be set to any value supported by your
15167 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
15168 Kingdom encoded in UTF-8.
15169
15170 The @env{LC_CTYPE} environment variable specifies character
15171 classification.  GCC uses it to determine the character boundaries in
15172 a string; this is needed for some multibyte encodings that contain quote
15173 and escape characters that would otherwise be interpreted as a string
15174 end or escape.
15175
15176 The @env{LC_MESSAGES} environment variable specifies the language to
15177 use in diagnostic messages.
15178
15179 If the @env{LC_ALL} environment variable is set, it overrides the value
15180 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
15181 and @env{LC_MESSAGES} default to the value of the @env{LANG}
15182 environment variable.  If none of these variables are set, GCC
15183 defaults to traditional C English behavior.
15184
15185 @item TMPDIR
15186 @findex TMPDIR
15187 If @env{TMPDIR} is set, it specifies the directory to use for temporary
15188 files.  GCC uses temporary files to hold the output of one stage of
15189 compilation which is to be used as input to the next stage: for example,
15190 the output of the preprocessor, which is the input to the compiler
15191 proper.
15192
15193 @item GCC_EXEC_PREFIX
15194 @findex GCC_EXEC_PREFIX
15195 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
15196 names of the subprograms executed by the compiler.  No slash is added
15197 when this prefix is combined with the name of a subprogram, but you can
15198 specify a prefix that ends with a slash if you wish.
15199
15200 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
15201 an appropriate prefix to use based on the pathname it was invoked with.
15202
15203 If GCC cannot find the subprogram using the specified prefix, it
15204 tries looking in the usual places for the subprogram.
15205
15206 The default value of @env{GCC_EXEC_PREFIX} is
15207 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
15208 the installed compiler. In many cases @var{prefix} is the value
15209 of @code{prefix} when you ran the @file{configure} script.
15210
15211 Other prefixes specified with @option{-B} take precedence over this prefix.
15212
15213 This prefix is also used for finding files such as @file{crt0.o} that are
15214 used for linking.
15215
15216 In addition, the prefix is used in an unusual way in finding the
15217 directories to search for header files.  For each of the standard
15218 directories whose name normally begins with @samp{/usr/local/lib/gcc}
15219 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
15220 replacing that beginning with the specified prefix to produce an
15221 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
15222 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
15223 These alternate directories are searched first; the standard directories
15224 come next. If a standard directory begins with the configured
15225 @var{prefix} then the value of @var{prefix} is replaced by
15226 @env{GCC_EXEC_PREFIX} when looking for header files.
15227
15228 @item COMPILER_PATH
15229 @findex COMPILER_PATH
15230 The value of @env{COMPILER_PATH} is a colon-separated list of
15231 directories, much like @env{PATH}.  GCC tries the directories thus
15232 specified when searching for subprograms, if it can't find the
15233 subprograms using @env{GCC_EXEC_PREFIX}.
15234
15235 @item LIBRARY_PATH
15236 @findex LIBRARY_PATH
15237 The value of @env{LIBRARY_PATH} is a colon-separated list of
15238 directories, much like @env{PATH}.  When configured as a native compiler,
15239 GCC tries the directories thus specified when searching for special
15240 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
15241 using GCC also uses these directories when searching for ordinary
15242 libraries for the @option{-l} option (but directories specified with
15243 @option{-L} come first).
15244
15245 @item LANG
15246 @findex LANG
15247 @cindex locale definition
15248 This variable is used to pass locale information to the compiler.  One way in
15249 which this information is used is to determine the character set to be used
15250 when character literals, string literals and comments are parsed in C and C++.
15251 When the compiler is configured to allow multibyte characters,
15252 the following values for @env{LANG} are recognized:
15253
15254 @table @samp
15255 @item C-JIS
15256 Recognize JIS characters.
15257 @item C-SJIS
15258 Recognize SJIS characters.
15259 @item C-EUCJP
15260 Recognize EUCJP characters.
15261 @end table
15262
15263 If @env{LANG} is not defined, or if it has some other value, then the
15264 compiler will use mblen and mbtowc as defined by the default locale to
15265 recognize and translate multibyte characters.
15266 @end table
15267
15268 @noindent
15269 Some additional environments variables affect the behavior of the
15270 preprocessor.
15271
15272 @include cppenv.texi
15273
15274 @c man end
15275
15276 @node Precompiled Headers
15277 @section Using Precompiled Headers
15278 @cindex precompiled headers
15279 @cindex speed of compilation
15280
15281 Often large projects have many header files that are included in every
15282 source file.  The time the compiler takes to process these header files
15283 over and over again can account for nearly all of the time required to
15284 build the project.  To make builds faster, GCC allows users to
15285 `precompile' a header file; then, if builds can use the precompiled
15286 header file they will be much faster.
15287
15288 To create a precompiled header file, simply compile it as you would any
15289 other file, if necessary using the @option{-x} option to make the driver
15290 treat it as a C or C++ header file.  You will probably want to use a
15291 tool like @command{make} to keep the precompiled header up-to-date when
15292 the headers it contains change.
15293
15294 A precompiled header file will be searched for when @code{#include} is
15295 seen in the compilation.  As it searches for the included file
15296 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
15297 compiler looks for a precompiled header in each directory just before it
15298 looks for the include file in that directory.  The name searched for is
15299 the name specified in the @code{#include} with @samp{.gch} appended.  If
15300 the precompiled header file can't be used, it is ignored.
15301
15302 For instance, if you have @code{#include "all.h"}, and you have
15303 @file{all.h.gch} in the same directory as @file{all.h}, then the
15304 precompiled header file will be used if possible, and the original
15305 header will be used otherwise.
15306
15307 Alternatively, you might decide to put the precompiled header file in a
15308 directory and use @option{-I} to ensure that directory is searched
15309 before (or instead of) the directory containing the original header.
15310 Then, if you want to check that the precompiled header file is always
15311 used, you can put a file of the same name as the original header in this
15312 directory containing an @code{#error} command.
15313
15314 This also works with @option{-include}.  So yet another way to use
15315 precompiled headers, good for projects not designed with precompiled
15316 header files in mind, is to simply take most of the header files used by
15317 a project, include them from another header file, precompile that header
15318 file, and @option{-include} the precompiled header.  If the header files
15319 have guards against multiple inclusion, they will be skipped because
15320 they've already been included (in the precompiled header).
15321
15322 If you need to precompile the same header file for different
15323 languages, targets, or compiler options, you can instead make a
15324 @emph{directory} named like @file{all.h.gch}, and put each precompiled
15325 header in the directory, perhaps using @option{-o}.  It doesn't matter
15326 what you call the files in the directory, every precompiled header in
15327 the directory will be considered.  The first precompiled header
15328 encountered in the directory that is valid for this compilation will
15329 be used; they're searched in no particular order.
15330
15331 There are many other possibilities, limited only by your imagination,
15332 good sense, and the constraints of your build system.
15333
15334 A precompiled header file can be used only when these conditions apply:
15335
15336 @itemize
15337 @item
15338 Only one precompiled header can be used in a particular compilation.
15339
15340 @item
15341 A precompiled header can't be used once the first C token is seen.  You
15342 can have preprocessor directives before a precompiled header; you can
15343 even include a precompiled header from inside another header, so long as
15344 there are no C tokens before the @code{#include}.
15345
15346 @item
15347 The precompiled header file must be produced for the same language as
15348 the current compilation.  You can't use a C precompiled header for a C++
15349 compilation.
15350
15351 @item
15352 The precompiled header file must have been produced by the same compiler
15353 binary as the current compilation is using.
15354
15355 @item
15356 Any macros defined before the precompiled header is included must
15357 either be defined in the same way as when the precompiled header was
15358 generated, or must not affect the precompiled header, which usually
15359 means that they don't appear in the precompiled header at all.
15360
15361 The @option{-D} option is one way to define a macro before a
15362 precompiled header is included; using a @code{#define} can also do it.
15363 There are also some options that define macros implicitly, like
15364 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
15365 defined this way.
15366
15367 @item If debugging information is output when using the precompiled
15368 header, using @option{-g} or similar, the same kind of debugging information
15369 must have been output when building the precompiled header.  However,
15370 a precompiled header built using @option{-g} can be used in a compilation
15371 when no debugging information is being output.
15372
15373 @item The same @option{-m} options must generally be used when building
15374 and using the precompiled header.  @xref{Submodel Options},
15375 for any cases where this rule is relaxed.
15376
15377 @item Each of the following options must be the same when building and using
15378 the precompiled header:
15379
15380 @gccoptlist{-fexceptions -funit-at-a-time}
15381
15382 @item
15383 Some other command-line options starting with @option{-f},
15384 @option{-p}, or @option{-O} must be defined in the same way as when
15385 the precompiled header was generated.  At present, it's not clear
15386 which options are safe to change and which are not; the safest choice
15387 is to use exactly the same options when generating and using the
15388 precompiled header.  The following are known to be safe:
15389
15390 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
15391 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
15392 -fsched-verbose=<number>  -fschedule-insns  -fvisibility= @gol
15393 -pedantic-errors}
15394
15395 @end itemize
15396
15397 For all of these except the last, the compiler will automatically
15398 ignore the precompiled header if the conditions aren't met.  If you
15399 find an option combination that doesn't work and doesn't cause the
15400 precompiled header to be ignored, please consider filing a bug report,
15401 see @ref{Bugs}.
15402
15403 If you do use differing options when generating and using the
15404 precompiled header, the actual behavior will be a mixture of the
15405 behavior for the options.  For instance, if you use @option{-g} to
15406 generate the precompiled header but not when using it, you may or may
15407 not get debugging information for routines in the precompiled header.
15408
15409 @node Running Protoize
15410 @section Running Protoize
15411
15412 The program @code{protoize} is an optional part of GCC@.  You can use
15413 it to add prototypes to a program, thus converting the program to ISO
15414 C in one respect.  The companion program @code{unprotoize} does the
15415 reverse: it removes argument types from any prototypes that are found.
15416
15417 When you run these programs, you must specify a set of source files as
15418 command line arguments.  The conversion programs start out by compiling
15419 these files to see what functions they define.  The information gathered
15420 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
15421
15422 After scanning comes actual conversion.  The specified files are all
15423 eligible to be converted; any files they include (whether sources or
15424 just headers) are eligible as well.
15425
15426 But not all the eligible files are converted.  By default,
15427 @code{protoize} and @code{unprotoize} convert only source and header
15428 files in the current directory.  You can specify additional directories
15429 whose files should be converted with the @option{-d @var{directory}}
15430 option.  You can also specify particular files to exclude with the
15431 @option{-x @var{file}} option.  A file is converted if it is eligible, its
15432 directory name matches one of the specified directory names, and its
15433 name within the directory has not been excluded.
15434
15435 Basic conversion with @code{protoize} consists of rewriting most
15436 function definitions and function declarations to specify the types of
15437 the arguments.  The only ones not rewritten are those for varargs
15438 functions.
15439
15440 @code{protoize} optionally inserts prototype declarations at the
15441 beginning of the source file, to make them available for any calls that
15442 precede the function's definition.  Or it can insert prototype
15443 declarations with block scope in the blocks where undeclared functions
15444 are called.
15445
15446 Basic conversion with @code{unprotoize} consists of rewriting most
15447 function declarations to remove any argument types, and rewriting
15448 function definitions to the old-style pre-ISO form.
15449
15450 Both conversion programs print a warning for any function declaration or
15451 definition that they can't convert.  You can suppress these warnings
15452 with @option{-q}.
15453
15454 The output from @code{protoize} or @code{unprotoize} replaces the
15455 original source file.  The original file is renamed to a name ending
15456 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
15457 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
15458 for DOS) file already exists, then the source file is simply discarded.
15459
15460 @code{protoize} and @code{unprotoize} both depend on GCC itself to
15461 scan the program and collect information about the functions it uses.
15462 So neither of these programs will work until GCC is installed.
15463
15464 Here is a table of the options you can use with @code{protoize} and
15465 @code{unprotoize}.  Each option works with both programs unless
15466 otherwise stated.
15467
15468 @table @code
15469 @item -B @var{directory}
15470 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
15471 usual directory (normally @file{/usr/local/lib}).  This file contains
15472 prototype information about standard system functions.  This option
15473 applies only to @code{protoize}.
15474
15475 @item -c @var{compilation-options}
15476 Use @var{compilation-options} as the options when running @command{gcc} to
15477 produce the @samp{.X} files.  The special option @option{-aux-info} is
15478 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
15479
15480 Note that the compilation options must be given as a single argument to
15481 @code{protoize} or @code{unprotoize}.  If you want to specify several
15482 @command{gcc} options, you must quote the entire set of compilation options
15483 to make them a single word in the shell.
15484
15485 There are certain @command{gcc} arguments that you cannot use, because they
15486 would produce the wrong kind of output.  These include @option{-g},
15487 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
15488 the @var{compilation-options}, they are ignored.
15489
15490 @item -C
15491 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
15492 systems) instead of @samp{.c}.  This is convenient if you are converting
15493 a C program to C++.  This option applies only to @code{protoize}.
15494
15495 @item -g
15496 Add explicit global declarations.  This means inserting explicit
15497 declarations at the beginning of each source file for each function
15498 that is called in the file and was not declared.  These declarations
15499 precede the first function definition that contains a call to an
15500 undeclared function.  This option applies only to @code{protoize}.
15501
15502 @item -i @var{string}
15503 Indent old-style parameter declarations with the string @var{string}.
15504 This option applies only to @code{protoize}.
15505
15506 @code{unprotoize} converts prototyped function definitions to old-style
15507 function definitions, where the arguments are declared between the
15508 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
15509 uses five spaces as the indentation.  If you want to indent with just
15510 one space instead, use @option{-i " "}.
15511
15512 @item -k
15513 Keep the @samp{.X} files.  Normally, they are deleted after conversion
15514 is finished.
15515
15516 @item -l
15517 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
15518 a prototype declaration for each function in each block which calls the
15519 function without any declaration.  This option applies only to
15520 @code{protoize}.
15521
15522 @item -n
15523 Make no real changes.  This mode just prints information about the conversions
15524 that would have been done without @option{-n}.
15525
15526 @item -N
15527 Make no @samp{.save} files.  The original files are simply deleted.
15528 Use this option with caution.
15529
15530 @item -p @var{program}
15531 Use the program @var{program} as the compiler.  Normally, the name
15532 @file{gcc} is used.
15533
15534 @item -q
15535 Work quietly.  Most warnings are suppressed.
15536
15537 @item -v
15538 Print the version number, just like @option{-v} for @command{gcc}.
15539 @end table
15540
15541 If you need special compiler options to compile one of your program's
15542 source files, then you should generate that file's @samp{.X} file
15543 specially, by running @command{gcc} on that source file with the
15544 appropriate options and the option @option{-aux-info}.  Then run
15545 @code{protoize} on the entire set of files.  @code{protoize} will use
15546 the existing @samp{.X} file because it is newer than the source file.
15547 For example:
15548
15549 @smallexample
15550 gcc -Dfoo=bar file1.c -aux-info file1.X
15551 protoize *.c
15552 @end smallexample
15553
15554 @noindent
15555 You need to include the special files along with the rest in the
15556 @code{protoize} command, even though their @samp{.X} files already
15557 exist, because otherwise they won't get converted.
15558
15559 @xref{Protoize Caveats}, for more information on how to use
15560 @code{protoize} successfully.