OSDN Git Service

* tree-pretty-print.c (dump_generic_node): Print sign of Inf.
[pf3gnuchains/gcc-fork.git] / gcc / doc / invoke.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2 @c 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
3 @c This is part of the GCC manual.
4 @c For copying conditions, see the file gcc.texi.
5
6 @ignore
7 @c man begin INCLUDE
8 @include gcc-vers.texi
9 @c man end
10
11 @c man begin COPYRIGHT
12 Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
13 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
14
15 Permission is granted to copy, distribute and/or modify this document
16 under the terms of the GNU Free Documentation License, Version 1.2 or
17 any later version published by the Free Software Foundation; with the
18 Invariant Sections being ``GNU General Public License'' and ``Funding
19 Free Software'', the Front-Cover texts being (a) (see below), and with
20 the Back-Cover Texts being (b) (see below).  A copy of the license is
21 included in the gfdl(7) man page.
22
23 (a) The FSF's Front-Cover Text is:
24
25      A GNU Manual
26
27 (b) The FSF's Back-Cover Text is:
28
29      You have freedom to copy and modify this GNU Manual, like GNU
30      software.  Copies published by the Free Software Foundation raise
31      funds for GNU development.
32 @c man end
33 @c Set file name and title for the man page.
34 @setfilename gcc
35 @settitle GNU project C and C++ compiler
36 @c man begin SYNOPSIS
37 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
38     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
39     [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
40     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
41     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
42     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
43     [@option{-o} @var{outfile}] [@@@var{file}] @var{infile}@dots{}
44
45 Only the most useful options are listed here; see below for the
46 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
47 @c man end
48 @c man begin SEEALSO
49 gpl(7), gfdl(7), fsf-funding(7),
50 cpp(1), gcov(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
51 and the Info entries for @file{gcc}, @file{cpp}, @file{as},
52 @file{ld}, @file{binutils} and @file{gdb}.
53 @c man end
54 @c man begin BUGS
55 For instructions on reporting bugs, see
56 @w{@uref{http://gcc.gnu.org/bugs.html}}.
57 @c man end
58 @c man begin AUTHOR
59 See the Info entry for @command{gcc}, or
60 @w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
61 for contributors to GCC@.
62 @c man end
63 @end ignore
64
65 @node Invoking GCC
66 @chapter GCC Command Options
67 @cindex GCC command options
68 @cindex command options
69 @cindex options, GCC command
70
71 @c man begin DESCRIPTION
72 When you invoke GCC, it normally does preprocessing, compilation,
73 assembly and linking.  The ``overall options'' allow you to stop this
74 process at an intermediate stage.  For example, the @option{-c} option
75 says not to run the linker.  Then the output consists of object files
76 output by the assembler.
77
78 Other options are passed on to one stage of processing.  Some options
79 control the preprocessor and others the compiler itself.  Yet other
80 options control the assembler and linker; most of these are not
81 documented here, since you rarely need to use any of them.
82
83 @cindex C compilation options
84 Most of the command line options that you can use with GCC are useful
85 for C programs; when an option is only useful with another language
86 (usually C++), the explanation says so explicitly.  If the description
87 for a particular option does not mention a source language, you can use
88 that option with all supported languages.
89
90 @cindex C++ compilation options
91 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
92 options for compiling C++ programs.
93
94 @cindex grouping options
95 @cindex options, grouping
96 The @command{gcc} program accepts options and file names as operands.  Many
97 options have multi-letter names; therefore multiple single-letter options
98 may @emph{not} be grouped: @option{-dr} is very different from @w{@samp{-d
99 -r}}.
100
101 @cindex order of options
102 @cindex options, order
103 You can mix options and other arguments.  For the most part, the order
104 you use doesn't matter.  Order does matter when you use several options
105 of the same kind; for example, if you specify @option{-L} more than once,
106 the directories are searched in the order specified.
107
108 Many options have long names starting with @samp{-f} or with
109 @samp{-W}---for example, 
110 @option{-fmove-loop-invariants}, @option{-Wformat} and so on.  Most of
111 these have both positive and negative forms; the negative form of
112 @option{-ffoo} would be @option{-fno-foo}.  This manual documents
113 only one of these two forms, whichever one is not the default.
114
115 @c man end
116
117 @xref{Option Index}, for an index to GCC's options.
118
119 @menu
120 * Option Summary::      Brief list of all options, without explanations.
121 * Overall Options::     Controlling the kind of output:
122                         an executable, object files, assembler files,
123                         or preprocessed source.
124 * Invoking G++::        Compiling C++ programs.
125 * C Dialect Options::   Controlling the variant of C language compiled.
126 * C++ Dialect Options:: Variations on C++.
127 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
128                         and Objective-C++.
129 * Language Independent Options:: Controlling how diagnostics should be
130                         formatted.
131 * Warning Options::     How picky should the compiler be?
132 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
133 * Optimize Options::    How much optimization?
134 * Preprocessor Options:: Controlling header files and macro definitions.
135                          Also, getting dependency information for Make.
136 * Assembler Options::   Passing options to the assembler.
137 * Link Options::        Specifying libraries and so on.
138 * Directory Options::   Where to find header files and libraries.
139                         Where to find the compiler executable files.
140 * Spec Files::          How to pass switches to sub-processes.
141 * Target Options::      Running a cross-compiler, or an old version of GCC.
142 * Submodel Options::    Specifying minor hardware or convention variations,
143                         such as 68010 vs 68020.
144 * Code Gen Options::    Specifying conventions for function calls, data layout
145                         and register usage.
146 * Environment Variables:: Env vars that affect GCC.
147 * Precompiled Headers:: Compiling a header once, and using it many times.
148 * Running Protoize::    Automatically adding or removing function prototypes.
149 @end menu
150
151 @c man begin OPTIONS
152
153 @node Option Summary
154 @section Option Summary
155
156 Here is a summary of all the options, grouped by type.  Explanations are
157 in the following sections.
158
159 @table @emph
160 @item Overall Options
161 @xref{Overall Options,,Options Controlling the Kind of Output}.
162 @gccoptlist{-c  -S  -E  -o @var{file}  -combine -pipe  -pass-exit-codes  @gol
163 -x @var{language}  -v  -###  --help  --target-help  --version @@@var{file}}
164
165 @item C Language Options
166 @xref{C Dialect Options,,Options Controlling C Dialect}.
167 @gccoptlist{-ansi  -std=@var{standard}  -aux-info @var{filename} @gol
168 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
169 -fhosted  -ffreestanding -fopenmp -fms-extensions @gol
170 -trigraphs  -no-integrated-cpp  -traditional  -traditional-cpp @gol
171 -fallow-single-precision  -fcond-mismatch @gol
172 -fsigned-bitfields  -fsigned-char @gol
173 -funsigned-bitfields  -funsigned-char}
174
175 @item C++ Language Options
176 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
177 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
178 -fconserve-space  -ffriend-injection @gol
179 -fno-elide-constructors @gol
180 -fno-enforce-eh-specs @gol
181 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
182 -fno-implicit-templates @gol
183 -fno-implicit-inline-templates @gol
184 -fno-implement-inlines  -fms-extensions @gol
185 -fno-nonansi-builtins  -fno-operator-names @gol
186 -fno-optional-diags  -fpermissive @gol
187 -frepo  -fno-rtti  -fstats  -ftemplate-depth-@var{n} @gol
188 -fno-threadsafe-statics -fuse-cxa-atexit  -fno-weak  -nostdinc++ @gol
189 -fno-default-inline  -fvisibility-inlines-hidden @gol
190 -Wabi  -Wctor-dtor-privacy @gol
191 -Wnon-virtual-dtor  -Wreorder @gol
192 -Weffc++  -Wno-deprecated  -Wstrict-null-sentinel @gol
193 -Wno-non-template-friend  -Wold-style-cast @gol
194 -Woverloaded-virtual  -Wno-pmf-conversions @gol
195 -Wsign-promo}
196
197 @item Objective-C and Objective-C++ Language Options
198 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
199 Objective-C and Objective-C++ Dialects}.
200 @gccoptlist{-fconstant-string-class=@var{class-name} @gol
201 -fgnu-runtime  -fnext-runtime @gol
202 -fno-nil-receivers @gol
203 -fobjc-call-cxx-cdtors @gol
204 -fobjc-direct-dispatch @gol
205 -fobjc-exceptions @gol
206 -fobjc-gc @gol
207 -freplace-objc-classes @gol
208 -fzero-link @gol
209 -gen-decls @gol
210 -Wassign-intercept @gol
211 -Wno-protocol  -Wselector @gol
212 -Wstrict-selector-match @gol
213 -Wundeclared-selector}
214
215 @item Language Independent Options
216 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
217 @gccoptlist{-fmessage-length=@var{n}  @gol
218 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}  @gol
219 -fdiagnostics-show-option}
220
221 @item Warning Options
222 @xref{Warning Options,,Options to Request or Suppress Warnings}.
223 @gccoptlist{-fsyntax-only  -pedantic  -pedantic-errors @gol
224 -w  -Wextra  -Wall  -Waggregate-return -Walways-true -Wno-attributes @gol
225 -Wc++-compat -Wcast-align  -Wcast-qual  -Wchar-subscripts  -Wcomment @gol
226 -Wconversion  -Wno-deprecated-declarations @gol
227 -Wdisabled-optimization  -Wno-div-by-zero  -Wno-endif-labels @gol
228 -Werror  -Werror-* -Werror-implicit-function-declaration @gol
229 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
230 -Wno-format-extra-args -Wformat-nonliteral @gol
231 -Wformat-security  -Wformat-y2k @gol
232 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
233 -Wimport  -Wno-import  -Winit-self  -Winline @gol
234 -Wno-int-to-pointer-cast @gol
235 -Wno-invalid-offsetof  -Winvalid-pch @gol
236 -Wlarger-than-@var{len}  -Wunsafe-loop-optimizations  -Wlong-long @gol
237 -Wmain  -Wmissing-braces  -Wmissing-field-initializers @gol
238 -Wmissing-format-attribute  -Wmissing-include-dirs @gol
239 -Wmissing-noreturn @gol
240 -Wno-multichar  -Wnonnull  -Wno-overflow @gol
241 -Woverlength-strings  -Wpacked  -Wpadded @gol
242 -Wparentheses  -Wpointer-arith  -Wno-pointer-to-int-cast @gol
243 -Wredundant-decls @gol
244 -Wreturn-type  -Wsequence-point  -Wshadow @gol
245 -Wsign-compare  -Wstack-protector @gol
246 -Wstrict-aliasing -Wstrict-aliasing=2 @gol
247 -Wstring-literal-comparison @gol
248 -Wswitch  -Wswitch-default  -Wswitch-enum @gol
249 -Wsystem-headers  -Wtrigraphs  -Wundef  -Wuninitialized @gol
250 -Wunknown-pragmas  -Wno-pragmas -Wunreachable-code @gol
251 -Wunused  -Wunused-function  -Wunused-label  -Wunused-parameter @gol
252 -Wunused-value  -Wunused-variable  -Wvariadic-macros @gol
253 -Wvolatile-register-var  -Wwrite-strings}
254
255 @item C-only Warning Options
256 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
257 -Wmissing-prototypes  -Wnested-externs  -Wold-style-definition @gol
258 -Wstrict-prototypes  -Wtraditional @gol
259 -Wdeclaration-after-statement -Wpointer-sign}
260
261 @item Debugging Options
262 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
263 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
264 -fdump-noaddr -fdump-unnumbered  -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
265 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
266 -fdump-ipa-all -fdump-ipa-cgraph @gol
267 -fdump-tree-all @gol
268 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
269 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
270 -fdump-tree-inlined@r{[}-@var{n}@r{]} @gol
271 -fdump-tree-cfg -fdump-tree-vcg -fdump-tree-alias @gol
272 -fdump-tree-ch @gol
273 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
274 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
275 -fdump-tree-gimple@r{[}-raw@r{]} -fdump-tree-mudflap@r{[}-@var{n}@r{]} @gol
276 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
277 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
278 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
279 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
280 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
281 -fdump-tree-nrv -fdump-tree-vect @gol
282 -fdump-tree-sink @gol
283 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
284 -fdump-tree-salias @gol
285 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
286 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
287 -ftree-vectorizer-verbose=@var{n} @gol
288 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
289 -feliminate-dwarf2-dups -feliminate-unused-debug-types @gol
290 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
291 -fmem-report -fprofile-arcs @gol
292 -frandom-seed=@var{string} -fsched-verbose=@var{n} @gol
293 -ftest-coverage  -ftime-report -fvar-tracking @gol
294 -g  -g@var{level}  -gcoff -gdwarf-2 @gol
295 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
296 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
297 -print-multi-directory  -print-multi-lib @gol
298 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
299 -save-temps  -time}
300
301 @item Optimization Options
302 @xref{Optimize Options,,Options that Control Optimization}.
303 @gccoptlist{-falign-functions=@var{n}  -falign-jumps=@var{n} @gol
304 -falign-labels=@var{n}  -falign-loops=@var{n}  @gol
305 -fbounds-check -fmudflap -fmudflapth -fmudflapir @gol
306 -fbranch-probabilities -fprofile-values -fvpt -fbranch-target-load-optimize @gol
307 -fbranch-target-load-optimize2 -fbtr-bb-exclusive @gol
308 -fcaller-saves  -fcprop-registers  -fcse-follow-jumps @gol
309 -fcse-skip-blocks  -fcx-limited-range  -fdata-sections @gol
310 -fdelayed-branch  -fdelete-null-pointer-checks -fearly-inlining @gol
311 -fexpensive-optimizations  -ffast-math  -ffloat-store @gol
312 -fforce-addr  -fforward-propagate  -ffunction-sections @gol
313 -fgcse  -fgcse-lm  -fgcse-sm  -fgcse-las  -fgcse-after-reload @gol
314 -fcrossjumping  -fif-conversion  -fif-conversion2 @gol
315 -finline-functions  -finline-functions-called-once @gol
316 -finline-limit=@var{n}  -fkeep-inline-functions @gol
317 -fkeep-static-consts  -fmerge-constants  -fmerge-all-constants @gol
318 -fmodulo-sched -fno-branch-count-reg @gol
319 -fno-default-inline  -fno-defer-pop -fmove-loop-invariants @gol
320 -fno-function-cse  -fno-guess-branch-probability @gol
321 -fno-inline  -fno-math-errno  -fno-peephole  -fno-peephole2 @gol
322 -funsafe-math-optimizations  -funsafe-loop-optimizations  -ffinite-math-only @gol
323 -fno-toplevel-reorder -fno-trapping-math  -fno-zero-initialized-in-bss @gol
324 -fomit-frame-pointer  -foptimize-register-move @gol
325 -foptimize-sibling-calls  -fprefetch-loop-arrays @gol
326 -fprofile-generate -fprofile-use @gol
327 -fregmove  -frename-registers @gol
328 -freorder-blocks  -freorder-blocks-and-partition -freorder-functions @gol
329 -frerun-cse-after-loop @gol
330 -frounding-math -frtl-abstract-sequences @gol
331 -fschedule-insns  -fschedule-insns2 @gol
332 -fno-sched-interblock  -fno-sched-spec  -fsched-spec-load @gol
333 -fsched-spec-load-dangerous  @gol
334 -fsched-stalled-insns=@var{n} -fsched-stalled-insns-dep=@var{n} @gol
335 -fsched2-use-superblocks @gol
336 -fsched2-use-traces -fsee -freschedule-modulo-scheduled-loops @gol
337 -fsection-anchors  -fsignaling-nans  -fsingle-precision-constant @gol
338 -fstack-protector  -fstack-protector-all @gol
339 -fstrict-aliasing  -ftracer  -fthread-jumps @gol
340 -funroll-all-loops  -funroll-loops  -fpeel-loops @gol
341 -fsplit-ivs-in-unroller -funswitch-loops @gol
342 -fvariable-expansion-in-unroller @gol
343 -ftree-pre  -ftree-ccp  -ftree-dce -ftree-loop-optimize @gol
344 -ftree-loop-linear -ftree-loop-im -ftree-loop-ivcanon -fivopts @gol
345 -ftree-dominator-opts -ftree-dse -ftree-copyrename -ftree-sink @gol
346 -ftree-ch -ftree-sra -ftree-ter -ftree-lrs -ftree-fre -ftree-vectorize @gol
347 -ftree-vect-loop-version -ftree-salias -fipa-pta -fweb @gol
348 -ftree-copy-prop -ftree-store-ccp -ftree-store-copy-prop -fwhole-program @gol
349 --param @var{name}=@var{value}
350 -O  -O0  -O1  -O2  -O3  -Os}
351
352 @item Preprocessor Options
353 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
354 @gccoptlist{-A@var{question}=@var{answer} @gol
355 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
356 -C  -dD  -dI  -dM  -dN @gol
357 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
358 -idirafter @var{dir} @gol
359 -include @var{file}  -imacros @var{file} @gol
360 -iprefix @var{file}  -iwithprefix @var{dir} @gol
361 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
362 -imultilib @var{dir} -isysroot @var{dir} @gol
363 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
364 -P  -fworking-directory  -remap @gol
365 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option} @gol
366 -Xpreprocessor @var{option}}
367
368 @item Assembler Option
369 @xref{Assembler Options,,Passing Options to the Assembler}.
370 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
371
372 @item Linker Options
373 @xref{Link Options,,Options for Linking}.
374 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
375 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
376 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
377 -Wl,@var{option}  -Xlinker @var{option} @gol
378 -u @var{symbol}}
379
380 @item Directory Options
381 @xref{Directory Options,,Options for Directory Search}.
382 @gccoptlist{-B@var{prefix}  -I@var{dir}  -iquote@var{dir}  -L@var{dir}
383 -specs=@var{file}  -I- --sysroot=@var{dir}}
384
385 @item Target Options
386 @c I wrote this xref this way to avoid overfull hbox. -- rms
387 @xref{Target Options}.
388 @gccoptlist{-V @var{version}  -b @var{machine}}
389
390 @item Machine Dependent Options
391 @xref{Submodel Options,,Hardware Models and Configurations}.
392 @c This list is ordered alphanumerically by subsection name.
393 @c Try and put the significant identifier (CPU or system) first,
394 @c so users have a clue at guessing where the ones they want will be.
395
396 @emph{ARC Options}
397 @gccoptlist{-EB  -EL @gol
398 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
399 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
400
401 @emph{ARM Options}
402 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
403 -mabi=@var{name} @gol
404 -mapcs-stack-check  -mno-apcs-stack-check @gol
405 -mapcs-float  -mno-apcs-float @gol
406 -mapcs-reentrant  -mno-apcs-reentrant @gol
407 -msched-prolog  -mno-sched-prolog @gol
408 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
409 -mfloat-abi=@var{name}  -msoft-float  -mhard-float  -mfpe @gol
410 -mthumb-interwork  -mno-thumb-interwork @gol
411 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
412 -mstructure-size-boundary=@var{n} @gol
413 -mabort-on-noreturn @gol
414 -mlong-calls  -mno-long-calls @gol
415 -msingle-pic-base  -mno-single-pic-base @gol
416 -mpic-register=@var{reg} @gol
417 -mnop-fun-dllimport @gol
418 -mcirrus-fix-invalid-insns -mno-cirrus-fix-invalid-insns @gol
419 -mpoke-function-name @gol
420 -mthumb  -marm @gol
421 -mtpcs-frame  -mtpcs-leaf-frame @gol
422 -mcaller-super-interworking  -mcallee-super-interworking @gol
423 -mtp=@var{name}}
424
425 @emph{AVR Options}
426 @gccoptlist{-mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
427 -mcall-prologues  -mno-tablejump  -mtiny-stack  -mint8}
428
429 @emph{Blackfin Options}
430 @gccoptlist{-momit-leaf-frame-pointer -mno-omit-leaf-frame-pointer @gol
431 -mspecld-anomaly -mno-specld-anomaly -mcsync-anomaly -mno-csync-anomaly @gol
432 -mlow-64k -mno-low64k -mid-shared-library @gol
433 -mno-id-shared-library -mshared-library-id=@var{n} @gol
434 -mlong-calls  -mno-long-calls}
435
436 @emph{CRIS Options}
437 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
438 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
439 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
440 -mstack-align  -mdata-align  -mconst-align @gol
441 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
442 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
443 -mmul-bug-workaround  -mno-mul-bug-workaround}
444
445 @emph{CRX Options}
446 @gccoptlist{-mmac -mpush-args}
447
448 @emph{Darwin Options}
449 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
450 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
451 -client_name  -compatibility_version  -current_version @gol
452 -dead_strip @gol
453 -dependency-file  -dylib_file  -dylinker_install_name @gol
454 -dynamic  -dynamiclib  -exported_symbols_list @gol
455 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
456 -force_flat_namespace  -headerpad_max_install_names @gol
457 -image_base  -init  -install_name  -keep_private_externs @gol
458 -multi_module  -multiply_defined  -multiply_defined_unused @gol
459 -noall_load   -no_dead_strip_inits_and_terms @gol
460 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
461 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
462 -private_bundle  -read_only_relocs  -sectalign @gol
463 -sectobjectsymbols  -whyload  -seg1addr @gol
464 -sectcreate  -sectobjectsymbols  -sectorder @gol
465 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
466 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
467 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
468 -single_module  -static  -sub_library  -sub_umbrella @gol
469 -twolevel_namespace  -umbrella  -undefined @gol
470 -unexported_symbols_list  -weak_reference_mismatches @gol
471 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
472 -mkernel -mone-byte-bool}
473
474 @emph{DEC Alpha Options}
475 @gccoptlist{-mno-fp-regs  -msoft-float  -malpha-as  -mgas @gol
476 -mieee  -mieee-with-inexact  -mieee-conformant @gol
477 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
478 -mtrap-precision=@var{mode}  -mbuild-constants @gol
479 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
480 -mbwx  -mmax  -mfix  -mcix @gol
481 -mfloat-vax  -mfloat-ieee @gol
482 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
483 -msmall-text  -mlarge-text @gol
484 -mmemory-latency=@var{time}}
485
486 @emph{DEC Alpha/VMS Options}
487 @gccoptlist{-mvms-return-codes}
488
489 @emph{FRV Options}
490 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
491 -mhard-float  -msoft-float @gol
492 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
493 -mdouble  -mno-double @gol
494 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
495 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
496 -mlinked-fp  -mlong-calls  -malign-labels @gol
497 -mlibrary-pic  -macc-4  -macc-8 @gol
498 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
499 -moptimize-membar -mno-optimize-membar @gol
500 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
501 -mvliw-branch  -mno-vliw-branch @gol
502 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
503 -mno-nested-cond-exec  -mtomcat-stats @gol
504 -mTLS -mtls @gol
505 -mcpu=@var{cpu}}
506
507 @emph{GNU/Linux Options}
508 @gccoptlist{-muclibc}
509
510 @emph{H8/300 Options}
511 @gccoptlist{-mrelax  -mh  -ms  -mn  -mint32  -malign-300}
512
513 @emph{HPPA Options}
514 @gccoptlist{-march=@var{architecture-type} @gol
515 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
516 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
517 -mfixed-range=@var{register-range} @gol
518 -mjump-in-delay -mlinker-opt -mlong-calls @gol
519 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
520 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
521 -mno-jump-in-delay  -mno-long-load-store @gol
522 -mno-portable-runtime  -mno-soft-float @gol
523 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
524 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
525 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
526 -munix=@var{unix-std}  -nolibdld  -static  -threads}
527
528 @emph{i386 and x86-64 Options}
529 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
530 -mfpmath=@var{unit} @gol
531 -masm=@var{dialect}  -mno-fancy-math-387 @gol
532 -mno-fp-ret-in-387  -msoft-float  -msvr3-shlib @gol
533 -mno-wide-multiply  -mrtd  -malign-double @gol
534 -mpreferred-stack-boundary=@var{num} @gol
535 -mmmx  -msse  -msse2 -msse3 -mssse3 -m3dnow @gol
536 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
537 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
538 -m96bit-long-double  -mregparm=@var{num}  -msseregparm @gol
539 -mstackrealign @gol
540 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
541 -mcmodel=@var{code-model} @gol
542 -m32  -m64 -mlarge-data-threshold=@var{num}}
543
544 @emph{IA-64 Options}
545 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
546 -mvolatile-asm-stop  -mregister-names  -mno-sdata @gol
547 -mconstant-gp  -mauto-pic  -minline-float-divide-min-latency @gol
548 -minline-float-divide-max-throughput @gol
549 -minline-int-divide-min-latency @gol
550 -minline-int-divide-max-throughput  @gol
551 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
552 -mno-dwarf2-asm -mearly-stop-bits @gol
553 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
554 -mtune=@var{cpu-type} -mt -pthread -milp32 -mlp64 @gol
555 -mno-sched-br-data-spec -msched-ar-data-spec -mno-sched-control-spec @gol
556 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
557 -msched-ldc -mno-sched-control-ldc -mno-sched-spec-verbose @gol
558 -mno-sched-prefer-non-data-spec-insns @gol
559 -mno-sched-prefer-non-control-spec-insns @gol
560 -mno-sched-count-spec-in-critical-path}
561
562 @emph{M32R/D Options}
563 @gccoptlist{-m32r2 -m32rx -m32r @gol
564 -mdebug @gol
565 -malign-loops -mno-align-loops @gol
566 -missue-rate=@var{number} @gol
567 -mbranch-cost=@var{number} @gol
568 -mmodel=@var{code-size-model-type} @gol
569 -msdata=@var{sdata-type} @gol
570 -mno-flush-func -mflush-func=@var{name} @gol
571 -mno-flush-trap -mflush-trap=@var{number} @gol
572 -G @var{num}}
573
574 @emph{M32C Options}
575 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
576
577 @emph{M680x0 Options}
578 @gccoptlist{-m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
579 -m68060  -mcpu32  -m5200  -mcfv4e -m68881  -mbitfield  @gol
580 -mc68000  -mc68020   @gol
581 -mnobitfield  -mrtd  -mshort  -msoft-float  -mpcrel @gol
582 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
583 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library}
584
585 @emph{M68hc1x Options}
586 @gccoptlist{-m6811  -m6812  -m68hc11  -m68hc12   -m68hcs12 @gol
587 -mauto-incdec  -minmax  -mlong-calls  -mshort @gol
588 -msoft-reg-count=@var{count}}
589
590 @emph{MCore Options}
591 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
592 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
593 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
594 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
595 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
596
597 @emph{MIPS Options}
598 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
599 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2  -mips64 @gol
600 -mips16  -mno-mips16  -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
601 -mshared  -mno-shared  -mxgot  -mno-xgot  -mgp32  -mgp64  @gol
602 -mfp32  -mfp64  -mhard-float  -msoft-float  @gol
603 -msingle-float  -mdouble-float  -mdsp  -mpaired-single  -mips3d @gol
604 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
605 -G@var{num}  -membedded-data  -mno-embedded-data @gol
606 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
607 -msplit-addresses  -mno-split-addresses  @gol
608 -mexplicit-relocs  -mno-explicit-relocs  @gol
609 -mcheck-zero-division  -mno-check-zero-division @gol
610 -mdivide-traps  -mdivide-breaks @gol
611 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
612 -mmad  -mno-mad  -mfused-madd  -mno-fused-madd  -nocpp @gol
613 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
614 -mfix-vr4120  -mno-fix-vr4120  -mfix-vr4130 @gol
615 -mfix-sb1  -mno-fix-sb1 @gol
616 -mflush-func=@var{func}  -mno-flush-func @gol
617 -mbranch-likely  -mno-branch-likely @gol
618 -mfp-exceptions -mno-fp-exceptions @gol
619 -mvr4130-align -mno-vr4130-align}
620
621 @emph{MMIX Options}
622 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
623 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
624 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
625 -mno-base-addresses  -msingle-exit  -mno-single-exit}
626
627 @emph{MN10300 Options}
628 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
629 -mam33  -mno-am33 @gol
630 -mam33-2  -mno-am33-2 @gol
631 -mreturn-pointer-on-d0 @gol
632 -mno-crt0  -mrelax}
633
634 @emph{MT Options}
635 @gccoptlist{-mno-crt0 -mbacc -msim @gol
636 -march=@var{cpu-type} }
637
638 @emph{PDP-11 Options}
639 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
640 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
641 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
642 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
643 -mbranch-expensive  -mbranch-cheap @gol
644 -msplit  -mno-split  -munix-asm  -mdec-asm}
645
646 @emph{PowerPC Options}
647 See RS/6000 and PowerPC Options.
648
649 @emph{RS/6000 and PowerPC Options}
650 @gccoptlist{-mcpu=@var{cpu-type} @gol
651 -mtune=@var{cpu-type} @gol
652 -mpower  -mno-power  -mpower2  -mno-power2 @gol
653 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
654 -maltivec  -mno-altivec @gol
655 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
656 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
657 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb  -mfprnd  -mno-fprnd @gol
658 -mmfpgpr -mno-mfpgpr @gol
659 -mnew-mnemonics  -mold-mnemonics @gol
660 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
661 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
662 -malign-power  -malign-natural @gol
663 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
664 -mstring  -mno-string  -mupdate  -mno-update @gol
665 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
666 -mstrict-align  -mno-strict-align  -mrelocatable @gol
667 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
668 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
669 -mdynamic-no-pic  -maltivec  -mswdiv @gol
670 -mprioritize-restricted-insns=@var{priority} @gol
671 -msched-costly-dep=@var{dependence_type} @gol
672 -minsert-sched-nops=@var{scheme} @gol
673 -mcall-sysv  -mcall-netbsd @gol
674 -maix-struct-return  -msvr4-struct-return @gol
675 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
676 -misel -mno-isel @gol
677 -misel=yes  -misel=no @gol
678 -mspe -mno-spe @gol
679 -mspe=yes  -mspe=no @gol
680 -mvrsave -mno-vrsave @gol
681 -mmulhw -mno-mulhw @gol
682 -mdlmzb -mno-dlmzb @gol
683 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
684 -mprototype  -mno-prototype @gol
685 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
686 -msdata=@var{opt}  -mvxworks  -mwindiss  -G @var{num}  -pthread}
687
688 @emph{S/390 and zSeries Options}
689 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
690 -mhard-float  -msoft-float -mlong-double-64 -mlong-double-128 @gol
691 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
692 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
693 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
694 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
695 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard}
696
697 @emph{Score Options}
698 @gccoptlist{-mel -mel @gol
699 -mmac @gol
700 -mscore5u -mscore7}
701  
702 @emph{SH Options}
703 @gccoptlist{-m1  -m2  -m2e  -m3  -m3e @gol
704 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
705 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
706 -m5-64media  -m5-64media-nofpu @gol
707 -m5-32media  -m5-32media-nofpu @gol
708 -m5-compact  -m5-compact-nofpu @gol
709 -mb  -ml  -mdalign  -mrelax @gol
710 -mbigtable  -mfmovd  -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
711 -mieee  -misize  -mpadstruct  -mspace @gol
712 -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
713 -mdivsi3_libfunc=@var{name}  @gol
714 -madjust-unroll -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
715  -minvalid-symbols}
716
717 @emph{SPARC Options}
718 @gccoptlist{-mcpu=@var{cpu-type} @gol
719 -mtune=@var{cpu-type} @gol
720 -mcmodel=@var{code-model} @gol
721 -m32  -m64  -mapp-regs  -mno-app-regs @gol
722 -mfaster-structs  -mno-faster-structs @gol
723 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
724 -mhard-quad-float  -msoft-quad-float @gol
725 -mimpure-text  -mno-impure-text  -mlittle-endian @gol
726 -mstack-bias  -mno-stack-bias @gol
727 -munaligned-doubles  -mno-unaligned-doubles @gol
728 -mv8plus  -mno-v8plus  -mvis  -mno-vis
729 -threads -pthreads -pthread}
730
731 @emph{System V Options}
732 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
733
734 @emph{TMS320C3x/C4x Options}
735 @gccoptlist{-mcpu=@var{cpu}  -mbig  -msmall  -mregparm  -mmemparm @gol
736 -mfast-fix  -mmpyi  -mbk  -mti  -mdp-isr-reload @gol
737 -mrpts=@var{count}  -mrptb  -mdb  -mloop-unsigned @gol
738 -mparallel-insns  -mparallel-mpy  -mpreserve-float}
739
740 @emph{V850 Options}
741 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
742 -mprolog-function  -mno-prolog-function  -mspace @gol
743 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
744 -mapp-regs  -mno-app-regs @gol
745 -mdisable-callt  -mno-disable-callt @gol
746 -mv850e1 @gol
747 -mv850e @gol
748 -mv850  -mbig-switch}
749
750 @emph{VAX Options}
751 @gccoptlist{-mg  -mgnu  -munix}
752
753 @emph{x86-64 Options}
754 See i386 and x86-64 Options.
755
756 @emph{Xstormy16 Options}
757 @gccoptlist{-msim}
758
759 @emph{Xtensa Options}
760 @gccoptlist{-mconst16 -mno-const16 @gol
761 -mfused-madd  -mno-fused-madd @gol
762 -mtext-section-literals  -mno-text-section-literals @gol
763 -mtarget-align  -mno-target-align @gol
764 -mlongcalls  -mno-longcalls}
765
766 @emph{zSeries Options}
767 See S/390 and zSeries Options.
768
769 @item Code Generation Options
770 @xref{Code Gen Options,,Options for Code Generation Conventions}.
771 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
772 -ffixed-@var{reg}  -fexceptions @gol
773 -fnon-call-exceptions  -funwind-tables @gol
774 -fasynchronous-unwind-tables @gol
775 -finhibit-size-directive  -finstrument-functions @gol
776 -fno-common  -fno-ident @gol
777 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
778 -fno-jump-tables @gol
779 -freg-struct-return  -fshort-enums @gol
780 -fshort-double  -fshort-wchar @gol
781 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
782 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
783 -fargument-alias  -fargument-noalias @gol
784 -fargument-noalias-global  -fargument-noalias-anything
785 -fleading-underscore  -ftls-model=@var{model} @gol
786 -ftrapv  -fwrapv  -fbounds-check @gol
787 -fvisibility}
788 @end table
789
790 @menu
791 * Overall Options::     Controlling the kind of output:
792                         an executable, object files, assembler files,
793                         or preprocessed source.
794 * C Dialect Options::   Controlling the variant of C language compiled.
795 * C++ Dialect Options:: Variations on C++.
796 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
797                         and Objective-C++.
798 * Language Independent Options:: Controlling how diagnostics should be
799                         formatted.
800 * Warning Options::     How picky should the compiler be?
801 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
802 * Optimize Options::    How much optimization?
803 * Preprocessor Options:: Controlling header files and macro definitions.
804                          Also, getting dependency information for Make.
805 * Assembler Options::   Passing options to the assembler.
806 * Link Options::        Specifying libraries and so on.
807 * Directory Options::   Where to find header files and libraries.
808                         Where to find the compiler executable files.
809 * Spec Files::          How to pass switches to sub-processes.
810 * Target Options::      Running a cross-compiler, or an old version of GCC.
811 @end menu
812
813 @node Overall Options
814 @section Options Controlling the Kind of Output
815
816 Compilation can involve up to four stages: preprocessing, compilation
817 proper, assembly and linking, always in that order.  GCC is capable of
818 preprocessing and compiling several files either into several
819 assembler input files, or into one assembler input file; then each
820 assembler input file produces an object file, and linking combines all
821 the object files (those newly compiled, and those specified as input)
822 into an executable file.
823
824 @cindex file name suffix
825 For any given input file, the file name suffix determines what kind of
826 compilation is done:
827
828 @table @gcctabopt
829 @item @var{file}.c
830 C source code which must be preprocessed.
831
832 @item @var{file}.i
833 C source code which should not be preprocessed.
834
835 @item @var{file}.ii
836 C++ source code which should not be preprocessed.
837
838 @item @var{file}.m
839 Objective-C source code.  Note that you must link with the @file{libobjc}
840 library to make an Objective-C program work.
841
842 @item @var{file}.mi
843 Objective-C source code which should not be preprocessed.
844
845 @item @var{file}.mm
846 @itemx @var{file}.M
847 Objective-C++ source code.  Note that you must link with the @file{libobjc}
848 library to make an Objective-C++ program work.  Note that @samp{.M} refers
849 to a literal capital M@.
850
851 @item @var{file}.mii
852 Objective-C++ source code which should not be preprocessed.
853
854 @item @var{file}.h
855 C, C++, Objective-C or Objective-C++ header file to be turned into a
856 precompiled header.
857
858 @item @var{file}.cc
859 @itemx @var{file}.cp
860 @itemx @var{file}.cxx
861 @itemx @var{file}.cpp
862 @itemx @var{file}.CPP
863 @itemx @var{file}.c++
864 @itemx @var{file}.C
865 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
866 the last two letters must both be literally @samp{x}.  Likewise,
867 @samp{.C} refers to a literal capital C@.
868
869 @item @var{file}.mm
870 @itemx @var{file}.M
871 Objective-C++ source code which must be preprocessed.
872
873 @item @var{file}.mii
874 Objective-C++ source code which should not be preprocessed.
875
876 @item @var{file}.hh
877 @itemx @var{file}.H
878 C++ header file to be turned into a precompiled header.
879
880 @item @var{file}.f
881 @itemx @var{file}.for
882 @itemx @var{file}.FOR
883 Fixed form Fortran source code which should not be preprocessed.
884
885 @item @var{file}.F
886 @itemx @var{file}.fpp
887 @itemx @var{file}.FPP
888 Fixed form Fortran source code which must be preprocessed (with the traditional
889 preprocessor).
890
891 @item @var{file}.f90
892 @itemx @var{file}.f95
893 Free form Fortran source code which should not be preprocessed.
894
895 @item @var{file}.F90
896 @itemx @var{file}.F95
897 Free form Fortran source code which must be preprocessed (with the
898 traditional preprocessor).
899
900 @c FIXME: Descriptions of Java file types.
901 @c @var{file}.java
902 @c @var{file}.class
903 @c @var{file}.zip
904 @c @var{file}.jar
905
906 @item @var{file}.ads
907 Ada source code file which contains a library unit declaration (a
908 declaration of a package, subprogram, or generic, or a generic
909 instantiation), or a library unit renaming declaration (a package,
910 generic, or subprogram renaming declaration).  Such files are also
911 called @dfn{specs}.
912
913 @itemx @var{file}.adb
914 Ada source code file containing a library unit body (a subprogram or
915 package body).  Such files are also called @dfn{bodies}.
916
917 @c GCC also knows about some suffixes for languages not yet included:
918 @c Pascal:
919 @c @var{file}.p
920 @c @var{file}.pas
921 @c Ratfor:
922 @c @var{file}.r
923
924 @item @var{file}.s
925 Assembler code.
926
927 @item @var{file}.S
928 Assembler code which must be preprocessed.
929
930 @item @var{other}
931 An object file to be fed straight into linking.
932 Any file name with no recognized suffix is treated this way.
933 @end table
934
935 @opindex x
936 You can specify the input language explicitly with the @option{-x} option:
937
938 @table @gcctabopt
939 @item -x @var{language}
940 Specify explicitly the @var{language} for the following input files
941 (rather than letting the compiler choose a default based on the file
942 name suffix).  This option applies to all following input files until
943 the next @option{-x} option.  Possible values for @var{language} are:
944 @smallexample
945 c  c-header  c-cpp-output
946 c++  c++-header  c++-cpp-output
947 objective-c  objective-c-header  objective-c-cpp-output
948 objective-c++ objective-c++-header objective-c++-cpp-output
949 assembler  assembler-with-cpp
950 ada
951 f95  f95-cpp-input
952 java
953 treelang
954 @end smallexample
955
956 @item -x none
957 Turn off any specification of a language, so that subsequent files are
958 handled according to their file name suffixes (as they are if @option{-x}
959 has not been used at all).
960
961 @item -pass-exit-codes
962 @opindex pass-exit-codes
963 Normally the @command{gcc} program will exit with the code of 1 if any
964 phase of the compiler returns a non-success return code.  If you specify
965 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
966 numerically highest error produced by any phase that returned an error
967 indication.  The C, C++, and Fortran frontends return 4, if an internal
968 compiler error is encountered.
969 @end table
970
971 If you only want some of the stages of compilation, you can use
972 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
973 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
974 @command{gcc} is to stop.  Note that some combinations (for example,
975 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
976
977 @table @gcctabopt
978 @item -c
979 @opindex c
980 Compile or assemble the source files, but do not link.  The linking
981 stage simply is not done.  The ultimate output is in the form of an
982 object file for each source file.
983
984 By default, the object file name for a source file is made by replacing
985 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
986
987 Unrecognized input files, not requiring compilation or assembly, are
988 ignored.
989
990 @item -S
991 @opindex S
992 Stop after the stage of compilation proper; do not assemble.  The output
993 is in the form of an assembler code file for each non-assembler input
994 file specified.
995
996 By default, the assembler file name for a source file is made by
997 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
998
999 Input files that don't require compilation are ignored.
1000
1001 @item -E
1002 @opindex E
1003 Stop after the preprocessing stage; do not run the compiler proper.  The
1004 output is in the form of preprocessed source code, which is sent to the
1005 standard output.
1006
1007 Input files which don't require preprocessing are ignored.
1008
1009 @cindex output file option
1010 @item -o @var{file}
1011 @opindex o
1012 Place output in file @var{file}.  This applies regardless to whatever
1013 sort of output is being produced, whether it be an executable file,
1014 an object file, an assembler file or preprocessed C code.
1015
1016 If @option{-o} is not specified, the default is to put an executable
1017 file in @file{a.out}, the object file for
1018 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1019 assembler file in @file{@var{source}.s}, a precompiled header file in
1020 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1021 standard output.
1022
1023 @item -v
1024 @opindex v
1025 Print (on standard error output) the commands executed to run the stages
1026 of compilation.  Also print the version number of the compiler driver
1027 program and of the preprocessor and the compiler proper.
1028
1029 @item -###
1030 @opindex ###
1031 Like @option{-v} except the commands are not executed and all command
1032 arguments are quoted.  This is useful for shell scripts to capture the
1033 driver-generated command lines.
1034
1035 @item -pipe
1036 @opindex pipe
1037 Use pipes rather than temporary files for communication between the
1038 various stages of compilation.  This fails to work on some systems where
1039 the assembler is unable to read from a pipe; but the GNU assembler has
1040 no trouble.
1041
1042 @item -combine
1043 @opindex combine
1044 If you are compiling multiple source files, this option tells the driver
1045 to pass all the source files to the compiler at once (for those
1046 languages for which the compiler can handle this).  This will allow
1047 intermodule analysis (IMA) to be performed by the compiler.  Currently the only
1048 language for which this is supported is C@.  If you pass source files for
1049 multiple languages to the driver, using this option, the driver will invoke
1050 the compiler(s) that support IMA once each, passing each compiler all the
1051 source files appropriate for it.  For those languages that do not support
1052 IMA this option will be ignored, and the compiler will be invoked once for
1053 each source file in that language.  If you use this option in conjunction
1054 with @option{-save-temps}, the compiler will generate multiple
1055 pre-processed files
1056 (one for each source file), but only one (combined) @file{.o} or
1057 @file{.s} file.
1058
1059 @item --help
1060 @opindex help
1061 Print (on the standard output) a description of the command line options
1062 understood by @command{gcc}.  If the @option{-v} option is also specified
1063 then @option{--help} will also be passed on to the various processes
1064 invoked by @command{gcc}, so that they can display the command line options
1065 they accept.  If the @option{-Wextra} option is also specified then command
1066 line options which have no documentation associated with them will also
1067 be displayed.
1068
1069 @item --target-help
1070 @opindex target-help
1071 Print (on the standard output) a description of target specific command
1072 line options for each tool.
1073
1074 @item --version
1075 @opindex version
1076 Display the version number and copyrights of the invoked GCC@.
1077
1078 @include @value{srcdir}/../libiberty/at-file.texi
1079 @end table
1080
1081 @node Invoking G++
1082 @section Compiling C++ Programs
1083
1084 @cindex suffixes for C++ source
1085 @cindex C++ source file suffixes
1086 C++ source files conventionally use one of the suffixes @samp{.C},
1087 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1088 @samp{.cxx}; C++ header files often use @samp{.hh} or @samp{.H}; and
1089 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1090 files with these names and compiles them as C++ programs even if you
1091 call the compiler the same way as for compiling C programs (usually
1092 with the name @command{gcc}).
1093
1094 @findex g++
1095 @findex c++
1096 However, the use of @command{gcc} does not add the C++ library.
1097 @command{g++} is a program that calls GCC and treats @samp{.c},
1098 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1099 files unless @option{-x} is used, and automatically specifies linking
1100 against the C++ library.  This program is also useful when
1101 precompiling a C header file with a @samp{.h} extension for use in C++
1102 compilations.  On many systems, @command{g++} is also installed with
1103 the name @command{c++}.
1104
1105 @cindex invoking @command{g++}
1106 When you compile C++ programs, you may specify many of the same
1107 command-line options that you use for compiling programs in any
1108 language; or command-line options meaningful for C and related
1109 languages; or options that are meaningful only for C++ programs.
1110 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1111 explanations of options for languages related to C@.
1112 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1113 explanations of options that are meaningful only for C++ programs.
1114
1115 @node C Dialect Options
1116 @section Options Controlling C Dialect
1117 @cindex dialect options
1118 @cindex language dialect options
1119 @cindex options, dialect
1120
1121 The following options control the dialect of C (or languages derived
1122 from C, such as C++, Objective-C and Objective-C++) that the compiler
1123 accepts:
1124
1125 @table @gcctabopt
1126 @cindex ANSI support
1127 @cindex ISO support
1128 @item -ansi
1129 @opindex ansi
1130 In C mode, support all ISO C90 programs.  In C++ mode,
1131 remove GNU extensions that conflict with ISO C++.
1132
1133 This turns off certain features of GCC that are incompatible with ISO
1134 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1135 such as the @code{asm} and @code{typeof} keywords, and
1136 predefined macros such as @code{unix} and @code{vax} that identify the
1137 type of system you are using.  It also enables the undesirable and
1138 rarely used ISO trigraph feature.  For the C compiler,
1139 it disables recognition of C++ style @samp{//} comments as well as
1140 the @code{inline} keyword.
1141
1142 The alternate keywords @code{__asm__}, @code{__extension__},
1143 @code{__inline__} and @code{__typeof__} continue to work despite
1144 @option{-ansi}.  You would not want to use them in an ISO C program, of
1145 course, but it is useful to put them in header files that might be included
1146 in compilations done with @option{-ansi}.  Alternate predefined macros
1147 such as @code{__unix__} and @code{__vax__} are also available, with or
1148 without @option{-ansi}.
1149
1150 The @option{-ansi} option does not cause non-ISO programs to be
1151 rejected gratuitously.  For that, @option{-pedantic} is required in
1152 addition to @option{-ansi}.  @xref{Warning Options}.
1153
1154 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1155 option is used.  Some header files may notice this macro and refrain
1156 from declaring certain functions or defining certain macros that the
1157 ISO standard doesn't call for; this is to avoid interfering with any
1158 programs that might use these names for other things.
1159
1160 Functions which would normally be built in but do not have semantics
1161 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1162 functions with @option{-ansi} is used.  @xref{Other Builtins,,Other
1163 built-in functions provided by GCC}, for details of the functions
1164 affected.
1165
1166 @item -std=
1167 @opindex std
1168 Determine the language standard.  This option is currently only
1169 supported when compiling C or C++.  A value for this option must be
1170 provided; possible values are
1171
1172 @table @samp
1173 @item c89
1174 @itemx iso9899:1990
1175 ISO C90 (same as @option{-ansi}).
1176
1177 @item iso9899:199409
1178 ISO C90 as modified in amendment 1.
1179
1180 @item c99
1181 @itemx c9x
1182 @itemx iso9899:1999
1183 @itemx iso9899:199x
1184 ISO C99.  Note that this standard is not yet fully supported; see
1185 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1186 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1187
1188 @item gnu89
1189 Default, ISO C90 plus GNU extensions (including some C99 features).
1190
1191 @item gnu99
1192 @itemx gnu9x
1193 ISO C99 plus GNU extensions.  When ISO C99 is fully implemented in GCC,
1194 this will become the default.  The name @samp{gnu9x} is deprecated.
1195
1196 @item c++98
1197 The 1998 ISO C++ standard plus amendments.
1198
1199 @item gnu++98
1200 The same as @option{-std=c++98} plus GNU extensions.  This is the
1201 default for C++ code.
1202
1203 @item c++0x
1204 The working draft of the upcoming ISO C++0x standard. This option
1205 enables experimental features that are likely to be included in
1206 C++0x. The working draft is constantly changing, and any feature that is
1207 enabled by this flag may be removed from future versions of GCC if it is
1208 not part of the C++0x standard.
1209
1210 @item gnu++0x
1211 The same as @option{-std=c++0x} plus GNU extensions. As with
1212 @option{-std=c++0x}, this option enables experimental features that may
1213 be removed in future versions of GCC.
1214 @end table
1215
1216 Even when this option is not specified, you can still use some of the
1217 features of newer standards in so far as they do not conflict with
1218 previous C standards.  For example, you may use @code{__restrict__} even
1219 when @option{-std=c99} is not specified.
1220
1221 The @option{-std} options specifying some version of ISO C have the same
1222 effects as @option{-ansi}, except that features that were not in ISO C90
1223 but are in the specified version (for example, @samp{//} comments and
1224 the @code{inline} keyword in ISO C99) are not disabled.
1225
1226 @xref{Standards,,Language Standards Supported by GCC}, for details of
1227 these standard versions.
1228
1229 @item -aux-info @var{filename}
1230 @opindex aux-info
1231 Output to the given filename prototyped declarations for all functions
1232 declared and/or defined in a translation unit, including those in header
1233 files.  This option is silently ignored in any language other than C@.
1234
1235 Besides declarations, the file indicates, in comments, the origin of
1236 each declaration (source file and line), whether the declaration was
1237 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1238 @samp{O} for old, respectively, in the first character after the line
1239 number and the colon), and whether it came from a declaration or a
1240 definition (@samp{C} or @samp{F}, respectively, in the following
1241 character).  In the case of function definitions, a K&R-style list of
1242 arguments followed by their declarations is also provided, inside
1243 comments, after the declaration.
1244
1245 @item -fno-asm
1246 @opindex fno-asm
1247 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1248 keyword, so that code can use these words as identifiers.  You can use
1249 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1250 instead.  @option{-ansi} implies @option{-fno-asm}.
1251
1252 In C++, this switch only affects the @code{typeof} keyword, since
1253 @code{asm} and @code{inline} are standard keywords.  You may want to
1254 use the @option{-fno-gnu-keywords} flag instead, which has the same
1255 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1256 switch only affects the @code{asm} and @code{typeof} keywords, since
1257 @code{inline} is a standard keyword in ISO C99.
1258
1259 @item -fno-builtin
1260 @itemx -fno-builtin-@var{function}
1261 @opindex fno-builtin
1262 @cindex built-in functions
1263 Don't recognize built-in functions that do not begin with
1264 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1265 functions provided by GCC}, for details of the functions affected,
1266 including those which are not built-in functions when @option{-ansi} or
1267 @option{-std} options for strict ISO C conformance are used because they
1268 do not have an ISO standard meaning.
1269
1270 GCC normally generates special code to handle certain built-in functions
1271 more efficiently; for instance, calls to @code{alloca} may become single
1272 instructions that adjust the stack directly, and calls to @code{memcpy}
1273 may become inline copy loops.  The resulting code is often both smaller
1274 and faster, but since the function calls no longer appear as such, you
1275 cannot set a breakpoint on those calls, nor can you change the behavior
1276 of the functions by linking with a different library.  In addition,
1277 when a function is recognized as a built-in function, GCC may use
1278 information about that function to warn about problems with calls to
1279 that function, or to generate more efficient code, even if the
1280 resulting code still contains calls to that function.  For example,
1281 warnings are given with @option{-Wformat} for bad calls to
1282 @code{printf}, when @code{printf} is built in, and @code{strlen} is
1283 known not to modify global memory.
1284
1285 With the @option{-fno-builtin-@var{function}} option
1286 only the built-in function @var{function} is
1287 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1288 function is named this is not built-in in this version of GCC, this
1289 option is ignored.  There is no corresponding
1290 @option{-fbuiltin-@var{function}} option; if you wish to enable
1291 built-in functions selectively when using @option{-fno-builtin} or
1292 @option{-ffreestanding}, you may define macros such as:
1293
1294 @smallexample
1295 #define abs(n)          __builtin_abs ((n))
1296 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1297 @end smallexample
1298
1299 @item -fhosted
1300 @opindex fhosted
1301 @cindex hosted environment
1302
1303 Assert that compilation takes place in a hosted environment.  This implies
1304 @option{-fbuiltin}.  A hosted environment is one in which the
1305 entire standard library is available, and in which @code{main} has a return
1306 type of @code{int}.  Examples are nearly everything except a kernel.
1307 This is equivalent to @option{-fno-freestanding}.
1308
1309 @item -ffreestanding
1310 @opindex ffreestanding
1311 @cindex hosted environment
1312
1313 Assert that compilation takes place in a freestanding environment.  This
1314 implies @option{-fno-builtin}.  A freestanding environment
1315 is one in which the standard library may not exist, and program startup may
1316 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1317 This is equivalent to @option{-fno-hosted}.
1318
1319 @xref{Standards,,Language Standards Supported by GCC}, for details of
1320 freestanding and hosted environments.
1321
1322 @item -fopenmp
1323 @opindex fopenmp
1324 @cindex openmp parallel
1325 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1326 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1327 compiler generates parallel code according to the OpenMP Application
1328 Program Interface v2.5 @w{@uref{http://www.openmp.org/}}.
1329
1330 @item -fms-extensions
1331 @opindex fms-extensions
1332 Accept some non-standard constructs used in Microsoft header files.
1333
1334 Some cases of unnamed fields in structures and unions are only
1335 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1336 fields within structs/unions}, for details.
1337
1338 @item -trigraphs
1339 @opindex trigraphs
1340 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1341 options for strict ISO C conformance) implies @option{-trigraphs}.
1342
1343 @item -no-integrated-cpp
1344 @opindex no-integrated-cpp
1345 Performs a compilation in two passes: preprocessing and compiling.  This
1346 option allows a user supplied "cc1", "cc1plus", or "cc1obj" via the
1347 @option{-B} option.  The user supplied compilation step can then add in
1348 an additional preprocessing step after normal preprocessing but before
1349 compiling.  The default is to use the integrated cpp (internal cpp)
1350
1351 The semantics of this option will change if "cc1", "cc1plus", and
1352 "cc1obj" are merged.
1353
1354 @cindex traditional C language
1355 @cindex C language, traditional
1356 @item -traditional
1357 @itemx -traditional-cpp
1358 @opindex traditional-cpp
1359 @opindex traditional
1360 Formerly, these options caused GCC to attempt to emulate a pre-standard
1361 C compiler.  They are now only supported with the @option{-E} switch.
1362 The preprocessor continues to support a pre-standard mode.  See the GNU
1363 CPP manual for details.
1364
1365 @item -fcond-mismatch
1366 @opindex fcond-mismatch
1367 Allow conditional expressions with mismatched types in the second and
1368 third arguments.  The value of such an expression is void.  This option
1369 is not supported for C++.
1370
1371 @item -funsigned-char
1372 @opindex funsigned-char
1373 Let the type @code{char} be unsigned, like @code{unsigned char}.
1374
1375 Each kind of machine has a default for what @code{char} should
1376 be.  It is either like @code{unsigned char} by default or like
1377 @code{signed char} by default.
1378
1379 Ideally, a portable program should always use @code{signed char} or
1380 @code{unsigned char} when it depends on the signedness of an object.
1381 But many programs have been written to use plain @code{char} and
1382 expect it to be signed, or expect it to be unsigned, depending on the
1383 machines they were written for.  This option, and its inverse, let you
1384 make such a program work with the opposite default.
1385
1386 The type @code{char} is always a distinct type from each of
1387 @code{signed char} or @code{unsigned char}, even though its behavior
1388 is always just like one of those two.
1389
1390 @item -fsigned-char
1391 @opindex fsigned-char
1392 Let the type @code{char} be signed, like @code{signed char}.
1393
1394 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1395 the negative form of @option{-funsigned-char}.  Likewise, the option
1396 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1397
1398 @item -fsigned-bitfields
1399 @itemx -funsigned-bitfields
1400 @itemx -fno-signed-bitfields
1401 @itemx -fno-unsigned-bitfields
1402 @opindex fsigned-bitfields
1403 @opindex funsigned-bitfields
1404 @opindex fno-signed-bitfields
1405 @opindex fno-unsigned-bitfields
1406 These options control whether a bit-field is signed or unsigned, when the
1407 declaration does not use either @code{signed} or @code{unsigned}.  By
1408 default, such a bit-field is signed, because this is consistent: the
1409 basic integer types such as @code{int} are signed types.
1410 @end table
1411
1412 @node C++ Dialect Options
1413 @section Options Controlling C++ Dialect
1414
1415 @cindex compiler options, C++
1416 @cindex C++ options, command line
1417 @cindex options, C++
1418 This section describes the command-line options that are only meaningful
1419 for C++ programs; but you can also use most of the GNU compiler options
1420 regardless of what language your program is in.  For example, you
1421 might compile a file @code{firstClass.C} like this:
1422
1423 @smallexample
1424 g++ -g -frepo -O -c firstClass.C
1425 @end smallexample
1426
1427 @noindent
1428 In this example, only @option{-frepo} is an option meant
1429 only for C++ programs; you can use the other options with any
1430 language supported by GCC@.
1431
1432 Here is a list of options that are @emph{only} for compiling C++ programs:
1433
1434 @table @gcctabopt
1435
1436 @item -fabi-version=@var{n}
1437 @opindex fabi-version
1438 Use version @var{n} of the C++ ABI@.  Version 2 is the version of the
1439 C++ ABI that first appeared in G++ 3.4.  Version 1 is the version of
1440 the C++ ABI that first appeared in G++ 3.2.  Version 0 will always be
1441 the version that conforms most closely to the C++ ABI specification.
1442 Therefore, the ABI obtained using version 0 will change as ABI bugs
1443 are fixed.
1444
1445 The default is version 2.
1446
1447 @item -fno-access-control
1448 @opindex fno-access-control
1449 Turn off all access checking.  This switch is mainly useful for working
1450 around bugs in the access control code.
1451
1452 @item -fcheck-new
1453 @opindex fcheck-new
1454 Check that the pointer returned by @code{operator new} is non-null
1455 before attempting to modify the storage allocated.  This check is
1456 normally unnecessary because the C++ standard specifies that
1457 @code{operator new} will only return @code{0} if it is declared
1458 @samp{throw()}, in which case the compiler will always check the
1459 return value even without this option.  In all other cases, when
1460 @code{operator new} has a non-empty exception specification, memory
1461 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
1462 @samp{new (nothrow)}.
1463
1464 @item -fconserve-space
1465 @opindex fconserve-space
1466 Put uninitialized or runtime-initialized global variables into the
1467 common segment, as C does.  This saves space in the executable at the
1468 cost of not diagnosing duplicate definitions.  If you compile with this
1469 flag and your program mysteriously crashes after @code{main()} has
1470 completed, you may have an object that is being destroyed twice because
1471 two definitions were merged.
1472
1473 This option is no longer useful on most targets, now that support has
1474 been added for putting variables into BSS without making them common.
1475
1476 @item -ffriend-injection
1477 @opindex ffriend-injection
1478 Inject friend functions into the enclosing namespace, so that they are
1479 visible outside the scope of the class in which they are declared.
1480 Friend functions were documented to work this way in the old Annotated
1481 C++ Reference Manual, and versions of G++ before 4.1 always worked
1482 that way.  However, in ISO C++ a friend function which is not declared
1483 in an enclosing scope can only be found using argument dependent
1484 lookup.  This option causes friends to be injected as they were in
1485 earlier releases.
1486
1487 This option is for compatibility, and may be removed in a future
1488 release of G++.
1489
1490 @item -fno-elide-constructors
1491 @opindex fno-elide-constructors
1492 The C++ standard allows an implementation to omit creating a temporary
1493 which is only used to initialize another object of the same type.
1494 Specifying this option disables that optimization, and forces G++ to
1495 call the copy constructor in all cases.
1496
1497 @item -fno-enforce-eh-specs
1498 @opindex fno-enforce-eh-specs
1499 Don't generate code to check for violation of exception specifications
1500 at runtime.  This option violates the C++ standard, but may be useful
1501 for reducing code size in production builds, much like defining
1502 @samp{NDEBUG}.  This does not give user code permission to throw
1503 exceptions in violation of the exception specifications; the compiler
1504 will still optimize based on the specifications, so throwing an
1505 unexpected exception will result in undefined behavior.
1506
1507 @item -ffor-scope
1508 @itemx -fno-for-scope
1509 @opindex ffor-scope
1510 @opindex fno-for-scope
1511 If @option{-ffor-scope} is specified, the scope of variables declared in
1512 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1513 as specified by the C++ standard.
1514 If @option{-fno-for-scope} is specified, the scope of variables declared in
1515 a @i{for-init-statement} extends to the end of the enclosing scope,
1516 as was the case in old versions of G++, and other (traditional)
1517 implementations of C++.
1518
1519 The default if neither flag is given to follow the standard,
1520 but to allow and give a warning for old-style code that would
1521 otherwise be invalid, or have different behavior.
1522
1523 @item -fno-gnu-keywords
1524 @opindex fno-gnu-keywords
1525 Do not recognize @code{typeof} as a keyword, so that code can use this
1526 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1527 @option{-ansi} implies @option{-fno-gnu-keywords}.
1528
1529 @item -fno-implicit-templates
1530 @opindex fno-implicit-templates
1531 Never emit code for non-inline templates which are instantiated
1532 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1533 @xref{Template Instantiation}, for more information.
1534
1535 @item -fno-implicit-inline-templates
1536 @opindex fno-implicit-inline-templates
1537 Don't emit code for implicit instantiations of inline templates, either.
1538 The default is to handle inlines differently so that compiles with and
1539 without optimization will need the same set of explicit instantiations.
1540
1541 @item -fno-implement-inlines
1542 @opindex fno-implement-inlines
1543 To save space, do not emit out-of-line copies of inline functions
1544 controlled by @samp{#pragma implementation}.  This will cause linker
1545 errors if these functions are not inlined everywhere they are called.
1546
1547 @item -fms-extensions
1548 @opindex fms-extensions
1549 Disable pedantic warnings about constructs used in MFC, such as implicit
1550 int and getting a pointer to member function via non-standard syntax.
1551
1552 @item -fno-nonansi-builtins
1553 @opindex fno-nonansi-builtins
1554 Disable built-in declarations of functions that are not mandated by
1555 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1556 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1557
1558 @item -fno-operator-names
1559 @opindex fno-operator-names
1560 Do not treat the operator name keywords @code{and}, @code{bitand},
1561 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1562 synonyms as keywords.
1563
1564 @item -fno-optional-diags
1565 @opindex fno-optional-diags
1566 Disable diagnostics that the standard says a compiler does not need to
1567 issue.  Currently, the only such diagnostic issued by G++ is the one for
1568 a name having multiple meanings within a class.
1569
1570 @item -fpermissive
1571 @opindex fpermissive
1572 Downgrade some diagnostics about nonconformant code from errors to
1573 warnings.  Thus, using @option{-fpermissive} will allow some
1574 nonconforming code to compile.
1575
1576 @item -frepo
1577 @opindex frepo
1578 Enable automatic template instantiation at link time.  This option also
1579 implies @option{-fno-implicit-templates}.  @xref{Template
1580 Instantiation}, for more information.
1581
1582 @item -fno-rtti
1583 @opindex fno-rtti
1584 Disable generation of information about every class with virtual
1585 functions for use by the C++ runtime type identification features
1586 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1587 of the language, you can save some space by using this flag.  Note that
1588 exception handling uses the same information, but it will generate it as
1589 needed. The @samp{dynamic_cast} operator can still be used for casts that
1590 do not require runtime type information, i.e. casts to @code{void *} or to
1591 unambiguous base classes.
1592
1593 @item -fstats
1594 @opindex fstats
1595 Emit statistics about front-end processing at the end of the compilation.
1596 This information is generally only useful to the G++ development team.
1597
1598 @item -ftemplate-depth-@var{n}
1599 @opindex ftemplate-depth
1600 Set the maximum instantiation depth for template classes to @var{n}.
1601 A limit on the template instantiation depth is needed to detect
1602 endless recursions during template class instantiation.  ANSI/ISO C++
1603 conforming programs must not rely on a maximum depth greater than 17.
1604
1605 @item -fno-threadsafe-statics
1606 @opindex fno-threadsafe-statics
1607 Do not emit the extra code to use the routines specified in the C++
1608 ABI for thread-safe initialization of local statics.  You can use this
1609 option to reduce code size slightly in code that doesn't need to be
1610 thread-safe.
1611
1612 @item -fuse-cxa-atexit
1613 @opindex fuse-cxa-atexit
1614 Register destructors for objects with static storage duration with the
1615 @code{__cxa_atexit} function rather than the @code{atexit} function.
1616 This option is required for fully standards-compliant handling of static
1617 destructors, but will only work if your C library supports
1618 @code{__cxa_atexit}.
1619
1620 @item -fno-use-cxa-get-exception-ptr
1621 @opindex fno-use-cxa-get-exception-ptr
1622 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
1623 will cause @code{std::uncaught_exception} to be incorrect, but is necessary
1624 if the runtime routine is not available.
1625
1626 @item -fvisibility-inlines-hidden
1627 @opindex fvisibility-inlines-hidden
1628 This switch declares that the user does not attempt to compare
1629 pointers to inline methods where the addresses of the two functions
1630 were taken in different shared objects.
1631
1632 The effect of this is that GCC may, effectively, mark inline methods with
1633 @code{__attribute__ ((visibility ("hidden")))} so that they do not
1634 appear in the export table of a DSO and do not require a PLT indirection
1635 when used within the DSO@.  Enabling this option can have a dramatic effect
1636 on load and link times of a DSO as it massively reduces the size of the
1637 dynamic export table when the library makes heavy use of templates.
1638
1639 The behaviour of this switch is not quite the same as marking the
1640 methods as hidden directly, because it does not affect static variables
1641 local to the function or cause the compiler to deduce that
1642 the function is defined in only one shared object.
1643
1644 You may mark a method as having a visibility explicitly to negate the
1645 effect of the switch for that method.  For example, if you do want to
1646 compare pointers to a particular inline method, you might mark it as
1647 having default visibility.  Marking the enclosing class with explicit
1648 visibility will have no effect.
1649
1650 Explicitly instantiated inline methods are unaffected by this option
1651 as their linkage might otherwise cross a shared library boundary.
1652 @xref{Template Instantiation}.
1653
1654 @item -fno-weak
1655 @opindex fno-weak
1656 Do not use weak symbol support, even if it is provided by the linker.
1657 By default, G++ will use weak symbols if they are available.  This
1658 option exists only for testing, and should not be used by end-users;
1659 it will result in inferior code and has no benefits.  This option may
1660 be removed in a future release of G++.
1661
1662 @item -nostdinc++
1663 @opindex nostdinc++
1664 Do not search for header files in the standard directories specific to
1665 C++, but do still search the other standard directories.  (This option
1666 is used when building the C++ library.)
1667 @end table
1668
1669 In addition, these optimization, warning, and code generation options
1670 have meanings only for C++ programs:
1671
1672 @table @gcctabopt
1673 @item -fno-default-inline
1674 @opindex fno-default-inline
1675 Do not assume @samp{inline} for functions defined inside a class scope.
1676 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1677 functions will have linkage like inline functions; they just won't be
1678 inlined by default.
1679
1680 @item -Wabi @r{(C++ only)}
1681 @opindex Wabi
1682 Warn when G++ generates code that is probably not compatible with the
1683 vendor-neutral C++ ABI@.  Although an effort has been made to warn about
1684 all such cases, there are probably some cases that are not warned about,
1685 even though G++ is generating incompatible code.  There may also be
1686 cases where warnings are emitted even though the code that is generated
1687 will be compatible.
1688
1689 You should rewrite your code to avoid these warnings if you are
1690 concerned about the fact that code generated by G++ may not be binary
1691 compatible with code generated by other compilers.
1692
1693 The known incompatibilities at this point include:
1694
1695 @itemize @bullet
1696
1697 @item
1698 Incorrect handling of tail-padding for bit-fields.  G++ may attempt to
1699 pack data into the same byte as a base class.  For example:
1700
1701 @smallexample
1702 struct A @{ virtual void f(); int f1 : 1; @};
1703 struct B : public A @{ int f2 : 1; @};
1704 @end smallexample
1705
1706 @noindent
1707 In this case, G++ will place @code{B::f2} into the same byte
1708 as@code{A::f1}; other compilers will not.  You can avoid this problem
1709 by explicitly padding @code{A} so that its size is a multiple of the
1710 byte size on your platform; that will cause G++ and other compilers to
1711 layout @code{B} identically.
1712
1713 @item
1714 Incorrect handling of tail-padding for virtual bases.  G++ does not use
1715 tail padding when laying out virtual bases.  For example:
1716
1717 @smallexample
1718 struct A @{ virtual void f(); char c1; @};
1719 struct B @{ B(); char c2; @};
1720 struct C : public A, public virtual B @{@};
1721 @end smallexample
1722
1723 @noindent
1724 In this case, G++ will not place @code{B} into the tail-padding for
1725 @code{A}; other compilers will.  You can avoid this problem by
1726 explicitly padding @code{A} so that its size is a multiple of its
1727 alignment (ignoring virtual base classes); that will cause G++ and other
1728 compilers to layout @code{C} identically.
1729
1730 @item
1731 Incorrect handling of bit-fields with declared widths greater than that
1732 of their underlying types, when the bit-fields appear in a union.  For
1733 example:
1734
1735 @smallexample
1736 union U @{ int i : 4096; @};
1737 @end smallexample
1738
1739 @noindent
1740 Assuming that an @code{int} does not have 4096 bits, G++ will make the
1741 union too small by the number of bits in an @code{int}.
1742
1743 @item
1744 Empty classes can be placed at incorrect offsets.  For example:
1745
1746 @smallexample
1747 struct A @{@};
1748
1749 struct B @{
1750   A a;
1751   virtual void f ();
1752 @};
1753
1754 struct C : public B, public A @{@};
1755 @end smallexample
1756
1757 @noindent
1758 G++ will place the @code{A} base class of @code{C} at a nonzero offset;
1759 it should be placed at offset zero.  G++ mistakenly believes that the
1760 @code{A} data member of @code{B} is already at offset zero.
1761
1762 @item
1763 Names of template functions whose types involve @code{typename} or
1764 template template parameters can be mangled incorrectly.
1765
1766 @smallexample
1767 template <typename Q>
1768 void f(typename Q::X) @{@}
1769
1770 template <template <typename> class Q>
1771 void f(typename Q<int>::X) @{@}
1772 @end smallexample
1773
1774 @noindent
1775 Instantiations of these templates may be mangled incorrectly.
1776
1777 @end itemize
1778
1779 @item -Wctor-dtor-privacy @r{(C++ only)}
1780 @opindex Wctor-dtor-privacy
1781 Warn when a class seems unusable because all the constructors or
1782 destructors in that class are private, and it has neither friends nor
1783 public static member functions.
1784
1785 @item -Wnon-virtual-dtor @r{(C++ only)}
1786 @opindex Wnon-virtual-dtor
1787 Warn when a class appears to be polymorphic, thereby requiring a virtual
1788 destructor, yet it declares a non-virtual one.  This warning is also
1789 enabled if -Weffc++ is specified.
1790
1791 @item -Wreorder @r{(C++ only)}
1792 @opindex Wreorder
1793 @cindex reordering, warning
1794 @cindex warning for reordering of member initializers
1795 Warn when the order of member initializers given in the code does not
1796 match the order in which they must be executed.  For instance:
1797
1798 @smallexample
1799 struct A @{
1800   int i;
1801   int j;
1802   A(): j (0), i (1) @{ @}
1803 @};
1804 @end smallexample
1805
1806 The compiler will rearrange the member initializers for @samp{i}
1807 and @samp{j} to match the declaration order of the members, emitting
1808 a warning to that effect.  This warning is enabled by @option{-Wall}.
1809 @end table
1810
1811 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
1812
1813 @table @gcctabopt
1814 @item -Weffc++ @r{(C++ only)}
1815 @opindex Weffc++
1816 Warn about violations of the following style guidelines from Scott Meyers'
1817 @cite{Effective C++} book:
1818
1819 @itemize @bullet
1820 @item
1821 Item 11:  Define a copy constructor and an assignment operator for classes
1822 with dynamically allocated memory.
1823
1824 @item
1825 Item 12:  Prefer initialization to assignment in constructors.
1826
1827 @item
1828 Item 14:  Make destructors virtual in base classes.
1829
1830 @item
1831 Item 15:  Have @code{operator=} return a reference to @code{*this}.
1832
1833 @item
1834 Item 23:  Don't try to return a reference when you must return an object.
1835
1836 @end itemize
1837
1838 Also warn about violations of the following style guidelines from
1839 Scott Meyers' @cite{More Effective C++} book:
1840
1841 @itemize @bullet
1842 @item
1843 Item 6:  Distinguish between prefix and postfix forms of increment and
1844 decrement operators.
1845
1846 @item
1847 Item 7:  Never overload @code{&&}, @code{||}, or @code{,}.
1848
1849 @end itemize
1850
1851 When selecting this option, be aware that the standard library
1852 headers do not obey all of these guidelines; use @samp{grep -v}
1853 to filter out those warnings.
1854
1855 @item -Wno-deprecated @r{(C++ only)}
1856 @opindex Wno-deprecated
1857 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
1858
1859 @item -Wstrict-null-sentinel @r{(C++ only)}
1860 @opindex Wstrict-null-sentinel
1861 Warn also about the use of an uncasted @code{NULL} as sentinel.  When
1862 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
1863 to @code{__null}.  Although it is a null pointer constant not a null pointer,
1864 it is guaranteed to of the same size as a pointer.  But this use is
1865 not portable across different compilers.
1866
1867 @item -Wno-non-template-friend @r{(C++ only)}
1868 @opindex Wno-non-template-friend
1869 Disable warnings when non-templatized friend functions are declared
1870 within a template.  Since the advent of explicit template specification
1871 support in G++, if the name of the friend is an unqualified-id (i.e.,
1872 @samp{friend foo(int)}), the C++ language specification demands that the
1873 friend declare or define an ordinary, nontemplate function.  (Section
1874 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
1875 could be interpreted as a particular specialization of a templatized
1876 function.  Because this non-conforming behavior is no longer the default
1877 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
1878 check existing code for potential trouble spots and is on by default.
1879 This new compiler behavior can be turned off with
1880 @option{-Wno-non-template-friend} which keeps the conformant compiler code
1881 but disables the helpful warning.
1882
1883 @item -Wold-style-cast @r{(C++ only)}
1884 @opindex Wold-style-cast
1885 Warn if an old-style (C-style) cast to a non-void type is used within
1886 a C++ program.  The new-style casts (@samp{dynamic_cast},
1887 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
1888 less vulnerable to unintended effects and much easier to search for.
1889
1890 @item -Woverloaded-virtual @r{(C++ only)}
1891 @opindex Woverloaded-virtual
1892 @cindex overloaded virtual fn, warning
1893 @cindex warning for overloaded virtual fn
1894 Warn when a function declaration hides virtual functions from a
1895 base class.  For example, in:
1896
1897 @smallexample
1898 struct A @{
1899   virtual void f();
1900 @};
1901
1902 struct B: public A @{
1903   void f(int);
1904 @};
1905 @end smallexample
1906
1907 the @code{A} class version of @code{f} is hidden in @code{B}, and code
1908 like:
1909
1910 @smallexample
1911 B* b;
1912 b->f();
1913 @end smallexample
1914
1915 will fail to compile.
1916
1917 @item -Wno-pmf-conversions @r{(C++ only)}
1918 @opindex Wno-pmf-conversions
1919 Disable the diagnostic for converting a bound pointer to member function
1920 to a plain pointer.
1921
1922 @item -Wsign-promo @r{(C++ only)}
1923 @opindex Wsign-promo
1924 Warn when overload resolution chooses a promotion from unsigned or
1925 enumerated type to a signed type, over a conversion to an unsigned type of
1926 the same size.  Previous versions of G++ would try to preserve
1927 unsignedness, but the standard mandates the current behavior.
1928
1929 @smallexample
1930 struct A @{
1931   operator int ();
1932   A& operator = (int);
1933 @};
1934
1935 main ()
1936 @{
1937   A a,b;
1938   a = b;
1939 @}
1940 @end smallexample
1941
1942 In this example, G++ will synthesize a default @samp{A& operator =
1943 (const A&);}, while cfront will use the user-defined @samp{operator =}.
1944 @end table
1945
1946 @node Objective-C and Objective-C++ Dialect Options
1947 @section Options Controlling Objective-C and Objective-C++ Dialects
1948
1949 @cindex compiler options, Objective-C and Objective-C++
1950 @cindex Objective-C and Objective-C++ options, command line
1951 @cindex options, Objective-C and Objective-C++
1952 (NOTE: This manual does not describe the Objective-C and Objective-C++
1953 languages themselves.  See @xref{Standards,,Language Standards
1954 Supported by GCC}, for references.)
1955
1956 This section describes the command-line options that are only meaningful
1957 for Objective-C and Objective-C++ programs, but you can also use most of
1958 the language-independent GNU compiler options.
1959 For example, you might compile a file @code{some_class.m} like this:
1960
1961 @smallexample
1962 gcc -g -fgnu-runtime -O -c some_class.m
1963 @end smallexample
1964
1965 @noindent
1966 In this example, @option{-fgnu-runtime} is an option meant only for
1967 Objective-C and Objective-C++ programs; you can use the other options with
1968 any language supported by GCC@.
1969
1970 Note that since Objective-C is an extension of the C language, Objective-C
1971 compilations may also use options specific to the C front-end (e.g.,
1972 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
1973 C++-specific options (e.g., @option{-Wabi}).
1974
1975 Here is a list of options that are @emph{only} for compiling Objective-C
1976 and Objective-C++ programs:
1977
1978 @table @gcctabopt
1979 @item -fconstant-string-class=@var{class-name}
1980 @opindex fconstant-string-class
1981 Use @var{class-name} as the name of the class to instantiate for each
1982 literal string specified with the syntax @code{@@"@dots{}"}.  The default
1983 class name is @code{NXConstantString} if the GNU runtime is being used, and
1984 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
1985 @option{-fconstant-cfstrings} option, if also present, will override the
1986 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
1987 to be laid out as constant CoreFoundation strings.
1988
1989 @item -fgnu-runtime
1990 @opindex fgnu-runtime
1991 Generate object code compatible with the standard GNU Objective-C
1992 runtime.  This is the default for most types of systems.
1993
1994 @item -fnext-runtime
1995 @opindex fnext-runtime
1996 Generate output compatible with the NeXT runtime.  This is the default
1997 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
1998 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
1999 used.
2000
2001 @item -fno-nil-receivers
2002 @opindex fno-nil-receivers
2003 Assume that all Objective-C message dispatches (e.g.,
2004 @code{[receiver message:arg]}) in this translation unit ensure that the receiver
2005 is not @code{nil}.  This allows for more efficient entry points in the runtime
2006 to be used.  Currently, this option is only available in conjunction with
2007 the NeXT runtime on Mac OS X 10.3 and later.
2008
2009 @item -fobjc-call-cxx-cdtors
2010 @opindex fobjc-call-cxx-cdtors
2011 For each Objective-C class, check if any of its instance variables is a
2012 C++ object with a non-trivial default constructor.  If so, synthesize a
2013 special @code{- (id) .cxx_construct} instance method that will run
2014 non-trivial default constructors on any such instance variables, in order,
2015 and then return @code{self}.  Similarly, check if any instance variable
2016 is a C++ object with a non-trivial destructor, and if so, synthesize a
2017 special @code{- (void) .cxx_destruct} method that will run
2018 all such default destructors, in reverse order.
2019
2020 The @code{- (id) .cxx_construct} and/or @code{- (void) .cxx_destruct} methods
2021 thusly generated will only operate on instance variables declared in the
2022 current Objective-C class, and not those inherited from superclasses.  It
2023 is the responsibility of the Objective-C runtime to invoke all such methods
2024 in an object's inheritance hierarchy.  The @code{- (id) .cxx_construct} methods
2025 will be invoked by the runtime immediately after a new object
2026 instance is allocated; the @code{- (void) .cxx_destruct} methods will
2027 be invoked immediately before the runtime deallocates an object instance.
2028
2029 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2030 support for invoking the @code{- (id) .cxx_construct} and
2031 @code{- (void) .cxx_destruct} methods.
2032
2033 @item -fobjc-direct-dispatch
2034 @opindex fobjc-direct-dispatch
2035 Allow fast jumps to the message dispatcher.  On Darwin this is
2036 accomplished via the comm page.
2037
2038 @item -fobjc-exceptions
2039 @opindex fobjc-exceptions
2040 Enable syntactic support for structured exception handling in Objective-C,
2041 similar to what is offered by C++ and Java.  This option is
2042 unavailable in conjunction with the NeXT runtime on Mac OS X 10.2 and
2043 earlier.
2044
2045 @smallexample
2046   @@try @{
2047     @dots{}
2048        @@throw expr;
2049     @dots{}
2050   @}
2051   @@catch (AnObjCClass *exc) @{
2052     @dots{}
2053       @@throw expr;
2054     @dots{}
2055       @@throw;
2056     @dots{}
2057   @}
2058   @@catch (AnotherClass *exc) @{
2059     @dots{}
2060   @}
2061   @@catch (id allOthers) @{
2062     @dots{}
2063   @}
2064   @@finally @{
2065     @dots{}
2066       @@throw expr;
2067     @dots{}
2068   @}
2069 @end smallexample
2070
2071 The @code{@@throw} statement may appear anywhere in an Objective-C or
2072 Objective-C++ program; when used inside of a @code{@@catch} block, the
2073 @code{@@throw} may appear without an argument (as shown above), in which case
2074 the object caught by the @code{@@catch} will be rethrown.
2075
2076 Note that only (pointers to) Objective-C objects may be thrown and
2077 caught using this scheme.  When an object is thrown, it will be caught
2078 by the nearest @code{@@catch} clause capable of handling objects of that type,
2079 analogously to how @code{catch} blocks work in C++ and Java.  A
2080 @code{@@catch(id @dots{})} clause (as shown above) may also be provided to catch
2081 any and all Objective-C exceptions not caught by previous @code{@@catch}
2082 clauses (if any).
2083
2084 The @code{@@finally} clause, if present, will be executed upon exit from the
2085 immediately preceding @code{@@try @dots{} @@catch} section.  This will happen
2086 regardless of whether any exceptions are thrown, caught or rethrown
2087 inside the @code{@@try @dots{} @@catch} section, analogously to the behavior
2088 of the @code{finally} clause in Java.
2089
2090 There are several caveats to using the new exception mechanism:
2091
2092 @itemize @bullet
2093 @item
2094 Although currently designed to be binary compatible with @code{NS_HANDLER}-style
2095 idioms provided by the @code{NSException} class, the new
2096 exceptions can only be used on Mac OS X 10.3 (Panther) and later
2097 systems, due to additional functionality needed in the (NeXT) Objective-C
2098 runtime.
2099
2100 @item
2101 As mentioned above, the new exceptions do not support handling
2102 types other than Objective-C objects.   Furthermore, when used from
2103 Objective-C++, the Objective-C exception model does not interoperate with C++
2104 exceptions at this time.  This means you cannot @code{@@throw} an exception
2105 from Objective-C and @code{catch} it in C++, or vice versa
2106 (i.e., @code{throw @dots{} @@catch}).
2107 @end itemize
2108
2109 The @option{-fobjc-exceptions} switch also enables the use of synchronization
2110 blocks for thread-safe execution:
2111
2112 @smallexample
2113   @@synchronized (ObjCClass *guard) @{
2114     @dots{}
2115   @}
2116 @end smallexample
2117
2118 Upon entering the @code{@@synchronized} block, a thread of execution shall
2119 first check whether a lock has been placed on the corresponding @code{guard}
2120 object by another thread.  If it has, the current thread shall wait until
2121 the other thread relinquishes its lock.  Once @code{guard} becomes available,
2122 the current thread will place its own lock on it, execute the code contained in
2123 the @code{@@synchronized} block, and finally relinquish the lock (thereby
2124 making @code{guard} available to other threads).
2125
2126 Unlike Java, Objective-C does not allow for entire methods to be marked
2127 @code{@@synchronized}.  Note that throwing exceptions out of
2128 @code{@@synchronized} blocks is allowed, and will cause the guarding object
2129 to be unlocked properly.
2130
2131 @item -fobjc-gc
2132 @opindex fobjc-gc
2133 Enable garbage collection (GC) in Objective-C and Objective-C++ programs.
2134
2135 @item -freplace-objc-classes
2136 @opindex freplace-objc-classes
2137 Emit a special marker instructing @command{ld(1)} not to statically link in
2138 the resulting object file, and allow @command{dyld(1)} to load it in at
2139 run time instead.  This is used in conjunction with the Fix-and-Continue
2140 debugging mode, where the object file in question may be recompiled and
2141 dynamically reloaded in the course of program execution, without the need
2142 to restart the program itself.  Currently, Fix-and-Continue functionality
2143 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2144 and later.
2145
2146 @item -fzero-link
2147 @opindex fzero-link
2148 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2149 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2150 compile time) with static class references that get initialized at load time,
2151 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2152 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2153 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2154 for individual class implementations to be modified during program execution.
2155
2156 @item -gen-decls
2157 @opindex gen-decls
2158 Dump interface declarations for all classes seen in the source file to a
2159 file named @file{@var{sourcename}.decl}.
2160
2161 @item -Wassign-intercept
2162 @opindex Wassign-intercept
2163 Warn whenever an Objective-C assignment is being intercepted by the
2164 garbage collector.
2165
2166 @item -Wno-protocol
2167 @opindex Wno-protocol
2168 If a class is declared to implement a protocol, a warning is issued for
2169 every method in the protocol that is not implemented by the class.  The
2170 default behavior is to issue a warning for every method not explicitly
2171 implemented in the class, even if a method implementation is inherited
2172 from the superclass.  If you use the @option{-Wno-protocol} option, then
2173 methods inherited from the superclass are considered to be implemented,
2174 and no warning is issued for them.
2175
2176 @item -Wselector
2177 @opindex Wselector
2178 Warn if multiple methods of different types for the same selector are
2179 found during compilation.  The check is performed on the list of methods
2180 in the final stage of compilation.  Additionally, a check is performed
2181 for each selector appearing in a @code{@@selector(@dots{})}
2182 expression, and a corresponding method for that selector has been found
2183 during compilation.  Because these checks scan the method table only at
2184 the end of compilation, these warnings are not produced if the final
2185 stage of compilation is not reached, for example because an error is
2186 found during compilation, or because the @option{-fsyntax-only} option is
2187 being used.
2188
2189 @item -Wstrict-selector-match
2190 @opindex Wstrict-selector-match
2191 Warn if multiple methods with differing argument and/or return types are
2192 found for a given selector when attempting to send a message using this
2193 selector to a receiver of type @code{id} or @code{Class}.  When this flag
2194 is off (which is the default behavior), the compiler will omit such warnings
2195 if any differences found are confined to types which share the same size
2196 and alignment.
2197
2198 @item -Wundeclared-selector
2199 @opindex Wundeclared-selector
2200 Warn if a @code{@@selector(@dots{})} expression referring to an
2201 undeclared selector is found.  A selector is considered undeclared if no
2202 method with that name has been declared before the
2203 @code{@@selector(@dots{})} expression, either explicitly in an
2204 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
2205 an @code{@@implementation} section.  This option always performs its
2206 checks as soon as a @code{@@selector(@dots{})} expression is found,
2207 while @option{-Wselector} only performs its checks in the final stage of
2208 compilation.  This also enforces the coding style convention
2209 that methods and selectors must be declared before being used.
2210
2211 @item -print-objc-runtime-info
2212 @opindex print-objc-runtime-info
2213 Generate C header describing the largest structure that is passed by
2214 value, if any.
2215
2216 @end table
2217
2218 @node Language Independent Options
2219 @section Options to Control Diagnostic Messages Formatting
2220 @cindex options to control diagnostics formatting
2221 @cindex diagnostic messages
2222 @cindex message formatting
2223
2224 Traditionally, diagnostic messages have been formatted irrespective of
2225 the output device's aspect (e.g.@: its width, @dots{}).  The options described
2226 below can be used to control the diagnostic messages formatting
2227 algorithm, e.g.@: how many characters per line, how often source location
2228 information should be reported.  Right now, only the C++ front end can
2229 honor these options.  However it is expected, in the near future, that
2230 the remaining front ends would be able to digest them correctly.
2231
2232 @table @gcctabopt
2233 @item -fmessage-length=@var{n}
2234 @opindex fmessage-length
2235 Try to format error messages so that they fit on lines of about @var{n}
2236 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
2237 the front ends supported by GCC@.  If @var{n} is zero, then no
2238 line-wrapping will be done; each error message will appear on a single
2239 line.
2240
2241 @opindex fdiagnostics-show-location
2242 @item -fdiagnostics-show-location=once
2243 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
2244 reporter to emit @emph{once} source location information; that is, in
2245 case the message is too long to fit on a single physical line and has to
2246 be wrapped, the source location won't be emitted (as prefix) again,
2247 over and over, in subsequent continuation lines.  This is the default
2248 behavior.
2249
2250 @item -fdiagnostics-show-location=every-line
2251 Only meaningful in line-wrapping mode.  Instructs the diagnostic
2252 messages reporter to emit the same source location information (as
2253 prefix) for physical lines that result from the process of breaking
2254 a message which is too long to fit on a single line.
2255
2256 @item -fdiagnostics-show-option
2257 @opindex fdiagnostics-show-option
2258 This option instructs the diagnostic machinery to add text to each
2259 diagnostic emitted, which indicates which command line option directly
2260 controls that diagnostic, when such an option is known to the
2261 diagnostic machinery.
2262
2263 @end table
2264
2265 @node Warning Options
2266 @section Options to Request or Suppress Warnings
2267 @cindex options to control warnings
2268 @cindex warning messages
2269 @cindex messages, warning
2270 @cindex suppressing warnings
2271
2272 Warnings are diagnostic messages that report constructions which
2273 are not inherently erroneous but which are risky or suggest there
2274 may have been an error.
2275
2276 You can request many specific warnings with options beginning @samp{-W},
2277 for example @option{-Wimplicit} to request warnings on implicit
2278 declarations.  Each of these specific warning options also has a
2279 negative form beginning @samp{-Wno-} to turn off warnings;
2280 for example, @option{-Wno-implicit}.  This manual lists only one of the
2281 two forms, whichever is not the default.
2282
2283 The following options control the amount and kinds of warnings produced
2284 by GCC; for further, language-specific options also refer to
2285 @ref{C++ Dialect Options} and @ref{Objective-C and Objective-C++ Dialect
2286 Options}.
2287
2288 @table @gcctabopt
2289 @cindex syntax checking
2290 @item -fsyntax-only
2291 @opindex fsyntax-only
2292 Check the code for syntax errors, but don't do anything beyond that.
2293
2294 @item -pedantic
2295 @opindex pedantic
2296 Issue all the warnings demanded by strict ISO C and ISO C++;
2297 reject all programs that use forbidden extensions, and some other
2298 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
2299 version of the ISO C standard specified by any @option{-std} option used.
2300
2301 Valid ISO C and ISO C++ programs should compile properly with or without
2302 this option (though a rare few will require @option{-ansi} or a
2303 @option{-std} option specifying the required version of ISO C)@.  However,
2304 without this option, certain GNU extensions and traditional C and C++
2305 features are supported as well.  With this option, they are rejected.
2306
2307 @option{-pedantic} does not cause warning messages for use of the
2308 alternate keywords whose names begin and end with @samp{__}.  Pedantic
2309 warnings are also disabled in the expression that follows
2310 @code{__extension__}.  However, only system header files should use
2311 these escape routes; application programs should avoid them.
2312 @xref{Alternate Keywords}.
2313
2314 Some users try to use @option{-pedantic} to check programs for strict ISO
2315 C conformance.  They soon find that it does not do quite what they want:
2316 it finds some non-ISO practices, but not all---only those for which
2317 ISO C @emph{requires} a diagnostic, and some others for which
2318 diagnostics have been added.
2319
2320 A feature to report any failure to conform to ISO C might be useful in
2321 some instances, but would require considerable additional work and would
2322 be quite different from @option{-pedantic}.  We don't have plans to
2323 support such a feature in the near future.
2324
2325 Where the standard specified with @option{-std} represents a GNU
2326 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
2327 corresponding @dfn{base standard}, the version of ISO C on which the GNU
2328 extended dialect is based.  Warnings from @option{-pedantic} are given
2329 where they are required by the base standard.  (It would not make sense
2330 for such warnings to be given only for features not in the specified GNU
2331 C dialect, since by definition the GNU dialects of C include all
2332 features the compiler supports with the given option, and there would be
2333 nothing to warn about.)
2334
2335 @item -pedantic-errors
2336 @opindex pedantic-errors
2337 Like @option{-pedantic}, except that errors are produced rather than
2338 warnings.
2339
2340 @item -w
2341 @opindex w
2342 Inhibit all warning messages.
2343
2344 @item -Wno-import
2345 @opindex Wno-import
2346 Inhibit warning messages about the use of @samp{#import}.
2347
2348 @item -Wchar-subscripts
2349 @opindex Wchar-subscripts
2350 Warn if an array subscript has type @code{char}.  This is a common cause
2351 of error, as programmers often forget that this type is signed on some
2352 machines.
2353 This warning is enabled by @option{-Wall}.
2354
2355 @item -Wcomment
2356 @opindex Wcomment
2357 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
2358 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
2359 This warning is enabled by @option{-Wall}.
2360
2361 @item -Wfatal-errors
2362 @opindex Wfatal-errors
2363 This option causes the compiler to abort compilation on the first error
2364 occurred rather than trying to keep going and printing further error
2365 messages.
2366
2367 @item -Wformat
2368 @opindex Wformat
2369 @opindex ffreestanding
2370 @opindex fno-builtin
2371 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
2372 the arguments supplied have types appropriate to the format string
2373 specified, and that the conversions specified in the format string make
2374 sense.  This includes standard functions, and others specified by format
2375 attributes (@pxref{Function Attributes}), in the @code{printf},
2376 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
2377 not in the C standard) families (or other target-specific families).
2378 Which functions are checked without format attributes having been
2379 specified depends on the standard version selected, and such checks of
2380 functions without the attribute specified are disabled by
2381 @option{-ffreestanding} or @option{-fno-builtin}.
2382
2383 The formats are checked against the format features supported by GNU
2384 libc version 2.2.  These include all ISO C90 and C99 features, as well
2385 as features from the Single Unix Specification and some BSD and GNU
2386 extensions.  Other library implementations may not support all these
2387 features; GCC does not support warning about features that go beyond a
2388 particular library's limitations.  However, if @option{-pedantic} is used
2389 with @option{-Wformat}, warnings will be given about format features not
2390 in the selected standard version (but not for @code{strfmon} formats,
2391 since those are not in any version of the C standard).  @xref{C Dialect
2392 Options,,Options Controlling C Dialect}.
2393
2394 Since @option{-Wformat} also checks for null format arguments for
2395 several functions, @option{-Wformat} also implies @option{-Wnonnull}.
2396
2397 @option{-Wformat} is included in @option{-Wall}.  For more control over some
2398 aspects of format checking, the options @option{-Wformat-y2k},
2399 @option{-Wno-format-extra-args}, @option{-Wno-format-zero-length},
2400 @option{-Wformat-nonliteral}, @option{-Wformat-security}, and
2401 @option{-Wformat=2} are available, but are not included in @option{-Wall}.
2402
2403 @item -Wformat-y2k
2404 @opindex Wformat-y2k
2405 If @option{-Wformat} is specified, also warn about @code{strftime}
2406 formats which may yield only a two-digit year.
2407
2408 @item -Wno-format-extra-args
2409 @opindex Wno-format-extra-args
2410 If @option{-Wformat} is specified, do not warn about excess arguments to a
2411 @code{printf} or @code{scanf} format function.  The C standard specifies
2412 that such arguments are ignored.
2413
2414 Where the unused arguments lie between used arguments that are
2415 specified with @samp{$} operand number specifications, normally
2416 warnings are still given, since the implementation could not know what
2417 type to pass to @code{va_arg} to skip the unused arguments.  However,
2418 in the case of @code{scanf} formats, this option will suppress the
2419 warning if the unused arguments are all pointers, since the Single
2420 Unix Specification says that such unused arguments are allowed.
2421
2422 @item -Wno-format-zero-length
2423 @opindex Wno-format-zero-length
2424 If @option{-Wformat} is specified, do not warn about zero-length formats.
2425 The C standard specifies that zero-length formats are allowed.
2426
2427 @item -Wformat-nonliteral
2428 @opindex Wformat-nonliteral
2429 If @option{-Wformat} is specified, also warn if the format string is not a
2430 string literal and so cannot be checked, unless the format function
2431 takes its format arguments as a @code{va_list}.
2432
2433 @item -Wformat-security
2434 @opindex Wformat-security
2435 If @option{-Wformat} is specified, also warn about uses of format
2436 functions that represent possible security problems.  At present, this
2437 warns about calls to @code{printf} and @code{scanf} functions where the
2438 format string is not a string literal and there are no format arguments,
2439 as in @code{printf (foo);}.  This may be a security hole if the format
2440 string came from untrusted input and contains @samp{%n}.  (This is
2441 currently a subset of what @option{-Wformat-nonliteral} warns about, but
2442 in future warnings may be added to @option{-Wformat-security} that are not
2443 included in @option{-Wformat-nonliteral}.)
2444
2445 @item -Wformat=2
2446 @opindex Wformat=2
2447 Enable @option{-Wformat} plus format checks not included in
2448 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
2449 -Wformat-nonliteral -Wformat-security -Wformat-y2k}.
2450
2451 @item -Wnonnull
2452 @opindex Wnonnull
2453 Warn about passing a null pointer for arguments marked as
2454 requiring a non-null value by the @code{nonnull} function attribute.
2455
2456 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
2457 can be disabled with the @option{-Wno-nonnull} option.
2458
2459 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
2460 @opindex Winit-self
2461 Warn about uninitialized variables which are initialized with themselves.
2462 Note this option can only be used with the @option{-Wuninitialized} option,
2463 which in turn only works with @option{-O1} and above.
2464
2465 For example, GCC will warn about @code{i} being uninitialized in the
2466 following snippet only when @option{-Winit-self} has been specified:
2467 @smallexample
2468 @group
2469 int f()
2470 @{
2471   int i = i;
2472   return i;
2473 @}
2474 @end group
2475 @end smallexample
2476
2477 @item -Wimplicit-int
2478 @opindex Wimplicit-int
2479 Warn when a declaration does not specify a type.
2480 This warning is enabled by @option{-Wall}.
2481
2482 @item -Wimplicit-function-declaration
2483 @itemx -Werror-implicit-function-declaration
2484 @opindex Wimplicit-function-declaration
2485 @opindex Werror-implicit-function-declaration
2486 Give a warning (or error) whenever a function is used before being
2487 declared.  The form @option{-Wno-error-implicit-function-declaration}
2488 is not supported.
2489 This warning is enabled by @option{-Wall} (as a warning, not an error).
2490
2491 @item -Wimplicit
2492 @opindex Wimplicit
2493 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
2494 This warning is enabled by @option{-Wall}.
2495
2496 @item -Wmain
2497 @opindex Wmain
2498 Warn if the type of @samp{main} is suspicious.  @samp{main} should be a
2499 function with external linkage, returning int, taking either zero
2500 arguments, two, or three arguments of appropriate types.
2501 This warning is enabled by @option{-Wall}.
2502
2503 @item -Wmissing-braces
2504 @opindex Wmissing-braces
2505 Warn if an aggregate or union initializer is not fully bracketed.  In
2506 the following example, the initializer for @samp{a} is not fully
2507 bracketed, but that for @samp{b} is fully bracketed.
2508
2509 @smallexample
2510 int a[2][2] = @{ 0, 1, 2, 3 @};
2511 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
2512 @end smallexample
2513
2514 This warning is enabled by @option{-Wall}.
2515
2516 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
2517 @opindex Wmissing-include-dirs
2518 Warn if a user-supplied include directory does not exist.
2519
2520 @item -Wparentheses
2521 @opindex Wparentheses
2522 Warn if parentheses are omitted in certain contexts, such
2523 as when there is an assignment in a context where a truth value
2524 is expected, or when operators are nested whose precedence people
2525 often get confused about.  Only the warning for an assignment used as
2526 a truth value is supported when compiling C++; the other warnings are
2527 only supported when compiling C@.
2528
2529 Also warn if a comparison like @samp{x<=y<=z} appears; this is
2530 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
2531 interpretation from that of ordinary mathematical notation.
2532
2533 Also warn about constructions where there may be confusion to which
2534 @code{if} statement an @code{else} branch belongs.  Here is an example of
2535 such a case:
2536
2537 @smallexample
2538 @group
2539 @{
2540   if (a)
2541     if (b)
2542       foo ();
2543   else
2544     bar ();
2545 @}
2546 @end group
2547 @end smallexample
2548
2549 In C, every @code{else} branch belongs to the innermost possible @code{if}
2550 statement, which in this example is @code{if (b)}.  This is often not
2551 what the programmer expected, as illustrated in the above example by
2552 indentation the programmer chose.  When there is the potential for this
2553 confusion, GCC will issue a warning when this flag is specified.
2554 To eliminate the warning, add explicit braces around the innermost
2555 @code{if} statement so there is no way the @code{else} could belong to
2556 the enclosing @code{if}.  The resulting code would look like this:
2557
2558 @smallexample
2559 @group
2560 @{
2561   if (a)
2562     @{
2563       if (b)
2564         foo ();
2565       else
2566         bar ();
2567     @}
2568 @}
2569 @end group
2570 @end smallexample
2571
2572 This warning is enabled by @option{-Wall}.
2573
2574 @item -Wsequence-point
2575 @opindex Wsequence-point
2576 Warn about code that may have undefined semantics because of violations
2577 of sequence point rules in the C and C++ standards.
2578
2579 The C and C++ standards defines the order in which expressions in a C/C++
2580 program are evaluated in terms of @dfn{sequence points}, which represent
2581 a partial ordering between the execution of parts of the program: those
2582 executed before the sequence point, and those executed after it.  These
2583 occur after the evaluation of a full expression (one which is not part
2584 of a larger expression), after the evaluation of the first operand of a
2585 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
2586 function is called (but after the evaluation of its arguments and the
2587 expression denoting the called function), and in certain other places.
2588 Other than as expressed by the sequence point rules, the order of
2589 evaluation of subexpressions of an expression is not specified.  All
2590 these rules describe only a partial order rather than a total order,
2591 since, for example, if two functions are called within one expression
2592 with no sequence point between them, the order in which the functions
2593 are called is not specified.  However, the standards committee have
2594 ruled that function calls do not overlap.
2595
2596 It is not specified when between sequence points modifications to the
2597 values of objects take effect.  Programs whose behavior depends on this
2598 have undefined behavior; the C and C++ standards specify that ``Between
2599 the previous and next sequence point an object shall have its stored
2600 value modified at most once by the evaluation of an expression.  
2601 Furthermore, the prior value shall be read only to determine the value
2602 to be stored.''.  If a program breaks these rules, the results on any
2603 particular implementation are entirely unpredictable.
2604
2605 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
2606 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
2607 diagnosed by this option, and it may give an occasional false positive
2608 result, but in general it has been found fairly effective at detecting
2609 this sort of problem in programs.
2610
2611 The standard is worded confusingly, therefore there is some debate
2612 over the precise meaning of the sequence point rules in subtle cases.
2613 Links to discussions of the problem, including proposed formal
2614 definitions, may be found on the GCC readings page, at
2615 @w{@uref{http://gcc.gnu.org/readings.html}}.
2616
2617 This warning is enabled by @option{-Wall} for C and C++.
2618
2619 @item -Wreturn-type
2620 @opindex Wreturn-type
2621 Warn whenever a function is defined with a return-type that defaults to
2622 @code{int}.  Also warn about any @code{return} statement with no
2623 return-value in a function whose return-type is not @code{void}.
2624
2625 For C, also warn if the return type of a function has a type qualifier
2626 such as @code{const}.  Such a type qualifier has no effect, since the
2627 value returned by a function is not an lvalue.  ISO C prohibits
2628 qualified @code{void} return types on function definitions, so such
2629 return types always receive a warning even without this option.
2630
2631 For C++, a function without return type always produces a diagnostic
2632 message, even when @option{-Wno-return-type} is specified.  The only
2633 exceptions are @samp{main} and functions defined in system headers.
2634
2635 This warning is enabled by @option{-Wall}.
2636
2637 @item -Wswitch
2638 @opindex Wswitch
2639 Warn whenever a @code{switch} statement has an index of enumerated type
2640 and lacks a @code{case} for one or more of the named codes of that
2641 enumeration.  (The presence of a @code{default} label prevents this
2642 warning.)  @code{case} labels outside the enumeration range also
2643 provoke warnings when this option is used.
2644 This warning is enabled by @option{-Wall}.
2645
2646 @item -Wswitch-default
2647 @opindex Wswitch-switch
2648 Warn whenever a @code{switch} statement does not have a @code{default}
2649 case.
2650
2651 @item -Wswitch-enum
2652 @opindex Wswitch-enum
2653 Warn whenever a @code{switch} statement has an index of enumerated type
2654 and lacks a @code{case} for one or more of the named codes of that
2655 enumeration.  @code{case} labels outside the enumeration range also
2656 provoke warnings when this option is used.
2657
2658 @item -Wtrigraphs
2659 @opindex Wtrigraphs
2660 Warn if any trigraphs are encountered that might change the meaning of
2661 the program (trigraphs within comments are not warned about).
2662 This warning is enabled by @option{-Wall}.
2663
2664 @item -Wunused-function
2665 @opindex Wunused-function
2666 Warn whenever a static function is declared but not defined or a
2667 non-inline static function is unused.
2668 This warning is enabled by @option{-Wall}.
2669
2670 @item -Wunused-label
2671 @opindex Wunused-label
2672 Warn whenever a label is declared but not used.
2673 This warning is enabled by @option{-Wall}.
2674
2675 To suppress this warning use the @samp{unused} attribute
2676 (@pxref{Variable Attributes}).
2677
2678 @item -Wunused-parameter
2679 @opindex Wunused-parameter
2680 Warn whenever a function parameter is unused aside from its declaration.
2681
2682 To suppress this warning use the @samp{unused} attribute
2683 (@pxref{Variable Attributes}).
2684
2685 @item -Wunused-variable
2686 @opindex Wunused-variable
2687 Warn whenever a local variable or non-constant static variable is unused
2688 aside from its declaration.
2689 This warning is enabled by @option{-Wall}.
2690
2691 To suppress this warning use the @samp{unused} attribute
2692 (@pxref{Variable Attributes}).
2693
2694 @item -Wunused-value
2695 @opindex Wunused-value
2696 Warn whenever a statement computes a result that is explicitly not used.
2697 This warning is enabled by @option{-Wall}.
2698
2699 To suppress this warning cast the expression to @samp{void}.
2700
2701 @item -Wunused
2702 @opindex Wunused
2703 All the above @option{-Wunused} options combined.
2704
2705 In order to get a warning about an unused function parameter, you must
2706 either specify @samp{-Wextra -Wunused} (note that @samp{-Wall} implies
2707 @samp{-Wunused}), or separately specify @option{-Wunused-parameter}.
2708
2709 @item -Wuninitialized
2710 @opindex Wuninitialized
2711 Warn if an automatic variable is used without first being initialized or
2712 if a variable may be clobbered by a @code{setjmp} call.
2713
2714 These warnings are possible only in optimizing compilation,
2715 because they require data flow information that is computed only
2716 when optimizing.  If you do not specify @option{-O}, you will not get 
2717 these warnings. Instead, GCC will issue a warning about @option{-Wuninitialized}
2718 requiring @option{-O}.
2719
2720 If you want to warn about code which uses the uninitialized value of the
2721 variable in its own initializer, use the @option{-Winit-self} option.
2722
2723 These warnings occur for individual uninitialized or clobbered
2724 elements of structure, union or array variables as well as for
2725 variables which are uninitialized or clobbered as a whole.  They do
2726 not occur for variables or elements declared @code{volatile}.  Because
2727 these warnings depend on optimization, the exact variables or elements
2728 for which there are warnings will depend on the precise optimization
2729 options and version of GCC used.
2730
2731 Note that there may be no warning about a variable that is used only
2732 to compute a value that itself is never used, because such
2733 computations may be deleted by data flow analysis before the warnings
2734 are printed.
2735
2736 These warnings are made optional because GCC is not smart
2737 enough to see all the reasons why the code might be correct
2738 despite appearing to have an error.  Here is one example of how
2739 this can happen:
2740
2741 @smallexample
2742 @group
2743 @{
2744   int x;
2745   switch (y)
2746     @{
2747     case 1: x = 1;
2748       break;
2749     case 2: x = 4;
2750       break;
2751     case 3: x = 5;
2752     @}
2753   foo (x);
2754 @}
2755 @end group
2756 @end smallexample
2757
2758 @noindent
2759 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
2760 always initialized, but GCC doesn't know this.  Here is
2761 another common case:
2762
2763 @smallexample
2764 @{
2765   int save_y;
2766   if (change_y) save_y = y, y = new_y;
2767   @dots{}
2768   if (change_y) y = save_y;
2769 @}
2770 @end smallexample
2771
2772 @noindent
2773 This has no bug because @code{save_y} is used only if it is set.
2774
2775 @cindex @code{longjmp} warnings
2776 This option also warns when a non-volatile automatic variable might be
2777 changed by a call to @code{longjmp}.  These warnings as well are possible
2778 only in optimizing compilation.
2779
2780 The compiler sees only the calls to @code{setjmp}.  It cannot know
2781 where @code{longjmp} will be called; in fact, a signal handler could
2782 call it at any point in the code.  As a result, you may get a warning
2783 even when there is in fact no problem because @code{longjmp} cannot
2784 in fact be called at the place which would cause a problem.
2785
2786 Some spurious warnings can be avoided if you declare all the functions
2787 you use that never return as @code{noreturn}.  @xref{Function
2788 Attributes}.
2789
2790 This warning is enabled by @option{-Wall}.
2791
2792 @item -Wunknown-pragmas
2793 @opindex Wunknown-pragmas
2794 @cindex warning for unknown pragmas
2795 @cindex unknown pragmas, warning
2796 @cindex pragmas, warning of unknown
2797 Warn when a #pragma directive is encountered which is not understood by
2798 GCC@.  If this command line option is used, warnings will even be issued
2799 for unknown pragmas in system header files.  This is not the case if
2800 the warnings were only enabled by the @option{-Wall} command line option.
2801
2802 @item -Wno-pragmas
2803 @opindex Wno-pragmas
2804 @opindex Wpragmas
2805 Do not warn about misuses of pragmas, such as incorrect parameters,
2806 invalid syntax, or conflicts between pragmas.  See also
2807 @samp{-Wunknown-pragmas}.
2808
2809 @item -Wstrict-aliasing
2810 @opindex Wstrict-aliasing
2811 This option is only active when @option{-fstrict-aliasing} is active.
2812 It warns about code which might break the strict aliasing rules that the
2813 compiler is using for optimization.  The warning does not catch all
2814 cases, but does attempt to catch the more common pitfalls.  It is
2815 included in @option{-Wall}.
2816
2817 @item -Wstrict-aliasing=2
2818 @opindex Wstrict-aliasing=2
2819 This option is only active when @option{-fstrict-aliasing} is active.
2820 It warns about code which might break the strict aliasing rules that the
2821 compiler is using for optimization.  This warning catches more cases than
2822 @option{-Wstrict-aliasing}, but it will also give a warning for some ambiguous
2823 cases that are safe.
2824
2825 @item -Wall
2826 @opindex Wall
2827 All of the above @samp{-W} options combined.  This enables all the
2828 warnings about constructions that some users consider questionable, and
2829 that are easy to avoid (or modify to prevent the warning), even in
2830 conjunction with macros.  This also enables some language-specific
2831 warnings described in @ref{C++ Dialect Options} and
2832 @ref{Objective-C and Objective-C++ Dialect Options}.
2833 @end table
2834
2835 The following @option{-W@dots{}} options are not implied by @option{-Wall}.
2836 Some of them warn about constructions that users generally do not
2837 consider questionable, but which occasionally you might wish to check
2838 for; others warn about constructions that are necessary or hard to avoid
2839 in some cases, and there is no simple way to modify the code to suppress
2840 the warning.
2841
2842 @table @gcctabopt
2843 @item -Wextra
2844 @opindex W
2845 @opindex Wextra
2846 (This option used to be called @option{-W}.  The older name is still
2847 supported, but the newer name is more descriptive.)  Print extra warning
2848 messages for these events:
2849
2850 @itemize @bullet
2851 @item
2852 A function can return either with or without a value.  (Falling
2853 off the end of the function body is considered returning without
2854 a value.)  For example, this function would evoke such a
2855 warning:
2856
2857 @smallexample
2858 @group
2859 foo (a)
2860 @{
2861   if (a > 0)
2862     return a;
2863 @}
2864 @end group
2865 @end smallexample
2866
2867 @item
2868 An expression-statement or the left-hand side of a comma expression
2869 contains no side effects.
2870 To suppress the warning, cast the unused expression to void.
2871 For example, an expression such as @samp{x[i,j]} will cause a warning,
2872 but @samp{x[(void)i,j]} will not.
2873
2874 @item
2875 An unsigned value is compared against zero with @samp{<} or @samp{>=}.
2876
2877 @item
2878 Storage-class specifiers like @code{static} are not the first things in
2879 a declaration.  According to the C Standard, this usage is obsolescent.
2880
2881 @item
2882 If @option{-Wall} or @option{-Wunused} is also specified, warn about unused
2883 arguments.
2884
2885 @item
2886 A comparison between signed and unsigned values could produce an
2887 incorrect result when the signed value is converted to unsigned.
2888 (But don't warn if @option{-Wno-sign-compare} is also specified.)
2889
2890 @item
2891 An aggregate has an initializer which does not initialize all members.
2892 This warning can be independently controlled by
2893 @option{-Wmissing-field-initializers}.
2894
2895 @item
2896 An initialized field without side effects is overridden when using
2897 designated initializers (@pxref{Designated Inits, , Designated
2898 Initializers}).  This warning can be independently controlled by
2899 @option{-Woverride-init}.
2900
2901 @item
2902 A function parameter is declared without a type specifier in K&R-style
2903 functions:
2904
2905 @smallexample
2906 void foo(bar) @{ @}
2907 @end smallexample
2908
2909 @item
2910 An empty body occurs in an @samp{if} or @samp{else} statement.
2911
2912 @item
2913 A pointer is compared against integer zero with @samp{<}, @samp{<=},
2914 @samp{>}, or @samp{>=}.
2915
2916 @item
2917 A variable might be changed by @samp{longjmp} or @samp{vfork}.
2918
2919 @item
2920 Any of several floating-point events that often indicate errors, such as
2921 overflow, underflow, loss of precision, etc.
2922
2923 @item @r{(C++ only)}
2924 An enumerator and a non-enumerator both appear in a conditional expression.
2925
2926 @item @r{(C++ only)}
2927 A non-static reference or non-static @samp{const} member appears in a
2928 class without constructors.
2929
2930 @item @r{(C++ only)}
2931 Ambiguous virtual bases.
2932
2933 @item @r{(C++ only)}
2934 Subscripting an array which has been declared @samp{register}.
2935
2936 @item @r{(C++ only)}
2937 Taking the address of a variable which has been declared @samp{register}.
2938
2939 @item @r{(C++ only)}
2940 A base class is not initialized in a derived class' copy constructor.
2941 @end itemize
2942
2943 @item -Wno-div-by-zero
2944 @opindex Wno-div-by-zero
2945 @opindex Wdiv-by-zero
2946 Do not warn about compile-time integer division by zero.  Floating point
2947 division by zero is not warned about, as it can be a legitimate way of
2948 obtaining infinities and NaNs.
2949
2950 @item -Wsystem-headers
2951 @opindex Wsystem-headers
2952 @cindex warnings from system headers
2953 @cindex system headers, warnings from
2954 Print warning messages for constructs found in system header files.
2955 Warnings from system headers are normally suppressed, on the assumption
2956 that they usually do not indicate real problems and would only make the
2957 compiler output harder to read.  Using this command line option tells
2958 GCC to emit warnings from system headers as if they occurred in user
2959 code.  However, note that using @option{-Wall} in conjunction with this
2960 option will @emph{not} warn about unknown pragmas in system
2961 headers---for that, @option{-Wunknown-pragmas} must also be used.
2962
2963 @item -Wfloat-equal
2964 @opindex Wfloat-equal
2965 Warn if floating point values are used in equality comparisons.
2966
2967 The idea behind this is that sometimes it is convenient (for the
2968 programmer) to consider floating-point values as approximations to
2969 infinitely precise real numbers.  If you are doing this, then you need
2970 to compute (by analyzing the code, or in some other way) the maximum or
2971 likely maximum error that the computation introduces, and allow for it
2972 when performing comparisons (and when producing output, but that's a
2973 different problem).  In particular, instead of testing for equality, you
2974 would check to see whether the two values have ranges that overlap; and
2975 this is done with the relational operators, so equality comparisons are
2976 probably mistaken.
2977
2978 @item -Wtraditional @r{(C only)}
2979 @opindex Wtraditional
2980 Warn about certain constructs that behave differently in traditional and
2981 ISO C@.  Also warn about ISO C constructs that have no traditional C
2982 equivalent, and/or problematic constructs which should be avoided.
2983
2984 @itemize @bullet
2985 @item
2986 Macro parameters that appear within string literals in the macro body.
2987 In traditional C macro replacement takes place within string literals,
2988 but does not in ISO C@.
2989
2990 @item
2991 In traditional C, some preprocessor directives did not exist.
2992 Traditional preprocessors would only consider a line to be a directive
2993 if the @samp{#} appeared in column 1 on the line.  Therefore
2994 @option{-Wtraditional} warns about directives that traditional C
2995 understands but would ignore because the @samp{#} does not appear as the
2996 first character on the line.  It also suggests you hide directives like
2997 @samp{#pragma} not understood by traditional C by indenting them.  Some
2998 traditional implementations would not recognize @samp{#elif}, so it
2999 suggests avoiding it altogether.
3000
3001 @item
3002 A function-like macro that appears without arguments.
3003
3004 @item
3005 The unary plus operator.
3006
3007 @item
3008 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
3009 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
3010 constants.)  Note, these suffixes appear in macros defined in the system
3011 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
3012 Use of these macros in user code might normally lead to spurious
3013 warnings, however GCC's integrated preprocessor has enough context to
3014 avoid warning in these cases.
3015
3016 @item
3017 A function declared external in one block and then used after the end of
3018 the block.
3019
3020 @item
3021 A @code{switch} statement has an operand of type @code{long}.
3022
3023 @item
3024 A non-@code{static} function declaration follows a @code{static} one.
3025 This construct is not accepted by some traditional C compilers.
3026
3027 @item
3028 The ISO type of an integer constant has a different width or
3029 signedness from its traditional type.  This warning is only issued if
3030 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
3031 typically represent bit patterns, are not warned about.
3032
3033 @item
3034 Usage of ISO string concatenation is detected.
3035
3036 @item
3037 Initialization of automatic aggregates.
3038
3039 @item
3040 Identifier conflicts with labels.  Traditional C lacks a separate
3041 namespace for labels.
3042
3043 @item
3044 Initialization of unions.  If the initializer is zero, the warning is
3045 omitted.  This is done under the assumption that the zero initializer in
3046 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
3047 initializer warnings and relies on default initialization to zero in the
3048 traditional C case.
3049
3050 @item
3051 Conversions by prototypes between fixed/floating point values and vice
3052 versa.  The absence of these prototypes when compiling with traditional
3053 C would cause serious problems.  This is a subset of the possible
3054 conversion warnings, for the full set use @option{-Wconversion}.
3055
3056 @item
3057 Use of ISO C style function definitions.  This warning intentionally is
3058 @emph{not} issued for prototype declarations or variadic functions
3059 because these ISO C features will appear in your code when using
3060 libiberty's traditional C compatibility macros, @code{PARAMS} and
3061 @code{VPARAMS}.  This warning is also bypassed for nested functions
3062 because that feature is already a GCC extension and thus not relevant to
3063 traditional C compatibility.
3064 @end itemize
3065
3066 @item -Wdeclaration-after-statement @r{(C only)}
3067 @opindex Wdeclaration-after-statement
3068 Warn when a declaration is found after a statement in a block.  This
3069 construct, known from C++, was introduced with ISO C99 and is by default
3070 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
3071 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
3072
3073 @item -Wundef
3074 @opindex Wundef
3075 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
3076
3077 @item -Wno-endif-labels
3078 @opindex Wno-endif-labels
3079 @opindex Wendif-labels
3080 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
3081
3082 @item -Wshadow
3083 @opindex Wshadow
3084 Warn whenever a local variable shadows another local variable, parameter or
3085 global variable or whenever a built-in function is shadowed.
3086
3087 @item -Wlarger-than-@var{len}
3088 @opindex Wlarger-than
3089 Warn whenever an object of larger than @var{len} bytes is defined.
3090
3091 @item -Wunsafe-loop-optimizations
3092 @opindex Wunsafe-loop-optimizations
3093 Warn if the loop cannot be optimized because the compiler could not
3094 assume anything on the bounds of the loop indices.  With
3095 @option{-funsafe-loop-optimizations} warn if the compiler made
3096 such assumptions.
3097
3098 @item -Wpointer-arith
3099 @opindex Wpointer-arith
3100 Warn about anything that depends on the ``size of'' a function type or
3101 of @code{void}.  GNU C assigns these types a size of 1, for
3102 convenience in calculations with @code{void *} pointers and pointers
3103 to functions.
3104
3105 @item -Wbad-function-cast @r{(C only)}
3106 @opindex Wbad-function-cast
3107 Warn whenever a function call is cast to a non-matching type.
3108 For example, warn if @code{int malloc()} is cast to @code{anything *}.
3109
3110 @item -Wc++-compat
3111 Warn about ISO C constructs that are outside of the common subset of
3112 ISO C and ISO C++, e.g.@: request for implicit conversion from
3113 @code{void *} to a pointer to non-@code{void} type.
3114
3115 @item -Wcast-qual
3116 @opindex Wcast-qual
3117 Warn whenever a pointer is cast so as to remove a type qualifier from
3118 the target type.  For example, warn if a @code{const char *} is cast
3119 to an ordinary @code{char *}.
3120
3121 @item -Wcast-align
3122 @opindex Wcast-align
3123 Warn whenever a pointer is cast such that the required alignment of the
3124 target is increased.  For example, warn if a @code{char *} is cast to
3125 an @code{int *} on machines where integers can only be accessed at
3126 two- or four-byte boundaries.
3127
3128 @item -Wwrite-strings
3129 @opindex Wwrite-strings
3130 When compiling C, give string constants the type @code{const
3131 char[@var{length}]} so that
3132 copying the address of one into a non-@code{const} @code{char *}
3133 pointer will get a warning; when compiling C++, warn about the
3134 deprecated conversion from string literals to @code{char *}.  This
3135 warning, by default, is enabled for C++ programs.
3136 These warnings will help you find at
3137 compile time code that can try to write into a string constant, but
3138 only if you have been very careful about using @code{const} in
3139 declarations and prototypes.  Otherwise, it will just be a nuisance;
3140 this is why we did not make @option{-Wall} request these warnings.
3141
3142 @item -Wconversion
3143 @opindex Wconversion
3144 Warn if a prototype causes a type conversion that is different from what
3145 would happen to the same argument in the absence of a prototype.  This
3146 includes conversions of fixed point to floating and vice versa, and
3147 conversions changing the width or signedness of a fixed point argument
3148 except when the same as the default promotion.
3149
3150 Also, warn if a negative integer constant expression is implicitly
3151 converted to an unsigned type.  For example, warn about the assignment
3152 @code{x = -1} if @code{x} is unsigned.  But do not warn about explicit
3153 casts like @code{(unsigned) -1}.
3154
3155 @item -Wsign-compare
3156 @opindex Wsign-compare
3157 @cindex warning for comparison of signed and unsigned values
3158 @cindex comparison of signed and unsigned values, warning
3159 @cindex signed and unsigned values, comparison warning
3160 Warn when a comparison between signed and unsigned values could produce
3161 an incorrect result when the signed value is converted to unsigned.
3162 This warning is also enabled by @option{-Wextra}; to get the other warnings
3163 of @option{-Wextra} without this warning, use @samp{-Wextra -Wno-sign-compare}.
3164
3165 @item -Waggregate-return
3166 @opindex Waggregate-return
3167 Warn if any functions that return structures or unions are defined or
3168 called.  (In languages where you can return an array, this also elicits
3169 a warning.)
3170
3171 @item -Walways-true
3172 @opindex Walways-true
3173 Warn about comparisons which are always true such as testing if
3174 unsigned values are greater than or equal to zero.  This warning is
3175 enabled by @option{-Wall}.
3176
3177 @item -Wno-attributes
3178 @opindex Wno-attributes
3179 @opindex Wattributes
3180 Do not warn if an unexpected @code{__attribute__} is used, such as
3181 unrecognized attributes, function attributes applied to variables,
3182 etc.  This will not stop errors for incorrect use of supported
3183 attributes.
3184
3185 @item -Wstrict-prototypes @r{(C only)}
3186 @opindex Wstrict-prototypes
3187 Warn if a function is declared or defined without specifying the
3188 argument types.  (An old-style function definition is permitted without
3189 a warning if preceded by a declaration which specifies the argument
3190 types.)
3191
3192 @item -Wold-style-definition @r{(C only)}
3193 @opindex Wold-style-definition
3194 Warn if an old-style function definition is used.  A warning is given
3195 even if there is a previous prototype.
3196
3197 @item -Wmissing-prototypes @r{(C only)}
3198 @opindex Wmissing-prototypes
3199 Warn if a global function is defined without a previous prototype
3200 declaration.  This warning is issued even if the definition itself
3201 provides a prototype.  The aim is to detect global functions that fail
3202 to be declared in header files.
3203
3204 @item -Wmissing-declarations @r{(C only)}
3205 @opindex Wmissing-declarations
3206 Warn if a global function is defined without a previous declaration.
3207 Do so even if the definition itself provides a prototype.
3208 Use this option to detect global functions that are not declared in
3209 header files.
3210
3211 @item -Wmissing-field-initializers
3212 @opindex Wmissing-field-initializers
3213 @opindex W
3214 @opindex Wextra
3215 Warn if a structure's initializer has some fields missing.  For
3216 example, the following code would cause such a warning, because
3217 @code{x.h} is implicitly zero:
3218
3219 @smallexample
3220 struct s @{ int f, g, h; @};
3221 struct s x = @{ 3, 4 @};
3222 @end smallexample
3223
3224 This option does not warn about designated initializers, so the following
3225 modification would not trigger a warning:
3226
3227 @smallexample
3228 struct s @{ int f, g, h; @};
3229 struct s x = @{ .f = 3, .g = 4 @};
3230 @end smallexample
3231
3232 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
3233 warnings without this one, use @samp{-Wextra -Wno-missing-field-initializers}.
3234
3235 @item -Wmissing-noreturn
3236 @opindex Wmissing-noreturn
3237 Warn about functions which might be candidates for attribute @code{noreturn}.
3238 Note these are only possible candidates, not absolute ones.  Care should
3239 be taken to manually verify functions actually do not ever return before
3240 adding the @code{noreturn} attribute, otherwise subtle code generation
3241 bugs could be introduced.  You will not get a warning for @code{main} in
3242 hosted C environments.
3243
3244 @item -Wmissing-format-attribute
3245 @opindex Wmissing-format-attribute
3246 @opindex Wformat
3247 Warn about function pointers which might be candidates for @code{format}
3248 attributes.  Note these are only possible candidates, not absolute ones.
3249 GCC will guess that function pointers with @code{format} attributes that
3250 are used in assignment, initialization, parameter passing or return
3251 statements should have a corresponding @code{format} attribute in the
3252 resulting type.  I.e.@: the left-hand side of the assignment or
3253 initialization, the type of the parameter variable, or the return type
3254 of the containing function respectively should also have a @code{format}
3255 attribute to avoid the warning.
3256
3257 GCC will also warn about function definitions which might be
3258 candidates for @code{format} attributes.  Again, these are only
3259 possible candidates.  GCC will guess that @code{format} attributes
3260 might be appropriate for any function that calls a function like
3261 @code{vprintf} or @code{vscanf}, but this might not always be the
3262 case, and some functions for which @code{format} attributes are
3263 appropriate may not be detected.
3264
3265 @item -Wno-multichar
3266 @opindex Wno-multichar
3267 @opindex Wmultichar
3268 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
3269 Usually they indicate a typo in the user's code, as they have
3270 implementation-defined values, and should not be used in portable code.
3271
3272 @item -Wnormalized=<none|id|nfc|nfkc>
3273 @opindex Wnormalized
3274 @cindex NFC
3275 @cindex NFKC
3276 @cindex character set, input normalization
3277 In ISO C and ISO C++, two identifiers are different if they are
3278 different sequences of characters.  However, sometimes when characters
3279 outside the basic ASCII character set are used, you can have two
3280 different character sequences that look the same.  To avoid confusion,
3281 the ISO 10646 standard sets out some @dfn{normalization rules} which
3282 when applied ensure that two sequences that look the same are turned into
3283 the same sequence.  GCC can warn you if you are using identifiers which
3284 have not been normalized; this option controls that warning.
3285
3286 There are four levels of warning that GCC supports.  The default is
3287 @option{-Wnormalized=nfc}, which warns about any identifier which is
3288 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
3289 recommended form for most uses.
3290
3291 Unfortunately, there are some characters which ISO C and ISO C++ allow
3292 in identifiers that when turned into NFC aren't allowable as
3293 identifiers.  That is, there's no way to use these symbols in portable
3294 ISO C or C++ and have all your identifiers in NFC.
3295 @option{-Wnormalized=id} suppresses the warning for these characters.
3296 It is hoped that future versions of the standards involved will correct
3297 this, which is why this option is not the default.
3298
3299 You can switch the warning off for all characters by writing
3300 @option{-Wnormalized=none}.  You would only want to do this if you
3301 were using some other normalization scheme (like ``D''), because
3302 otherwise you can easily create bugs that are literally impossible to see.
3303
3304 Some characters in ISO 10646 have distinct meanings but look identical
3305 in some fonts or display methodologies, especially once formatting has
3306 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
3307 LETTER N'', will display just like a regular @code{n} which has been
3308 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
3309 normalization scheme to convert all these into a standard form as
3310 well, and GCC will warn if your code is not in NFKC if you use
3311 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
3312 about every identifier that contains the letter O because it might be
3313 confused with the digit 0, and so is not the default, but may be
3314 useful as a local coding convention if the programming environment is
3315 unable to be fixed to display these characters distinctly.
3316
3317 @item -Wno-deprecated-declarations
3318 @opindex Wno-deprecated-declarations
3319 Do not warn about uses of functions (@pxref{Function Attributes}),
3320 variables (@pxref{Variable Attributes}), and types (@pxref{Type
3321 Attributes}) marked as deprecated by using the @code{deprecated}
3322 attribute.
3323
3324 @item -Wno-overflow
3325 @opindex Wno-overflow
3326 Do not warn about compile-time overflow in constant expressions.
3327
3328 @item -Woverride-init
3329 @opindex Woverride-init
3330 @opindex W
3331 @opindex Wextra
3332 Warn if an initialized field without side effects is overridden when
3333 using designated initializers (@pxref{Designated Inits, , Designated
3334 Initializers}).
3335
3336 This warning is included in @option{-Wextra}.  To get other
3337 @option{-Wextra} warnings without this one, use @samp{-Wextra
3338 -Wno-override-init}.
3339
3340 @item -Wpacked
3341 @opindex Wpacked
3342 Warn if a structure is given the packed attribute, but the packed
3343 attribute has no effect on the layout or size of the structure.
3344 Such structures may be mis-aligned for little benefit.  For
3345 instance, in this code, the variable @code{f.x} in @code{struct bar}
3346 will be misaligned even though @code{struct bar} does not itself
3347 have the packed attribute:
3348
3349 @smallexample
3350 @group
3351 struct foo @{
3352   int x;
3353   char a, b, c, d;
3354 @} __attribute__((packed));
3355 struct bar @{
3356   char z;
3357   struct foo f;
3358 @};
3359 @end group
3360 @end smallexample
3361
3362 @item -Wpadded
3363 @opindex Wpadded
3364 Warn if padding is included in a structure, either to align an element
3365 of the structure or to align the whole structure.  Sometimes when this
3366 happens it is possible to rearrange the fields of the structure to
3367 reduce the padding and so make the structure smaller.
3368
3369 @item -Wredundant-decls
3370 @opindex Wredundant-decls
3371 Warn if anything is declared more than once in the same scope, even in
3372 cases where multiple declaration is valid and changes nothing.
3373
3374 @item -Wnested-externs @r{(C only)}
3375 @opindex Wnested-externs
3376 Warn if an @code{extern} declaration is encountered within a function.
3377
3378 @item -Wunreachable-code
3379 @opindex Wunreachable-code
3380 Warn if the compiler detects that code will never be executed.
3381
3382 This option is intended to warn when the compiler detects that at
3383 least a whole line of source code will never be executed, because
3384 some condition is never satisfied or because it is after a
3385 procedure that never returns.
3386
3387 It is possible for this option to produce a warning even though there
3388 are circumstances under which part of the affected line can be executed,
3389 so care should be taken when removing apparently-unreachable code.
3390
3391 For instance, when a function is inlined, a warning may mean that the
3392 line is unreachable in only one inlined copy of the function.
3393
3394 This option is not made part of @option{-Wall} because in a debugging
3395 version of a program there is often substantial code which checks
3396 correct functioning of the program and is, hopefully, unreachable
3397 because the program does work.  Another common use of unreachable
3398 code is to provide behavior which is selectable at compile-time.
3399
3400 @item -Winline
3401 @opindex Winline
3402 Warn if a function can not be inlined and it was declared as inline.
3403 Even with this option, the compiler will not warn about failures to
3404 inline functions declared in system headers.
3405
3406 The compiler uses a variety of heuristics to determine whether or not
3407 to inline a function.  For example, the compiler takes into account
3408 the size of the function being inlined and the amount of inlining
3409 that has already been done in the current function.  Therefore,
3410 seemingly insignificant changes in the source program can cause the
3411 warnings produced by @option{-Winline} to appear or disappear.
3412
3413 @item -Wno-invalid-offsetof @r{(C++ only)}
3414 @opindex Wno-invalid-offsetof
3415 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
3416 type.  According to the 1998 ISO C++ standard, applying @samp{offsetof}
3417 to a non-POD type is undefined.  In existing C++ implementations,
3418 however, @samp{offsetof} typically gives meaningful results even when
3419 applied to certain kinds of non-POD types. (Such as a simple
3420 @samp{struct} that fails to be a POD type only by virtue of having a
3421 constructor.)  This flag is for users who are aware that they are
3422 writing nonportable code and who have deliberately chosen to ignore the
3423 warning about it.
3424
3425 The restrictions on @samp{offsetof} may be relaxed in a future version
3426 of the C++ standard.
3427
3428 @item -Wno-int-to-pointer-cast @r{(C only)}
3429 @opindex Wno-int-to-pointer-cast
3430 Suppress warnings from casts to pointer type of an integer of a
3431 different size.
3432
3433 @item -Wno-pointer-to-int-cast @r{(C only)}
3434 @opindex Wno-pointer-to-int-cast
3435 Suppress warnings from casts from a pointer to an integer type of a
3436 different size.
3437
3438 @item -Winvalid-pch
3439 @opindex Winvalid-pch
3440 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
3441 the search path but can't be used.
3442
3443 @item -Wlong-long
3444 @opindex Wlong-long
3445 @opindex Wno-long-long
3446 Warn if @samp{long long} type is used.  This is default.  To inhibit
3447 the warning messages, use @option{-Wno-long-long}.  Flags
3448 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
3449 only when @option{-pedantic} flag is used.
3450
3451 @item -Wvariadic-macros
3452 @opindex Wvariadic-macros
3453 @opindex Wno-variadic-macros
3454 Warn if variadic macros are used in pedantic ISO C90 mode, or the GNU
3455 alternate syntax when in pedantic ISO C99 mode.  This is default.
3456 To inhibit the warning messages, use @option{-Wno-variadic-macros}.
3457
3458 @item -Wvolatile-register-var
3459 @opindex Wvolatile-register-var
3460 @opindex Wno-volatile-register-var
3461 Warn if a register variable is declared volatile.  The volatile
3462 modifier does not inhibit all optimizations that may eliminate reads
3463 and/or writes to register variables.
3464
3465 @item -Wdisabled-optimization
3466 @opindex Wdisabled-optimization
3467 Warn if a requested optimization pass is disabled.  This warning does
3468 not generally indicate that there is anything wrong with your code; it
3469 merely indicates that GCC's optimizers were unable to handle the code
3470 effectively.  Often, the problem is that your code is too big or too
3471 complex; GCC will refuse to optimize programs when the optimization
3472 itself is likely to take inordinate amounts of time.
3473
3474 @item -Wpointer-sign
3475 @opindex Wpointer-sign
3476 @opindex Wno-pointer-sign
3477 Warn for pointer argument passing or assignment with different signedness.
3478 This option is only supported for C and Objective-C@.  It is implied by
3479 @option{-Wall} and by @option{-pedantic}, which can be disabled with
3480 @option{-Wno-pointer-sign}.
3481
3482 @item -Werror
3483 @opindex Werror
3484 Make all warnings into errors.
3485
3486 @item -Werror=
3487 @opindex Werror=
3488 Make the specified warning into an errors.  The specifier for a
3489 warning is appended, for example @option{-Werror=switch} turns the
3490 warnings controlled by @option{-Wswitch} into errors.  This switch
3491 takes a negative form, to be used to negate @option{-Werror} for
3492 specific warnings, for example @option{-Wno-error=switch} makes
3493 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
3494 is in effect.  You can use the @option{-fdiagnostics-show-option}
3495 option to have each controllable warning amended with the option which
3496 controls it, to determine what to use with this option.
3497
3498 Note that specifying @option{-Werror=}@var{foo} automatically implies
3499 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
3500 imply anything.
3501
3502 @item -Wstack-protector
3503 @opindex Wstack-protector
3504 This option is only active when @option{-fstack-protector} is active.  It
3505 warns about functions that will not be protected against stack smashing.
3506
3507 @item -Wstring-literal-comparison
3508 @opindex Wstring-literal-comparison
3509 Warn about suspicious comparisons to string literal constants.  In C,
3510 direct comparisons against the memory address of a string literal, such
3511 as @code{if (x == "abc")}, typically indicate a programmer error, and
3512 even when intentional, result in unspecified behavior and are not portable.
3513 Usually these warnings alert that the programmer intended to use
3514 @code{strcmp}.  This warning is enabled by @option{-Wall}.
3515
3516 @item -Woverlength-strings
3517 @opindex Woverlength-strings
3518 Warn about string constants which are longer than the ``minimum
3519 maximum'' length specified in the C standard.  Modern compilers
3520 generally allow string constants which are much longer than the
3521 standard's minimum limit, but very portable programs should avoid
3522 using longer strings.
3523
3524 The limit applies @emph{after} string constant concatenation, and does
3525 not count the trailing NUL@.  In C89, the limit was 509 characters; in
3526 C99, it was raised to 4095.  C++98 does not specify a normative
3527 minimum maximum, so we do not diagnose overlength strings in C++@.
3528
3529 This option is implied by @option{-pedantic}, and can be disabled with
3530 @option{-Wno-overlength-strings}.
3531 @end table
3532
3533 @node Debugging Options
3534 @section Options for Debugging Your Program or GCC
3535 @cindex options, debugging
3536 @cindex debugging information options
3537
3538 GCC has various special options that are used for debugging
3539 either your program or GCC:
3540
3541 @table @gcctabopt
3542 @item -g
3543 @opindex g
3544 Produce debugging information in the operating system's native format
3545 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
3546 information.
3547
3548 On most systems that use stabs format, @option{-g} enables use of extra
3549 debugging information that only GDB can use; this extra information
3550 makes debugging work better in GDB but will probably make other debuggers
3551 crash or
3552 refuse to read the program.  If you want to control for certain whether
3553 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
3554 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
3555
3556 GCC allows you to use @option{-g} with
3557 @option{-O}.  The shortcuts taken by optimized code may occasionally
3558 produce surprising results: some variables you declared may not exist
3559 at all; flow of control may briefly move where you did not expect it;
3560 some statements may not be executed because they compute constant
3561 results or their values were already at hand; some statements may
3562 execute in different places because they were moved out of loops.
3563
3564 Nevertheless it proves possible to debug optimized output.  This makes
3565 it reasonable to use the optimizer for programs that might have bugs.
3566
3567 The following options are useful when GCC is generated with the
3568 capability for more than one debugging format.
3569
3570 @item -ggdb
3571 @opindex ggdb
3572 Produce debugging information for use by GDB@.  This means to use the
3573 most expressive format available (DWARF 2, stabs, or the native format
3574 if neither of those are supported), including GDB extensions if at all
3575 possible.
3576
3577 @item -gstabs
3578 @opindex gstabs
3579 Produce debugging information in stabs format (if that is supported),
3580 without GDB extensions.  This is the format used by DBX on most BSD
3581 systems.  On MIPS, Alpha and System V Release 4 systems this option
3582 produces stabs debugging output which is not understood by DBX or SDB@.
3583 On System V Release 4 systems this option requires the GNU assembler.
3584
3585 @item -feliminate-unused-debug-symbols
3586 @opindex feliminate-unused-debug-symbols
3587 Produce debugging information in stabs format (if that is supported),
3588 for only symbols that are actually used.
3589
3590 @item -femit-class-debug-always
3591 Instead of emitting debugging information for a C++ class in only one
3592 object file, emit it in all object files using the class.  This option
3593 should be used only with debuggers that are unable to handle the way GCC
3594 normally emits debugging information for classes because using this
3595 option will increase the size of debugging information by as much as a
3596 factor of two.
3597
3598 @item -gstabs+
3599 @opindex gstabs+
3600 Produce debugging information in stabs format (if that is supported),
3601 using GNU extensions understood only by the GNU debugger (GDB)@.  The
3602 use of these extensions is likely to make other debuggers crash or
3603 refuse to read the program.
3604
3605 @item -gcoff
3606 @opindex gcoff
3607 Produce debugging information in COFF format (if that is supported).
3608 This is the format used by SDB on most System V systems prior to
3609 System V Release 4.
3610
3611 @item -gxcoff
3612 @opindex gxcoff
3613 Produce debugging information in XCOFF format (if that is supported).
3614 This is the format used by the DBX debugger on IBM RS/6000 systems.
3615
3616 @item -gxcoff+
3617 @opindex gxcoff+
3618 Produce debugging information in XCOFF format (if that is supported),
3619 using GNU extensions understood only by the GNU debugger (GDB)@.  The
3620 use of these extensions is likely to make other debuggers crash or
3621 refuse to read the program, and may cause assemblers other than the GNU
3622 assembler (GAS) to fail with an error.
3623
3624 @item -gdwarf-2
3625 @opindex gdwarf-2
3626 Produce debugging information in DWARF version 2 format (if that is
3627 supported).  This is the format used by DBX on IRIX 6.  With this
3628 option, GCC uses features of DWARF version 3 when they are useful;
3629 version 3 is upward compatible with version 2, but may still cause
3630 problems for older debuggers.
3631
3632 @item -gvms
3633 @opindex gvms
3634 Produce debugging information in VMS debug format (if that is
3635 supported).  This is the format used by DEBUG on VMS systems.
3636
3637 @item -g@var{level}
3638 @itemx -ggdb@var{level}
3639 @itemx -gstabs@var{level}
3640 @itemx -gcoff@var{level}
3641 @itemx -gxcoff@var{level}
3642 @itemx -gvms@var{level}
3643 Request debugging information and also use @var{level} to specify how
3644 much information.  The default level is 2.
3645
3646 Level 1 produces minimal information, enough for making backtraces in
3647 parts of the program that you don't plan to debug.  This includes
3648 descriptions of functions and external variables, but no information
3649 about local variables and no line numbers.
3650
3651 Level 3 includes extra information, such as all the macro definitions
3652 present in the program.  Some debuggers support macro expansion when
3653 you use @option{-g3}.
3654
3655 @option{-gdwarf-2} does not accept a concatenated debug level, because
3656 GCC used to support an option @option{-gdwarf} that meant to generate
3657 debug information in version 1 of the DWARF format (which is very
3658 different from version 2), and it would have been too confusing.  That
3659 debug format is long obsolete, but the option cannot be changed now.
3660 Instead use an additional @option{-g@var{level}} option to change the
3661 debug level for DWARF2.
3662
3663 @item -feliminate-dwarf2-dups
3664 @opindex feliminate-dwarf2-dups
3665 Compress DWARF2 debugging information by eliminating duplicated
3666 information about each symbol.  This option only makes sense when
3667 generating DWARF2 debugging information with @option{-gdwarf-2}.
3668
3669 @cindex @command{prof}
3670 @item -p
3671 @opindex p
3672 Generate extra code to write profile information suitable for the
3673 analysis program @command{prof}.  You must use this option when compiling
3674 the source files you want data about, and you must also use it when
3675 linking.
3676
3677 @cindex @command{gprof}
3678 @item -pg
3679 @opindex pg
3680 Generate extra code to write profile information suitable for the
3681 analysis program @command{gprof}.  You must use this option when compiling
3682 the source files you want data about, and you must also use it when
3683 linking.
3684
3685 @item -Q
3686 @opindex Q
3687 Makes the compiler print out each function name as it is compiled, and
3688 print some statistics about each pass when it finishes.
3689
3690 @item -ftime-report
3691 @opindex ftime-report
3692 Makes the compiler print some statistics about the time consumed by each
3693 pass when it finishes.
3694
3695 @item -fmem-report
3696 @opindex fmem-report
3697 Makes the compiler print some statistics about permanent memory
3698 allocation when it finishes.
3699
3700 @item -fprofile-arcs
3701 @opindex fprofile-arcs
3702 Add code so that program flow @dfn{arcs} are instrumented.  During
3703 execution the program records how many times each branch and call is
3704 executed and how many times it is taken or returns.  When the compiled
3705 program exits it saves this data to a file called
3706 @file{@var{auxname}.gcda} for each source file.  The data may be used for
3707 profile-directed optimizations (@option{-fbranch-probabilities}), or for
3708 test coverage analysis (@option{-ftest-coverage}).  Each object file's
3709 @var{auxname} is generated from the name of the output file, if
3710 explicitly specified and it is not the final executable, otherwise it is
3711 the basename of the source file.  In both cases any suffix is removed
3712 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
3713 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
3714 @xref{Cross-profiling}.
3715
3716 @cindex @command{gcov}
3717 @item --coverage
3718 @opindex coverage
3719
3720 This option is used to compile and link code instrumented for coverage
3721 analysis.  The option is a synonym for @option{-fprofile-arcs}
3722 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
3723 linking).  See the documentation for those options for more details.
3724
3725 @itemize
3726
3727 @item
3728 Compile the source files with @option{-fprofile-arcs} plus optimization
3729 and code generation options.  For test coverage analysis, use the
3730 additional @option{-ftest-coverage} option.  You do not need to profile
3731 every source file in a program.
3732
3733 @item
3734 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
3735 (the latter implies the former).
3736
3737 @item
3738 Run the program on a representative workload to generate the arc profile
3739 information.  This may be repeated any number of times.  You can run
3740 concurrent instances of your program, and provided that the file system
3741 supports locking, the data files will be correctly updated.  Also
3742 @code{fork} calls are detected and correctly handled (double counting
3743 will not happen).
3744
3745 @item
3746 For profile-directed optimizations, compile the source files again with
3747 the same optimization and code generation options plus
3748 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
3749 Control Optimization}).
3750
3751 @item
3752 For test coverage analysis, use @command{gcov} to produce human readable
3753 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
3754 @command{gcov} documentation for further information.
3755
3756 @end itemize
3757
3758 With @option{-fprofile-arcs}, for each function of your program GCC
3759 creates a program flow graph, then finds a spanning tree for the graph.
3760 Only arcs that are not on the spanning tree have to be instrumented: the
3761 compiler adds code to count the number of times that these arcs are
3762 executed.  When an arc is the only exit or only entrance to a block, the
3763 instrumentation code can be added to the block; otherwise, a new basic
3764 block must be created to hold the instrumentation code.
3765
3766 @need 2000
3767 @item -ftest-coverage
3768 @opindex ftest-coverage
3769 Produce a notes file that the @command{gcov} code-coverage utility
3770 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
3771 show program coverage.  Each source file's note file is called
3772 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
3773 above for a description of @var{auxname} and instructions on how to
3774 generate test coverage data.  Coverage data will match the source files
3775 more closely, if you do not optimize.
3776
3777 @item -d@var{letters}
3778 @item -fdump-rtl-@var{pass}
3779 @opindex d
3780 Says to make debugging dumps during compilation at times specified by
3781 @var{letters}.    This is used for debugging the RTL-based passes of the
3782 compiler.  The file names for most of the dumps are made by appending a
3783 pass number and a word to the @var{dumpname}.  @var{dumpname} is generated
3784 from the name of the output file, if explicitly specified and it is not
3785 an executable, otherwise it is the basename of the source file.
3786
3787 Most debug dumps can be enabled either passing a letter to the @option{-d}
3788 option, or with a long @option{-fdump-rtl} switch; here are the possible
3789 letters for use in @var{letters} and @var{pass}, and their meanings:
3790
3791 @table @gcctabopt
3792 @item -dA
3793 @opindex dA
3794 Annotate the assembler output with miscellaneous debugging information.
3795
3796 @item -dB
3797 @itemx -fdump-rtl-bbro
3798 @opindex dB
3799 @opindex fdump-rtl-bbro
3800 Dump after block reordering, to @file{@var{file}.148r.bbro}.
3801
3802 @item -dc
3803 @itemx -fdump-rtl-combine
3804 @opindex dc
3805 @opindex fdump-rtl-combine
3806 Dump after instruction combination, to the file @file{@var{file}.129r.combine}.
3807
3808 @item -dC
3809 @itemx -fdump-rtl-ce1
3810 @itemx -fdump-rtl-ce2
3811 @opindex dC
3812 @opindex fdump-rtl-ce1
3813 @opindex fdump-rtl-ce2
3814 @option{-dC} and @option{-fdump-rtl-ce1} enable dumping after the
3815 first if conversion, to the file @file{@var{file}.117r.ce1}.  @option{-dC}
3816 and @option{-fdump-rtl-ce2} enable dumping after the second if
3817 conversion, to the file @file{@var{file}.130r.ce2}.
3818
3819 @item -dd
3820 @itemx -fdump-rtl-btl
3821 @itemx -fdump-rtl-dbr
3822 @opindex dd
3823 @opindex fdump-rtl-btl
3824 @opindex fdump-rtl-dbr
3825 @option{-dd} and @option{-fdump-rtl-btl} enable dumping after branch
3826 target load optimization, to @file{@var{file}.31.btl}.  @option{-dd}
3827 and @option{-fdump-rtl-dbr} enable dumping after delayed branch
3828 scheduling, to @file{@var{file}.36.dbr}.
3829
3830 @item -dD
3831 @opindex dD
3832 Dump all macro definitions, at the end of preprocessing, in addition to
3833 normal output.
3834
3835 @item -dE
3836 @itemx -fdump-rtl-ce3
3837 @opindex dE
3838 @opindex fdump-rtl-ce3
3839 Dump after the third if conversion, to @file{@var{file}.146r.ce3}.
3840
3841 @item -df
3842 @itemx -fdump-rtl-cfg
3843 @itemx -fdump-rtl-life
3844 @opindex df
3845 @opindex fdump-rtl-cfg
3846 @opindex fdump-rtl-life
3847 @option{-df} and @option{-fdump-rtl-cfg} enable dumping after control
3848 and data flow analysis, to @file{@var{file}.116r.cfg}.  @option{-df}
3849 and @option{-fdump-rtl-cfg} enable dumping dump after life analysis,
3850 to @file{@var{file}.128r.life1} and @file{@var{file}.135r.life2}.
3851
3852 @item -dg
3853 @itemx -fdump-rtl-greg
3854 @opindex dg
3855 @opindex fdump-rtl-greg
3856 Dump after global register allocation, to @file{@var{file}.139r.greg}.
3857
3858 @item -dG
3859 @itemx -fdump-rtl-gcse
3860 @itemx -fdump-rtl-bypass
3861 @opindex dG
3862 @opindex fdump-rtl-gcse
3863 @opindex fdump-rtl-bypass
3864 @option{-dG} and @option{-fdump-rtl-gcse} enable dumping after GCSE, to
3865 @file{@var{file}.114r.gcse}.  @option{-dG} and @option{-fdump-rtl-bypass}
3866 enable dumping after jump bypassing and control flow optimizations, to
3867 @file{@var{file}.115r.bypass}.
3868
3869 @item -dh
3870 @itemx -fdump-rtl-eh
3871 @opindex dh
3872 @opindex fdump-rtl-eh
3873 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
3874
3875 @item -di
3876 @itemx -fdump-rtl-sibling
3877 @opindex di
3878 @opindex fdump-rtl-sibling
3879 Dump after sibling call optimizations, to @file{@var{file}.106r.sibling}.
3880
3881 @item -dj
3882 @itemx -fdump-rtl-jump
3883 @opindex dj
3884 @opindex fdump-rtl-jump
3885 Dump after the first jump optimization, to @file{@var{file}.112r.jump}.
3886
3887 @item -dk
3888 @itemx -fdump-rtl-stack
3889 @opindex dk
3890 @opindex fdump-rtl-stack
3891 Dump after conversion from registers to stack, to @file{@var{file}.152r.stack}.
3892
3893 @item -dl
3894 @itemx -fdump-rtl-lreg
3895 @opindex dl
3896 @opindex fdump-rtl-lreg
3897 Dump after local register allocation, to @file{@var{file}.138r.lreg}.
3898
3899 @item -dL
3900 @itemx -fdump-rtl-loop2
3901 @opindex dL
3902 @opindex fdump-rtl-loop2
3903 @option{-dL} and @option{-fdump-rtl-loop2} enable dumping after the
3904 loop optimization pass, to @file{@var{file}.119r.loop2},
3905 @file{@var{file}.120r.loop2_init},
3906 @file{@var{file}.121r.loop2_invariant}, and
3907 @file{@var{file}.125r.loop2_done}.
3908
3909 @item -dm
3910 @itemx -fdump-rtl-sms
3911 @opindex dm
3912 @opindex fdump-rtl-sms
3913 Dump after modulo scheduling, to @file{@var{file}.136r.sms}.
3914
3915 @item -dM
3916 @itemx -fdump-rtl-mach
3917 @opindex dM
3918 @opindex fdump-rtl-mach
3919 Dump after performing the machine dependent reorganization pass, to
3920 @file{@var{file}.155r.mach}.
3921
3922 @item -dn
3923 @itemx -fdump-rtl-rnreg
3924 @opindex dn
3925 @opindex fdump-rtl-rnreg
3926 Dump after register renumbering, to @file{@var{file}.147r.rnreg}.
3927
3928 @item -dN
3929 @itemx -fdump-rtl-regmove
3930 @opindex dN
3931 @opindex fdump-rtl-regmove
3932 Dump after the register move pass, to @file{@var{file}.132r.regmove}.
3933
3934 @item -do
3935 @itemx -fdump-rtl-postreload
3936 @opindex do
3937 @opindex fdump-rtl-postreload
3938 Dump after post-reload optimizations, to @file{@var{file}.24.postreload}.
3939
3940 @item -dr
3941 @itemx -fdump-rtl-expand
3942 @opindex dr
3943 @opindex fdump-rtl-expand
3944 Dump after RTL generation, to @file{@var{file}.104r.expand}.
3945
3946 @item -dR
3947 @itemx -fdump-rtl-sched2
3948 @opindex dR
3949 @opindex fdump-rtl-sched2
3950 Dump after the second scheduling pass, to @file{@var{file}.149r.sched2}.
3951
3952 @item -ds
3953 @itemx -fdump-rtl-cse
3954 @opindex ds
3955 @opindex fdump-rtl-cse
3956 Dump after CSE (including the jump optimization that sometimes follows
3957 CSE), to @file{@var{file}.113r.cse}.
3958
3959 @item -dS
3960 @itemx -fdump-rtl-sched1
3961 @opindex dS
3962 @opindex fdump-rtl-sched1
3963 Dump after the first scheduling pass, to @file{@var{file}.136r.sched1}.
3964
3965 @item -dt
3966 @itemx -fdump-rtl-cse2
3967 @opindex dt
3968 @opindex fdump-rtl-cse2
3969 Dump after the second CSE pass (including the jump optimization that
3970 sometimes follows CSE), to @file{@var{file}.127r.cse2}.
3971
3972 @item -dT
3973 @itemx -fdump-rtl-tracer
3974 @opindex dT
3975 @opindex fdump-rtl-tracer
3976 Dump after running tracer, to @file{@var{file}.118r.tracer}.
3977
3978 @item -dV
3979 @itemx -fdump-rtl-vpt
3980 @itemx -fdump-rtl-vartrack
3981 @opindex dV
3982 @opindex fdump-rtl-vpt
3983 @opindex fdump-rtl-vartrack
3984 @option{-dV} and @option{-fdump-rtl-vpt} enable dumping after the value
3985 profile transformations, to @file{@var{file}.10.vpt}.  @option{-dV}
3986 and @option{-fdump-rtl-vartrack} enable dumping after variable tracking,
3987 to @file{@var{file}.154r.vartrack}.
3988
3989 @item -dw
3990 @itemx -fdump-rtl-flow2
3991 @opindex dw
3992 @opindex fdump-rtl-flow2
3993 Dump after the second flow pass, to @file{@var{file}.142r.flow2}.
3994
3995 @item -dz
3996 @itemx -fdump-rtl-peephole2
3997 @opindex dz
3998 @opindex fdump-rtl-peephole2
3999 Dump after the peephole pass, to @file{@var{file}.145r.peephole2}.
4000
4001 @item -dZ
4002 @itemx -fdump-rtl-web
4003 @opindex dZ
4004 @opindex fdump-rtl-web
4005 Dump after live range splitting, to @file{@var{file}.126r.web}.
4006
4007 @item -da
4008 @itemx -fdump-rtl-all
4009 @opindex da
4010 @opindex fdump-rtl-all
4011 Produce all the dumps listed above.
4012
4013 @item -dH
4014 @opindex dH
4015 Produce a core dump whenever an error occurs.
4016
4017 @item -dm
4018 @opindex dm
4019 Print statistics on memory usage, at the end of the run, to
4020 standard error.
4021
4022 @item -dp
4023 @opindex dp
4024 Annotate the assembler output with a comment indicating which
4025 pattern and alternative was used.  The length of each instruction is
4026 also printed.
4027
4028 @item -dP
4029 @opindex dP
4030 Dump the RTL in the assembler output as a comment before each instruction.
4031 Also turns on @option{-dp} annotation.
4032
4033 @item -dv
4034 @opindex dv
4035 For each of the other indicated dump files (either with @option{-d} or
4036 @option{-fdump-rtl-@var{pass}}), dump a representation of the control flow
4037 graph suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
4038
4039 @item -dx
4040 @opindex dx
4041 Just generate RTL for a function instead of compiling it.  Usually used
4042 with @samp{r} (@option{-fdump-rtl-expand}).
4043
4044 @item -dy
4045 @opindex dy
4046 Dump debugging information during parsing, to standard error.
4047 @end table
4048
4049 @item -fdump-noaddr
4050 @opindex fdump-noaddr
4051 When doing debugging dumps (see @option{-d} option above), suppress
4052 address output.  This makes it more feasible to use diff on debugging
4053 dumps for compiler invocations with different compiler binaries and/or
4054 different text / bss / data / heap / stack / dso start locations.
4055
4056 @item -fdump-unnumbered
4057 @opindex fdump-unnumbered
4058 When doing debugging dumps (see @option{-d} option above), suppress instruction
4059 numbers, line number note and address output.  This makes it more feasible to
4060 use diff on debugging dumps for compiler invocations with different
4061 options, in particular with and without @option{-g}.
4062
4063 @item -fdump-translation-unit @r{(C++ only)}
4064 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
4065 @opindex fdump-translation-unit
4066 Dump a representation of the tree structure for the entire translation
4067 unit to a file.  The file name is made by appending @file{.tu} to the
4068 source file name.  If the @samp{-@var{options}} form is used, @var{options}
4069 controls the details of the dump as described for the
4070 @option{-fdump-tree} options.
4071
4072 @item -fdump-class-hierarchy @r{(C++ only)}
4073 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
4074 @opindex fdump-class-hierarchy
4075 Dump a representation of each class's hierarchy and virtual function
4076 table layout to a file.  The file name is made by appending @file{.class}
4077 to the source file name.  If the @samp{-@var{options}} form is used,
4078 @var{options} controls the details of the dump as described for the
4079 @option{-fdump-tree} options.
4080
4081 @item -fdump-ipa-@var{switch}
4082 @opindex fdump-ipa
4083 Control the dumping at various stages of inter-procedural analysis
4084 language tree to a file.  The file name is generated by appending a switch
4085 specific suffix to the source file name.  The following dumps are possible:
4086
4087 @table @samp
4088 @item all
4089 Enables all inter-procedural analysis dumps; currently the only produced
4090 dump is the @samp{cgraph} dump.
4091
4092 @item cgraph
4093 Dumps information about call-graph optimization, unused function removal,
4094 and inlining decisions.
4095 @end table
4096
4097 @item -fdump-tree-@var{switch}
4098 @itemx -fdump-tree-@var{switch}-@var{options}
4099 @opindex fdump-tree
4100 Control the dumping at various stages of processing the intermediate
4101 language tree to a file.  The file name is generated by appending a switch
4102 specific suffix to the source file name.  If the @samp{-@var{options}}
4103 form is used, @var{options} is a list of @samp{-} separated options that
4104 control the details of the dump.  Not all options are applicable to all
4105 dumps, those which are not meaningful will be ignored.  The following
4106 options are available
4107
4108 @table @samp
4109 @item address
4110 Print the address of each node.  Usually this is not meaningful as it
4111 changes according to the environment and source file.  Its primary use
4112 is for tying up a dump file with a debug environment.
4113 @item slim
4114 Inhibit dumping of members of a scope or body of a function merely
4115 because that scope has been reached.  Only dump such items when they
4116 are directly reachable by some other path.  When dumping pretty-printed
4117 trees, this option inhibits dumping the bodies of control structures.
4118 @item raw
4119 Print a raw representation of the tree.  By default, trees are
4120 pretty-printed into a C-like representation.
4121 @item details
4122 Enable more detailed dumps (not honored by every dump option).
4123 @item stats
4124 Enable dumping various statistics about the pass (not honored by every dump
4125 option).
4126 @item blocks
4127 Enable showing basic block boundaries (disabled in raw dumps).
4128 @item vops
4129 Enable showing virtual operands for every statement.
4130 @item lineno
4131 Enable showing line numbers for statements.
4132 @item uid
4133 Enable showing the unique ID (@code{DECL_UID}) for each variable.
4134 @item all
4135 Turn on all options, except @option{raw}, @option{slim} and @option{lineno}.
4136 @end table
4137
4138 The following tree dumps are possible:
4139 @table @samp
4140
4141 @item original
4142 Dump before any tree based optimization, to @file{@var{file}.original}.
4143
4144 @item optimized
4145 Dump after all tree based optimization, to @file{@var{file}.optimized}.
4146
4147 @item inlined
4148 Dump after function inlining, to @file{@var{file}.inlined}.
4149
4150 @item gimple
4151 @opindex fdump-tree-gimple
4152 Dump each function before and after the gimplification pass to a file.  The
4153 file name is made by appending @file{.gimple} to the source file name.
4154
4155 @item cfg
4156 @opindex fdump-tree-cfg
4157 Dump the control flow graph of each function to a file.  The file name is
4158 made by appending @file{.cfg} to the source file name.
4159
4160 @item vcg
4161 @opindex fdump-tree-vcg
4162 Dump the control flow graph of each function to a file in VCG format.  The
4163 file name is made by appending @file{.vcg} to the source file name.  Note
4164 that if the file contains more than one function, the generated file cannot
4165 be used directly by VCG@.  You will need to cut and paste each function's
4166 graph into its own separate file first.
4167
4168 @item ch
4169 @opindex fdump-tree-ch
4170 Dump each function after copying loop headers.  The file name is made by
4171 appending @file{.ch} to the source file name.
4172
4173 @item ssa
4174 @opindex fdump-tree-ssa
4175 Dump SSA related information to a file.  The file name is made by appending
4176 @file{.ssa} to the source file name.
4177
4178 @item salias
4179 @opindex fdump-tree-salias
4180 Dump structure aliasing variable information to a file.  This file name
4181 is made by appending @file{.salias} to the source file name.
4182
4183 @item alias
4184 @opindex fdump-tree-alias
4185 Dump aliasing information for each function.  The file name is made by
4186 appending @file{.alias} to the source file name.
4187
4188 @item ccp
4189 @opindex fdump-tree-ccp
4190 Dump each function after CCP@.  The file name is made by appending
4191 @file{.ccp} to the source file name.
4192
4193 @item storeccp
4194 @opindex fdump-tree-storeccp
4195 Dump each function after STORE-CCP.  The file name is made by appending
4196 @file{.storeccp} to the source file name.
4197
4198 @item pre
4199 @opindex fdump-tree-pre
4200 Dump trees after partial redundancy elimination.  The file name is made
4201 by appending @file{.pre} to the source file name.
4202
4203 @item fre
4204 @opindex fdump-tree-fre
4205 Dump trees after full redundancy elimination.  The file name is made
4206 by appending @file{.fre} to the source file name.
4207
4208 @item copyprop
4209 @opindex fdump-tree-copyprop
4210 Dump trees after copy propagation.  The file name is made
4211 by appending @file{.copyprop} to the source file name.
4212
4213 @item store_copyprop
4214 @opindex fdump-tree-store_copyprop
4215 Dump trees after store copy-propagation.  The file name is made
4216 by appending @file{.store_copyprop} to the source file name.
4217
4218 @item dce
4219 @opindex fdump-tree-dce
4220 Dump each function after dead code elimination.  The file name is made by
4221 appending @file{.dce} to the source file name.
4222
4223 @item mudflap
4224 @opindex fdump-tree-mudflap
4225 Dump each function after adding mudflap instrumentation.  The file name is
4226 made by appending @file{.mudflap} to the source file name.
4227
4228 @item sra
4229 @opindex fdump-tree-sra
4230 Dump each function after performing scalar replacement of aggregates.  The
4231 file name is made by appending @file{.sra} to the source file name.
4232
4233 @item sink
4234 @opindex fdump-tree-sink
4235 Dump each function after performing code sinking.  The file name is made
4236 by appending @file{.sink} to the source file name. 
4237
4238 @item dom
4239 @opindex fdump-tree-dom
4240 Dump each function after applying dominator tree optimizations.  The file
4241 name is made by appending @file{.dom} to the source file name.
4242
4243 @item dse
4244 @opindex fdump-tree-dse
4245 Dump each function after applying dead store elimination.  The file
4246 name is made by appending @file{.dse} to the source file name.
4247
4248 @item phiopt
4249 @opindex fdump-tree-phiopt
4250 Dump each function after optimizing PHI nodes into straightline code.  The file
4251 name is made by appending @file{.phiopt} to the source file name.
4252
4253 @item forwprop
4254 @opindex fdump-tree-forwprop
4255 Dump each function after forward propagating single use variables.  The file
4256 name is made by appending @file{.forwprop} to the source file name.
4257
4258 @item copyrename
4259 @opindex fdump-tree-copyrename
4260 Dump each function after applying the copy rename optimization.  The file
4261 name is made by appending @file{.copyrename} to the source file name.
4262
4263 @item nrv
4264 @opindex fdump-tree-nrv
4265 Dump each function after applying the named return value optimization on
4266 generic trees.  The file name is made by appending @file{.nrv} to the source
4267 file name.
4268
4269 @item vect
4270 @opindex fdump-tree-vect
4271 Dump each function after applying vectorization of loops.  The file name is
4272 made by appending @file{.vect} to the source file name.
4273
4274 @item vrp
4275 @opindex fdump-tree-vrp
4276 Dump each function after Value Range Propagation (VRP).  The file name
4277 is made by appending @file{.vrp} to the source file name.
4278
4279 @item all
4280 @opindex fdump-tree-all
4281 Enable all the available tree dumps with the flags provided in this option.
4282 @end table
4283
4284 @item -ftree-vectorizer-verbose=@var{n}
4285 @opindex ftree-vectorizer-verbose
4286 This option controls the amount of debugging output the vectorizer prints.
4287 This information is written to standard error, unless 
4288 @option{-fdump-tree-all} or @option{-fdump-tree-vect} is specified, 
4289 in which case it is output to the usual dump listing file, @file{.vect}.
4290 For @var{n}=0 no diagnostic information is reported.
4291 If @var{n}=1 the vectorizer reports each loop that got vectorized, 
4292 and the total number of loops that got vectorized.
4293 If @var{n}=2 the vectorizer also reports non-vectorized loops that passed 
4294 the first analysis phase (vect_analyze_loop_form) - i.e. countable, 
4295 inner-most, single-bb, single-entry/exit loops.  This is the same verbosity 
4296 level that @option{-fdump-tree-vect-stats} uses.
4297 Higher verbosity levels mean either more information dumped for each 
4298 reported loop, or same amount of information reported for more loops:
4299 If @var{n}=3, alignment related information is added to the reports.
4300 If @var{n}=4, data-references related information (e.g. memory dependences, 
4301 memory access-patterns) is added to the reports.
4302 If @var{n}=5, the vectorizer reports also non-vectorized inner-most loops 
4303 that did not pass the first analysis phase (i.e. may not be countable, or 
4304 may have complicated control-flow).
4305 If @var{n}=6, the vectorizer reports also non-vectorized nested loops.
4306 For @var{n}=7, all the information the vectorizer generates during its 
4307 analysis and transformation is reported.  This is the same verbosity level
4308 that @option{-fdump-tree-vect-details} uses.
4309
4310 @item -frandom-seed=@var{string}
4311 @opindex frandom-string
4312 This option provides a seed that GCC uses when it would otherwise use
4313 random numbers.  It is used to generate certain symbol names
4314 that have to be different in every compiled file.  It is also used to
4315 place unique stamps in coverage data files and the object files that
4316 produce them.  You can use the @option{-frandom-seed} option to produce
4317 reproducibly identical object files.
4318
4319 The @var{string} should be different for every file you compile.
4320
4321 @item -fsched-verbose=@var{n}
4322 @opindex fsched-verbose
4323 On targets that use instruction scheduling, this option controls the
4324 amount of debugging output the scheduler prints.  This information is
4325 written to standard error, unless @option{-dS} or @option{-dR} is
4326 specified, in which case it is output to the usual dump
4327 listing file, @file{.sched} or @file{.sched2} respectively.  However
4328 for @var{n} greater than nine, the output is always printed to standard
4329 error.
4330
4331 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
4332 same information as @option{-dRS}.  For @var{n} greater than one, it
4333 also output basic block probabilities, detailed ready list information
4334 and unit/insn info.  For @var{n} greater than two, it includes RTL
4335 at abort point, control-flow and regions info.  And for @var{n} over
4336 four, @option{-fsched-verbose} also includes dependence info.
4337
4338 @item -save-temps
4339 @opindex save-temps
4340 Store the usual ``temporary'' intermediate files permanently; place them
4341 in the current directory and name them based on the source file.  Thus,
4342 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
4343 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
4344 preprocessed @file{foo.i} output file even though the compiler now
4345 normally uses an integrated preprocessor.
4346
4347 When used in combination with the @option{-x} command line option,
4348 @option{-save-temps} is sensible enough to avoid over writing an
4349 input source file with the same extension as an intermediate file.
4350 The corresponding intermediate file may be obtained by renaming the
4351 source file before using @option{-save-temps}.
4352
4353 @item -time
4354 @opindex time
4355 Report the CPU time taken by each subprocess in the compilation
4356 sequence.  For C source files, this is the compiler proper and assembler
4357 (plus the linker if linking is done).  The output looks like this:
4358
4359 @smallexample
4360 # cc1 0.12 0.01
4361 # as 0.00 0.01
4362 @end smallexample
4363
4364 The first number on each line is the ``user time'', that is time spent
4365 executing the program itself.  The second number is ``system time'',
4366 time spent executing operating system routines on behalf of the program.
4367 Both numbers are in seconds.
4368
4369 @item -fvar-tracking
4370 @opindex fvar-tracking
4371 Run variable tracking pass.  It computes where variables are stored at each
4372 position in code.  Better debugging information is then generated
4373 (if the debugging information format supports this information).
4374
4375 It is enabled by default when compiling with optimization (@option{-Os},
4376 @option{-O}, @option{-O2}, ...), debugging information (@option{-g}) and
4377 the debug info format supports it.
4378
4379 @item -print-file-name=@var{library}
4380 @opindex print-file-name
4381 Print the full absolute name of the library file @var{library} that
4382 would be used when linking---and don't do anything else.  With this
4383 option, GCC does not compile or link anything; it just prints the
4384 file name.
4385
4386 @item -print-multi-directory
4387 @opindex print-multi-directory
4388 Print the directory name corresponding to the multilib selected by any
4389 other switches present in the command line.  This directory is supposed
4390 to exist in @env{GCC_EXEC_PREFIX}.
4391
4392 @item -print-multi-lib
4393 @opindex print-multi-lib
4394 Print the mapping from multilib directory names to compiler switches
4395 that enable them.  The directory name is separated from the switches by
4396 @samp{;}, and each switch starts with an @samp{@@} instead of the
4397 @samp{-}, without spaces between multiple switches.  This is supposed to
4398 ease shell-processing.
4399
4400 @item -print-prog-name=@var{program}
4401 @opindex print-prog-name
4402 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
4403
4404 @item -print-libgcc-file-name
4405 @opindex print-libgcc-file-name
4406 Same as @option{-print-file-name=libgcc.a}.
4407
4408 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
4409 but you do want to link with @file{libgcc.a}.  You can do
4410
4411 @smallexample
4412 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
4413 @end smallexample
4414
4415 @item -print-search-dirs
4416 @opindex print-search-dirs
4417 Print the name of the configured installation directory and a list of
4418 program and library directories @command{gcc} will search---and don't do anything else.
4419
4420 This is useful when @command{gcc} prints the error message
4421 @samp{installation problem, cannot exec cpp0: No such file or directory}.
4422 To resolve this you either need to put @file{cpp0} and the other compiler
4423 components where @command{gcc} expects to find them, or you can set the environment
4424 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
4425 Don't forget the trailing @samp{/}.
4426 @xref{Environment Variables}.
4427
4428 @item -dumpmachine
4429 @opindex dumpmachine
4430 Print the compiler's target machine (for example,
4431 @samp{i686-pc-linux-gnu})---and don't do anything else.
4432
4433 @item -dumpversion
4434 @opindex dumpversion
4435 Print the compiler version (for example, @samp{3.0})---and don't do
4436 anything else.
4437
4438 @item -dumpspecs
4439 @opindex dumpspecs
4440 Print the compiler's built-in specs---and don't do anything else.  (This
4441 is used when GCC itself is being built.)  @xref{Spec Files}.
4442
4443 @item -feliminate-unused-debug-types
4444 @opindex feliminate-unused-debug-types
4445 Normally, when producing DWARF2 output, GCC will emit debugging
4446 information for all types declared in a compilation
4447 unit, regardless of whether or not they are actually used
4448 in that compilation unit.  Sometimes this is useful, such as
4449 if, in the debugger, you want to cast a value to a type that is
4450 not actually used in your program (but is declared).  More often,
4451 however, this results in a significant amount of wasted space.
4452 With this option, GCC will avoid producing debug symbol output
4453 for types that are nowhere used in the source file being compiled.
4454 @end table
4455
4456 @node Optimize Options
4457 @section Options That Control Optimization
4458 @cindex optimize options
4459 @cindex options, optimization
4460
4461 These options control various sorts of optimizations.
4462
4463 Without any optimization option, the compiler's goal is to reduce the
4464 cost of compilation and to make debugging produce the expected
4465 results.  Statements are independent: if you stop the program with a
4466 breakpoint between statements, you can then assign a new value to any
4467 variable or change the program counter to any other statement in the
4468 function and get exactly the results you would expect from the source
4469 code.
4470
4471 Turning on optimization flags makes the compiler attempt to improve
4472 the performance and/or code size at the expense of compilation time
4473 and possibly the ability to debug the program.
4474
4475 The compiler performs optimization based on the knowledge it has of
4476 the program.  Optimization levels @option{-O} and above, in
4477 particular, enable @emph{unit-at-a-time} mode, which allows the
4478 compiler to consider information gained from later functions in
4479 the file when compiling a function.  Compiling multiple files at
4480 once to a single output file in @emph{unit-at-a-time} mode allows
4481 the compiler to use information gained from all of the files when
4482 compiling each of them.
4483
4484 Not all optimizations are controlled directly by a flag.  Only
4485 optimizations that have a flag are listed.
4486
4487 @table @gcctabopt
4488 @item -O
4489 @itemx -O1
4490 @opindex O
4491 @opindex O1
4492 Optimize.  Optimizing compilation takes somewhat more time, and a lot
4493 more memory for a large function.
4494
4495 With @option{-O}, the compiler tries to reduce code size and execution
4496 time, without performing any optimizations that take a great deal of
4497 compilation time.
4498
4499 @option{-O} turns on the following optimization flags:
4500 @gccoptlist{-fdefer-pop @gol
4501 -fdelayed-branch @gol
4502 -fguess-branch-probability @gol
4503 -fcprop-registers @gol
4504 -fif-conversion @gol
4505 -fif-conversion2 @gol
4506 -ftree-ccp @gol
4507 -ftree-dce @gol
4508 -ftree-dominator-opts @gol
4509 -ftree-dse @gol
4510 -ftree-ter @gol
4511 -ftree-lrs @gol
4512 -ftree-sra @gol
4513 -ftree-copyrename @gol
4514 -ftree-fre @gol
4515 -ftree-ch @gol
4516 -funit-at-a-time @gol
4517 -fmerge-constants}
4518
4519 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
4520 where doing so does not interfere with debugging.
4521
4522 @item -O2
4523 @opindex O2
4524 Optimize even more.  GCC performs nearly all supported optimizations
4525 that do not involve a space-speed tradeoff.  The compiler does not
4526 perform loop unrolling or function inlining when you specify @option{-O2}.
4527 As compared to @option{-O}, this option increases both compilation time
4528 and the performance of the generated code.
4529
4530 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
4531 also turns on the following optimization flags:
4532 @gccoptlist{-fthread-jumps @gol
4533 -fcrossjumping @gol
4534 -foptimize-sibling-calls @gol
4535 -fcse-follow-jumps  -fcse-skip-blocks @gol
4536 -fgcse  -fgcse-lm  @gol
4537 -fexpensive-optimizations @gol
4538 -frerun-cse-after-loop  @gol
4539 -fcaller-saves @gol
4540 -fpeephole2 @gol
4541 -fschedule-insns  -fschedule-insns2 @gol
4542 -fsched-interblock  -fsched-spec @gol
4543 -fregmove @gol
4544 -fstrict-aliasing @gol
4545 -fdelete-null-pointer-checks @gol
4546 -freorder-blocks  -freorder-functions @gol
4547 -falign-functions  -falign-jumps @gol
4548 -falign-loops  -falign-labels @gol
4549 -ftree-vrp @gol
4550 -ftree-pre}
4551
4552 Please note the warning under @option{-fgcse} about
4553 invoking @option{-O2} on programs that use computed gotos.
4554
4555 @item -O3
4556 @opindex O3
4557 Optimize yet more.  @option{-O3} turns on all optimizations specified by
4558 @option{-O2} and also turns on the @option{-finline-functions},
4559 @option{-funswitch-loops} and @option{-fgcse-after-reload} options.
4560
4561 @item -O0
4562 @opindex O0
4563 Do not optimize.  This is the default.
4564
4565 @item -Os
4566 @opindex Os
4567 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
4568 do not typically increase code size.  It also performs further
4569 optimizations designed to reduce code size.
4570
4571 @option{-Os} disables the following optimization flags:
4572 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
4573 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
4574 -fprefetch-loop-arrays  -ftree-vect-loop-version}
4575
4576 If you use multiple @option{-O} options, with or without level numbers,
4577 the last such option is the one that is effective.
4578 @end table
4579
4580 Options of the form @option{-f@var{flag}} specify machine-independent
4581 flags.  Most flags have both positive and negative forms; the negative
4582 form of @option{-ffoo} would be @option{-fno-foo}.  In the table
4583 below, only one of the forms is listed---the one you typically will
4584 use.  You can figure out the other form by either removing @samp{no-}
4585 or adding it.
4586
4587 The following options control specific optimizations.  They are either
4588 activated by @option{-O} options or are related to ones that are.  You
4589 can use the following flags in the rare cases when ``fine-tuning'' of
4590 optimizations to be performed is desired.
4591
4592 @table @gcctabopt
4593 @item -fno-default-inline
4594 @opindex fno-default-inline
4595 Do not make member functions inline by default merely because they are
4596 defined inside the class scope (C++ only).  Otherwise, when you specify
4597 @w{@option{-O}}, member functions defined inside class scope are compiled
4598 inline by default; i.e., you don't need to add @samp{inline} in front of
4599 the member function name.
4600
4601 @item -fno-defer-pop
4602 @opindex fno-defer-pop
4603 Always pop the arguments to each function call as soon as that function
4604 returns.  For machines which must pop arguments after a function call,
4605 the compiler normally lets arguments accumulate on the stack for several
4606 function calls and pops them all at once.
4607
4608 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
4609
4610 @item -fforce-mem
4611 @opindex fforce-mem
4612 Force memory operands to be copied into registers before doing
4613 arithmetic on them.  This produces better code by making all memory
4614 references potential common subexpressions.  When they are not common
4615 subexpressions, instruction combination should eliminate the separate
4616 register-load. This option is now a nop and will be removed in 4.2.
4617
4618 @item -fforce-addr
4619 @opindex fforce-addr
4620 Force memory address constants to be copied into registers before
4621 doing arithmetic on them.
4622
4623 @item -fforward-propagate
4624 @opindex fforward-propagate
4625 Perform a forward propagation pass on RTL.  The pass tries to combine two
4626 instructions and checks if the result can be simplified.  If loop unrolling
4627 is active, two passes are performed and the second is scheduled after
4628 loop unrolling.
4629
4630 This option is enabled by default at optimization levels @option{-O2},
4631 @option{-O3}, @option{-Os}.
4632
4633 @item -fomit-frame-pointer
4634 @opindex fomit-frame-pointer
4635 Don't keep the frame pointer in a register for functions that
4636 don't need one.  This avoids the instructions to save, set up and
4637 restore frame pointers; it also makes an extra register available
4638 in many functions.  @strong{It also makes debugging impossible on
4639 some machines.}
4640
4641 On some machines, such as the VAX, this flag has no effect, because
4642 the standard calling sequence automatically handles the frame pointer
4643 and nothing is saved by pretending it doesn't exist.  The
4644 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
4645 whether a target machine supports this flag.  @xref{Registers,,Register
4646 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
4647
4648 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
4649
4650 @item -foptimize-sibling-calls
4651 @opindex foptimize-sibling-calls
4652 Optimize sibling and tail recursive calls.
4653
4654 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4655
4656 @item -fno-inline
4657 @opindex fno-inline
4658 Don't pay attention to the @code{inline} keyword.  Normally this option
4659 is used to keep the compiler from expanding any functions inline.
4660 Note that if you are not optimizing, no functions can be expanded inline.
4661
4662 @item -finline-functions
4663 @opindex finline-functions
4664 Integrate all simple functions into their callers.  The compiler
4665 heuristically decides which functions are simple enough to be worth
4666 integrating in this way.
4667
4668 If all calls to a given function are integrated, and the function is
4669 declared @code{static}, then the function is normally not output as
4670 assembler code in its own right.
4671
4672 Enabled at level @option{-O3}.
4673
4674 @item -finline-functions-called-once
4675 @opindex finline-functions-called-once
4676 Consider all @code{static} functions called once for inlining into their
4677 caller even if they are not marked @code{inline}.  If a call to a given
4678 function is integrated, then the function is not output as assembler code
4679 in its own right.
4680
4681 Enabled if @option{-funit-at-a-time} is enabled.
4682
4683 @item -fearly-inlining
4684 @opindex fearly-inlining
4685 Inline functions marked by @code{always_inline} and functions whose body seems
4686 smaller than the function call overhead early before doing
4687 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
4688 makes profiling significantly cheaper and usually inlining faster on programs
4689 having large chains of nested wrapper functions.
4690
4691 Enabled by default.
4692
4693 @item -finline-limit=@var{n}
4694 @opindex finline-limit
4695 By default, GCC limits the size of functions that can be inlined.  This flag
4696 allows the control of this limit for functions that are explicitly marked as
4697 inline (i.e., marked with the inline keyword or defined within the class
4698 definition in c++).  @var{n} is the size of functions that can be inlined in
4699 number of pseudo instructions (not counting parameter handling).  The default
4700 value of @var{n} is 600.
4701 Increasing this value can result in more inlined code at
4702 the cost of compilation time and memory consumption.  Decreasing usually makes
4703 the compilation faster and less code will be inlined (which presumably
4704 means slower programs).  This option is particularly useful for programs that
4705 use inlining heavily such as those based on recursive templates with C++.
4706
4707 Inlining is actually controlled by a number of parameters, which may be
4708 specified individually by using @option{--param @var{name}=@var{value}}.
4709 The @option{-finline-limit=@var{n}} option sets some of these parameters
4710 as follows:
4711
4712 @table @gcctabopt
4713 @item max-inline-insns-single
4714  is set to @var{n}/2.
4715 @item max-inline-insns-auto
4716  is set to @var{n}/2.
4717 @item min-inline-insns
4718  is set to 130 or @var{n}/4, whichever is smaller.
4719 @item max-inline-insns-rtl
4720  is set to @var{n}.
4721 @end table
4722
4723 See below for a documentation of the individual
4724 parameters controlling inlining.
4725
4726 @emph{Note:} pseudo instruction represents, in this particular context, an
4727 abstract measurement of function's size.  In no way does it represent a count
4728 of assembly instructions and as such its exact meaning might change from one
4729 release to an another.
4730
4731 @item -fkeep-inline-functions
4732 @opindex fkeep-inline-functions
4733 In C, emit @code{static} functions that are declared @code{inline}
4734 into the object file, even if the function has been inlined into all
4735 of its callers.  This switch does not affect functions using the
4736 @code{extern inline} extension in GNU C89@.  In C++, emit any and all
4737 inline functions into the object file.
4738
4739 @item -fkeep-static-consts
4740 @opindex fkeep-static-consts
4741 Emit variables declared @code{static const} when optimization isn't turned
4742 on, even if the variables aren't referenced.
4743
4744 GCC enables this option by default.  If you want to force the compiler to
4745 check if the variable was referenced, regardless of whether or not
4746 optimization is turned on, use the @option{-fno-keep-static-consts} option.
4747
4748 @item -fmerge-constants
4749 Attempt to merge identical constants (string constants and floating point
4750 constants) across compilation units.
4751
4752 This option is the default for optimized compilation if the assembler and
4753 linker support it.  Use @option{-fno-merge-constants} to inhibit this
4754 behavior.
4755
4756 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
4757
4758 @item -fmerge-all-constants
4759 Attempt to merge identical constants and identical variables.
4760
4761 This option implies @option{-fmerge-constants}.  In addition to
4762 @option{-fmerge-constants} this considers e.g.@: even constant initialized
4763 arrays or initialized constant variables with integral or floating point
4764 types.  Languages like C or C++ require each non-automatic variable to
4765 have distinct location, so using this option will result in non-conforming
4766 behavior.
4767
4768 @item -fmodulo-sched
4769 @opindex fmodulo-sched
4770 Perform swing modulo scheduling immediately before the first scheduling
4771 pass.  This pass looks at innermost loops and reorders their
4772 instructions by overlapping different iterations.
4773
4774 @item -fno-branch-count-reg
4775 @opindex fno-branch-count-reg
4776 Do not use ``decrement and branch'' instructions on a count register,
4777 but instead generate a sequence of instructions that decrement a
4778 register, compare it against zero, then branch based upon the result.
4779 This option is only meaningful on architectures that support such
4780 instructions, which include x86, PowerPC, IA-64 and S/390.
4781
4782 The default is @option{-fbranch-count-reg}.
4783
4784 @item -fno-function-cse
4785 @opindex fno-function-cse
4786 Do not put function addresses in registers; make each instruction that
4787 calls a constant function contain the function's address explicitly.
4788
4789 This option results in less efficient code, but some strange hacks
4790 that alter the assembler output may be confused by the optimizations
4791 performed when this option is not used.
4792
4793 The default is @option{-ffunction-cse}
4794
4795 @item -fno-zero-initialized-in-bss
4796 @opindex fno-zero-initialized-in-bss
4797 If the target supports a BSS section, GCC by default puts variables that
4798 are initialized to zero into BSS@.  This can save space in the resulting
4799 code.
4800
4801 This option turns off this behavior because some programs explicitly
4802 rely on variables going to the data section.  E.g., so that the
4803 resulting executable can find the beginning of that section and/or make
4804 assumptions based on that.
4805
4806 The default is @option{-fzero-initialized-in-bss}.
4807
4808 @item -fbounds-check
4809 @opindex fbounds-check
4810 For front-ends that support it, generate additional code to check that
4811 indices used to access arrays are within the declared range.  This is
4812 currently only supported by the Java and Fortran front-ends, where
4813 this option defaults to true and false respectively.
4814
4815 @item -fmudflap -fmudflapth -fmudflapir
4816 @opindex fmudflap
4817 @opindex fmudflapth
4818 @opindex fmudflapir
4819 @cindex bounds checking
4820 @cindex mudflap
4821 For front-ends that support it (C and C++), instrument all risky
4822 pointer/array dereferencing operations, some standard library
4823 string/heap functions, and some other associated constructs with
4824 range/validity tests.  Modules so instrumented should be immune to
4825 buffer overflows, invalid heap use, and some other classes of C/C++
4826 programming errors.  The instrumentation relies on a separate runtime
4827 library (@file{libmudflap}), which will be linked into a program if
4828 @option{-fmudflap} is given at link time.  Run-time behavior of the
4829 instrumented program is controlled by the @env{MUDFLAP_OPTIONS}
4830 environment variable.  See @code{env MUDFLAP_OPTIONS=-help a.out}
4831 for its options.
4832
4833 Use @option{-fmudflapth} instead of @option{-fmudflap} to compile and to
4834 link if your program is multi-threaded.  Use @option{-fmudflapir}, in
4835 addition to @option{-fmudflap} or @option{-fmudflapth}, if
4836 instrumentation should ignore pointer reads.  This produces less
4837 instrumentation (and therefore faster execution) and still provides
4838 some protection against outright memory corrupting writes, but allows
4839 erroneously read data to propagate within a program.
4840
4841 @item -fthread-jumps
4842 @opindex fthread-jumps
4843 Perform optimizations where we check to see if a jump branches to a
4844 location where another comparison subsumed by the first is found.  If
4845 so, the first branch is redirected to either the destination of the
4846 second branch or a point immediately following it, depending on whether
4847 the condition is known to be true or false.
4848
4849 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4850
4851 @item -fcse-follow-jumps
4852 @opindex fcse-follow-jumps
4853 In common subexpression elimination, scan through jump instructions
4854 when the target of the jump is not reached by any other path.  For
4855 example, when CSE encounters an @code{if} statement with an
4856 @code{else} clause, CSE will follow the jump when the condition
4857 tested is false.
4858
4859 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4860
4861 @item -fcse-skip-blocks
4862 @opindex fcse-skip-blocks
4863 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
4864 follow jumps which conditionally skip over blocks.  When CSE
4865 encounters a simple @code{if} statement with no else clause,
4866 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
4867 body of the @code{if}.
4868
4869 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4870
4871 @item -frerun-cse-after-loop
4872 @opindex frerun-cse-after-loop
4873 Re-run common subexpression elimination after loop optimizations has been
4874 performed.
4875
4876 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4877
4878 @item -fgcse
4879 @opindex fgcse
4880 Perform a global common subexpression elimination pass.
4881 This pass also performs global constant and copy propagation.
4882
4883 @emph{Note:} When compiling a program using computed gotos, a GCC
4884 extension, you may get better runtime performance if you disable
4885 the global common subexpression elimination pass by adding
4886 @option{-fno-gcse} to the command line.
4887
4888 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4889
4890 @item -fgcse-lm
4891 @opindex fgcse-lm
4892 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
4893 attempt to move loads which are only killed by stores into themselves.  This
4894 allows a loop containing a load/store sequence to be changed to a load outside
4895 the loop, and a copy/store within the loop.
4896
4897 Enabled by default when gcse is enabled.
4898
4899 @item -fgcse-sm
4900 @opindex fgcse-sm
4901 When @option{-fgcse-sm} is enabled, a store motion pass is run after
4902 global common subexpression elimination.  This pass will attempt to move
4903 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
4904 loops containing a load/store sequence can be changed to a load before
4905 the loop and a store after the loop.
4906
4907 Not enabled at any optimization level.
4908
4909 @item -fgcse-las
4910 @opindex fgcse-las
4911 When @option{-fgcse-las} is enabled, the global common subexpression
4912 elimination pass eliminates redundant loads that come after stores to the
4913 same memory location (both partial and full redundancies).
4914
4915 Not enabled at any optimization level.
4916
4917 @item -fgcse-after-reload
4918 @opindex fgcse-after-reload
4919 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
4920 pass is performed after reload.  The purpose of this pass is to cleanup
4921 redundant spilling.
4922
4923 @item -funsafe-loop-optimizations
4924 @opindex funsafe-loop-optimizations
4925 If given, the loop optimizer will assume that loop indices do not
4926 overflow, and that the loops with nontrivial exit condition are not
4927 infinite.  This enables a wider range of loop optimizations even if
4928 the loop optimizer itself cannot prove that these assumptions are valid.
4929 Using @option{-Wunsafe-loop-optimizations}, the compiler will warn you
4930 if it finds this kind of loop.
4931
4932 @item -fcrossjumping
4933 @opindex crossjumping
4934 Perform cross-jumping transformation.  This transformation unifies equivalent code and save code size.  The
4935 resulting code may or may not perform better than without cross-jumping.
4936
4937 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4938
4939 @item -fif-conversion
4940 @opindex if-conversion
4941 Attempt to transform conditional jumps into branch-less equivalents.  This
4942 include use of conditional moves, min, max, set flags and abs instructions, and
4943 some tricks doable by standard arithmetics.  The use of conditional execution
4944 on chips where it is available is controlled by @code{if-conversion2}.
4945
4946 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
4947
4948 @item -fif-conversion2
4949 @opindex if-conversion2
4950 Use conditional execution (where available) to transform conditional jumps into
4951 branch-less equivalents.
4952
4953 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
4954
4955 @item -fdelete-null-pointer-checks
4956 @opindex fdelete-null-pointer-checks
4957 Use global dataflow analysis to identify and eliminate useless checks
4958 for null pointers.  The compiler assumes that dereferencing a null
4959 pointer would have halted the program.  If a pointer is checked after
4960 it has already been dereferenced, it cannot be null.
4961
4962 In some environments, this assumption is not true, and programs can
4963 safely dereference null pointers.  Use
4964 @option{-fno-delete-null-pointer-checks} to disable this optimization
4965 for programs which depend on that behavior.
4966
4967 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4968
4969 @item -fexpensive-optimizations
4970 @opindex fexpensive-optimizations
4971 Perform a number of minor optimizations that are relatively expensive.
4972
4973 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4974
4975 @item -foptimize-register-move
4976 @itemx -fregmove
4977 @opindex foptimize-register-move
4978 @opindex fregmove
4979 Attempt to reassign register numbers in move instructions and as
4980 operands of other simple instructions in order to maximize the amount of
4981 register tying.  This is especially helpful on machines with two-operand
4982 instructions.
4983
4984 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
4985 optimization.
4986
4987 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
4988
4989 @item -fdelayed-branch
4990 @opindex fdelayed-branch
4991 If supported for the target machine, attempt to reorder instructions
4992 to exploit instruction slots available after delayed branch
4993 instructions.
4994
4995 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
4996
4997 @item -fschedule-insns
4998 @opindex fschedule-insns
4999 If supported for the target machine, attempt to reorder instructions to
5000 eliminate execution stalls due to required data being unavailable.  This
5001 helps machines that have slow floating point or memory load instructions
5002 by allowing other instructions to be issued until the result of the load
5003 or floating point instruction is required.
5004
5005 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5006
5007 @item -fschedule-insns2
5008 @opindex fschedule-insns2
5009 Similar to @option{-fschedule-insns}, but requests an additional pass of
5010 instruction scheduling after register allocation has been done.  This is
5011 especially useful on machines with a relatively small number of
5012 registers and where memory load instructions take more than one cycle.
5013
5014 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5015
5016 @item -fno-sched-interblock
5017 @opindex fno-sched-interblock
5018 Don't schedule instructions across basic blocks.  This is normally
5019 enabled by default when scheduling before register allocation, i.e.@:
5020 with @option{-fschedule-insns} or at @option{-O2} or higher.
5021
5022 @item -fno-sched-spec
5023 @opindex fno-sched-spec
5024 Don't allow speculative motion of non-load instructions.  This is normally
5025 enabled by default when scheduling before register allocation, i.e.@:
5026 with @option{-fschedule-insns} or at @option{-O2} or higher.
5027
5028 @item -fsched-spec-load
5029 @opindex fsched-spec-load
5030 Allow speculative motion of some load instructions.  This only makes
5031 sense when scheduling before register allocation, i.e.@: with
5032 @option{-fschedule-insns} or at @option{-O2} or higher.
5033
5034 @item -fsched-spec-load-dangerous
5035 @opindex fsched-spec-load-dangerous
5036 Allow speculative motion of more load instructions.  This only makes
5037 sense when scheduling before register allocation, i.e.@: with
5038 @option{-fschedule-insns} or at @option{-O2} or higher.
5039
5040 @item -fsched-stalled-insns=@var{n}
5041 @opindex fsched-stalled-insns
5042 Define how many insns (if any) can be moved prematurely from the queue
5043 of stalled insns into the ready list, during the second scheduling pass.
5044
5045 @item -fsched-stalled-insns-dep=@var{n}
5046 @opindex fsched-stalled-insns-dep
5047 Define how many insn groups (cycles) will be examined for a dependency
5048 on a stalled insn that is candidate for premature removal from the queue
5049 of stalled insns.  Has an effect only during the second scheduling pass,
5050 and only if @option{-fsched-stalled-insns} is used and its value is not zero.
5051
5052 @item -fsched2-use-superblocks
5053 @opindex fsched2-use-superblocks
5054 When scheduling after register allocation, do use superblock scheduling
5055 algorithm.  Superblock scheduling allows motion across basic block boundaries
5056 resulting on faster schedules.  This option is experimental, as not all machine
5057 descriptions used by GCC model the CPU closely enough to avoid unreliable
5058 results from the algorithm.
5059
5060 This only makes sense when scheduling after register allocation, i.e.@: with
5061 @option{-fschedule-insns2} or at @option{-O2} or higher.
5062
5063 @item -fsched2-use-traces
5064 @opindex fsched2-use-traces
5065 Use @option{-fsched2-use-superblocks} algorithm when scheduling after register
5066 allocation and additionally perform code duplication in order to increase the
5067 size of superblocks using tracer pass.  See @option{-ftracer} for details on
5068 trace formation.
5069
5070 This mode should produce faster but significantly longer programs.  Also
5071 without @option{-fbranch-probabilities} the traces constructed may not
5072 match the reality and hurt the performance.  This only makes
5073 sense when scheduling after register allocation, i.e.@: with
5074 @option{-fschedule-insns2} or at @option{-O2} or higher.
5075
5076 @item -fsee
5077 @opindex fsee
5078 Eliminates redundant extension instructions and move the non redundant
5079 ones to optimal placement using LCM.
5080
5081 @item -freschedule-modulo-scheduled-loops
5082 @opindex fscheduling-in-modulo-scheduled-loops
5083 The modulo scheduling comes before the traditional scheduling, if a loop was modulo scheduled
5084 we may want to prevent the later scheduling passes from changing its schedule, we use this
5085 option to control that.
5086
5087 @item -fcaller-saves
5088 @opindex fcaller-saves
5089 Enable values to be allocated in registers that will be clobbered by
5090 function calls, by emitting extra instructions to save and restore the
5091 registers around such calls.  Such allocation is done only when it
5092 seems to result in better code than would otherwise be produced.
5093
5094 This option is always enabled by default on certain machines, usually
5095 those which have no call-preserved registers to use instead.
5096
5097 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5098
5099 @item -ftree-pre
5100 Perform Partial Redundancy Elimination (PRE) on trees.  This flag is
5101 enabled by default at @option{-O2} and @option{-O3}.
5102
5103 @item -ftree-fre
5104 Perform Full Redundancy Elimination (FRE) on trees.  The difference
5105 between FRE and PRE is that FRE only considers expressions
5106 that are computed on all paths leading to the redundant computation.
5107 This analysis faster than PRE, though it exposes fewer redundancies.
5108 This flag is enabled by default at @option{-O} and higher.
5109
5110 @item -ftree-copy-prop
5111 Perform copy propagation on trees.  This pass eliminates unnecessary
5112 copy operations.  This flag is enabled by default at @option{-O} and
5113 higher.
5114
5115 @item -ftree-store-copy-prop
5116 Perform copy propagation of memory loads and stores.  This pass
5117 eliminates unnecessary copy operations in memory references
5118 (structures, global variables, arrays, etc).  This flag is enabled by
5119 default at @option{-O2} and higher.
5120
5121 @item -ftree-salias
5122 Perform structural alias analysis on trees.  This flag
5123 is enabled by default at @option{-O} and higher.
5124
5125 @item -fipa-pta
5126 Perform interprocedural pointer analysis.
5127
5128 @item -ftree-sink
5129 Perform forward store motion  on trees.  This flag is
5130 enabled by default at @option{-O} and higher.
5131
5132 @item -ftree-ccp
5133 Perform sparse conditional constant propagation (CCP) on trees.  This
5134 pass only operates on local scalar variables and is enabled by default
5135 at @option{-O} and higher.
5136
5137 @item -ftree-store-ccp
5138 Perform sparse conditional constant propagation (CCP) on trees.  This
5139 pass operates on both local scalar variables and memory stores and
5140 loads (global variables, structures, arrays, etc).  This flag is
5141 enabled by default at @option{-O2} and higher.
5142
5143 @item -ftree-dce
5144 Perform dead code elimination (DCE) on trees.  This flag is enabled by
5145 default at @option{-O} and higher.
5146
5147 @item -ftree-dominator-opts
5148 Perform a variety of simple scalar cleanups (constant/copy
5149 propagation, redundancy elimination, range propagation and expression
5150 simplification) based on a dominator tree traversal.  This also
5151 performs jump threading (to reduce jumps to jumps). This flag is
5152 enabled by default at @option{-O} and higher.
5153
5154 @item -ftree-ch
5155 Perform loop header copying on trees.  This is beneficial since it increases
5156 effectiveness of code motion optimizations.  It also saves one jump.  This flag
5157 is enabled by default at @option{-O} and higher.  It is not enabled
5158 for @option{-Os}, since it usually increases code size.
5159
5160 @item -ftree-loop-optimize
5161 Perform loop optimizations on trees.  This flag is enabled by default
5162 at @option{-O} and higher.
5163
5164 @item -ftree-loop-linear
5165 Perform linear loop transformations on tree.  This flag can improve cache
5166 performance and allow further loop optimizations to take place.
5167
5168 @item -ftree-loop-im
5169 Perform loop invariant motion on trees.  This pass moves only invariants that
5170 would be hard to handle at RTL level (function calls, operations that expand to
5171 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
5172 operands of conditions that are invariant out of the loop, so that we can use
5173 just trivial invariantness analysis in loop unswitching.  The pass also includes
5174 store motion.
5175
5176 @item -ftree-loop-ivcanon
5177 Create a canonical counter for number of iterations in the loop for that
5178 determining number of iterations requires complicated analysis.  Later
5179 optimizations then may determine the number easily.  Useful especially
5180 in connection with unrolling.
5181
5182 @item -fivopts
5183 Perform induction variable optimizations (strength reduction, induction
5184 variable merging and induction variable elimination) on trees.
5185
5186 @item -ftree-sra
5187 Perform scalar replacement of aggregates.  This pass replaces structure
5188 references with scalars to prevent committing structures to memory too
5189 early.  This flag is enabled by default at @option{-O} and higher.
5190
5191 @item -ftree-copyrename
5192 Perform copy renaming on trees.  This pass attempts to rename compiler
5193 temporaries to other variables at copy locations, usually resulting in
5194 variable names which more closely resemble the original variables.  This flag
5195 is enabled by default at @option{-O} and higher.
5196
5197 @item -ftree-ter
5198 Perform temporary expression replacement during the SSA->normal phase.  Single
5199 use/single def temporaries are replaced at their use location with their
5200 defining expression.  This results in non-GIMPLE code, but gives the expanders
5201 much more complex trees to work on resulting in better RTL generation.  This is
5202 enabled by default at @option{-O} and higher.
5203
5204 @item -ftree-lrs
5205 Perform live range splitting during the SSA->normal phase.  Distinct live
5206 ranges of a variable are split into unique variables, allowing for better
5207 optimization later.  This is enabled by default at @option{-O} and higher.
5208
5209 @item -ftree-vectorize
5210 Perform loop vectorization on trees.
5211
5212 @item -ftree-vect-loop-version
5213 @opindex ftree-vect-loop-version
5214 Perform loop versioning when doing loop vectorization on trees.  When a loop
5215 appears to be vectorizable except that data alignment or data dependence cannot
5216 be determined at compile time then vectorized and non-vectorized versions of
5217 the loop are generated along with runtime checks for alignment or dependence
5218 to control which version is executed.  This option is enabled by default
5219 except at level @option{-Os} where it is disabled.
5220
5221 @item -ftree-vrp
5222 Perform Value Range Propagation on trees.  This is similar to the
5223 constant propagation pass, but instead of values, ranges of values are
5224 propagated.  This allows the optimizers to remove unnecessary range
5225 checks like array bound checks and null pointer checks.  This is
5226 enabled by default at @option{-O2} and higher.  Null pointer check
5227 elimination is only done if @option{-fdelete-null-pointer-checks} is
5228 enabled.
5229
5230 @item -ftracer
5231 @opindex ftracer
5232 Perform tail duplication to enlarge superblock size.  This transformation
5233 simplifies the control flow of the function allowing other optimizations to do
5234 better job.
5235
5236 @item -funroll-loops
5237 @opindex funroll-loops
5238 Unroll loops whose number of iterations can be determined at compile
5239 time or upon entry to the loop.  @option{-funroll-loops} implies
5240 @option{-frerun-cse-after-loop}.  This option makes code larger,
5241 and may or may not make it run faster.
5242
5243 @item -funroll-all-loops
5244 @opindex funroll-all-loops
5245 Unroll all loops, even if their number of iterations is uncertain when
5246 the loop is entered.  This usually makes programs run more slowly.
5247 @option{-funroll-all-loops} implies the same options as
5248 @option{-funroll-loops},
5249
5250 @item -fsplit-ivs-in-unroller
5251 @opindex -fsplit-ivs-in-unroller
5252 Enables expressing of values of induction variables in later iterations
5253 of the unrolled loop using the value in the first iteration.  This breaks
5254 long dependency chains, thus improving efficiency of the scheduling passes.
5255
5256 Combination of @option{-fweb} and CSE is often sufficient to obtain the
5257 same effect.  However in cases the loop body is more complicated than
5258 a single basic block, this is not reliable.  It also does not work at all
5259 on some of the architectures due to restrictions in the CSE pass.
5260
5261 This optimization is enabled by default.
5262
5263 @item -fvariable-expansion-in-unroller
5264 @opindex -fvariable-expansion-in-unroller
5265 With this option, the compiler will create multiple copies of some
5266 local variables when unrolling a loop which can result in superior code.
5267
5268 @item -fprefetch-loop-arrays
5269 @opindex fprefetch-loop-arrays
5270 If supported by the target machine, generate instructions to prefetch
5271 memory to improve the performance of loops that access large arrays.
5272
5273 This option may generate better or worse code; results are highly
5274 dependent on the structure of loops within the source code.
5275
5276 Disabled at level @option{-Os}.
5277
5278 @item -fno-peephole
5279 @itemx -fno-peephole2
5280 @opindex fno-peephole
5281 @opindex fno-peephole2
5282 Disable any machine-specific peephole optimizations.  The difference
5283 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
5284 are implemented in the compiler; some targets use one, some use the
5285 other, a few use both.
5286
5287 @option{-fpeephole} is enabled by default.
5288 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5289
5290 @item -fno-guess-branch-probability
5291 @opindex fno-guess-branch-probability
5292 Do not guess branch probabilities using heuristics.
5293
5294 GCC will use heuristics to guess branch probabilities if they are
5295 not provided by profiling feedback (@option{-fprofile-arcs}).  These
5296 heuristics are based on the control flow graph.  If some branch probabilities
5297 are specified by @samp{__builtin_expect}, then the heuristics will be
5298 used to guess branch probabilities for the rest of the control flow graph,
5299 taking the @samp{__builtin_expect} info into account.  The interactions
5300 between the heuristics and @samp{__builtin_expect} can be complex, and in
5301 some cases, it may be useful to disable the heuristics so that the effects
5302 of @samp{__builtin_expect} are easier to understand.
5303
5304 The default is @option{-fguess-branch-probability} at levels
5305 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5306
5307 @item -freorder-blocks
5308 @opindex freorder-blocks
5309 Reorder basic blocks in the compiled function in order to reduce number of
5310 taken branches and improve code locality.
5311
5312 Enabled at levels @option{-O2}, @option{-O3}.
5313
5314 @item -freorder-blocks-and-partition
5315 @opindex freorder-blocks-and-partition
5316 In addition to reordering basic blocks in the compiled function, in order
5317 to reduce number of taken branches, partitions hot and cold basic blocks
5318 into separate sections of the assembly and .o files, to improve
5319 paging and cache locality performance.
5320
5321 This optimization is automatically turned off in the presence of
5322 exception handling, for linkonce sections, for functions with a user-defined
5323 section attribute and on any architecture that does not support named
5324 sections.
5325
5326 @item -freorder-functions
5327 @opindex freorder-functions
5328 Reorder functions in the object file in order to
5329 improve code locality.  This is implemented by using special
5330 subsections @code{.text.hot} for most frequently executed functions and
5331 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
5332 the linker so object file format must support named sections and linker must
5333 place them in a reasonable way.
5334
5335 Also profile feedback must be available in to make this option effective.  See
5336 @option{-fprofile-arcs} for details.
5337
5338 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5339
5340 @item -fstrict-aliasing
5341 @opindex fstrict-aliasing
5342 Allows the compiler to assume the strictest aliasing rules applicable to
5343 the language being compiled.  For C (and C++), this activates
5344 optimizations based on the type of expressions.  In particular, an
5345 object of one type is assumed never to reside at the same address as an
5346 object of a different type, unless the types are almost the same.  For
5347 example, an @code{unsigned int} can alias an @code{int}, but not a
5348 @code{void*} or a @code{double}.  A character type may alias any other
5349 type.
5350
5351 Pay special attention to code like this:
5352 @smallexample
5353 union a_union @{
5354   int i;
5355   double d;
5356 @};
5357
5358 int f() @{
5359   a_union t;
5360   t.d = 3.0;
5361   return t.i;
5362 @}
5363 @end smallexample
5364 The practice of reading from a different union member than the one most
5365 recently written to (called ``type-punning'') is common.  Even with
5366 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
5367 is accessed through the union type.  So, the code above will work as
5368 expected.  However, this code might not:
5369 @smallexample
5370 int f() @{
5371   a_union t;
5372   int* ip;
5373   t.d = 3.0;
5374   ip = &t.i;
5375   return *ip;
5376 @}
5377 @end smallexample
5378
5379 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
5380
5381 @item -falign-functions
5382 @itemx -falign-functions=@var{n}
5383 @opindex falign-functions
5384 Align the start of functions to the next power-of-two greater than
5385 @var{n}, skipping up to @var{n} bytes.  For instance,
5386 @option{-falign-functions=32} aligns functions to the next 32-byte
5387 boundary, but @option{-falign-functions=24} would align to the next
5388 32-byte boundary only if this can be done by skipping 23 bytes or less.
5389
5390 @option{-fno-align-functions} and @option{-falign-functions=1} are
5391 equivalent and mean that functions will not be aligned.
5392
5393 Some assemblers only support this flag when @var{n} is a power of two;
5394 in that case, it is rounded up.
5395
5396 If @var{n} is not specified or is zero, use a machine-dependent default.
5397
5398 Enabled at levels @option{-O2}, @option{-O3}.
5399
5400 @item -falign-labels
5401 @itemx -falign-labels=@var{n}
5402 @opindex falign-labels
5403 Align all branch targets to a power-of-two boundary, skipping up to
5404 @var{n} bytes like @option{-falign-functions}.  This option can easily
5405 make code slower, because it must insert dummy operations for when the
5406 branch target is reached in the usual flow of the code.
5407
5408 @option{-fno-align-labels} and @option{-falign-labels=1} are
5409 equivalent and mean that labels will not be aligned.
5410
5411 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
5412 are greater than this value, then their values are used instead.
5413
5414 If @var{n} is not specified or is zero, use a machine-dependent default
5415 which is very likely to be @samp{1}, meaning no alignment.
5416
5417 Enabled at levels @option{-O2}, @option{-O3}.
5418
5419 @item -falign-loops
5420 @itemx -falign-loops=@var{n}
5421 @opindex falign-loops
5422 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
5423 like @option{-falign-functions}.  The hope is that the loop will be
5424 executed many times, which will make up for any execution of the dummy
5425 operations.
5426
5427 @option{-fno-align-loops} and @option{-falign-loops=1} are
5428 equivalent and mean that loops will not be aligned.
5429
5430 If @var{n} is not specified or is zero, use a machine-dependent default.
5431
5432 Enabled at levels @option{-O2}, @option{-O3}.
5433
5434 @item -falign-jumps
5435 @itemx -falign-jumps=@var{n}
5436 @opindex falign-jumps
5437 Align branch targets to a power-of-two boundary, for branch targets
5438 where the targets can only be reached by jumping, skipping up to @var{n}
5439 bytes like @option{-falign-functions}.  In this case, no dummy operations
5440 need be executed.
5441
5442 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
5443 equivalent and mean that loops will not be aligned.
5444
5445 If @var{n} is not specified or is zero, use a machine-dependent default.
5446
5447 Enabled at levels @option{-O2}, @option{-O3}.
5448
5449 @item -funit-at-a-time
5450 @opindex funit-at-a-time
5451 Parse the whole compilation unit before starting to produce code.
5452 This allows some extra optimizations to take place but consumes
5453 more memory (in general).  There are some compatibility issues
5454 with @emph{unit-at-a-time} mode:
5455 @itemize @bullet
5456 @item
5457 enabling @emph{unit-at-a-time} mode may change the order
5458 in which functions, variables, and top-level @code{asm} statements
5459 are emitted, and will likely break code relying on some particular
5460 ordering.  The majority of such top-level @code{asm} statements,
5461 though, can be replaced by @code{section} attributes.  The
5462 @option{fno-toplevel-reorder} option may be used to keep the ordering
5463 used in the input file, at the cost of some optimizations.
5464
5465 @item
5466 @emph{unit-at-a-time} mode removes unreferenced static variables
5467 and functions.  This may result in undefined references
5468 when an @code{asm} statement refers directly to variables or functions
5469 that are otherwise unused.  In that case either the variable/function
5470 shall be listed as an operand of the @code{asm} statement operand or,
5471 in the case of top-level @code{asm} statements the attribute @code{used}
5472 shall be used on the declaration.
5473
5474 @item
5475 Static functions now can use non-standard passing conventions that
5476 may break @code{asm} statements calling functions directly.  Again,
5477 attribute @code{used} will prevent this behavior.
5478 @end itemize
5479
5480 As a temporary workaround, @option{-fno-unit-at-a-time} can be used,
5481 but this scheme may not be supported by future releases of GCC@.
5482
5483 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5484
5485 @item -fno-toplevel-reorder
5486 Do not reorder top-level functions, variables, and @code{asm}
5487 statements.  Output them in the same order that they appear in the
5488 input file.  When this option is used, unreferenced static variables
5489 will not be removed.  This option is intended to support existing code
5490 which relies on a particular ordering.  For new code, it is better to
5491 use attributes.
5492
5493 @item -fweb
5494 @opindex fweb
5495 Constructs webs as commonly used for register allocation purposes and assign
5496 each web individual pseudo register.  This allows the register allocation pass
5497 to operate on pseudos directly, but also strengthens several other optimization
5498 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
5499 however, make debugging impossible, since variables will no longer stay in a
5500 ``home register''.
5501
5502 Enabled by default with @option{-funroll-loops}.
5503
5504 @item -fwhole-program
5505 @opindex fwhole-program
5506 Assume that the current compilation unit represents whole program being
5507 compiled.  All public functions and variables with the exception of @code{main}
5508 and those merged by attribute @code{externally_visible} become static functions
5509 and in a affect gets more aggressively optimized by interprocedural optimizers.
5510 While this option is equivalent to proper use of @code{static} keyword for
5511 programs consisting of single file, in combination with option
5512 @option{--combine} this flag can be used to compile most of smaller scale C
5513 programs since the functions and variables become local for the whole combined
5514 compilation unit, not for the single source file itself.
5515
5516
5517 @item -fno-cprop-registers
5518 @opindex fno-cprop-registers
5519 After register allocation and post-register allocation instruction splitting,
5520 we perform a copy-propagation pass to try to reduce scheduling dependencies
5521 and occasionally eliminate the copy.
5522
5523 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
5524
5525 @item -fprofile-generate
5526 @opindex fprofile-generate
5527
5528 Enable options usually used for instrumenting application to produce
5529 profile useful for later recompilation with profile feedback based
5530 optimization.  You must use @option{-fprofile-generate} both when
5531 compiling and when linking your program.
5532
5533 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
5534
5535 @item -fprofile-use
5536 @opindex fprofile-use
5537 Enable profile feedback directed optimizations, and optimizations
5538 generally profitable only with profile feedback available.
5539
5540 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
5541 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}
5542
5543 @end table
5544
5545 The following options control compiler behavior regarding floating
5546 point arithmetic.  These options trade off between speed and
5547 correctness.  All must be specifically enabled.
5548
5549 @table @gcctabopt
5550 @item -ffloat-store
5551 @opindex ffloat-store
5552 Do not store floating point variables in registers, and inhibit other
5553 options that might change whether a floating point value is taken from a
5554 register or memory.
5555
5556 @cindex floating point precision
5557 This option prevents undesirable excess precision on machines such as
5558 the 68000 where the floating registers (of the 68881) keep more
5559 precision than a @code{double} is supposed to have.  Similarly for the
5560 x86 architecture.  For most programs, the excess precision does only
5561 good, but a few programs rely on the precise definition of IEEE floating
5562 point.  Use @option{-ffloat-store} for such programs, after modifying
5563 them to store all pertinent intermediate computations into variables.
5564
5565 @item -ffast-math
5566 @opindex ffast-math
5567 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations}, @*
5568 @option{-fno-trapping-math}, @option{-ffinite-math-only},
5569 @option{-fno-rounding-math}, @option{-fno-signaling-nans}
5570 and @option{fcx-limited-range}.
5571
5572 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
5573
5574 This option should never be turned on by any @option{-O} option since
5575 it can result in incorrect output for programs which depend on
5576 an exact implementation of IEEE or ISO rules/specifications for
5577 math functions.
5578
5579 @item -fno-math-errno
5580 @opindex fno-math-errno
5581 Do not set ERRNO after calling math functions that are executed
5582 with a single instruction, e.g., sqrt.  A program that relies on
5583 IEEE exceptions for math error handling may want to use this flag
5584 for speed while maintaining IEEE arithmetic compatibility.
5585
5586 This option should never be turned on by any @option{-O} option since
5587 it can result in incorrect output for programs which depend on
5588 an exact implementation of IEEE or ISO rules/specifications for
5589 math functions.
5590
5591 The default is @option{-fmath-errno}.
5592
5593 On Darwin systems, the math library never sets @code{errno}.  There is therefore
5594 no reason for the compiler to consider the possibility that it might,
5595 and @option{-fno-math-errno} is the default.
5596
5597 @item -funsafe-math-optimizations
5598 @opindex funsafe-math-optimizations
5599 Allow optimizations for floating-point arithmetic that (a) assume
5600 that arguments and results are valid and (b) may violate IEEE or
5601 ANSI standards.  When used at link-time, it may include libraries
5602 or startup files that change the default FPU control word or other
5603 similar optimizations.
5604
5605 This option should never be turned on by any @option{-O} option since
5606 it can result in incorrect output for programs which depend on
5607 an exact implementation of IEEE or ISO rules/specifications for
5608 math functions.
5609
5610 The default is @option{-fno-unsafe-math-optimizations}.
5611
5612 @item -ffinite-math-only
5613 @opindex ffinite-math-only
5614 Allow optimizations for floating-point arithmetic that assume
5615 that arguments and results are not NaNs or +-Infs.
5616
5617 This option should never be turned on by any @option{-O} option since
5618 it can result in incorrect output for programs which depend on
5619 an exact implementation of IEEE or ISO rules/specifications.
5620
5621 The default is @option{-fno-finite-math-only}.
5622
5623 @item -fno-trapping-math
5624 @opindex fno-trapping-math
5625 Compile code assuming that floating-point operations cannot generate
5626 user-visible traps.  These traps include division by zero, overflow,
5627 underflow, inexact result and invalid operation.  This option implies
5628 @option{-fno-signaling-nans}.  Setting this option may allow faster
5629 code if one relies on ``non-stop'' IEEE arithmetic, for example.
5630
5631 This option should never be turned on by any @option{-O} option since
5632 it can result in incorrect output for programs which depend on
5633 an exact implementation of IEEE or ISO rules/specifications for
5634 math functions.
5635
5636 The default is @option{-ftrapping-math}.
5637
5638 @item -frounding-math
5639 @opindex frounding-math
5640 Disable transformations and optimizations that assume default floating
5641 point rounding behavior.  This is round-to-zero for all floating point
5642 to integer conversions, and round-to-nearest for all other arithmetic
5643 truncations.  This option should be specified for programs that change
5644 the FP rounding mode dynamically, or that may be executed with a
5645 non-default rounding mode.  This option disables constant folding of
5646 floating point expressions at compile-time (which may be affected by
5647 rounding mode) and arithmetic transformations that are unsafe in the
5648 presence of sign-dependent rounding modes.
5649
5650 The default is @option{-fno-rounding-math}.
5651
5652 This option is experimental and does not currently guarantee to
5653 disable all GCC optimizations that are affected by rounding mode.
5654 Future versions of GCC may provide finer control of this setting
5655 using C99's @code{FENV_ACCESS} pragma.  This command line option
5656 will be used to specify the default state for @code{FENV_ACCESS}.
5657
5658 @item -frtl-abstract-sequences
5659 @opindex frtl-abstract-sequences
5660 It is a size optimization method. This option is to find identical
5661 sequences of code, which can be turned into pseudo-procedures  and
5662 then  replace  all  occurrences with  calls to  the  newly created
5663 subroutine. It is kind of an opposite of @option{-finline-functions}.
5664 This optimization runs at RTL level.
5665
5666 @item -fsignaling-nans
5667 @opindex fsignaling-nans
5668 Compile code assuming that IEEE signaling NaNs may generate user-visible
5669 traps during floating-point operations.  Setting this option disables
5670 optimizations that may change the number of exceptions visible with
5671 signaling NaNs.  This option implies @option{-ftrapping-math}.
5672
5673 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
5674 be defined.
5675
5676 The default is @option{-fno-signaling-nans}.
5677
5678 This option is experimental and does not currently guarantee to
5679 disable all GCC optimizations that affect signaling NaN behavior.
5680
5681 @item -fsingle-precision-constant
5682 @opindex fsingle-precision-constant
5683 Treat floating point constant as single precision constant instead of
5684 implicitly converting it to double precision constant.
5685
5686 @item -fcx-limited-range
5687 @itemx -fno-cx-limited-range
5688 @opindex fcx-limited-range
5689 @opindex fno-cx-limited-range
5690 When enabled, this option states that a range reduction step is not
5691 needed when performing complex division.  The default is
5692 @option{-fno-cx-limited-range}, but is enabled by @option{-ffast-math}.
5693
5694 This option controls the default setting of the ISO C99 
5695 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
5696 all languages.
5697
5698 @end table
5699
5700 The following options control optimizations that may improve
5701 performance, but are not enabled by any @option{-O} options.  This
5702 section includes experimental options that may produce broken code.
5703
5704 @table @gcctabopt
5705 @item -fbranch-probabilities
5706 @opindex fbranch-probabilities
5707 After running a program compiled with @option{-fprofile-arcs}
5708 (@pxref{Debugging Options,, Options for Debugging Your Program or
5709 @command{gcc}}), you can compile it a second time using
5710 @option{-fbranch-probabilities}, to improve optimizations based on
5711 the number of times each branch was taken.  When the program
5712 compiled with @option{-fprofile-arcs} exits it saves arc execution
5713 counts to a file called @file{@var{sourcename}.gcda} for each source
5714 file  The information in this data file is very dependent on the
5715 structure of the generated code, so you must use the same source code
5716 and the same optimization options for both compilations.
5717
5718 With @option{-fbranch-probabilities}, GCC puts a
5719 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
5720 These can be used to improve optimization.  Currently, they are only
5721 used in one place: in @file{reorg.c}, instead of guessing which path a
5722 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
5723 exactly determine which path is taken more often.
5724
5725 @item -fprofile-values
5726 @opindex fprofile-values
5727 If combined with @option{-fprofile-arcs}, it adds code so that some
5728 data about values of expressions in the program is gathered.
5729
5730 With @option{-fbranch-probabilities}, it reads back the data gathered
5731 from profiling values of expressions and adds @samp{REG_VALUE_PROFILE}
5732 notes to instructions for their later usage in optimizations.
5733
5734 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
5735
5736 @item -fvpt
5737 @opindex fvpt
5738 If combined with @option{-fprofile-arcs}, it instructs the compiler to add
5739 a code to gather information about values of expressions.
5740
5741 With @option{-fbranch-probabilities}, it reads back the data gathered
5742 and actually performs the optimizations based on them.
5743 Currently the optimizations include specialization of division operation
5744 using the knowledge about the value of the denominator.
5745
5746 @item -frename-registers
5747 @opindex frename-registers
5748 Attempt to avoid false dependencies in scheduled code by making use
5749 of registers left over after register allocation.  This optimization
5750 will most benefit processors with lots of registers.  Depending on the
5751 debug information format adopted by the target, however, it can
5752 make debugging impossible, since variables will no longer stay in
5753 a ``home register''.
5754
5755 Enabled by default with @option{-funroll-loops}.
5756
5757 @item -ftracer
5758 @opindex ftracer
5759 Perform tail duplication to enlarge superblock size.  This transformation
5760 simplifies the control flow of the function allowing other optimizations to do
5761 better job.
5762
5763 Enabled with @option{-fprofile-use}.
5764
5765 @item -funroll-loops
5766 @opindex funroll-loops
5767 Unroll loops whose number of iterations can be determined at compile time or
5768 upon entry to the loop.  @option{-funroll-loops} implies
5769 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}. 
5770 It also turns on complete loop peeling (i.e.@: complete removal of loops with
5771 small constant number of iterations).  This option makes code larger, and may
5772 or may not make it run faster.
5773
5774 Enabled with @option{-fprofile-use}.
5775
5776 @item -funroll-all-loops
5777 @opindex funroll-all-loops
5778 Unroll all loops, even if their number of iterations is uncertain when
5779 the loop is entered.  This usually makes programs run more slowly.
5780 @option{-funroll-all-loops} implies the same options as
5781 @option{-funroll-loops}.
5782
5783 @item -fpeel-loops
5784 @opindex fpeel-loops
5785 Peels the loops for that there is enough information that they do not
5786 roll much (from profile feedback).  It also turns on complete loop peeling
5787 (i.e.@: complete removal of loops with small constant number of iterations).
5788
5789 Enabled with @option{-fprofile-use}.
5790
5791 @item -fmove-loop-invariants
5792 @opindex fmove-loop-invariants
5793 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
5794 at level @option{-O1}
5795
5796 @item -funswitch-loops
5797 @opindex funswitch-loops
5798 Move branches with loop invariant conditions out of the loop, with duplicates
5799 of the loop on both branches (modified according to result of the condition).
5800
5801 @item -ffunction-sections
5802 @itemx -fdata-sections
5803 @opindex ffunction-sections
5804 @opindex fdata-sections
5805 Place each function or data item into its own section in the output
5806 file if the target supports arbitrary sections.  The name of the
5807 function or the name of the data item determines the section's name
5808 in the output file.
5809
5810 Use these options on systems where the linker can perform optimizations
5811 to improve locality of reference in the instruction space.  Most systems
5812 using the ELF object format and SPARC processors running Solaris 2 have
5813 linkers with such optimizations.  AIX may have these optimizations in
5814 the future.
5815
5816 Only use these options when there are significant benefits from doing
5817 so.  When you specify these options, the assembler and linker will
5818 create larger object and executable files and will also be slower.
5819 You will not be able to use @code{gprof} on all systems if you
5820 specify this option and you may have problems with debugging if
5821 you specify both this option and @option{-g}.
5822
5823 @item -fbranch-target-load-optimize
5824 @opindex fbranch-target-load-optimize
5825 Perform branch target register load optimization before prologue / epilogue
5826 threading.
5827 The use of target registers can typically be exposed only during reload,
5828 thus hoisting loads out of loops and doing inter-block scheduling needs
5829 a separate optimization pass.
5830
5831 @item -fbranch-target-load-optimize2
5832 @opindex fbranch-target-load-optimize2
5833 Perform branch target register load optimization after prologue / epilogue
5834 threading.
5835
5836 @item -fbtr-bb-exclusive
5837 @opindex fbtr-bb-exclusive
5838 When performing branch target register load optimization, don't reuse
5839 branch target registers in within any basic block.
5840
5841 @item -fstack-protector
5842 Emit extra code to check for buffer overflows, such as stack smashing
5843 attacks.  This is done by adding a guard variable to functions with
5844 vulnerable objects.  This includes functions that call alloca, and
5845 functions with buffers larger than 8 bytes.  The guards are initialized
5846 when a function is entered and then checked when the function exits.
5847 If a guard check fails, an error message is printed and the program exits.
5848
5849 @item -fstack-protector-all
5850 Like @option{-fstack-protector} except that all functions are protected.
5851
5852 @item -fsection-anchors
5853 @opindex fsection-anchors
5854 Try to reduce the number of symbolic address calculations by using
5855 shared ``anchor'' symbols to address nearby objects.  This transformation
5856 can help to reduce the number of GOT entries and GOT accesses on some
5857 targets.
5858
5859 For example, the implementation of the following function @code{foo}:
5860
5861 @smallexample
5862 static int a, b, c;
5863 int foo (void) @{ return a + b + c; @}
5864 @end smallexample
5865
5866 would usually calculate the addresses of all three variables, but if you
5867 compile it with @option{-fsection-anchors}, it will access the variables
5868 from a common anchor point instead.  The effect is similar to the
5869 following pseudocode (which isn't valid C):
5870
5871 @smallexample
5872 int foo (void)
5873 @{
5874   register int *xr = &x;
5875   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
5876 @}
5877 @end smallexample
5878
5879 Not all targets support this option.
5880
5881 @item --param @var{name}=@var{value}
5882 @opindex param
5883 In some places, GCC uses various constants to control the amount of
5884 optimization that is done.  For example, GCC will not inline functions
5885 that contain more that a certain number of instructions.  You can
5886 control some of these constants on the command-line using the
5887 @option{--param} option.
5888
5889 The names of specific parameters, and the meaning of the values, are
5890 tied to the internals of the compiler, and are subject to change
5891 without notice in future releases.
5892
5893 In each case, the @var{value} is an integer.  The allowable choices for
5894 @var{name} are given in the following table:
5895
5896 @table @gcctabopt
5897 @item salias-max-implicit-fields
5898 The maximum number of fields in a variable without direct
5899 structure accesses for which structure aliasing will consider trying 
5900 to track each field.  The default is 5
5901
5902 @item salias-max-array-elements
5903 The maximum number of elements an array can have and its elements
5904 still be tracked individually by structure aliasing. The default is 4
5905
5906 @item sra-max-structure-size
5907 The maximum structure size, in bytes, at which the scalar replacement
5908 of aggregates (SRA) optimization will perform block copies.  The
5909 default value, 0, implies that GCC will select the most appropriate
5910 size itself.
5911
5912 @item sra-field-structure-ratio
5913 The threshold ratio (as a percentage) between instantiated fields and
5914 the complete structure size.  We say that if the ratio of the number
5915 of bytes in instantiated fields to the number of bytes in the complete
5916 structure exceeds this parameter, then block copies are not used.  The
5917 default is 75.
5918
5919 @item max-crossjump-edges
5920 The maximum number of incoming edges to consider for crossjumping.
5921 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
5922 the number of edges incoming to each block.  Increasing values mean
5923 more aggressive optimization, making the compile time increase with
5924 probably small improvement in executable size.
5925
5926 @item min-crossjump-insns
5927 The minimum number of instructions which must be matched at the end
5928 of two blocks before crossjumping will be performed on them.  This
5929 value is ignored in the case where all instructions in the block being
5930 crossjumped from are matched.  The default value is 5.
5931
5932 @item max-grow-copy-bb-insns
5933 The maximum code size expansion factor when copying basic blocks
5934 instead of jumping.  The expansion is relative to a jump instruction.
5935 The default value is 8.
5936
5937 @item max-goto-duplication-insns
5938 The maximum number of instructions to duplicate to a block that jumps
5939 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
5940 passes, GCC factors computed gotos early in the compilation process,
5941 and unfactors them as late as possible.  Only computed jumps at the
5942 end of a basic blocks with no more than max-goto-duplication-insns are
5943 unfactored.  The default value is 8.
5944
5945 @item max-delay-slot-insn-search
5946 The maximum number of instructions to consider when looking for an
5947 instruction to fill a delay slot.  If more than this arbitrary number of
5948 instructions is searched, the time savings from filling the delay slot
5949 will be minimal so stop searching.  Increasing values mean more
5950 aggressive optimization, making the compile time increase with probably
5951 small improvement in executable run time.
5952
5953 @item max-delay-slot-live-search
5954 When trying to fill delay slots, the maximum number of instructions to
5955 consider when searching for a block with valid live register
5956 information.  Increasing this arbitrarily chosen value means more
5957 aggressive optimization, increasing the compile time.  This parameter
5958 should be removed when the delay slot code is rewritten to maintain the
5959 control-flow graph.
5960
5961 @item max-gcse-memory
5962 The approximate maximum amount of memory that will be allocated in
5963 order to perform the global common subexpression elimination
5964 optimization.  If more memory than specified is required, the
5965 optimization will not be done.
5966
5967 @item max-gcse-passes
5968 The maximum number of passes of GCSE to run.  The default is 1.
5969
5970 @item max-pending-list-length
5971 The maximum number of pending dependencies scheduling will allow
5972 before flushing the current state and starting over.  Large functions
5973 with few branches or calls can create excessively large lists which
5974 needlessly consume memory and resources.
5975
5976 @item max-inline-insns-single
5977 Several parameters control the tree inliner used in gcc.
5978 This number sets the maximum number of instructions (counted in GCC's
5979 internal representation) in a single function that the tree inliner
5980 will consider for inlining.  This only affects functions declared
5981 inline and methods implemented in a class declaration (C++).
5982 The default value is 450.
5983
5984 @item max-inline-insns-auto
5985 When you use @option{-finline-functions} (included in @option{-O3}),
5986 a lot of functions that would otherwise not be considered for inlining
5987 by the compiler will be investigated.  To those functions, a different
5988 (more restrictive) limit compared to functions declared inline can
5989 be applied.
5990 The default value is 90.
5991
5992 @item large-function-insns
5993 The limit specifying really large functions.  For functions larger than this
5994 limit after inlining inlining is constrained by
5995 @option{--param large-function-growth}.  This parameter is useful primarily
5996 to avoid extreme compilation time caused by non-linear algorithms used by the
5997 backend.
5998 This parameter is ignored when @option{-funit-at-a-time} is not used.
5999 The default value is 2700.
6000
6001 @item large-function-growth
6002 Specifies maximal growth of large function caused by inlining in percents.
6003 This parameter is ignored when @option{-funit-at-a-time} is not used.
6004 The default value is 100 which limits large function growth to 2.0 times
6005 the original size.
6006
6007 @item large-unit-insns
6008 The limit specifying large translation unit.  Growth caused by inlining of
6009 units larger than this limit is limited by @option{--param inline-unit-growth}.
6010 For small units this might be too tight (consider unit consisting of function A
6011 that is inline and B that just calls A three time.  If B is small relative to
6012 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
6013 large units consisting of small inlininable functions however the overall unit
6014 growth limit is needed to avoid exponential explosion of code size.  Thus for
6015 smaller units, the size is increased to @option{--param large-unit-insns}
6016 before applying @option{--param inline-unit-growth}.  The default is 10000
6017
6018 @item inline-unit-growth
6019 Specifies maximal overall growth of the compilation unit caused by inlining.
6020 This parameter is ignored when @option{-funit-at-a-time} is not used.
6021 The default value is 50 which limits unit growth to 1.5 times the original
6022 size.
6023
6024 @item max-inline-insns-recursive
6025 @itemx max-inline-insns-recursive-auto
6026 Specifies maximum number of instructions out-of-line copy of self recursive inline
6027 function can grow into by performing recursive inlining.
6028
6029 For functions declared inline @option{--param max-inline-insns-recursive} is
6030 taken into account.  For function not declared inline, recursive inlining
6031 happens only when @option{-finline-functions} (included in @option{-O3}) is
6032 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
6033 default value is 450.
6034
6035 @item max-inline-recursive-depth
6036 @itemx max-inline-recursive-depth-auto
6037 Specifies maximum recursion depth used by the recursive inlining.
6038
6039 For functions declared inline @option{--param max-inline-recursive-depth} is
6040 taken into account.  For function not declared inline, recursive inlining
6041 happens only when @option{-finline-functions} (included in @option{-O3}) is
6042 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
6043 default value is 450.
6044
6045 @item min-inline-recursive-probability
6046 Recursive inlining is profitable only for function having deep recursion
6047 in average and can hurt for function having little recursion depth by
6048 increasing the prologue size or complexity of function body to other
6049 optimizers.
6050
6051 When profile feedback is available (see @option{-fprofile-generate}) the actual
6052 recursion depth can be guessed from probability that function will recurse via
6053 given call expression.  This parameter limits inlining only to call expression
6054 whose probability exceeds given threshold (in percents).  The default value is
6055 10.
6056
6057 @item inline-call-cost
6058 Specify cost of call instruction relative to simple arithmetics operations
6059 (having cost of 1).  Increasing this cost disqualifies inlining of non-leaf
6060 functions and at the same time increases size of leaf function that is believed to
6061 reduce function size by being inlined.  In effect it increases amount of
6062 inlining for code having large abstraction penalty (many functions that just
6063 pass the arguments to other functions) and decrease inlining for code with low
6064 abstraction penalty.  The default value is 16.
6065
6066 @item max-unrolled-insns
6067 The maximum number of instructions that a loop should have if that loop
6068 is unrolled, and if the loop is unrolled, it determines how many times
6069 the loop code is unrolled.
6070
6071 @item max-average-unrolled-insns
6072 The maximum number of instructions biased by probabilities of their execution
6073 that a loop should have if that loop is unrolled, and if the loop is unrolled,
6074 it determines how many times the loop code is unrolled.
6075
6076 @item max-unroll-times
6077 The maximum number of unrollings of a single loop.
6078
6079 @item max-peeled-insns
6080 The maximum number of instructions that a loop should have if that loop
6081 is peeled, and if the loop is peeled, it determines how many times
6082 the loop code is peeled.
6083
6084 @item max-peel-times
6085 The maximum number of peelings of a single loop.
6086
6087 @item max-completely-peeled-insns
6088 The maximum number of insns of a completely peeled loop.
6089
6090 @item max-completely-peel-times
6091 The maximum number of iterations of a loop to be suitable for complete peeling.
6092
6093 @item max-unswitch-insns
6094 The maximum number of insns of an unswitched loop.
6095
6096 @item max-unswitch-level
6097 The maximum number of branches unswitched in a single loop.
6098
6099 @item lim-expensive
6100 The minimum cost of an expensive expression in the loop invariant motion.
6101
6102 @item iv-consider-all-candidates-bound
6103 Bound on number of candidates for induction variables below that
6104 all candidates are considered for each use in induction variable
6105 optimizations.  Only the most relevant candidates are considered
6106 if there are more candidates, to avoid quadratic time complexity.
6107
6108 @item iv-max-considered-uses
6109 The induction variable optimizations give up on loops that contain more
6110 induction variable uses.
6111
6112 @item iv-always-prune-cand-set-bound
6113 If number of candidates in the set is smaller than this value,
6114 we always try to remove unnecessary ivs from the set during its
6115 optimization when a new iv is added to the set.
6116
6117 @item scev-max-expr-size
6118 Bound on size of expressions used in the scalar evolutions analyzer.
6119 Large expressions slow the analyzer.
6120
6121 @item vect-max-version-checks
6122 The maximum number of runtime checks that can be performed when doing
6123 loop versioning in the vectorizer.  See option ftree-vect-loop-version
6124 for more information.
6125
6126 @item max-iterations-to-track
6127
6128 The maximum number of iterations of a loop the brute force algorithm
6129 for analysis of # of iterations of the loop tries to evaluate.
6130
6131 @item hot-bb-count-fraction
6132 Select fraction of the maximal count of repetitions of basic block in program
6133 given basic block needs to have to be considered hot.
6134
6135 @item hot-bb-frequency-fraction
6136 Select fraction of the maximal frequency of executions of basic block in
6137 function given basic block needs to have to be considered hot
6138
6139 @item max-predicted-iterations
6140 The maximum number of loop iterations we predict statically.  This is useful
6141 in cases where function contain single loop with known bound and other loop
6142 with unknown.  We predict the known number of iterations correctly, while
6143 the unknown number of iterations average to roughly 10.  This means that the
6144 loop without bounds would appear artificially cold relative to the other one.
6145
6146 @item tracer-dynamic-coverage
6147 @itemx tracer-dynamic-coverage-feedback
6148
6149 This value is used to limit superblock formation once the given percentage of
6150 executed instructions is covered.  This limits unnecessary code size
6151 expansion.
6152
6153 The @option{tracer-dynamic-coverage-feedback} is used only when profile
6154 feedback is available.  The real profiles (as opposed to statically estimated
6155 ones) are much less balanced allowing the threshold to be larger value.
6156
6157 @item tracer-max-code-growth
6158 Stop tail duplication once code growth has reached given percentage.  This is
6159 rather hokey argument, as most of the duplicates will be eliminated later in
6160 cross jumping, so it may be set to much higher values than is the desired code
6161 growth.
6162
6163 @item tracer-min-branch-ratio
6164
6165 Stop reverse growth when the reverse probability of best edge is less than this
6166 threshold (in percent).
6167
6168 @item tracer-min-branch-ratio
6169 @itemx tracer-min-branch-ratio-feedback
6170
6171 Stop forward growth if the best edge do have probability lower than this
6172 threshold.
6173
6174 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
6175 compilation for profile feedback and one for compilation without.  The value
6176 for compilation with profile feedback needs to be more conservative (higher) in
6177 order to make tracer effective.
6178
6179 @item max-cse-path-length
6180
6181 Maximum number of basic blocks on path that cse considers.  The default is 10.
6182
6183 @item max-cse-insns
6184 The maximum instructions CSE process before flushing. The default is 1000.
6185
6186 @item global-var-threshold
6187
6188 Counts the number of function calls (@var{n}) and the number of
6189 call-clobbered variables (@var{v}).  If @var{n}x@var{v} is larger than this limit, a
6190 single artificial variable will be created to represent all the
6191 call-clobbered variables at function call sites.  This artificial
6192 variable will then be made to alias every call-clobbered variable.
6193 (done as @code{int * size_t} on the host machine; beware overflow).
6194
6195 @item max-aliased-vops
6196
6197 Maximum number of virtual operands allowed to represent aliases
6198 before triggering the alias grouping heuristic.  Alias grouping
6199 reduces compile times and memory consumption needed for aliasing at
6200 the expense of precision loss in alias information.
6201
6202 @item ggc-min-expand
6203
6204 GCC uses a garbage collector to manage its own memory allocation.  This
6205 parameter specifies the minimum percentage by which the garbage
6206 collector's heap should be allowed to expand between collections.
6207 Tuning this may improve compilation speed; it has no effect on code
6208 generation.
6209
6210 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
6211 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of "RAM" is
6212 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
6213 GCC is not able to calculate RAM on a particular platform, the lower
6214 bound of 30% is used.  Setting this parameter and
6215 @option{ggc-min-heapsize} to zero causes a full collection to occur at
6216 every opportunity.  This is extremely slow, but can be useful for
6217 debugging.
6218
6219 @item ggc-min-heapsize
6220
6221 Minimum size of the garbage collector's heap before it begins bothering
6222 to collect garbage.  The first collection occurs after the heap expands
6223 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
6224 tuning this may improve compilation speed, and has no effect on code
6225 generation.
6226
6227 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit which
6228 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
6229 with a lower bound of 4096 (four megabytes) and an upper bound of
6230 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
6231 particular platform, the lower bound is used.  Setting this parameter
6232 very large effectively disables garbage collection.  Setting this
6233 parameter and @option{ggc-min-expand} to zero causes a full collection
6234 to occur at every opportunity.
6235
6236 @item max-reload-search-insns
6237 The maximum number of instruction reload should look backward for equivalent
6238 register.  Increasing values mean more aggressive optimization, making the
6239 compile time increase with probably slightly better performance.  The default
6240 value is 100.
6241
6242 @item max-cselib-memory-locations
6243 The maximum number of memory locations cselib should take into account.
6244 Increasing values mean more aggressive optimization, making the compile time
6245 increase with probably slightly better performance.  The default value is 500.
6246
6247 @item max-flow-memory-locations
6248 Similar as @option{max-cselib-memory-locations} but for dataflow liveness.
6249 The default value is 100.
6250
6251 @item reorder-blocks-duplicate
6252 @itemx reorder-blocks-duplicate-feedback
6253
6254 Used by basic block reordering pass to decide whether to use unconditional
6255 branch or duplicate the code on its destination.  Code is duplicated when its
6256 estimated size is smaller than this value multiplied by the estimated size of
6257 unconditional jump in the hot spots of the program.
6258
6259 The @option{reorder-block-duplicate-feedback} is used only when profile
6260 feedback is available and may be set to higher values than
6261 @option{reorder-block-duplicate} since information about the hot spots is more
6262 accurate.
6263
6264 @item max-sched-ready-insns
6265 The maximum number of instructions ready to be issued the scheduler should
6266 consider at any given time during the first scheduling pass.  Increasing
6267 values mean more thorough searches, making the compilation time increase
6268 with probably little benefit.  The default value is 100.
6269
6270 @item max-sched-region-blocks
6271 The maximum number of blocks in a region to be considered for
6272 interblock scheduling.  The default value is 10.
6273
6274 @item max-sched-region-insns
6275 The maximum number of insns in a region to be considered for
6276 interblock scheduling.  The default value is 100.
6277
6278 @item min-spec-prob
6279 The minimum probability (in percents) of reaching a source block
6280 for interblock speculative scheduling.  The default value is 40.
6281
6282 @item max-sched-extend-regions-iters
6283 The maximum number of iterations through CFG to extend regions.
6284 0 - disable region extension,
6285 N - do at most N iterations.
6286 The default value is 0.
6287
6288 @item max-sched-insn-conflict-delay
6289 The maximum conflict delay for an insn to be considered for speculative motion.
6290 The default value is 3.
6291
6292 @item sched-spec-prob-cutoff
6293 The minimal probability of speculation success (in percents), so that
6294 speculative insn will be scheduled.
6295 The default value is 40.
6296
6297 @item max-last-value-rtl
6298
6299 The maximum size measured as number of RTLs that can be recorded in an expression
6300 in combiner for a pseudo register as last known value of that register.  The default
6301 is 10000.
6302
6303 @item integer-share-limit
6304 Small integer constants can use a shared data structure, reducing the
6305 compiler's memory usage and increasing its speed.  This sets the maximum
6306 value of a shared integer constant's.  The default value is 256.
6307
6308 @item min-virtual-mappings
6309 Specifies the minimum number of virtual mappings in the incremental
6310 SSA updater that should be registered to trigger the virtual mappings
6311 heuristic defined by virtual-mappings-ratio.  The default value is
6312 100.
6313
6314 @item virtual-mappings-ratio
6315 If the number of virtual mappings is virtual-mappings-ratio bigger
6316 than the number of virtual symbols to be updated, then the incremental
6317 SSA updater switches to a full update for those symbols.  The default
6318 ratio is 3.
6319
6320 @item ssp-buffer-size
6321 The minimum size of buffers (i.e. arrays) that will receive stack smashing
6322 protection when @option{-fstack-protection} is used.
6323
6324 @item max-jump-thread-duplication-stmts
6325 Maximum number of statements allowed in a block that needs to be
6326 duplicated when threading jumps.
6327
6328 @item max-fields-for-field-sensitive
6329 Maximum number of fields in a structure we will treat in
6330 a field sensitive manner during pointer analysis.
6331
6332 @end table
6333 @end table
6334
6335 @node Preprocessor Options
6336 @section Options Controlling the Preprocessor
6337 @cindex preprocessor options
6338 @cindex options, preprocessor
6339
6340 These options control the C preprocessor, which is run on each C source
6341 file before actual compilation.
6342
6343 If you use the @option{-E} option, nothing is done except preprocessing.
6344 Some of these options make sense only together with @option{-E} because
6345 they cause the preprocessor output to be unsuitable for actual
6346 compilation.
6347
6348 @table @gcctabopt
6349 @opindex Wp
6350 You can use @option{-Wp,@var{option}} to bypass the compiler driver
6351 and pass @var{option} directly through to the preprocessor.  If
6352 @var{option} contains commas, it is split into multiple options at the
6353 commas.  However, many options are modified, translated or interpreted
6354 by the compiler driver before being passed to the preprocessor, and
6355 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
6356 interface is undocumented and subject to change, so whenever possible
6357 you should avoid using @option{-Wp} and let the driver handle the
6358 options instead.
6359
6360 @item -Xpreprocessor @var{option}
6361 @opindex preprocessor
6362 Pass @var{option} as an option to the preprocessor.  You can use this to
6363 supply system-specific preprocessor options which GCC does not know how to
6364 recognize.
6365
6366 If you want to pass an option that takes an argument, you must use
6367 @option{-Xpreprocessor} twice, once for the option and once for the argument.
6368 @end table
6369
6370 @include cppopts.texi
6371
6372 @node Assembler Options
6373 @section Passing Options to the Assembler
6374
6375 @c prevent bad page break with this line
6376 You can pass options to the assembler.
6377
6378 @table @gcctabopt
6379 @item -Wa,@var{option}
6380 @opindex Wa
6381 Pass @var{option} as an option to the assembler.  If @var{option}
6382 contains commas, it is split into multiple options at the commas.
6383
6384 @item -Xassembler @var{option}
6385 @opindex Xassembler
6386 Pass @var{option} as an option to the assembler.  You can use this to
6387 supply system-specific assembler options which GCC does not know how to
6388 recognize.
6389
6390 If you want to pass an option that takes an argument, you must use
6391 @option{-Xassembler} twice, once for the option and once for the argument.
6392
6393 @end table
6394
6395 @node Link Options
6396 @section Options for Linking
6397 @cindex link options
6398 @cindex options, linking
6399
6400 These options come into play when the compiler links object files into
6401 an executable output file.  They are meaningless if the compiler is
6402 not doing a link step.
6403
6404 @table @gcctabopt
6405 @cindex file names
6406 @item @var{object-file-name}
6407 A file name that does not end in a special recognized suffix is
6408 considered to name an object file or library.  (Object files are
6409 distinguished from libraries by the linker according to the file
6410 contents.)  If linking is done, these object files are used as input
6411 to the linker.
6412
6413 @item -c
6414 @itemx -S
6415 @itemx -E
6416 @opindex c
6417 @opindex S
6418 @opindex E
6419 If any of these options is used, then the linker is not run, and
6420 object file names should not be used as arguments.  @xref{Overall
6421 Options}.
6422
6423 @cindex Libraries
6424 @item -l@var{library}
6425 @itemx -l @var{library}
6426 @opindex l
6427 Search the library named @var{library} when linking.  (The second
6428 alternative with the library as a separate argument is only for
6429 POSIX compliance and is not recommended.)
6430
6431 It makes a difference where in the command you write this option; the
6432 linker searches and processes libraries and object files in the order they
6433 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
6434 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
6435 to functions in @samp{z}, those functions may not be loaded.
6436
6437 The linker searches a standard list of directories for the library,
6438 which is actually a file named @file{lib@var{library}.a}.  The linker
6439 then uses this file as if it had been specified precisely by name.
6440
6441 The directories searched include several standard system directories
6442 plus any that you specify with @option{-L}.
6443
6444 Normally the files found this way are library files---archive files
6445 whose members are object files.  The linker handles an archive file by
6446 scanning through it for members which define symbols that have so far
6447 been referenced but not defined.  But if the file that is found is an
6448 ordinary object file, it is linked in the usual fashion.  The only
6449 difference between using an @option{-l} option and specifying a file name
6450 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
6451 and searches several directories.
6452
6453 @item -lobjc
6454 @opindex lobjc
6455 You need this special case of the @option{-l} option in order to
6456 link an Objective-C or Objective-C++ program.
6457
6458 @item -nostartfiles
6459 @opindex nostartfiles
6460 Do not use the standard system startup files when linking.
6461 The standard system libraries are used normally, unless @option{-nostdlib}
6462 or @option{-nodefaultlibs} is used.
6463
6464 @item -nodefaultlibs
6465 @opindex nodefaultlibs
6466 Do not use the standard system libraries when linking.
6467 Only the libraries you specify will be passed to the linker.
6468 The standard startup files are used normally, unless @option{-nostartfiles}
6469 is used.  The compiler may generate calls to @code{memcmp},
6470 @code{memset}, @code{memcpy} and @code{memmove}.
6471 These entries are usually resolved by entries in
6472 libc.  These entry points should be supplied through some other
6473 mechanism when this option is specified.
6474
6475 @item -nostdlib
6476 @opindex nostdlib
6477 Do not use the standard system startup files or libraries when linking.
6478 No startup files and only the libraries you specify will be passed to
6479 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
6480 @code{memcpy} and @code{memmove}.
6481 These entries are usually resolved by entries in
6482 libc.  These entry points should be supplied through some other
6483 mechanism when this option is specified.
6484
6485 @cindex @option{-lgcc}, use with @option{-nostdlib}
6486 @cindex @option{-nostdlib} and unresolved references
6487 @cindex unresolved references and @option{-nostdlib}
6488 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
6489 @cindex @option{-nodefaultlibs} and unresolved references
6490 @cindex unresolved references and @option{-nodefaultlibs}
6491 One of the standard libraries bypassed by @option{-nostdlib} and
6492 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
6493 that GCC uses to overcome shortcomings of particular machines, or special
6494 needs for some languages.
6495 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
6496 Collection (GCC) Internals},
6497 for more discussion of @file{libgcc.a}.)
6498 In most cases, you need @file{libgcc.a} even when you want to avoid
6499 other standard libraries.  In other words, when you specify @option{-nostdlib}
6500 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
6501 This ensures that you have no unresolved references to internal GCC
6502 library subroutines.  (For example, @samp{__main}, used to ensure C++
6503 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
6504 GNU Compiler Collection (GCC) Internals}.)
6505
6506 @item -pie
6507 @opindex pie
6508 Produce a position independent executable on targets which support it.
6509 For predictable results, you must also specify the same set of options
6510 that were used to generate code (@option{-fpie}, @option{-fPIE},
6511 or model suboptions) when you specify this option.
6512
6513 @item -rdynamic
6514 @opindex rdynamic
6515 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
6516 that support it. This instructs the linker to add all symbols, not
6517 only used ones, to the dynamic symbol table. This option is needed
6518 for some uses of @code{dlopen} or to allow obtaining backtraces
6519 from within a program.
6520
6521 @item -s
6522 @opindex s
6523 Remove all symbol table and relocation information from the executable.
6524
6525 @item -static
6526 @opindex static
6527 On systems that support dynamic linking, this prevents linking with the shared
6528 libraries.  On other systems, this option has no effect.
6529
6530 @item -shared
6531 @opindex shared
6532 Produce a shared object which can then be linked with other objects to
6533 form an executable.  Not all systems support this option.  For predictable
6534 results, you must also specify the same set of options that were used to
6535 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
6536 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
6537 needs to build supplementary stub code for constructors to work.  On
6538 multi-libbed systems, @samp{gcc -shared} must select the correct support
6539 libraries to link against.  Failing to supply the correct flags may lead
6540 to subtle defects.  Supplying them in cases where they are not necessary
6541 is innocuous.}
6542
6543 @item -shared-libgcc
6544 @itemx -static-libgcc
6545 @opindex shared-libgcc
6546 @opindex static-libgcc
6547 On systems that provide @file{libgcc} as a shared library, these options
6548 force the use of either the shared or static version respectively.
6549 If no shared version of @file{libgcc} was built when the compiler was
6550 configured, these options have no effect.
6551
6552 There are several situations in which an application should use the
6553 shared @file{libgcc} instead of the static version.  The most common
6554 of these is when the application wishes to throw and catch exceptions
6555 across different shared libraries.  In that case, each of the libraries
6556 as well as the application itself should use the shared @file{libgcc}.
6557
6558 Therefore, the G++ and GCJ drivers automatically add
6559 @option{-shared-libgcc} whenever you build a shared library or a main
6560 executable, because C++ and Java programs typically use exceptions, so
6561 this is the right thing to do.
6562
6563 If, instead, you use the GCC driver to create shared libraries, you may
6564 find that they will not always be linked with the shared @file{libgcc}.
6565 If GCC finds, at its configuration time, that you have a non-GNU linker
6566 or a GNU linker that does not support option @option{--eh-frame-hdr},
6567 it will link the shared version of @file{libgcc} into shared libraries
6568 by default.  Otherwise, it will take advantage of the linker and optimize
6569 away the linking with the shared version of @file{libgcc}, linking with
6570 the static version of libgcc by default.  This allows exceptions to
6571 propagate through such shared libraries, without incurring relocation
6572 costs at library load time.
6573
6574 However, if a library or main executable is supposed to throw or catch
6575 exceptions, you must link it using the G++ or GCJ driver, as appropriate
6576 for the languages used in the program, or using the option
6577 @option{-shared-libgcc}, such that it is linked with the shared
6578 @file{libgcc}.
6579
6580 @item -symbolic
6581 @opindex symbolic
6582 Bind references to global symbols when building a shared object.  Warn
6583 about any unresolved references (unless overridden by the link editor
6584 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
6585 this option.
6586
6587 @item -Xlinker @var{option}
6588 @opindex Xlinker
6589 Pass @var{option} as an option to the linker.  You can use this to
6590 supply system-specific linker options which GCC does not know how to
6591 recognize.
6592
6593 If you want to pass an option that takes an argument, you must use
6594 @option{-Xlinker} twice, once for the option and once for the argument.
6595 For example, to pass @option{-assert definitions}, you must write
6596 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
6597 @option{-Xlinker "-assert definitions"}, because this passes the entire
6598 string as a single argument, which is not what the linker expects.
6599
6600 @item -Wl,@var{option}
6601 @opindex Wl
6602 Pass @var{option} as an option to the linker.  If @var{option} contains
6603 commas, it is split into multiple options at the commas.
6604
6605 @item -u @var{symbol}
6606 @opindex u
6607 Pretend the symbol @var{symbol} is undefined, to force linking of
6608 library modules to define it.  You can use @option{-u} multiple times with
6609 different symbols to force loading of additional library modules.
6610 @end table
6611
6612 @node Directory Options
6613 @section Options for Directory Search
6614 @cindex directory options
6615 @cindex options, directory search
6616 @cindex search path
6617
6618 These options specify directories to search for header files, for
6619 libraries and for parts of the compiler:
6620
6621 @table @gcctabopt
6622 @item -I@var{dir}
6623 @opindex I
6624 Add the directory @var{dir} to the head of the list of directories to be
6625 searched for header files.  This can be used to override a system header
6626 file, substituting your own version, since these directories are
6627 searched before the system header file directories.  However, you should
6628 not use this option to add directories that contain vendor-supplied
6629 system header files (use @option{-isystem} for that).  If you use more than
6630 one @option{-I} option, the directories are scanned in left-to-right
6631 order; the standard system directories come after.
6632
6633 If a standard system include directory, or a directory specified with
6634 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
6635 option will be ignored.  The directory will still be searched but as a
6636 system directory at its normal position in the system include chain.
6637 This is to ensure that GCC's procedure to fix buggy system headers and
6638 the ordering for the include_next directive are not inadvertently changed.
6639 If you really need to change the search order for system directories,
6640 use the @option{-nostdinc} and/or @option{-isystem} options.
6641
6642 @item -iquote@var{dir}
6643 @opindex iquote
6644 Add the directory @var{dir} to the head of the list of directories to
6645 be searched for header files only for the case of @samp{#include
6646 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
6647 otherwise just like @option{-I}.
6648
6649 @item -L@var{dir}
6650 @opindex L
6651 Add directory @var{dir} to the list of directories to be searched
6652 for @option{-l}.
6653
6654 @item -B@var{prefix}
6655 @opindex B
6656 This option specifies where to find the executables, libraries,
6657 include files, and data files of the compiler itself.
6658
6659 The compiler driver program runs one or more of the subprograms
6660 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
6661 @var{prefix} as a prefix for each program it tries to run, both with and
6662 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
6663
6664 For each subprogram to be run, the compiler driver first tries the
6665 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
6666 was not specified, the driver tries two standard prefixes, which are
6667 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
6668 those results in a file name that is found, the unmodified program
6669 name is searched for using the directories specified in your
6670 @env{PATH} environment variable.
6671
6672 The compiler will check to see if the path provided by the @option{-B}
6673 refers to a directory, and if necessary it will add a directory
6674 separator character at the end of the path.
6675
6676 @option{-B} prefixes that effectively specify directory names also apply
6677 to libraries in the linker, because the compiler translates these
6678 options into @option{-L} options for the linker.  They also apply to
6679 includes files in the preprocessor, because the compiler translates these
6680 options into @option{-isystem} options for the preprocessor.  In this case,
6681 the compiler appends @samp{include} to the prefix.
6682
6683 The run-time support file @file{libgcc.a} can also be searched for using
6684 the @option{-B} prefix, if needed.  If it is not found there, the two
6685 standard prefixes above are tried, and that is all.  The file is left
6686 out of the link if it is not found by those means.
6687
6688 Another way to specify a prefix much like the @option{-B} prefix is to use
6689 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
6690 Variables}.
6691
6692 As a special kludge, if the path provided by @option{-B} is
6693 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
6694 9, then it will be replaced by @file{[dir/]include}.  This is to help
6695 with boot-strapping the compiler.
6696
6697 @item -specs=@var{file}
6698 @opindex specs
6699 Process @var{file} after the compiler reads in the standard @file{specs}
6700 file, in order to override the defaults that the @file{gcc} driver
6701 program uses when determining what switches to pass to @file{cc1},
6702 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
6703 @option{-specs=@var{file}} can be specified on the command line, and they
6704 are processed in order, from left to right.
6705
6706 @item --sysroot=@var{dir}
6707 @opindex sysroot
6708 Use @var{dir} as the logical root directory for headers and libraries.
6709 For example, if the compiler would normally search for headers in
6710 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
6711 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.  
6712
6713 If you use both this option and the @option{-isysroot} option, then
6714 the @option{--sysroot} option will apply to libraries, but the
6715 @option{-isysroot} option will apply to header files.
6716
6717 The GNU linker (beginning with version 2.16) has the necessary support
6718 for this option.  If your linker does not support this option, the
6719 header file aspect of @option{--sysroot} will still work, but the
6720 library aspect will not.
6721
6722 @item -I-
6723 @opindex I-
6724 This option has been deprecated.  Please use @option{-iquote} instead for
6725 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
6726 Any directories you specify with @option{-I} options before the @option{-I-}
6727 option are searched only for the case of @samp{#include "@var{file}"};
6728 they are not searched for @samp{#include <@var{file}>}.
6729
6730 If additional directories are specified with @option{-I} options after
6731 the @option{-I-}, these directories are searched for all @samp{#include}
6732 directives.  (Ordinarily @emph{all} @option{-I} directories are used
6733 this way.)
6734
6735 In addition, the @option{-I-} option inhibits the use of the current
6736 directory (where the current input file came from) as the first search
6737 directory for @samp{#include "@var{file}"}.  There is no way to
6738 override this effect of @option{-I-}.  With @option{-I.} you can specify
6739 searching the directory which was current when the compiler was
6740 invoked.  That is not exactly the same as what the preprocessor does
6741 by default, but it is often satisfactory.
6742
6743 @option{-I-} does not inhibit the use of the standard system directories
6744 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
6745 independent.
6746 @end table
6747
6748 @c man end
6749
6750 @node Spec Files
6751 @section Specifying subprocesses and the switches to pass to them
6752 @cindex Spec Files
6753
6754 @command{gcc} is a driver program.  It performs its job by invoking a
6755 sequence of other programs to do the work of compiling, assembling and
6756 linking.  GCC interprets its command-line parameters and uses these to
6757 deduce which programs it should invoke, and which command-line options
6758 it ought to place on their command lines.  This behavior is controlled
6759 by @dfn{spec strings}.  In most cases there is one spec string for each
6760 program that GCC can invoke, but a few programs have multiple spec
6761 strings to control their behavior.  The spec strings built into GCC can
6762 be overridden by using the @option{-specs=} command-line switch to specify
6763 a spec file.
6764
6765 @dfn{Spec files} are plaintext files that are used to construct spec
6766 strings.  They consist of a sequence of directives separated by blank
6767 lines.  The type of directive is determined by the first non-whitespace
6768 character on the line and it can be one of the following:
6769
6770 @table @code
6771 @item %@var{command}
6772 Issues a @var{command} to the spec file processor.  The commands that can
6773 appear here are:
6774
6775 @table @code
6776 @item %include <@var{file}>
6777 @cindex %include
6778 Search for @var{file} and insert its text at the current point in the
6779 specs file.
6780
6781 @item %include_noerr <@var{file}>
6782 @cindex %include_noerr
6783 Just like @samp{%include}, but do not generate an error message if the include
6784 file cannot be found.
6785
6786 @item %rename @var{old_name} @var{new_name}
6787 @cindex %rename
6788 Rename the spec string @var{old_name} to @var{new_name}.
6789
6790 @end table
6791
6792 @item *[@var{spec_name}]:
6793 This tells the compiler to create, override or delete the named spec
6794 string.  All lines after this directive up to the next directive or
6795 blank line are considered to be the text for the spec string.  If this
6796 results in an empty string then the spec will be deleted.  (Or, if the
6797 spec did not exist, then nothing will happened.)  Otherwise, if the spec
6798 does not currently exist a new spec will be created.  If the spec does
6799 exist then its contents will be overridden by the text of this
6800 directive, unless the first character of that text is the @samp{+}
6801 character, in which case the text will be appended to the spec.
6802
6803 @item [@var{suffix}]:
6804 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
6805 and up to the next directive or blank line are considered to make up the
6806 spec string for the indicated suffix.  When the compiler encounters an
6807 input file with the named suffix, it will processes the spec string in
6808 order to work out how to compile that file.  For example:
6809
6810 @smallexample
6811 .ZZ:
6812 z-compile -input %i
6813 @end smallexample
6814
6815 This says that any input file whose name ends in @samp{.ZZ} should be
6816 passed to the program @samp{z-compile}, which should be invoked with the
6817 command-line switch @option{-input} and with the result of performing the
6818 @samp{%i} substitution.  (See below.)
6819
6820 As an alternative to providing a spec string, the text that follows a
6821 suffix directive can be one of the following:
6822
6823 @table @code
6824 @item @@@var{language}
6825 This says that the suffix is an alias for a known @var{language}.  This is
6826 similar to using the @option{-x} command-line switch to GCC to specify a
6827 language explicitly.  For example:
6828
6829 @smallexample
6830 .ZZ:
6831 @@c++
6832 @end smallexample
6833
6834 Says that .ZZ files are, in fact, C++ source files.
6835
6836 @item #@var{name}
6837 This causes an error messages saying:
6838
6839 @smallexample
6840 @var{name} compiler not installed on this system.
6841 @end smallexample
6842 @end table
6843
6844 GCC already has an extensive list of suffixes built into it.
6845 This directive will add an entry to the end of the list of suffixes, but
6846 since the list is searched from the end backwards, it is effectively
6847 possible to override earlier entries using this technique.
6848
6849 @end table
6850
6851 GCC has the following spec strings built into it.  Spec files can
6852 override these strings or create their own.  Note that individual
6853 targets can also add their own spec strings to this list.
6854
6855 @smallexample
6856 asm          Options to pass to the assembler
6857 asm_final    Options to pass to the assembler post-processor
6858 cpp          Options to pass to the C preprocessor
6859 cc1          Options to pass to the C compiler
6860 cc1plus      Options to pass to the C++ compiler
6861 endfile      Object files to include at the end of the link
6862 link         Options to pass to the linker
6863 lib          Libraries to include on the command line to the linker
6864 libgcc       Decides which GCC support library to pass to the linker
6865 linker       Sets the name of the linker
6866 predefines   Defines to be passed to the C preprocessor
6867 signed_char  Defines to pass to CPP to say whether @code{char} is signed
6868              by default
6869 startfile    Object files to include at the start of the link
6870 @end smallexample
6871
6872 Here is a small example of a spec file:
6873
6874 @smallexample
6875 %rename lib                 old_lib
6876
6877 *lib:
6878 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
6879 @end smallexample
6880
6881 This example renames the spec called @samp{lib} to @samp{old_lib} and
6882 then overrides the previous definition of @samp{lib} with a new one.
6883 The new definition adds in some extra command-line options before
6884 including the text of the old definition.
6885
6886 @dfn{Spec strings} are a list of command-line options to be passed to their
6887 corresponding program.  In addition, the spec strings can contain
6888 @samp{%}-prefixed sequences to substitute variable text or to
6889 conditionally insert text into the command line.  Using these constructs
6890 it is possible to generate quite complex command lines.
6891
6892 Here is a table of all defined @samp{%}-sequences for spec
6893 strings.  Note that spaces are not generated automatically around the
6894 results of expanding these sequences.  Therefore you can concatenate them
6895 together or combine them with constant text in a single argument.
6896
6897 @table @code
6898 @item %%
6899 Substitute one @samp{%} into the program name or argument.
6900
6901 @item %i
6902 Substitute the name of the input file being processed.
6903
6904 @item %b
6905 Substitute the basename of the input file being processed.
6906 This is the substring up to (and not including) the last period
6907 and not including the directory.
6908
6909 @item %B
6910 This is the same as @samp{%b}, but include the file suffix (text after
6911 the last period).
6912
6913 @item %d
6914 Marks the argument containing or following the @samp{%d} as a
6915 temporary file name, so that that file will be deleted if GCC exits
6916 successfully.  Unlike @samp{%g}, this contributes no text to the
6917 argument.
6918
6919 @item %g@var{suffix}
6920 Substitute a file name that has suffix @var{suffix} and is chosen
6921 once per compilation, and mark the argument in the same way as
6922 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
6923 name is now chosen in a way that is hard to predict even when previously
6924 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
6925 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
6926 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
6927 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
6928 was simply substituted with a file name chosen once per compilation,
6929 without regard to any appended suffix (which was therefore treated
6930 just like ordinary text), making such attacks more likely to succeed.
6931
6932 @item %u@var{suffix}
6933 Like @samp{%g}, but generates a new temporary file name even if
6934 @samp{%u@var{suffix}} was already seen.
6935
6936 @item %U@var{suffix}
6937 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
6938 new one if there is no such last file name.  In the absence of any
6939 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
6940 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
6941 would involve the generation of two distinct file names, one
6942 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
6943 simply substituted with a file name chosen for the previous @samp{%u},
6944 without regard to any appended suffix.
6945
6946 @item %j@var{suffix}
6947 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
6948 writable, and if save-temps is off; otherwise, substitute the name
6949 of a temporary file, just like @samp{%u}.  This temporary file is not
6950 meant for communication between processes, but rather as a junk
6951 disposal mechanism.
6952
6953 @item %|@var{suffix}
6954 @itemx %m@var{suffix}
6955 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
6956 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
6957 all.  These are the two most common ways to instruct a program that it
6958 should read from standard input or write to standard output.  If you
6959 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
6960 construct: see for example @file{f/lang-specs.h}.
6961
6962 @item %.@var{SUFFIX}
6963 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
6964 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
6965 terminated by the next space or %.
6966
6967 @item %w
6968 Marks the argument containing or following the @samp{%w} as the
6969 designated output file of this compilation.  This puts the argument
6970 into the sequence of arguments that @samp{%o} will substitute later.
6971
6972 @item %o
6973 Substitutes the names of all the output files, with spaces
6974 automatically placed around them.  You should write spaces
6975 around the @samp{%o} as well or the results are undefined.
6976 @samp{%o} is for use in the specs for running the linker.
6977 Input files whose names have no recognized suffix are not compiled
6978 at all, but they are included among the output files, so they will
6979 be linked.
6980
6981 @item %O
6982 Substitutes the suffix for object files.  Note that this is
6983 handled specially when it immediately follows @samp{%g, %u, or %U},
6984 because of the need for those to form complete file names.  The
6985 handling is such that @samp{%O} is treated exactly as if it had already
6986 been substituted, except that @samp{%g, %u, and %U} do not currently
6987 support additional @var{suffix} characters following @samp{%O} as they would
6988 following, for example, @samp{.o}.
6989
6990 @item %p
6991 Substitutes the standard macro predefinitions for the
6992 current target machine.  Use this when running @code{cpp}.
6993
6994 @item %P
6995 Like @samp{%p}, but puts @samp{__} before and after the name of each
6996 predefined macro, except for macros that start with @samp{__} or with
6997 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
6998 C@.
6999
7000 @item %I
7001 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
7002 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
7003 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
7004 and @option{-imultilib} as necessary.
7005
7006 @item %s
7007 Current argument is the name of a library or startup file of some sort.
7008 Search for that file in a standard list of directories and substitute
7009 the full name found.
7010
7011 @item %e@var{str}
7012 Print @var{str} as an error message.  @var{str} is terminated by a newline.
7013 Use this when inconsistent options are detected.
7014
7015 @item %(@var{name})
7016 Substitute the contents of spec string @var{name} at this point.
7017
7018 @item %[@var{name}]
7019 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
7020
7021 @item %x@{@var{option}@}
7022 Accumulate an option for @samp{%X}.
7023
7024 @item %X
7025 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
7026 spec string.
7027
7028 @item %Y
7029 Output the accumulated assembler options specified by @option{-Wa}.
7030
7031 @item %Z
7032 Output the accumulated preprocessor options specified by @option{-Wp}.
7033
7034 @item %a
7035 Process the @code{asm} spec.  This is used to compute the
7036 switches to be passed to the assembler.
7037
7038 @item %A
7039 Process the @code{asm_final} spec.  This is a spec string for
7040 passing switches to an assembler post-processor, if such a program is
7041 needed.
7042
7043 @item %l
7044 Process the @code{link} spec.  This is the spec for computing the
7045 command line passed to the linker.  Typically it will make use of the
7046 @samp{%L %G %S %D and %E} sequences.
7047
7048 @item %D
7049 Dump out a @option{-L} option for each directory that GCC believes might
7050 contain startup files.  If the target supports multilibs then the
7051 current multilib directory will be prepended to each of these paths.
7052
7053 @item %L
7054 Process the @code{lib} spec.  This is a spec string for deciding which
7055 libraries should be included on the command line to the linker.
7056
7057 @item %G
7058 Process the @code{libgcc} spec.  This is a spec string for deciding
7059 which GCC support library should be included on the command line to the linker.
7060
7061 @item %S
7062 Process the @code{startfile} spec.  This is a spec for deciding which
7063 object files should be the first ones passed to the linker.  Typically
7064 this might be a file named @file{crt0.o}.
7065
7066 @item %E
7067 Process the @code{endfile} spec.  This is a spec string that specifies
7068 the last object files that will be passed to the linker.
7069
7070 @item %C
7071 Process the @code{cpp} spec.  This is used to construct the arguments
7072 to be passed to the C preprocessor.
7073
7074 @item %1
7075 Process the @code{cc1} spec.  This is used to construct the options to be
7076 passed to the actual C compiler (@samp{cc1}).
7077
7078 @item %2
7079 Process the @code{cc1plus} spec.  This is used to construct the options to be
7080 passed to the actual C++ compiler (@samp{cc1plus}).
7081
7082 @item %*
7083 Substitute the variable part of a matched option.  See below.
7084 Note that each comma in the substituted string is replaced by
7085 a single space.
7086
7087 @item %<@code{S}
7088 Remove all occurrences of @code{-S} from the command line.  Note---this
7089 command is position dependent.  @samp{%} commands in the spec string
7090 before this one will see @code{-S}, @samp{%} commands in the spec string
7091 after this one will not.
7092
7093 @item %:@var{function}(@var{args})
7094 Call the named function @var{function}, passing it @var{args}.
7095 @var{args} is first processed as a nested spec string, then split
7096 into an argument vector in the usual fashion.  The function returns
7097 a string which is processed as if it had appeared literally as part
7098 of the current spec.
7099
7100 The following built-in spec functions are provided:
7101
7102 @table @code
7103 @item @code{if-exists}
7104 The @code{if-exists} spec function takes one argument, an absolute
7105 pathname to a file.  If the file exists, @code{if-exists} returns the
7106 pathname.  Here is a small example of its usage:
7107
7108 @smallexample
7109 *startfile:
7110 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
7111 @end smallexample
7112
7113 @item @code{if-exists-else}
7114 The @code{if-exists-else} spec function is similar to the @code{if-exists}
7115 spec function, except that it takes two arguments.  The first argument is
7116 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
7117 returns the pathname.  If it does not exist, it returns the second argument.
7118 This way, @code{if-exists-else} can be used to select one file or another,
7119 based on the existence of the first.  Here is a small example of its usage:
7120
7121 @smallexample
7122 *startfile:
7123 crt0%O%s %:if-exists(crti%O%s) \
7124 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
7125 @end smallexample
7126
7127 @item @code{replace-outfile}
7128 The @code{replace-outfile} spec function takes two arguments.  It looks for the
7129 first argument in the outfiles array and replaces it with the second argument.  Here
7130 is a small example of its usage:
7131
7132 @smallexample
7133 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
7134 @end smallexample
7135
7136 @end table
7137
7138 @item %@{@code{S}@}
7139 Substitutes the @code{-S} switch, if that switch was given to GCC@.
7140 If that switch was not specified, this substitutes nothing.  Note that
7141 the leading dash is omitted when specifying this option, and it is
7142 automatically inserted if the substitution is performed.  Thus the spec
7143 string @samp{%@{foo@}} would match the command-line option @option{-foo}
7144 and would output the command line option @option{-foo}.
7145
7146 @item %W@{@code{S}@}
7147 Like %@{@code{S}@} but mark last argument supplied within as a file to be
7148 deleted on failure.
7149
7150 @item %@{@code{S}*@}
7151 Substitutes all the switches specified to GCC whose names start
7152 with @code{-S}, but which also take an argument.  This is used for
7153 switches like @option{-o}, @option{-D}, @option{-I}, etc.
7154 GCC considers @option{-o foo} as being
7155 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
7156 text, including the space.  Thus two arguments would be generated.
7157
7158 @item %@{@code{S}*&@code{T}*@}
7159 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
7160 (the order of @code{S} and @code{T} in the spec is not significant).
7161 There can be any number of ampersand-separated variables; for each the
7162 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
7163
7164 @item %@{@code{S}:@code{X}@}
7165 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
7166
7167 @item %@{!@code{S}:@code{X}@}
7168 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
7169
7170 @item %@{@code{S}*:@code{X}@}
7171 Substitutes @code{X} if one or more switches whose names start with
7172 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
7173 once, no matter how many such switches appeared.  However, if @code{%*}
7174 appears somewhere in @code{X}, then @code{X} will be substituted once
7175 for each matching switch, with the @code{%*} replaced by the part of
7176 that switch that matched the @code{*}.
7177
7178 @item %@{.@code{S}:@code{X}@}
7179 Substitutes @code{X}, if processing a file with suffix @code{S}.
7180
7181 @item %@{!.@code{S}:@code{X}@}
7182 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
7183
7184 @item %@{@code{S}|@code{P}:@code{X}@}
7185 Substitutes @code{X} if either @code{-S} or @code{-P} was given to GCC@.
7186 This may be combined with @samp{!}, @samp{.}, and @code{*} sequences as well,
7187 although they have a stronger binding than the @samp{|}.  If @code{%*}
7188 appears in @code{X}, all of the alternatives must be starred, and only
7189 the first matching alternative is substituted.
7190
7191 For example, a spec string like this:
7192
7193 @smallexample
7194 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
7195 @end smallexample
7196
7197 will output the following command-line options from the following input
7198 command-line options:
7199
7200 @smallexample
7201 fred.c        -foo -baz
7202 jim.d         -bar -boggle
7203 -d fred.c     -foo -baz -boggle
7204 -d jim.d      -bar -baz -boggle
7205 @end smallexample
7206
7207 @item %@{S:X; T:Y; :D@}
7208
7209 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
7210 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
7211 be as many clauses as you need.  This may be combined with @code{.},
7212 @code{!}, @code{|}, and @code{*} as needed.
7213
7214
7215 @end table
7216
7217 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
7218 construct may contain other nested @samp{%} constructs or spaces, or
7219 even newlines.  They are processed as usual, as described above.
7220 Trailing white space in @code{X} is ignored.  White space may also
7221 appear anywhere on the left side of the colon in these constructs,
7222 except between @code{.} or @code{*} and the corresponding word.
7223
7224 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
7225 handled specifically in these constructs.  If another value of
7226 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
7227 @option{-W} switch is found later in the command line, the earlier
7228 switch value is ignored, except with @{@code{S}*@} where @code{S} is
7229 just one letter, which passes all matching options.
7230
7231 The character @samp{|} at the beginning of the predicate text is used to
7232 indicate that a command should be piped to the following command, but
7233 only if @option{-pipe} is specified.
7234
7235 It is built into GCC which switches take arguments and which do not.
7236 (You might think it would be useful to generalize this to allow each
7237 compiler's spec to say which switches take arguments.  But this cannot
7238 be done in a consistent fashion.  GCC cannot even decide which input
7239 files have been specified without knowing which switches take arguments,
7240 and it must know which input files to compile in order to tell which
7241 compilers to run).
7242
7243 GCC also knows implicitly that arguments starting in @option{-l} are to be
7244 treated as compiler output files, and passed to the linker in their
7245 proper position among the other output files.
7246
7247 @c man begin OPTIONS
7248
7249 @node Target Options
7250 @section Specifying Target Machine and Compiler Version
7251 @cindex target options
7252 @cindex cross compiling
7253 @cindex specifying machine version
7254 @cindex specifying compiler version and target machine
7255 @cindex compiler version, specifying
7256 @cindex target machine, specifying
7257
7258 The usual way to run GCC is to run the executable called @file{gcc}, or
7259 @file{<machine>-gcc} when cross-compiling, or
7260 @file{<machine>-gcc-<version>} to run a version other than the one that
7261 was installed last.  Sometimes this is inconvenient, so GCC provides
7262 options that will switch to another cross-compiler or version.
7263
7264 @table @gcctabopt
7265 @item -b @var{machine}
7266 @opindex b
7267 The argument @var{machine} specifies the target machine for compilation.
7268
7269 The value to use for @var{machine} is the same as was specified as the
7270 machine type when configuring GCC as a cross-compiler.  For
7271 example, if a cross-compiler was configured with @samp{configure
7272 arm-elf}, meaning to compile for an arm processor with elf binaries,
7273 then you would specify @option{-b arm-elf} to run that cross compiler.
7274 Because there are other options beginning with @option{-b}, the
7275 configuration must contain a hyphen. 
7276
7277 @item -V @var{version}
7278 @opindex V
7279 The argument @var{version} specifies which version of GCC to run.
7280 This is useful when multiple versions are installed.  For example,
7281 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
7282 @end table
7283
7284 The @option{-V} and @option{-b} options work by running the
7285 @file{<machine>-gcc-<version>} executable, so there's no real reason to
7286 use them if you can just run that directly.
7287
7288 @node Submodel Options
7289 @section Hardware Models and Configurations
7290 @cindex submodel options
7291 @cindex specifying hardware config
7292 @cindex hardware models and configurations, specifying
7293 @cindex machine dependent options
7294
7295 Earlier we discussed the standard option @option{-b} which chooses among
7296 different installed compilers for completely different target
7297 machines, such as VAX vs.@: 68000 vs.@: 80386.
7298
7299 In addition, each of these target machine types can have its own
7300 special options, starting with @samp{-m}, to choose among various
7301 hardware models or configurations---for example, 68010 vs 68020,
7302 floating coprocessor or none.  A single installed version of the
7303 compiler can compile for any model or configuration, according to the
7304 options specified.
7305
7306 Some configurations of the compiler also support additional special
7307 options, usually for compatibility with other compilers on the same
7308 platform.
7309
7310 @c This list is ordered alphanumerically by subsection name.
7311 @c It should be the same order and spelling as these options are listed
7312 @c in Machine Dependent Options
7313
7314 @menu
7315 * ARC Options::
7316 * ARM Options::
7317 * AVR Options::
7318 * Blackfin Options::
7319 * CRIS Options::
7320 * CRX Options::
7321 * Darwin Options::
7322 * DEC Alpha Options::
7323 * DEC Alpha/VMS Options::
7324 * FRV Options::
7325 * GNU/Linux Options::
7326 * H8/300 Options::
7327 * HPPA Options::
7328 * i386 and x86-64 Options::
7329 * IA-64 Options::
7330 * M32C Options::
7331 * M32R/D Options::
7332 * M680x0 Options::
7333 * M68hc1x Options::
7334 * MCore Options::
7335 * MIPS Options::
7336 * MMIX Options::
7337 * MN10300 Options::
7338 * MT Options::
7339 * PDP-11 Options::
7340 * PowerPC Options::
7341 * RS/6000 and PowerPC Options::
7342 * S/390 and zSeries Options::
7343 * Score Options::
7344 * SH Options::
7345 * SPARC Options::
7346 * System V Options::
7347 * TMS320C3x/C4x Options::
7348 * V850 Options::
7349 * VAX Options::
7350 * x86-64 Options::
7351 * Xstormy16 Options::
7352 * Xtensa Options::
7353 * zSeries Options::
7354 @end menu
7355
7356 @node ARC Options
7357 @subsection ARC Options
7358 @cindex ARC Options
7359
7360 These options are defined for ARC implementations:
7361
7362 @table @gcctabopt
7363 @item -EL
7364 @opindex EL
7365 Compile code for little endian mode.  This is the default.
7366
7367 @item -EB
7368 @opindex EB
7369 Compile code for big endian mode.
7370
7371 @item -mmangle-cpu
7372 @opindex mmangle-cpu
7373 Prepend the name of the cpu to all public symbol names.
7374 In multiple-processor systems, there are many ARC variants with different
7375 instruction and register set characteristics.  This flag prevents code
7376 compiled for one cpu to be linked with code compiled for another.
7377 No facility exists for handling variants that are ``almost identical''.
7378 This is an all or nothing option.
7379
7380 @item -mcpu=@var{cpu}
7381 @opindex mcpu
7382 Compile code for ARC variant @var{cpu}.
7383 Which variants are supported depend on the configuration.
7384 All variants support @option{-mcpu=base}, this is the default.
7385
7386 @item -mtext=@var{text-section}
7387 @itemx -mdata=@var{data-section}
7388 @itemx -mrodata=@var{readonly-data-section}
7389 @opindex mtext
7390 @opindex mdata
7391 @opindex mrodata
7392 Put functions, data, and readonly data in @var{text-section},
7393 @var{data-section}, and @var{readonly-data-section} respectively
7394 by default.  This can be overridden with the @code{section} attribute.
7395 @xref{Variable Attributes}.
7396
7397 @end table
7398
7399 @node ARM Options
7400 @subsection ARM Options
7401 @cindex ARM options
7402
7403 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
7404 architectures:
7405
7406 @table @gcctabopt
7407 @item -mabi=@var{name}
7408 @opindex mabi
7409 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
7410 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
7411
7412 @item -mapcs-frame
7413 @opindex mapcs-frame
7414 Generate a stack frame that is compliant with the ARM Procedure Call
7415 Standard for all functions, even if this is not strictly necessary for
7416 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
7417 with this option will cause the stack frames not to be generated for
7418 leaf functions.  The default is @option{-mno-apcs-frame}.
7419
7420 @item -mapcs
7421 @opindex mapcs
7422 This is a synonym for @option{-mapcs-frame}.
7423
7424 @ignore
7425 @c not currently implemented
7426 @item -mapcs-stack-check
7427 @opindex mapcs-stack-check
7428 Generate code to check the amount of stack space available upon entry to
7429 every function (that actually uses some stack space).  If there is
7430 insufficient space available then either the function
7431 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
7432 called, depending upon the amount of stack space required.  The run time
7433 system is required to provide these functions.  The default is
7434 @option{-mno-apcs-stack-check}, since this produces smaller code.
7435
7436 @c not currently implemented
7437 @item -mapcs-float
7438 @opindex mapcs-float
7439 Pass floating point arguments using the float point registers.  This is
7440 one of the variants of the APCS@.  This option is recommended if the
7441 target hardware has a floating point unit or if a lot of floating point
7442 arithmetic is going to be performed by the code.  The default is
7443 @option{-mno-apcs-float}, since integer only code is slightly increased in
7444 size if @option{-mapcs-float} is used.
7445
7446 @c not currently implemented
7447 @item -mapcs-reentrant
7448 @opindex mapcs-reentrant
7449 Generate reentrant, position independent code.  The default is
7450 @option{-mno-apcs-reentrant}.
7451 @end ignore
7452
7453 @item -mthumb-interwork
7454 @opindex mthumb-interwork
7455 Generate code which supports calling between the ARM and Thumb
7456 instruction sets.  Without this option the two instruction sets cannot
7457 be reliably used inside one program.  The default is
7458 @option{-mno-thumb-interwork}, since slightly larger code is generated
7459 when @option{-mthumb-interwork} is specified.
7460
7461 @item -mno-sched-prolog
7462 @opindex mno-sched-prolog
7463 Prevent the reordering of instructions in the function prolog, or the
7464 merging of those instruction with the instructions in the function's
7465 body.  This means that all functions will start with a recognizable set
7466 of instructions (or in fact one of a choice from a small set of
7467 different function prologues), and this information can be used to
7468 locate the start if functions inside an executable piece of code.  The
7469 default is @option{-msched-prolog}.
7470
7471 @item -mhard-float
7472 @opindex mhard-float
7473 Generate output containing floating point instructions.  This is the
7474 default.
7475
7476 @item -msoft-float
7477 @opindex msoft-float
7478 Generate output containing library calls for floating point.
7479 @strong{Warning:} the requisite libraries are not available for all ARM
7480 targets.  Normally the facilities of the machine's usual C compiler are
7481 used, but this cannot be done directly in cross-compilation.  You must make
7482 your own arrangements to provide suitable library functions for
7483 cross-compilation.
7484
7485 @option{-msoft-float} changes the calling convention in the output file;
7486 therefore, it is only useful if you compile @emph{all} of a program with
7487 this option.  In particular, you need to compile @file{libgcc.a}, the
7488 library that comes with GCC, with @option{-msoft-float} in order for
7489 this to work.
7490
7491 @item -mfloat-abi=@var{name}
7492 @opindex mfloat-abi
7493 Specifies which ABI to use for floating point values.  Permissible values
7494 are: @samp{soft}, @samp{softfp} and @samp{hard}.
7495
7496 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
7497 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
7498 of floating point instructions, but still uses the soft-float calling
7499 conventions.
7500
7501 @item -mlittle-endian
7502 @opindex mlittle-endian
7503 Generate code for a processor running in little-endian mode.  This is
7504 the default for all standard configurations.
7505
7506 @item -mbig-endian
7507 @opindex mbig-endian
7508 Generate code for a processor running in big-endian mode; the default is
7509 to compile code for a little-endian processor.
7510
7511 @item -mwords-little-endian
7512 @opindex mwords-little-endian
7513 This option only applies when generating code for big-endian processors.
7514 Generate code for a little-endian word order but a big-endian byte
7515 order.  That is, a byte order of the form @samp{32107654}.  Note: this
7516 option should only be used if you require compatibility with code for
7517 big-endian ARM processors generated by versions of the compiler prior to
7518 2.8.
7519
7520 @item -mcpu=@var{name}
7521 @opindex mcpu
7522 This specifies the name of the target ARM processor.  GCC uses this name
7523 to determine what kind of instructions it can emit when generating
7524 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
7525 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
7526 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
7527 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
7528 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
7529 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
7530 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
7531 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
7532 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
7533 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
7534 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
7535 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
7536 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
7537 @samp{arm1176jz-s}, @samp{arm1176jzf-s}, @samp{xscale}, @samp{iwmmxt},
7538 @samp{ep9312}.
7539
7540 @itemx -mtune=@var{name}
7541 @opindex mtune
7542 This option is very similar to the @option{-mcpu=} option, except that
7543 instead of specifying the actual target processor type, and hence
7544 restricting which instructions can be used, it specifies that GCC should
7545 tune the performance of the code as if the target were of the type
7546 specified in this option, but still choosing the instructions that it
7547 will generate based on the cpu specified by a @option{-mcpu=} option.
7548 For some ARM implementations better performance can be obtained by using
7549 this option.
7550
7551 @item -march=@var{name}
7552 @opindex march
7553 This specifies the name of the target ARM architecture.  GCC uses this
7554 name to determine what kind of instructions it can emit when generating
7555 assembly code.  This option can be used in conjunction with or instead
7556 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
7557 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
7558 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
7559 @samp{iwmmxt}, @samp{ep9312}.
7560
7561 @item -mfpu=@var{name}
7562 @itemx -mfpe=@var{number}
7563 @itemx -mfp=@var{number}
7564 @opindex mfpu
7565 @opindex mfpe
7566 @opindex mfp
7567 This specifies what floating point hardware (or hardware emulation) is
7568 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
7569 @samp{fpe3}, @samp{maverick}, @samp{vfp}.  @option{-mfp} and @option{-mfpe}
7570 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
7571 with older versions of GCC@.
7572
7573 If @option{-msoft-float} is specified this specifies the format of
7574 floating point values.
7575
7576 @item -mstructure-size-boundary=@var{n}
7577 @opindex mstructure-size-boundary
7578 The size of all structures and unions will be rounded up to a multiple
7579 of the number of bits set by this option.  Permissible values are 8, 32
7580 and 64.  The default value varies for different toolchains.  For the COFF
7581 targeted toolchain the default value is 8.  A value of 64 is only allowed
7582 if the underlying ABI supports it.
7583
7584 Specifying the larger number can produce faster, more efficient code, but
7585 can also increase the size of the program.  Different values are potentially
7586 incompatible.  Code compiled with one value cannot necessarily expect to
7587 work with code or libraries compiled with another value, if they exchange
7588 information using structures or unions.
7589
7590 @item -mabort-on-noreturn
7591 @opindex mabort-on-noreturn
7592 Generate a call to the function @code{abort} at the end of a
7593 @code{noreturn} function.  It will be executed if the function tries to
7594 return.
7595
7596 @item -mlong-calls
7597 @itemx -mno-long-calls
7598 @opindex mlong-calls
7599 @opindex mno-long-calls
7600 Tells the compiler to perform function calls by first loading the
7601 address of the function into a register and then performing a subroutine
7602 call on this register.  This switch is needed if the target function
7603 will lie outside of the 64 megabyte addressing range of the offset based
7604 version of subroutine call instruction.
7605
7606 Even if this switch is enabled, not all function calls will be turned
7607 into long calls.  The heuristic is that static functions, functions
7608 which have the @samp{short-call} attribute, functions that are inside
7609 the scope of a @samp{#pragma no_long_calls} directive and functions whose
7610 definitions have already been compiled within the current compilation
7611 unit, will not be turned into long calls.  The exception to this rule is
7612 that weak function definitions, functions with the @samp{long-call}
7613 attribute or the @samp{section} attribute, and functions that are within
7614 the scope of a @samp{#pragma long_calls} directive, will always be
7615 turned into long calls.
7616
7617 This feature is not enabled by default.  Specifying
7618 @option{-mno-long-calls} will restore the default behavior, as will
7619 placing the function calls within the scope of a @samp{#pragma
7620 long_calls_off} directive.  Note these switches have no effect on how
7621 the compiler generates code to handle function calls via function
7622 pointers.
7623
7624 @item -mnop-fun-dllimport
7625 @opindex mnop-fun-dllimport
7626 Disable support for the @code{dllimport} attribute.
7627
7628 @item -msingle-pic-base
7629 @opindex msingle-pic-base
7630 Treat the register used for PIC addressing as read-only, rather than
7631 loading it in the prologue for each function.  The run-time system is
7632 responsible for initializing this register with an appropriate value
7633 before execution begins.
7634
7635 @item -mpic-register=@var{reg}
7636 @opindex mpic-register
7637 Specify the register to be used for PIC addressing.  The default is R10
7638 unless stack-checking is enabled, when R9 is used.
7639
7640 @item -mcirrus-fix-invalid-insns
7641 @opindex mcirrus-fix-invalid-insns
7642 @opindex mno-cirrus-fix-invalid-insns
7643 Insert NOPs into the instruction stream to in order to work around
7644 problems with invalid Maverick instruction combinations.  This option
7645 is only valid if the @option{-mcpu=ep9312} option has been used to
7646 enable generation of instructions for the Cirrus Maverick floating
7647 point co-processor.  This option is not enabled by default, since the
7648 problem is only present in older Maverick implementations.  The default
7649 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
7650 switch.
7651
7652 @item -mpoke-function-name
7653 @opindex mpoke-function-name
7654 Write the name of each function into the text section, directly
7655 preceding the function prologue.  The generated code is similar to this:
7656
7657 @smallexample
7658      t0
7659          .ascii "arm_poke_function_name", 0
7660          .align
7661      t1
7662          .word 0xff000000 + (t1 - t0)
7663      arm_poke_function_name
7664          mov     ip, sp
7665          stmfd   sp!, @{fp, ip, lr, pc@}
7666          sub     fp, ip, #4
7667 @end smallexample
7668
7669 When performing a stack backtrace, code can inspect the value of
7670 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
7671 location @code{pc - 12} and the top 8 bits are set, then we know that
7672 there is a function name embedded immediately preceding this location
7673 and has length @code{((pc[-3]) & 0xff000000)}.
7674
7675 @item -mthumb
7676 @opindex mthumb
7677 Generate code for the 16-bit Thumb instruction set.  The default is to
7678 use the 32-bit ARM instruction set.
7679
7680 @item -mtpcs-frame
7681 @opindex mtpcs-frame
7682 Generate a stack frame that is compliant with the Thumb Procedure Call
7683 Standard for all non-leaf functions.  (A leaf function is one that does
7684 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
7685
7686 @item -mtpcs-leaf-frame
7687 @opindex mtpcs-leaf-frame
7688 Generate a stack frame that is compliant with the Thumb Procedure Call
7689 Standard for all leaf functions.  (A leaf function is one that does
7690 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
7691
7692 @item -mcallee-super-interworking
7693 @opindex mcallee-super-interworking
7694 Gives all externally visible functions in the file being compiled an ARM
7695 instruction set header which switches to Thumb mode before executing the
7696 rest of the function.  This allows these functions to be called from
7697 non-interworking code.
7698
7699 @item -mcaller-super-interworking
7700 @opindex mcaller-super-interworking
7701 Allows calls via function pointers (including virtual functions) to
7702 execute correctly regardless of whether the target code has been
7703 compiled for interworking or not.  There is a small overhead in the cost
7704 of executing a function pointer if this option is enabled.
7705
7706 @item -mtp=@var{name}
7707 @opindex mtp
7708 Specify the access model for the thread local storage pointer.  The valid
7709 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
7710 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
7711 (supported in the arm6k architecture), and @option{auto}, which uses the
7712 best available method for the selected processor.  The default setting is
7713 @option{auto}.
7714
7715 @end table
7716
7717 @node AVR Options
7718 @subsection AVR Options
7719 @cindex AVR Options
7720
7721 These options are defined for AVR implementations:
7722
7723 @table @gcctabopt
7724 @item -mmcu=@var{mcu}
7725 @opindex mmcu
7726 Specify ATMEL AVR instruction set or MCU type.
7727
7728 Instruction set avr1 is for the minimal AVR core, not supported by the C
7729 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
7730 attiny11, attiny12, attiny15, attiny28).
7731
7732 Instruction set avr2 (default) is for the classic AVR core with up to
7733 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
7734 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
7735 at90c8534, at90s8535).
7736
7737 Instruction set avr3 is for the classic AVR core with up to 128K program
7738 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
7739
7740 Instruction set avr4 is for the enhanced AVR core with up to 8K program
7741 memory space (MCU types: atmega8, atmega83, atmega85).
7742
7743 Instruction set avr5 is for the enhanced AVR core with up to 128K program
7744 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
7745 atmega64, atmega128, at43usb355, at94k).
7746
7747 @item -msize
7748 @opindex msize
7749 Output instruction sizes to the asm file.
7750
7751 @item -minit-stack=@var{N}
7752 @opindex minit-stack
7753 Specify the initial stack address, which may be a symbol or numeric value,
7754 @samp{__stack} is the default.
7755
7756 @item -mno-interrupts
7757 @opindex mno-interrupts
7758 Generated code is not compatible with hardware interrupts.
7759 Code size will be smaller.
7760
7761 @item -mcall-prologues
7762 @opindex mcall-prologues
7763 Functions prologues/epilogues expanded as call to appropriate
7764 subroutines.  Code size will be smaller.
7765
7766 @item -mno-tablejump
7767 @opindex mno-tablejump
7768 Do not generate tablejump insns which sometimes increase code size.
7769
7770 @item -mtiny-stack
7771 @opindex mtiny-stack
7772 Change only the low 8 bits of the stack pointer.
7773
7774 @item -mint8
7775 @opindex mint8
7776 Assume int to be 8 bit integer.  This affects the sizes of all types: A
7777 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
7778 and long long will be 4 bytes.  Please note that this option does not
7779 comply to the C standards, but it will provide you with smaller code
7780 size.
7781 @end table
7782
7783 @node Blackfin Options
7784 @subsection Blackfin Options
7785 @cindex Blackfin Options
7786
7787 @table @gcctabopt
7788 @item -momit-leaf-frame-pointer
7789 @opindex momit-leaf-frame-pointer
7790 Don't keep the frame pointer in a register for leaf functions.  This
7791 avoids the instructions to save, set up and restore frame pointers and
7792 makes an extra register available in leaf functions.  The option
7793 @option{-fomit-frame-pointer} removes the frame pointer for all functions
7794 which might make debugging harder.
7795
7796 @item -mspecld-anomaly
7797 @opindex mspecld-anomaly
7798 When enabled, the compiler will ensure that the generated code does not
7799 contain speculative loads after jump instructions.  This option is enabled
7800 by default.
7801
7802 @item -mno-specld-anomaly
7803 @opindex mno-specld-anomaly
7804 Don't generate extra code to prevent speculative loads from occurring.
7805
7806 @item -mcsync-anomaly
7807 @opindex mcsync-anomaly
7808 When enabled, the compiler will ensure that the generated code does not
7809 contain CSYNC or SSYNC instructions too soon after conditional branches.
7810 This option is enabled by default.
7811
7812 @item -mno-csync-anomaly
7813 @opindex mno-csync-anomaly
7814 Don't generate extra code to prevent CSYNC or SSYNC instructions from
7815 occurring too soon after a conditional branch.
7816
7817 @item -mlow-64k
7818 @opindex mlow-64k
7819 When enabled, the compiler is free to take advantage of the knowledge that
7820 the entire program fits into the low 64k of memory.
7821
7822 @item -mno-low-64k
7823 @opindex mno-low-64k
7824 Assume that the program is arbitrarily large.  This is the default.
7825
7826 @item -mid-shared-library
7827 @opindex mid-shared-library
7828 Generate code that supports shared libraries via the library ID method.
7829 This allows for execute in place and shared libraries in an environment
7830 without virtual memory management.  This option implies @option{-fPIC}.
7831
7832 @item -mno-id-shared-library
7833 @opindex mno-id-shared-library
7834 Generate code that doesn't assume ID based shared libraries are being used.
7835 This is the default.
7836
7837 @item -mshared-library-id=n
7838 @opindex mshared-library-id
7839 Specified the identification number of the ID based shared library being
7840 compiled.  Specifying a value of 0 will generate more compact code, specifying
7841 other values will force the allocation of that number to the current
7842 library but is no more space or time efficient than omitting this option.
7843
7844 @item -mlong-calls
7845 @itemx -mno-long-calls
7846 @opindex mlong-calls
7847 @opindex mno-long-calls
7848 Tells the compiler to perform function calls by first loading the
7849 address of the function into a register and then performing a subroutine
7850 call on this register.  This switch is needed if the target function
7851 will lie outside of the 24 bit addressing range of the offset based
7852 version of subroutine call instruction.
7853
7854 This feature is not enabled by default.  Specifying
7855 @option{-mno-long-calls} will restore the default behavior.  Note these
7856 switches have no effect on how the compiler generates code to handle
7857 function calls via function pointers.
7858 @end table
7859
7860 @node CRIS Options
7861 @subsection CRIS Options
7862 @cindex CRIS Options
7863
7864 These options are defined specifically for the CRIS ports.
7865
7866 @table @gcctabopt
7867 @item -march=@var{architecture-type}
7868 @itemx -mcpu=@var{architecture-type}
7869 @opindex march
7870 @opindex mcpu
7871 Generate code for the specified architecture.  The choices for
7872 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
7873 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
7874 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
7875 @samp{v10}.
7876
7877 @item -mtune=@var{architecture-type}
7878 @opindex mtune
7879 Tune to @var{architecture-type} everything applicable about the generated
7880 code, except for the ABI and the set of available instructions.  The
7881 choices for @var{architecture-type} are the same as for
7882 @option{-march=@var{architecture-type}}.
7883
7884 @item -mmax-stack-frame=@var{n}
7885 @opindex mmax-stack-frame
7886 Warn when the stack frame of a function exceeds @var{n} bytes.
7887
7888 @item -melinux-stacksize=@var{n}
7889 @opindex melinux-stacksize
7890 Only available with the @samp{cris-axis-aout} target.  Arranges for
7891 indications in the program to the kernel loader that the stack of the
7892 program should be set to @var{n} bytes.
7893
7894 @item -metrax4
7895 @itemx -metrax100
7896 @opindex metrax4
7897 @opindex metrax100
7898 The options @option{-metrax4} and @option{-metrax100} are synonyms for
7899 @option{-march=v3} and @option{-march=v8} respectively.
7900
7901 @item -mmul-bug-workaround
7902 @itemx -mno-mul-bug-workaround
7903 @opindex mmul-bug-workaround
7904 @opindex mno-mul-bug-workaround
7905 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
7906 models where it applies.  This option is active by default.
7907
7908 @item -mpdebug
7909 @opindex mpdebug
7910 Enable CRIS-specific verbose debug-related information in the assembly
7911 code.  This option also has the effect to turn off the @samp{#NO_APP}
7912 formatted-code indicator to the assembler at the beginning of the
7913 assembly file.
7914
7915 @item -mcc-init
7916 @opindex mcc-init
7917 Do not use condition-code results from previous instruction; always emit
7918 compare and test instructions before use of condition codes.
7919
7920 @item -mno-side-effects
7921 @opindex mno-side-effects
7922 Do not emit instructions with side-effects in addressing modes other than
7923 post-increment.
7924
7925 @item -mstack-align
7926 @itemx -mno-stack-align
7927 @itemx -mdata-align
7928 @itemx -mno-data-align
7929 @itemx -mconst-align
7930 @itemx -mno-const-align
7931 @opindex mstack-align
7932 @opindex mno-stack-align
7933 @opindex mdata-align
7934 @opindex mno-data-align
7935 @opindex mconst-align
7936 @opindex mno-const-align
7937 These options (no-options) arranges (eliminate arrangements) for the
7938 stack-frame, individual data and constants to be aligned for the maximum
7939 single data access size for the chosen CPU model.  The default is to
7940 arrange for 32-bit alignment.  ABI details such as structure layout are
7941 not affected by these options.
7942
7943 @item -m32-bit
7944 @itemx -m16-bit
7945 @itemx -m8-bit
7946 @opindex m32-bit
7947 @opindex m16-bit
7948 @opindex m8-bit
7949 Similar to the stack- data- and const-align options above, these options
7950 arrange for stack-frame, writable data and constants to all be 32-bit,
7951 16-bit or 8-bit aligned.  The default is 32-bit alignment.
7952
7953 @item -mno-prologue-epilogue
7954 @itemx -mprologue-epilogue
7955 @opindex mno-prologue-epilogue
7956 @opindex mprologue-epilogue
7957 With @option{-mno-prologue-epilogue}, the normal function prologue and
7958 epilogue that sets up the stack-frame are omitted and no return
7959 instructions or return sequences are generated in the code.  Use this
7960 option only together with visual inspection of the compiled code: no
7961 warnings or errors are generated when call-saved registers must be saved,
7962 or storage for local variable needs to be allocated.
7963
7964 @item -mno-gotplt
7965 @itemx -mgotplt
7966 @opindex mno-gotplt
7967 @opindex mgotplt
7968 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
7969 instruction sequences that load addresses for functions from the PLT part
7970 of the GOT rather than (traditional on other architectures) calls to the
7971 PLT@.  The default is @option{-mgotplt}.
7972
7973 @item -maout
7974 @opindex maout
7975 Legacy no-op option only recognized with the cris-axis-aout target.
7976
7977 @item -melf
7978 @opindex melf
7979 Legacy no-op option only recognized with the cris-axis-elf and
7980 cris-axis-linux-gnu targets.
7981
7982 @item -melinux
7983 @opindex melinux
7984 Only recognized with the cris-axis-aout target, where it selects a
7985 GNU/linux-like multilib, include files and instruction set for
7986 @option{-march=v8}.
7987
7988 @item -mlinux
7989 @opindex mlinux
7990 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
7991
7992 @item -sim
7993 @opindex sim
7994 This option, recognized for the cris-axis-aout and cris-axis-elf arranges
7995 to link with input-output functions from a simulator library.  Code,
7996 initialized data and zero-initialized data are allocated consecutively.
7997
7998 @item -sim2
7999 @opindex sim2
8000 Like @option{-sim}, but pass linker options to locate initialized data at
8001 0x40000000 and zero-initialized data at 0x80000000.
8002 @end table
8003
8004 @node CRX Options
8005 @subsection CRX Options
8006 @cindex CRX Options
8007
8008 These options are defined specifically for the CRX ports.
8009
8010 @table @gcctabopt
8011
8012 @item -mmac
8013 @opindex mmac
8014 Enable the use of multiply-accumulate instructions. Disabled by default.
8015
8016 @item -mpush-args
8017 @opindex mpush-args
8018 Push instructions will be used to pass outgoing arguments when functions
8019 are called. Enabled by default.
8020 @end table
8021
8022 @node Darwin Options
8023 @subsection Darwin Options
8024 @cindex Darwin options
8025
8026 These options are defined for all architectures running the Darwin operating
8027 system.
8028
8029 FSF GCC on Darwin does not create ``fat'' object files; it will create
8030 an object file for the single architecture that it was built to
8031 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
8032 @option{-arch} options are used; it does so by running the compiler or
8033 linker multiple times and joining the results together with
8034 @file{lipo}.
8035
8036 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
8037 @samp{i686}) is determined by the flags that specify the ISA
8038 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
8039 @option{-force_cpusubtype_ALL} option can be used to override this.
8040
8041 The Darwin tools vary in their behavior when presented with an ISA
8042 mismatch.  The assembler, @file{as}, will only permit instructions to
8043 be used that are valid for the subtype of the file it is generating,
8044 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
8045 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
8046 and print an error if asked to create a shared library with a less
8047 restrictive subtype than its input files (for instance, trying to put
8048 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
8049 for executables, @file{ld}, will quietly give the executable the most
8050 restrictive subtype of any of its input files.
8051
8052 @table @gcctabopt
8053 @item -F@var{dir}
8054 @opindex F
8055 Add the framework directory @var{dir} to the head of the list of
8056 directories to be searched for header files.  These directories are
8057 interleaved with those specified by @option{-I} options and are
8058 scanned in a left-to-right order.
8059
8060 A framework directory is a directory with frameworks in it.  A
8061 framework is a directory with a @samp{"Headers"} and/or
8062 @samp{"PrivateHeaders"} directory contained directly in it that ends
8063 in @samp{".framework"}.  The name of a framework is the name of this
8064 directory excluding the @samp{".framework"}.  Headers associated with
8065 the framework are found in one of those two directories, with
8066 @samp{"Headers"} being searched first.  A subframework is a framework
8067 directory that is in a framework's @samp{"Frameworks"} directory.
8068 Includes of subframework headers can only appear in a header of a
8069 framework that contains the subframework, or in a sibling subframework
8070 header.  Two subframeworks are siblings if they occur in the same
8071 framework.  A subframework should not have the same name as a
8072 framework, a warning will be issued if this is violated.  Currently a
8073 subframework cannot have subframeworks, in the future, the mechanism
8074 may be extended to support this.  The standard frameworks can be found
8075 in @samp{"/System/Library/Frameworks"} and
8076 @samp{"/Library/Frameworks"}.  An example include looks like
8077 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
8078 the name of the framework and header.h is found in the
8079 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
8080
8081 @item -gused
8082 @opindex -gused
8083 Emit debugging information for symbols that are used.  For STABS
8084 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
8085 This is by default ON@.
8086
8087 @item -gfull
8088 @opindex -gfull
8089 Emit debugging information for all symbols and types.
8090
8091 @item -mmacosx-version-min=@var{version}
8092 The earliest version of MacOS X that this executable will run on
8093 is @var{version}.  Typical values of @var{version} include @code{10.1},
8094 @code{10.2}, and @code{10.3.9}.
8095
8096 The default for this option is to make choices that seem to be most
8097 useful.  
8098
8099 @item -mkernel
8100 @opindex mkernel
8101 Enable kernel development mode.  The @option{-mkernel} option sets
8102 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
8103 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
8104 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
8105 applicable.  This mode also sets @option{-mno-altivec},
8106 @option{-msoft-float}, @option{-fno-builtin} and
8107 @option{-mlong-branch} for PowerPC targets.
8108
8109 @item -mone-byte-bool
8110 @opindex -mone-byte-bool
8111 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
8112 By default @samp{sizeof(bool)} is @samp{4} when compiling for
8113 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
8114 option has no effect on x86.
8115
8116 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
8117 to generate code that is not binary compatible with code generated
8118 without that switch.  Using this switch may require recompiling all
8119 other modules in a program, including system libraries.  Use this
8120 switch to conform to a non-default data model.
8121
8122 @item -mfix-and-continue
8123 @itemx -ffix-and-continue
8124 @itemx -findirect-data
8125 @opindex mfix-and-continue
8126 @opindex ffix-and-continue
8127 @opindex findirect-data
8128 Generate code suitable for fast turn around development.  Needed to
8129 enable gdb to dynamically load @code{.o} files into already running
8130 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
8131 are provided for backwards compatibility.
8132
8133 @item -all_load
8134 @opindex all_load
8135 Loads all members of static archive libraries.
8136 See man ld(1) for more information.
8137
8138 @item -arch_errors_fatal
8139 @opindex arch_errors_fatal
8140 Cause the errors having to do with files that have the wrong architecture
8141 to be fatal.
8142
8143 @item -bind_at_load
8144 @opindex bind_at_load
8145 Causes the output file to be marked such that the dynamic linker will
8146 bind all undefined references when the file is loaded or launched.
8147
8148 @item -bundle
8149 @opindex bundle
8150 Produce a Mach-o bundle format file.
8151 See man ld(1) for more information.
8152
8153 @item -bundle_loader @var{executable}
8154 @opindex bundle_loader
8155 This option specifies the @var{executable} that will be loading the build
8156 output file being linked.  See man ld(1) for more information.
8157
8158 @item -dynamiclib
8159 @opindex -dynamiclib
8160 When passed this option, GCC will produce a dynamic library instead of
8161 an executable when linking, using the Darwin @file{libtool} command.
8162
8163 @item -force_cpusubtype_ALL
8164 @opindex -force_cpusubtype_ALL
8165 This causes GCC's output file to have the @var{ALL} subtype, instead of
8166 one controlled by the @option{-mcpu} or @option{-march} option.
8167
8168 @item -allowable_client  @var{client_name}
8169 @itemx -client_name
8170 @itemx -compatibility_version
8171 @itemx -current_version
8172 @itemx -dead_strip
8173 @itemx -dependency-file
8174 @itemx -dylib_file
8175 @itemx -dylinker_install_name
8176 @itemx -dynamic
8177 @itemx -exported_symbols_list
8178 @itemx -filelist
8179 @itemx -flat_namespace
8180 @itemx -force_flat_namespace
8181 @itemx -headerpad_max_install_names
8182 @itemx -image_base
8183 @itemx -init
8184 @itemx -install_name
8185 @itemx -keep_private_externs
8186 @itemx -multi_module
8187 @itemx -multiply_defined
8188 @itemx -multiply_defined_unused
8189 @itemx -noall_load
8190 @itemx -no_dead_strip_inits_and_terms
8191 @itemx -nofixprebinding
8192 @itemx -nomultidefs
8193 @itemx -noprebind
8194 @itemx -noseglinkedit
8195 @itemx -pagezero_size
8196 @itemx -prebind
8197 @itemx -prebind_all_twolevel_modules
8198 @itemx -private_bundle
8199 @itemx -read_only_relocs
8200 @itemx -sectalign
8201 @itemx -sectobjectsymbols
8202 @itemx -whyload
8203 @itemx -seg1addr
8204 @itemx -sectcreate
8205 @itemx -sectobjectsymbols
8206 @itemx -sectorder
8207 @itemx -segaddr
8208 @itemx -segs_read_only_addr
8209 @itemx -segs_read_write_addr
8210 @itemx -seg_addr_table
8211 @itemx -seg_addr_table_filename
8212 @itemx -seglinkedit
8213 @itemx -segprot
8214 @itemx -segs_read_only_addr
8215 @itemx -segs_read_write_addr
8216 @itemx -single_module
8217 @itemx -static
8218 @itemx -sub_library
8219 @itemx -sub_umbrella
8220 @itemx -twolevel_namespace
8221 @itemx -umbrella
8222 @itemx -undefined
8223 @itemx -unexported_symbols_list
8224 @itemx -weak_reference_mismatches
8225 @itemx -whatsloaded
8226
8227 @opindex allowable_client
8228 @opindex client_name
8229 @opindex compatibility_version
8230 @opindex current_version
8231 @opindex dead_strip
8232 @opindex dependency-file
8233 @opindex dylib_file
8234 @opindex dylinker_install_name
8235 @opindex dynamic
8236 @opindex exported_symbols_list
8237 @opindex filelist
8238 @opindex flat_namespace
8239 @opindex force_flat_namespace
8240 @opindex headerpad_max_install_names
8241 @opindex image_base
8242 @opindex init
8243 @opindex install_name
8244 @opindex keep_private_externs
8245 @opindex multi_module
8246 @opindex multiply_defined
8247 @opindex multiply_defined_unused
8248 @opindex noall_load
8249 @opindex no_dead_strip_inits_and_terms
8250 @opindex nofixprebinding
8251 @opindex nomultidefs
8252 @opindex noprebind
8253 @opindex noseglinkedit
8254 @opindex pagezero_size
8255 @opindex prebind
8256 @opindex prebind_all_twolevel_modules
8257 @opindex private_bundle
8258 @opindex read_only_relocs
8259 @opindex sectalign
8260 @opindex sectobjectsymbols
8261 @opindex whyload
8262 @opindex seg1addr
8263 @opindex sectcreate
8264 @opindex sectobjectsymbols
8265 @opindex sectorder
8266 @opindex segaddr
8267 @opindex segs_read_only_addr
8268 @opindex segs_read_write_addr
8269 @opindex seg_addr_table
8270 @opindex seg_addr_table_filename
8271 @opindex seglinkedit
8272 @opindex segprot
8273 @opindex segs_read_only_addr
8274 @opindex segs_read_write_addr
8275 @opindex single_module
8276 @opindex static
8277 @opindex sub_library
8278 @opindex sub_umbrella
8279 @opindex twolevel_namespace
8280 @opindex umbrella
8281 @opindex undefined
8282 @opindex unexported_symbols_list
8283 @opindex weak_reference_mismatches
8284 @opindex whatsloaded
8285
8286 These options are passed to the Darwin linker.  The Darwin linker man page
8287 describes them in detail.
8288 @end table
8289
8290 @node DEC Alpha Options
8291 @subsection DEC Alpha Options
8292
8293 These @samp{-m} options are defined for the DEC Alpha implementations:
8294
8295 @table @gcctabopt
8296 @item -mno-soft-float
8297 @itemx -msoft-float
8298 @opindex mno-soft-float
8299 @opindex msoft-float
8300 Use (do not use) the hardware floating-point instructions for
8301 floating-point operations.  When @option{-msoft-float} is specified,
8302 functions in @file{libgcc.a} will be used to perform floating-point
8303 operations.  Unless they are replaced by routines that emulate the
8304 floating-point operations, or compiled in such a way as to call such
8305 emulations routines, these routines will issue floating-point
8306 operations.   If you are compiling for an Alpha without floating-point
8307 operations, you must ensure that the library is built so as not to call
8308 them.
8309
8310 Note that Alpha implementations without floating-point operations are
8311 required to have floating-point registers.
8312
8313 @item -mfp-reg
8314 @itemx -mno-fp-regs
8315 @opindex mfp-reg
8316 @opindex mno-fp-regs
8317 Generate code that uses (does not use) the floating-point register set.
8318 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
8319 register set is not used, floating point operands are passed in integer
8320 registers as if they were integers and floating-point results are passed
8321 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
8322 so any function with a floating-point argument or return value called by code
8323 compiled with @option{-mno-fp-regs} must also be compiled with that
8324 option.
8325
8326 A typical use of this option is building a kernel that does not use,
8327 and hence need not save and restore, any floating-point registers.
8328
8329 @item -mieee
8330 @opindex mieee
8331 The Alpha architecture implements floating-point hardware optimized for
8332 maximum performance.  It is mostly compliant with the IEEE floating
8333 point standard.  However, for full compliance, software assistance is
8334 required.  This option generates code fully IEEE compliant code
8335 @emph{except} that the @var{inexact-flag} is not maintained (see below).
8336 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
8337 defined during compilation.  The resulting code is less efficient but is
8338 able to correctly support denormalized numbers and exceptional IEEE
8339 values such as not-a-number and plus/minus infinity.  Other Alpha
8340 compilers call this option @option{-ieee_with_no_inexact}.
8341
8342 @item -mieee-with-inexact
8343 @opindex mieee-with-inexact
8344 This is like @option{-mieee} except the generated code also maintains
8345 the IEEE @var{inexact-flag}.  Turning on this option causes the
8346 generated code to implement fully-compliant IEEE math.  In addition to
8347 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
8348 macro.  On some Alpha implementations the resulting code may execute
8349 significantly slower than the code generated by default.  Since there is
8350 very little code that depends on the @var{inexact-flag}, you should
8351 normally not specify this option.  Other Alpha compilers call this
8352 option @option{-ieee_with_inexact}.
8353
8354 @item -mfp-trap-mode=@var{trap-mode}
8355 @opindex mfp-trap-mode
8356 This option controls what floating-point related traps are enabled.
8357 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
8358 The trap mode can be set to one of four values:
8359
8360 @table @samp
8361 @item n
8362 This is the default (normal) setting.  The only traps that are enabled
8363 are the ones that cannot be disabled in software (e.g., division by zero
8364 trap).
8365
8366 @item u
8367 In addition to the traps enabled by @samp{n}, underflow traps are enabled
8368 as well.
8369
8370 @item su
8371 Like @samp{u}, but the instructions are marked to be safe for software
8372 completion (see Alpha architecture manual for details).
8373
8374 @item sui
8375 Like @samp{su}, but inexact traps are enabled as well.
8376 @end table
8377
8378 @item -mfp-rounding-mode=@var{rounding-mode}
8379 @opindex mfp-rounding-mode
8380 Selects the IEEE rounding mode.  Other Alpha compilers call this option
8381 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
8382 of:
8383
8384 @table @samp
8385 @item n
8386 Normal IEEE rounding mode.  Floating point numbers are rounded towards
8387 the nearest machine number or towards the even machine number in case
8388 of a tie.
8389
8390 @item m
8391 Round towards minus infinity.
8392
8393 @item c
8394 Chopped rounding mode.  Floating point numbers are rounded towards zero.
8395
8396 @item d
8397 Dynamic rounding mode.  A field in the floating point control register
8398 (@var{fpcr}, see Alpha architecture reference manual) controls the
8399 rounding mode in effect.  The C library initializes this register for
8400 rounding towards plus infinity.  Thus, unless your program modifies the
8401 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
8402 @end table
8403
8404 @item -mtrap-precision=@var{trap-precision}
8405 @opindex mtrap-precision
8406 In the Alpha architecture, floating point traps are imprecise.  This
8407 means without software assistance it is impossible to recover from a
8408 floating trap and program execution normally needs to be terminated.
8409 GCC can generate code that can assist operating system trap handlers
8410 in determining the exact location that caused a floating point trap.
8411 Depending on the requirements of an application, different levels of
8412 precisions can be selected:
8413
8414 @table @samp
8415 @item p
8416 Program precision.  This option is the default and means a trap handler
8417 can only identify which program caused a floating point exception.
8418
8419 @item f
8420 Function precision.  The trap handler can determine the function that
8421 caused a floating point exception.
8422
8423 @item i
8424 Instruction precision.  The trap handler can determine the exact
8425 instruction that caused a floating point exception.
8426 @end table
8427
8428 Other Alpha compilers provide the equivalent options called
8429 @option{-scope_safe} and @option{-resumption_safe}.
8430
8431 @item -mieee-conformant
8432 @opindex mieee-conformant
8433 This option marks the generated code as IEEE conformant.  You must not
8434 use this option unless you also specify @option{-mtrap-precision=i} and either
8435 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
8436 is to emit the line @samp{.eflag 48} in the function prologue of the
8437 generated assembly file.  Under DEC Unix, this has the effect that
8438 IEEE-conformant math library routines will be linked in.
8439
8440 @item -mbuild-constants
8441 @opindex mbuild-constants
8442 Normally GCC examines a 32- or 64-bit integer constant to
8443 see if it can construct it from smaller constants in two or three
8444 instructions.  If it cannot, it will output the constant as a literal and
8445 generate code to load it from the data segment at runtime.
8446
8447 Use this option to require GCC to construct @emph{all} integer constants
8448 using code, even if it takes more instructions (the maximum is six).
8449
8450 You would typically use this option to build a shared library dynamic
8451 loader.  Itself a shared library, it must relocate itself in memory
8452 before it can find the variables and constants in its own data segment.
8453
8454 @item -malpha-as
8455 @itemx -mgas
8456 @opindex malpha-as
8457 @opindex mgas
8458 Select whether to generate code to be assembled by the vendor-supplied
8459 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
8460
8461 @item -mbwx
8462 @itemx -mno-bwx
8463 @itemx -mcix
8464 @itemx -mno-cix
8465 @itemx -mfix
8466 @itemx -mno-fix
8467 @itemx -mmax
8468 @itemx -mno-max
8469 @opindex mbwx
8470 @opindex mno-bwx
8471 @opindex mcix
8472 @opindex mno-cix
8473 @opindex mfix
8474 @opindex mno-fix
8475 @opindex mmax
8476 @opindex mno-max
8477 Indicate whether GCC should generate code to use the optional BWX,
8478 CIX, FIX and MAX instruction sets.  The default is to use the instruction
8479 sets supported by the CPU type specified via @option{-mcpu=} option or that
8480 of the CPU on which GCC was built if none was specified.
8481
8482 @item -mfloat-vax
8483 @itemx -mfloat-ieee
8484 @opindex mfloat-vax
8485 @opindex mfloat-ieee
8486 Generate code that uses (does not use) VAX F and G floating point
8487 arithmetic instead of IEEE single and double precision.
8488
8489 @item -mexplicit-relocs
8490 @itemx -mno-explicit-relocs
8491 @opindex mexplicit-relocs
8492 @opindex mno-explicit-relocs
8493 Older Alpha assemblers provided no way to generate symbol relocations
8494 except via assembler macros.  Use of these macros does not allow
8495 optimal instruction scheduling.  GNU binutils as of version 2.12
8496 supports a new syntax that allows the compiler to explicitly mark
8497 which relocations should apply to which instructions.  This option
8498 is mostly useful for debugging, as GCC detects the capabilities of
8499 the assembler when it is built and sets the default accordingly.
8500
8501 @item -msmall-data
8502 @itemx -mlarge-data
8503 @opindex msmall-data
8504 @opindex mlarge-data
8505 When @option{-mexplicit-relocs} is in effect, static data is
8506 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
8507 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
8508 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
8509 16-bit relocations off of the @code{$gp} register.  This limits the
8510 size of the small data area to 64KB, but allows the variables to be
8511 directly accessed via a single instruction.
8512
8513 The default is @option{-mlarge-data}.  With this option the data area
8514 is limited to just below 2GB@.  Programs that require more than 2GB of
8515 data must use @code{malloc} or @code{mmap} to allocate the data in the
8516 heap instead of in the program's data segment.
8517
8518 When generating code for shared libraries, @option{-fpic} implies
8519 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
8520
8521 @item -msmall-text
8522 @itemx -mlarge-text
8523 @opindex msmall-text
8524 @opindex mlarge-text
8525 When @option{-msmall-text} is used, the compiler assumes that the
8526 code of the entire program (or shared library) fits in 4MB, and is
8527 thus reachable with a branch instruction.  When @option{-msmall-data}
8528 is used, the compiler can assume that all local symbols share the
8529 same @code{$gp} value, and thus reduce the number of instructions
8530 required for a function call from 4 to 1.
8531
8532 The default is @option{-mlarge-text}.
8533
8534 @item -mcpu=@var{cpu_type}
8535 @opindex mcpu
8536 Set the instruction set and instruction scheduling parameters for
8537 machine type @var{cpu_type}.  You can specify either the @samp{EV}
8538 style name or the corresponding chip number.  GCC supports scheduling
8539 parameters for the EV4, EV5 and EV6 family of processors and will
8540 choose the default values for the instruction set from the processor
8541 you specify.  If you do not specify a processor type, GCC will default
8542 to the processor on which the compiler was built.
8543
8544 Supported values for @var{cpu_type} are
8545
8546 @table @samp
8547 @item ev4
8548 @itemx ev45
8549 @itemx 21064
8550 Schedules as an EV4 and has no instruction set extensions.
8551
8552 @item ev5
8553 @itemx 21164
8554 Schedules as an EV5 and has no instruction set extensions.
8555
8556 @item ev56
8557 @itemx 21164a
8558 Schedules as an EV5 and supports the BWX extension.
8559
8560 @item pca56
8561 @itemx 21164pc
8562 @itemx 21164PC
8563 Schedules as an EV5 and supports the BWX and MAX extensions.
8564
8565 @item ev6
8566 @itemx 21264
8567 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
8568
8569 @item ev67
8570 @itemx 21264a
8571 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
8572 @end table
8573
8574 @item -mtune=@var{cpu_type}
8575 @opindex mtune
8576 Set only the instruction scheduling parameters for machine type
8577 @var{cpu_type}.  The instruction set is not changed.
8578
8579 @item -mmemory-latency=@var{time}
8580 @opindex mmemory-latency
8581 Sets the latency the scheduler should assume for typical memory
8582 references as seen by the application.  This number is highly
8583 dependent on the memory access patterns used by the application
8584 and the size of the external cache on the machine.
8585
8586 Valid options for @var{time} are
8587
8588 @table @samp
8589 @item @var{number}
8590 A decimal number representing clock cycles.
8591
8592 @item L1
8593 @itemx L2
8594 @itemx L3
8595 @itemx main
8596 The compiler contains estimates of the number of clock cycles for
8597 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
8598 (also called Dcache, Scache, and Bcache), as well as to main memory.
8599 Note that L3 is only valid for EV5.
8600
8601 @end table
8602 @end table
8603
8604 @node DEC Alpha/VMS Options
8605 @subsection DEC Alpha/VMS Options
8606
8607 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
8608
8609 @table @gcctabopt
8610 @item -mvms-return-codes
8611 @opindex mvms-return-codes
8612 Return VMS condition codes from main.  The default is to return POSIX
8613 style condition (e.g.@ error) codes.
8614 @end table
8615
8616 @node FRV Options
8617 @subsection FRV Options
8618 @cindex FRV Options
8619
8620 @table @gcctabopt
8621 @item -mgpr-32
8622 @opindex mgpr-32
8623
8624 Only use the first 32 general purpose registers.
8625
8626 @item -mgpr-64
8627 @opindex mgpr-64
8628
8629 Use all 64 general purpose registers.
8630
8631 @item -mfpr-32
8632 @opindex mfpr-32
8633
8634 Use only the first 32 floating point registers.
8635
8636 @item -mfpr-64
8637 @opindex mfpr-64
8638
8639 Use all 64 floating point registers
8640
8641 @item -mhard-float
8642 @opindex mhard-float
8643
8644 Use hardware instructions for floating point operations.
8645
8646 @item -msoft-float
8647 @opindex msoft-float
8648
8649 Use library routines for floating point operations.
8650
8651 @item -malloc-cc
8652 @opindex malloc-cc
8653
8654 Dynamically allocate condition code registers.
8655
8656 @item -mfixed-cc
8657 @opindex mfixed-cc
8658
8659 Do not try to dynamically allocate condition code registers, only
8660 use @code{icc0} and @code{fcc0}.
8661
8662 @item -mdword
8663 @opindex mdword
8664
8665 Change ABI to use double word insns.
8666
8667 @item -mno-dword
8668 @opindex mno-dword
8669
8670 Do not use double word instructions.
8671
8672 @item -mdouble
8673 @opindex mdouble
8674
8675 Use floating point double instructions.
8676
8677 @item -mno-double
8678 @opindex mno-double
8679
8680 Do not use floating point double instructions.
8681
8682 @item -mmedia
8683 @opindex mmedia
8684
8685 Use media instructions.
8686
8687 @item -mno-media
8688 @opindex mno-media
8689
8690 Do not use media instructions.
8691
8692 @item -mmuladd
8693 @opindex mmuladd
8694
8695 Use multiply and add/subtract instructions.
8696
8697 @item -mno-muladd
8698 @opindex mno-muladd
8699
8700 Do not use multiply and add/subtract instructions.
8701
8702 @item -mfdpic
8703 @opindex mfdpic
8704
8705 Select the FDPIC ABI, that uses function descriptors to represent
8706 pointers to functions.  Without any PIC/PIE-related options, it
8707 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
8708 assumes GOT entries and small data are within a 12-bit range from the
8709 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
8710 are computed with 32 bits.
8711
8712 @item -minline-plt
8713 @opindex minline-plt
8714
8715 Enable inlining of PLT entries in function calls to functions that are
8716 not known to bind locally.  It has no effect without @option{-mfdpic}.
8717 It's enabled by default if optimizing for speed and compiling for
8718 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
8719 optimization option such as @option{-O3} or above is present in the
8720 command line.
8721
8722 @item -mTLS
8723 @opindex TLS
8724
8725 Assume a large TLS segment when generating thread-local code.
8726
8727 @item -mtls
8728 @opindex tls
8729
8730 Do not assume a large TLS segment when generating thread-local code.
8731
8732 @item -mgprel-ro
8733 @opindex mgprel-ro
8734
8735 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
8736 that is known to be in read-only sections.  It's enabled by default,
8737 except for @option{-fpic} or @option{-fpie}: even though it may help
8738 make the global offset table smaller, it trades 1 instruction for 4.
8739 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
8740 one of which may be shared by multiple symbols, and it avoids the need
8741 for a GOT entry for the referenced symbol, so it's more likely to be a
8742 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
8743
8744 @item -multilib-library-pic
8745 @opindex multilib-library-pic
8746
8747 Link with the (library, not FD) pic libraries.  It's implied by
8748 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
8749 @option{-fpic} without @option{-mfdpic}.  You should never have to use
8750 it explicitly.
8751
8752 @item -mlinked-fp
8753 @opindex mlinked-fp
8754
8755 Follow the EABI requirement of always creating a frame pointer whenever
8756 a stack frame is allocated.  This option is enabled by default and can
8757 be disabled with @option{-mno-linked-fp}.
8758
8759 @item -mlong-calls
8760 @opindex mlong-calls
8761
8762 Use indirect addressing to call functions outside the current
8763 compilation unit.  This allows the functions to be placed anywhere
8764 within the 32-bit address space.
8765
8766 @item -malign-labels
8767 @opindex malign-labels
8768
8769 Try to align labels to an 8-byte boundary by inserting nops into the
8770 previous packet.  This option only has an effect when VLIW packing
8771 is enabled.  It doesn't create new packets; it merely adds nops to
8772 existing ones.
8773
8774 @item -mlibrary-pic
8775 @opindex mlibrary-pic
8776
8777 Generate position-independent EABI code.
8778
8779 @item -macc-4
8780 @opindex macc-4
8781
8782 Use only the first four media accumulator registers.
8783
8784 @item -macc-8
8785 @opindex macc-8
8786
8787 Use all eight media accumulator registers.
8788
8789 @item -mpack
8790 @opindex mpack
8791
8792 Pack VLIW instructions.
8793
8794 @item -mno-pack
8795 @opindex mno-pack
8796
8797 Do not pack VLIW instructions.
8798
8799 @item -mno-eflags
8800 @opindex mno-eflags
8801
8802 Do not mark ABI switches in e_flags.
8803
8804 @item -mcond-move
8805 @opindex mcond-move
8806
8807 Enable the use of conditional-move instructions (default).
8808
8809 This switch is mainly for debugging the compiler and will likely be removed
8810 in a future version.
8811
8812 @item -mno-cond-move
8813 @opindex mno-cond-move
8814
8815 Disable the use of conditional-move instructions.
8816
8817 This switch is mainly for debugging the compiler and will likely be removed
8818 in a future version.
8819
8820 @item -mscc
8821 @opindex mscc
8822
8823 Enable the use of conditional set instructions (default).
8824
8825 This switch is mainly for debugging the compiler and will likely be removed
8826 in a future version.
8827
8828 @item -mno-scc
8829 @opindex mno-scc
8830
8831 Disable the use of conditional set instructions.
8832
8833 This switch is mainly for debugging the compiler and will likely be removed
8834 in a future version.
8835
8836 @item -mcond-exec
8837 @opindex mcond-exec
8838
8839 Enable the use of conditional execution (default).
8840
8841 This switch is mainly for debugging the compiler and will likely be removed
8842 in a future version.
8843
8844 @item -mno-cond-exec
8845 @opindex mno-cond-exec
8846
8847 Disable the use of conditional execution.
8848
8849 This switch is mainly for debugging the compiler and will likely be removed
8850 in a future version.
8851
8852 @item -mvliw-branch
8853 @opindex mvliw-branch
8854
8855 Run a pass to pack branches into VLIW instructions (default).
8856
8857 This switch is mainly for debugging the compiler and will likely be removed
8858 in a future version.
8859
8860 @item -mno-vliw-branch
8861 @opindex mno-vliw-branch
8862
8863 Do not run a pass to pack branches into VLIW instructions.
8864
8865 This switch is mainly for debugging the compiler and will likely be removed
8866 in a future version.
8867
8868 @item -mmulti-cond-exec
8869 @opindex mmulti-cond-exec
8870
8871 Enable optimization of @code{&&} and @code{||} in conditional execution
8872 (default).
8873
8874 This switch is mainly for debugging the compiler and will likely be removed
8875 in a future version.
8876
8877 @item -mno-multi-cond-exec
8878 @opindex mno-multi-cond-exec
8879
8880 Disable optimization of @code{&&} and @code{||} in conditional execution.
8881
8882 This switch is mainly for debugging the compiler and will likely be removed
8883 in a future version.
8884
8885 @item -mnested-cond-exec
8886 @opindex mnested-cond-exec
8887
8888 Enable nested conditional execution optimizations (default).
8889
8890 This switch is mainly for debugging the compiler and will likely be removed
8891 in a future version.
8892
8893 @item -mno-nested-cond-exec
8894 @opindex mno-nested-cond-exec
8895
8896 Disable nested conditional execution optimizations.
8897
8898 This switch is mainly for debugging the compiler and will likely be removed
8899 in a future version.
8900
8901 @item -moptimize-membar
8902 @opindex moptimize-membar
8903
8904 This switch removes redundant @code{membar} instructions from the
8905 compiler generated code.  It is enabled by default.
8906
8907 @item -mno-optimize-membar
8908 @opindex mno-optimize-membar
8909
8910 This switch disables the automatic removal of redundant @code{membar}
8911 instructions from the generated code.
8912
8913 @item -mtomcat-stats
8914 @opindex mtomcat-stats
8915
8916 Cause gas to print out tomcat statistics.
8917
8918 @item -mcpu=@var{cpu}
8919 @opindex mcpu
8920
8921 Select the processor type for which to generate code.  Possible values are
8922 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
8923 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
8924
8925 @end table
8926
8927 @node GNU/Linux Options
8928 @subsection GNU/Linux Options
8929
8930 These @samp{-m} options are defined for GNU/Linux targets:
8931
8932 @table @gcctabopt
8933 @item -mglibc
8934 @opindex mglibc
8935 Use the GNU C library instead of uClibc.  This is the default except
8936 on @samp{*-*-linux-*uclibc*} targets.
8937
8938 @item -muclibc
8939 @opindex muclibc
8940 Use uClibc instead of the GNU C library.  This is the default on
8941 @samp{*-*-linux-*uclibc*} targets.
8942 @end table
8943
8944 @node H8/300 Options
8945 @subsection H8/300 Options
8946
8947 These @samp{-m} options are defined for the H8/300 implementations:
8948
8949 @table @gcctabopt
8950 @item -mrelax
8951 @opindex mrelax
8952 Shorten some address references at link time, when possible; uses the
8953 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
8954 ld, Using ld}, for a fuller description.
8955
8956 @item -mh
8957 @opindex mh
8958 Generate code for the H8/300H@.
8959
8960 @item -ms
8961 @opindex ms
8962 Generate code for the H8S@.
8963
8964 @item -mn
8965 @opindex mn
8966 Generate code for the H8S and H8/300H in the normal mode.  This switch
8967 must be used either with @option{-mh} or @option{-ms}.
8968
8969 @item -ms2600
8970 @opindex ms2600
8971 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
8972
8973 @item -mint32
8974 @opindex mint32
8975 Make @code{int} data 32 bits by default.
8976
8977 @item -malign-300
8978 @opindex malign-300
8979 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
8980 The default for the H8/300H and H8S is to align longs and floats on 4
8981 byte boundaries.
8982 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
8983 This option has no effect on the H8/300.
8984 @end table
8985
8986 @node HPPA Options
8987 @subsection HPPA Options
8988 @cindex HPPA Options
8989
8990 These @samp{-m} options are defined for the HPPA family of computers:
8991
8992 @table @gcctabopt
8993 @item -march=@var{architecture-type}
8994 @opindex march
8995 Generate code for the specified architecture.  The choices for
8996 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
8997 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
8998 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
8999 architecture option for your machine.  Code compiled for lower numbered
9000 architectures will run on higher numbered architectures, but not the
9001 other way around.
9002
9003 @item -mpa-risc-1-0
9004 @itemx -mpa-risc-1-1
9005 @itemx -mpa-risc-2-0
9006 @opindex mpa-risc-1-0
9007 @opindex mpa-risc-1-1
9008 @opindex mpa-risc-2-0
9009 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
9010
9011 @item -mbig-switch
9012 @opindex mbig-switch
9013 Generate code suitable for big switch tables.  Use this option only if
9014 the assembler/linker complain about out of range branches within a switch
9015 table.
9016
9017 @item -mjump-in-delay
9018 @opindex mjump-in-delay
9019 Fill delay slots of function calls with unconditional jump instructions
9020 by modifying the return pointer for the function call to be the target
9021 of the conditional jump.
9022
9023 @item -mdisable-fpregs
9024 @opindex mdisable-fpregs
9025 Prevent floating point registers from being used in any manner.  This is
9026 necessary for compiling kernels which perform lazy context switching of
9027 floating point registers.  If you use this option and attempt to perform
9028 floating point operations, the compiler will abort.
9029
9030 @item -mdisable-indexing
9031 @opindex mdisable-indexing
9032 Prevent the compiler from using indexing address modes.  This avoids some
9033 rather obscure problems when compiling MIG generated code under MACH@.
9034
9035 @item -mno-space-regs
9036 @opindex mno-space-regs
9037 Generate code that assumes the target has no space registers.  This allows
9038 GCC to generate faster indirect calls and use unscaled index address modes.
9039
9040 Such code is suitable for level 0 PA systems and kernels.
9041
9042 @item -mfast-indirect-calls
9043 @opindex mfast-indirect-calls
9044 Generate code that assumes calls never cross space boundaries.  This
9045 allows GCC to emit code which performs faster indirect calls.
9046
9047 This option will not work in the presence of shared libraries or nested
9048 functions.
9049
9050 @item -mfixed-range=@var{register-range}
9051 @opindex mfixed-range
9052 Generate code treating the given register range as fixed registers.
9053 A fixed register is one that the register allocator can not use.  This is
9054 useful when compiling kernel code.  A register range is specified as
9055 two registers separated by a dash.  Multiple register ranges can be
9056 specified separated by a comma.
9057
9058 @item -mlong-load-store
9059 @opindex mlong-load-store
9060 Generate 3-instruction load and store sequences as sometimes required by
9061 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
9062 the HP compilers.
9063
9064 @item -mportable-runtime
9065 @opindex mportable-runtime
9066 Use the portable calling conventions proposed by HP for ELF systems.
9067
9068 @item -mgas
9069 @opindex mgas
9070 Enable the use of assembler directives only GAS understands.
9071
9072 @item -mschedule=@var{cpu-type}
9073 @opindex mschedule
9074 Schedule code according to the constraints for the machine type
9075 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
9076 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
9077 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
9078 proper scheduling option for your machine.  The default scheduling is
9079 @samp{8000}.
9080
9081 @item -mlinker-opt
9082 @opindex mlinker-opt
9083 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
9084 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
9085 linkers in which they give bogus error messages when linking some programs.
9086
9087 @item -msoft-float
9088 @opindex msoft-float
9089 Generate output containing library calls for floating point.
9090 @strong{Warning:} the requisite libraries are not available for all HPPA
9091 targets.  Normally the facilities of the machine's usual C compiler are
9092 used, but this cannot be done directly in cross-compilation.  You must make
9093 your own arrangements to provide suitable library functions for
9094 cross-compilation.  The embedded target @samp{hppa1.1-*-pro}
9095 does provide software floating point support.
9096
9097 @option{-msoft-float} changes the calling convention in the output file;
9098 therefore, it is only useful if you compile @emph{all} of a program with
9099 this option.  In particular, you need to compile @file{libgcc.a}, the
9100 library that comes with GCC, with @option{-msoft-float} in order for
9101 this to work.
9102
9103 @item -msio
9104 @opindex msio
9105 Generate the predefine, @code{_SIO}, for server IO@.  The default is
9106 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
9107 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
9108 options are available under HP-UX and HI-UX@.
9109
9110 @item -mgnu-ld
9111 @opindex gnu-ld
9112 Use GNU ld specific options.  This passes @option{-shared} to ld when
9113 building a shared library.  It is the default when GCC is configured,
9114 explicitly or implicitly, with the GNU linker.  This option does not
9115 have any affect on which ld is called, it only changes what parameters
9116 are passed to that ld.  The ld that is called is determined by the
9117 @option{--with-ld} configure option, GCC's program search path, and
9118 finally by the user's @env{PATH}.  The linker used by GCC can be printed
9119 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
9120 on the 64 bit HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
9121
9122 @item -mhp-ld
9123 @opindex hp-ld
9124 Use HP ld specific options.  This passes @option{-b} to ld when building
9125 a shared library and passes @option{+Accept TypeMismatch} to ld on all
9126 links.  It is the default when GCC is configured, explicitly or
9127 implicitly, with the HP linker.  This option does not have any affect on
9128 which ld is called, it only changes what parameters are passed to that
9129 ld.  The ld that is called is determined by the @option{--with-ld}
9130 configure option, GCC's program search path, and finally by the user's
9131 @env{PATH}.  The linker used by GCC can be printed using @samp{which
9132 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
9133 HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
9134
9135 @item -mlong-calls
9136 @opindex mno-long-calls
9137 Generate code that uses long call sequences.  This ensures that a call
9138 is always able to reach linker generated stubs.  The default is to generate
9139 long calls only when the distance from the call site to the beginning
9140 of the function or translation unit, as the case may be, exceeds a
9141 predefined limit set by the branch type being used.  The limits for
9142 normal calls are 7,600,000 and 240,000 bytes, respectively for the
9143 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
9144 240,000 bytes.
9145
9146 Distances are measured from the beginning of functions when using the
9147 @option{-ffunction-sections} option, or when using the @option{-mgas}
9148 and @option{-mno-portable-runtime} options together under HP-UX with
9149 the SOM linker.
9150
9151 It is normally not desirable to use this option as it will degrade
9152 performance.  However, it may be useful in large applications,
9153 particularly when partial linking is used to build the application.
9154
9155 The types of long calls used depends on the capabilities of the
9156 assembler and linker, and the type of code being generated.  The
9157 impact on systems that support long absolute calls, and long pic
9158 symbol-difference or pc-relative calls should be relatively small.
9159 However, an indirect call is used on 32-bit ELF systems in pic code
9160 and it is quite long.
9161
9162 @item -munix=@var{unix-std}
9163 @opindex march
9164 Generate compiler predefines and select a startfile for the specified
9165 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
9166 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
9167 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
9168 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
9169 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
9170 and later.
9171
9172 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
9173 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
9174 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
9175 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
9176 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
9177 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
9178
9179 It is @emph{important} to note that this option changes the interfaces
9180 for various library routines.  It also affects the operational behavior
9181 of the C library.  Thus, @emph{extreme} care is needed in using this
9182 option.
9183
9184 Library code that is intended to operate with more than one UNIX
9185 standard must test, set and restore the variable @var{__xpg4_extended_mask}
9186 as appropriate.  Most GNU software doesn't provide this capability.
9187
9188 @item -nolibdld
9189 @opindex nolibdld
9190 Suppress the generation of link options to search libdld.sl when the
9191 @option{-static} option is specified on HP-UX 10 and later.
9192
9193 @item -static
9194 @opindex static
9195 The HP-UX implementation of setlocale in libc has a dependency on
9196 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
9197 when the @option{-static} option is specified, special link options
9198 are needed to resolve this dependency.
9199
9200 On HP-UX 10 and later, the GCC driver adds the necessary options to
9201 link with libdld.sl when the @option{-static} option is specified.
9202 This causes the resulting binary to be dynamic.  On the 64-bit port,
9203 the linkers generate dynamic binaries by default in any case.  The
9204 @option{-nolibdld} option can be used to prevent the GCC driver from
9205 adding these link options.
9206
9207 @item -threads
9208 @opindex threads
9209 Add support for multithreading with the @dfn{dce thread} library
9210 under HP-UX@.  This option sets flags for both the preprocessor and
9211 linker.
9212 @end table
9213
9214 @node i386 and x86-64 Options
9215 @subsection Intel 386 and AMD x86-64 Options
9216 @cindex i386 Options
9217 @cindex x86-64 Options
9218 @cindex Intel 386 Options
9219 @cindex AMD x86-64 Options
9220
9221 These @samp{-m} options are defined for the i386 and x86-64 family of
9222 computers:
9223
9224 @table @gcctabopt
9225 @item -mtune=@var{cpu-type}
9226 @opindex mtune
9227 Tune to @var{cpu-type} everything applicable about the generated code, except
9228 for the ABI and the set of available instructions.  The choices for
9229 @var{cpu-type} are:
9230 @table @emph
9231 @item generic
9232 Produce code optimized for the most common IA32/AMD64/EM64T processors.
9233 If you know the CPU on which your code will run, then you should use
9234 the corresponding @option{-mtune} option instead of
9235 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
9236 of your application will have, then you should use this option.
9237
9238 As new processors are deployed in the marketplace, the behavior of this
9239 option will change.  Therefore, if you upgrade to a newer version of
9240 GCC, the code generated option will change to reflect the processors
9241 that were most common when that version of GCC was released.
9242
9243 There is no @option{-march=generic} option because @option{-march}
9244 indicates the instruction set the compiler can use, and there is no
9245 generic instruction set applicable to all processors.  In contrast,
9246 @option{-mtune} indicates the processor (or, in this case, collection of
9247 processors) for which the code is optimized.
9248 @item native
9249 This selects the CPU to tune for at compilation time by determining
9250 the processor type of the compiling machine.  Using @option{-mtune=native}
9251 will produce code optimized for the local machine under the constraints
9252 of the selected instruction set.  Using @option{-march=native} will
9253 enable all instruction subsets supported by the local machine (hence
9254 the result might not run on different machines).
9255 @item i386
9256 Original Intel's i386 CPU@.
9257 @item i486
9258 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
9259 @item i586, pentium
9260 Intel Pentium CPU with no MMX support.
9261 @item pentium-mmx
9262 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
9263 @item pentiumpro
9264 Intel PentiumPro CPU@.
9265 @item i686
9266 Same as @code{generic}, but when used as @code{march} option, PentiumPro
9267 instruction set will be used, so the code will run on all i686 family chips.
9268 @item pentium2
9269 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
9270 @item pentium3, pentium3m
9271 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
9272 support.
9273 @item pentium-m
9274 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
9275 support.  Used by Centrino notebooks.
9276 @item pentium4, pentium4m
9277 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
9278 @item prescott
9279 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
9280 set support.
9281 @item nocona
9282 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
9283 SSE2 and SSE3 instruction set support.
9284 @item k6
9285 AMD K6 CPU with MMX instruction set support.
9286 @item k6-2, k6-3
9287 Improved versions of AMD K6 CPU with MMX and 3dNOW! instruction set support.
9288 @item athlon, athlon-tbird
9289 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch instructions
9290 support.
9291 @item athlon-4, athlon-xp, athlon-mp
9292 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE
9293 instruction set support.
9294 @item k8, opteron, athlon64, athlon-fx
9295 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
9296 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW! and 64-bit instruction set extensions.)
9297 @item winchip-c6
9298 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
9299 set support.
9300 @item winchip2
9301 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!
9302 instruction set support.
9303 @item c3
9304 Via C3 CPU with MMX and 3dNOW! instruction set support.  (No scheduling is
9305 implemented for this chip.)
9306 @item c3-2
9307 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
9308 implemented for this chip.)
9309 @item geode
9310 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
9311 @end table
9312
9313 While picking a specific @var{cpu-type} will schedule things appropriately
9314 for that particular chip, the compiler will not generate any code that
9315 does not run on the i386 without the @option{-march=@var{cpu-type}} option
9316 being used.
9317
9318 @item -march=@var{cpu-type}
9319 @opindex march
9320 Generate instructions for the machine type @var{cpu-type}.  The choices
9321 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
9322 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
9323
9324 @item -mcpu=@var{cpu-type}
9325 @opindex mcpu
9326 A deprecated synonym for @option{-mtune}.
9327
9328 @item -m386
9329 @itemx -m486
9330 @itemx -mpentium
9331 @itemx -mpentiumpro
9332 @opindex m386
9333 @opindex m486
9334 @opindex mpentium
9335 @opindex mpentiumpro
9336 These options are synonyms for @option{-mtune=i386}, @option{-mtune=i486},
9337 @option{-mtune=pentium}, and @option{-mtune=pentiumpro} respectively.
9338 These synonyms are deprecated.
9339
9340 @item -mfpmath=@var{unit}
9341 @opindex march
9342 Generate floating point arithmetics for selected unit @var{unit}.  The choices
9343 for @var{unit} are:
9344
9345 @table @samp
9346 @item 387
9347 Use the standard 387 floating point coprocessor present majority of chips and
9348 emulated otherwise.  Code compiled with this option will run almost everywhere.
9349 The temporary results are computed in 80bit precision instead of precision
9350 specified by the type resulting in slightly different results compared to most
9351 of other chips.  See @option{-ffloat-store} for more detailed description.
9352
9353 This is the default choice for i386 compiler.
9354
9355 @item sse
9356 Use scalar floating point instructions present in the SSE instruction set.
9357 This instruction set is supported by Pentium3 and newer chips, in the AMD line
9358 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
9359 instruction set supports only single precision arithmetics, thus the double and
9360 extended precision arithmetics is still done using 387.  Later version, present
9361 only in Pentium4 and the future AMD x86-64 chips supports double precision
9362 arithmetics too.
9363
9364 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
9365 or @option{-msse2} switches to enable SSE extensions and make this option
9366 effective.  For the x86-64 compiler, these extensions are enabled by default.
9367
9368 The resulting code should be considerably faster in the majority of cases and avoid
9369 the numerical instability problems of 387 code, but may break some existing
9370 code that expects temporaries to be 80bit.
9371
9372 This is the default choice for the x86-64 compiler.
9373
9374 @item sse,387
9375 Attempt to utilize both instruction sets at once.  This effectively double the
9376 amount of available registers and on chips with separate execution units for
9377 387 and SSE the execution resources too.  Use this option with care, as it is
9378 still experimental, because the GCC register allocator does not model separate
9379 functional units well resulting in instable performance.
9380 @end table
9381
9382 @item -masm=@var{dialect}
9383 @opindex masm=@var{dialect}
9384 Output asm instructions using selected @var{dialect}.  Supported
9385 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
9386 not support @samp{intel}.
9387
9388 @item -mieee-fp
9389 @itemx -mno-ieee-fp
9390 @opindex mieee-fp
9391 @opindex mno-ieee-fp
9392 Control whether or not the compiler uses IEEE floating point
9393 comparisons.  These handle correctly the case where the result of a
9394 comparison is unordered.
9395
9396 @item -msoft-float
9397 @opindex msoft-float
9398 Generate output containing library calls for floating point.
9399 @strong{Warning:} the requisite libraries are not part of GCC@.
9400 Normally the facilities of the machine's usual C compiler are used, but
9401 this can't be done directly in cross-compilation.  You must make your
9402 own arrangements to provide suitable library functions for
9403 cross-compilation.
9404
9405 On machines where a function returns floating point results in the 80387
9406 register stack, some floating point opcodes may be emitted even if
9407 @option{-msoft-float} is used.
9408
9409 @item -mno-fp-ret-in-387
9410 @opindex mno-fp-ret-in-387
9411 Do not use the FPU registers for return values of functions.
9412
9413 The usual calling convention has functions return values of types
9414 @code{float} and @code{double} in an FPU register, even if there
9415 is no FPU@.  The idea is that the operating system should emulate
9416 an FPU@.
9417
9418 The option @option{-mno-fp-ret-in-387} causes such values to be returned
9419 in ordinary CPU registers instead.
9420
9421 @item -mno-fancy-math-387
9422 @opindex mno-fancy-math-387
9423 Some 387 emulators do not support the @code{sin}, @code{cos} and
9424 @code{sqrt} instructions for the 387.  Specify this option to avoid
9425 generating those instructions.  This option is the default on FreeBSD,
9426 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
9427 indicates that the target cpu will always have an FPU and so the
9428 instruction will not need emulation.  As of revision 2.6.1, these
9429 instructions are not generated unless you also use the
9430 @option{-funsafe-math-optimizations} switch.
9431
9432 @item -malign-double
9433 @itemx -mno-align-double
9434 @opindex malign-double
9435 @opindex mno-align-double
9436 Control whether GCC aligns @code{double}, @code{long double}, and
9437 @code{long long} variables on a two word boundary or a one word
9438 boundary.  Aligning @code{double} variables on a two word boundary will
9439 produce code that runs somewhat faster on a @samp{Pentium} at the
9440 expense of more memory.
9441
9442 On x86-64, @option{-malign-double} is enabled by default.
9443
9444 @strong{Warning:} if you use the @option{-malign-double} switch,
9445 structures containing the above types will be aligned differently than
9446 the published application binary interface specifications for the 386
9447 and will not be binary compatible with structures in code compiled
9448 without that switch.
9449
9450 @item -m96bit-long-double
9451 @itemx -m128bit-long-double
9452 @opindex m96bit-long-double
9453 @opindex m128bit-long-double
9454 These switches control the size of @code{long double} type.  The i386
9455 application binary interface specifies the size to be 96 bits,
9456 so @option{-m96bit-long-double} is the default in 32 bit mode.
9457
9458 Modern architectures (Pentium and newer) would prefer @code{long double}
9459 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
9460 conforming to the ABI, this would not be possible.  So specifying a
9461 @option{-m128bit-long-double} will align @code{long double}
9462 to a 16 byte boundary by padding the @code{long double} with an additional
9463 32 bit zero.
9464
9465 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
9466 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
9467
9468 Notice that neither of these options enable any extra precision over the x87
9469 standard of 80 bits for a @code{long double}.
9470
9471 @strong{Warning:} if you override the default value for your target ABI, the
9472 structures and arrays containing @code{long double} variables will change
9473 their size as well as function calling convention for function taking
9474 @code{long double} will be modified.  Hence they will not be binary
9475 compatible with arrays or structures in code compiled without that switch.
9476
9477 @item -mmlarge-data-threshold=@var{number}
9478 @opindex mlarge-data-threshold=@var{number}
9479 When @option{-mcmodel=medium} is specified, the data greater than
9480 @var{threshold} are placed in large data section.  This value must be the
9481 same across all object linked into the binary and defaults to 65535.
9482
9483 @item -msvr3-shlib
9484 @itemx -mno-svr3-shlib
9485 @opindex msvr3-shlib
9486 @opindex mno-svr3-shlib
9487 Control whether GCC places uninitialized local variables into the
9488 @code{bss} or @code{data} segments.  @option{-msvr3-shlib} places them
9489 into @code{bss}.  These options are meaningful only on System V Release 3.
9490
9491 @item -mrtd
9492 @opindex mrtd
9493 Use a different function-calling convention, in which functions that
9494 take a fixed number of arguments return with the @code{ret} @var{num}
9495 instruction, which pops their arguments while returning.  This saves one
9496 instruction in the caller since there is no need to pop the arguments
9497 there.
9498
9499 You can specify that an individual function is called with this calling
9500 sequence with the function attribute @samp{stdcall}.  You can also
9501 override the @option{-mrtd} option by using the function attribute
9502 @samp{cdecl}.  @xref{Function Attributes}.
9503
9504 @strong{Warning:} this calling convention is incompatible with the one
9505 normally used on Unix, so you cannot use it if you need to call
9506 libraries compiled with the Unix compiler.
9507
9508 Also, you must provide function prototypes for all functions that
9509 take variable numbers of arguments (including @code{printf});
9510 otherwise incorrect code will be generated for calls to those
9511 functions.
9512
9513 In addition, seriously incorrect code will result if you call a
9514 function with too many arguments.  (Normally, extra arguments are
9515 harmlessly ignored.)
9516
9517 @item -mregparm=@var{num}
9518 @opindex mregparm
9519 Control how many registers are used to pass integer arguments.  By
9520 default, no registers are used to pass arguments, and at most 3
9521 registers can be used.  You can control this behavior for a specific
9522 function by using the function attribute @samp{regparm}.
9523 @xref{Function Attributes}.
9524
9525 @strong{Warning:} if you use this switch, and
9526 @var{num} is nonzero, then you must build all modules with the same
9527 value, including any libraries.  This includes the system libraries and
9528 startup modules.
9529
9530 @item -msseregparm
9531 @opindex msseregparm
9532 Use SSE register passing conventions for float and double arguments
9533 and return values.  You can control this behavior for a specific
9534 function by using the function attribute @samp{sseregparm}.
9535 @xref{Function Attributes}.
9536
9537 @strong{Warning:} if you use this switch then you must build all
9538 modules with the same value, including any libraries.  This includes
9539 the system libraries and startup modules.
9540
9541 @item -mstackrealign
9542 @opindex mstackrealign
9543 Realign the stack at entry.  On the Intel x86, the
9544 @option{-mstackrealign} option will generate an alternate prologue and
9545 epilogue that realigns the runtime stack.  This supports mixing legacy
9546 codes that keep a 4-byte aligned stack with modern codes that keep a
9547 16-byte stack for SSE compatibility.  The alternate prologue and
9548 epilogue are slower and bigger than the regular ones, and the
9549 alternate prologue requires an extra scratch register; this lowers the
9550 number of registers available if used in conjunction with the
9551 @code{regparm} attribute.  The @option{-mstackrealign} option is
9552 incompatible with the nested function prologue; this is considered a
9553 hard error.  See also the attribute @code{force_align_arg_pointer},
9554 applicable to individual functions.
9555
9556 @item -mpreferred-stack-boundary=@var{num}
9557 @opindex mpreferred-stack-boundary
9558 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
9559 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
9560 the default is 4 (16 bytes or 128 bits).
9561
9562 On Pentium and PentiumPro, @code{double} and @code{long double} values
9563 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
9564 suffer significant run time performance penalties.  On Pentium III, the
9565 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
9566 properly if it is not 16 byte aligned.
9567
9568 To ensure proper alignment of this values on the stack, the stack boundary
9569 must be as aligned as that required by any value stored on the stack.
9570 Further, every function must be generated such that it keeps the stack
9571 aligned.  Thus calling a function compiled with a higher preferred
9572 stack boundary from a function compiled with a lower preferred stack
9573 boundary will most likely misalign the stack.  It is recommended that
9574 libraries that use callbacks always use the default setting.
9575
9576 This extra alignment does consume extra stack space, and generally
9577 increases code size.  Code that is sensitive to stack space usage, such
9578 as embedded systems and operating system kernels, may want to reduce the
9579 preferred alignment to @option{-mpreferred-stack-boundary=2}.
9580
9581 @item -mmmx
9582 @itemx -mno-mmx
9583 @item -msse
9584 @itemx -mno-sse
9585 @item -msse2
9586 @itemx -mno-sse2
9587 @item -msse3
9588 @itemx -mno-sse3
9589 @item -mssse3
9590 @itemx -mno-ssse3
9591 @item -m3dnow
9592 @itemx -mno-3dnow
9593 @opindex mmmx
9594 @opindex mno-mmx
9595 @opindex msse
9596 @opindex mno-sse
9597 @opindex m3dnow
9598 @opindex mno-3dnow
9599 These switches enable or disable the use of instructions in the MMX,
9600 SSE, SSE2, SSE3, SSSE3 or 3DNow! extended instruction sets.
9601 These extensions are also available as built-in functions: see
9602 @ref{X86 Built-in Functions}, for details of the functions enabled and
9603 disabled by these switches.
9604
9605 To have SSE/SSE2 instructions generated automatically from floating-point
9606 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
9607
9608 These options will enable GCC to use these extended instructions in
9609 generated code, even without @option{-mfpmath=sse}.  Applications which
9610 perform runtime CPU detection must compile separate files for each
9611 supported architecture, using the appropriate flags.  In particular,
9612 the file containing the CPU detection code should be compiled without
9613 these options.
9614
9615 @item -mpush-args
9616 @itemx -mno-push-args
9617 @opindex mpush-args
9618 @opindex mno-push-args
9619 Use PUSH operations to store outgoing parameters.  This method is shorter
9620 and usually equally fast as method using SUB/MOV operations and is enabled
9621 by default.  In some cases disabling it may improve performance because of
9622 improved scheduling and reduced dependencies.
9623
9624 @item -maccumulate-outgoing-args
9625 @opindex maccumulate-outgoing-args
9626 If enabled, the maximum amount of space required for outgoing arguments will be
9627 computed in the function prologue.  This is faster on most modern CPUs
9628 because of reduced dependencies, improved scheduling and reduced stack usage
9629 when preferred stack boundary is not equal to 2.  The drawback is a notable
9630 increase in code size.  This switch implies @option{-mno-push-args}.
9631
9632 @item -mthreads
9633 @opindex mthreads
9634 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
9635 on thread-safe exception handling must compile and link all code with the
9636 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
9637 @option{-D_MT}; when linking, it links in a special thread helper library
9638 @option{-lmingwthrd} which cleans up per thread exception handling data.
9639
9640 @item -mno-align-stringops
9641 @opindex mno-align-stringops
9642 Do not align destination of inlined string operations.  This switch reduces
9643 code size and improves performance in case the destination is already aligned,
9644 but GCC doesn't know about it.
9645
9646 @item -minline-all-stringops
9647 @opindex minline-all-stringops
9648 By default GCC inlines string operations only when destination is known to be
9649 aligned at least to 4 byte boundary.  This enables more inlining, increase code
9650 size, but may improve performance of code that depends on fast memcpy, strlen
9651 and memset for short lengths.
9652
9653 @item -momit-leaf-frame-pointer
9654 @opindex momit-leaf-frame-pointer
9655 Don't keep the frame pointer in a register for leaf functions.  This
9656 avoids the instructions to save, set up and restore frame pointers and
9657 makes an extra register available in leaf functions.  The option
9658 @option{-fomit-frame-pointer} removes the frame pointer for all functions
9659 which might make debugging harder.
9660
9661 @item -mtls-direct-seg-refs
9662 @itemx -mno-tls-direct-seg-refs
9663 @opindex mtls-direct-seg-refs
9664 Controls whether TLS variables may be accessed with offsets from the
9665 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
9666 or whether the thread base pointer must be added.  Whether or not this
9667 is legal depends on the operating system, and whether it maps the
9668 segment to cover the entire TLS area.
9669
9670 For systems that use GNU libc, the default is on.
9671 @end table
9672
9673 These @samp{-m} switches are supported in addition to the above
9674 on AMD x86-64 processors in 64-bit environments.
9675
9676 @table @gcctabopt
9677 @item -m32
9678 @itemx -m64
9679 @opindex m32
9680 @opindex m64
9681 Generate code for a 32-bit or 64-bit environment.
9682 The 32-bit environment sets int, long and pointer to 32 bits and
9683 generates code that runs on any i386 system.
9684 The 64-bit environment sets int to 32 bits and long and pointer
9685 to 64 bits and generates code for AMD's x86-64 architecture.
9686
9687 @item -mno-red-zone
9688 @opindex no-red-zone
9689 Do not use a so called red zone for x86-64 code.  The red zone is mandated
9690 by the x86-64 ABI, it is a 128-byte area beyond the location of the
9691 stack pointer that will not be modified by signal or interrupt handlers
9692 and therefore can be used for temporary data without adjusting the stack
9693 pointer.  The flag @option{-mno-red-zone} disables this red zone.
9694
9695 @item -mcmodel=small
9696 @opindex mcmodel=small
9697 Generate code for the small code model: the program and its symbols must
9698 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
9699 Programs can be statically or dynamically linked.  This is the default
9700 code model.
9701
9702 @item -mcmodel=kernel
9703 @opindex mcmodel=kernel
9704 Generate code for the kernel code model.  The kernel runs in the
9705 negative 2 GB of the address space.
9706 This model has to be used for Linux kernel code.
9707
9708 @item -mcmodel=medium
9709 @opindex mcmodel=medium
9710 Generate code for the medium model: The program is linked in the lower 2
9711 GB of the address space but symbols can be located anywhere in the
9712 address space.  Programs can be statically or dynamically linked, but
9713 building of shared libraries are not supported with the medium model.
9714
9715 @item -mcmodel=large
9716 @opindex mcmodel=large
9717 Generate code for the large model: This model makes no assumptions
9718 about addresses and sizes of sections.  Currently GCC does not implement
9719 this model.
9720 @end table
9721
9722 @node IA-64 Options
9723 @subsection IA-64 Options
9724 @cindex IA-64 Options
9725
9726 These are the @samp{-m} options defined for the Intel IA-64 architecture.
9727
9728 @table @gcctabopt
9729 @item -mbig-endian
9730 @opindex mbig-endian
9731 Generate code for a big endian target.  This is the default for HP-UX@.
9732
9733 @item -mlittle-endian
9734 @opindex mlittle-endian
9735 Generate code for a little endian target.  This is the default for AIX5
9736 and GNU/Linux.
9737
9738 @item -mgnu-as
9739 @itemx -mno-gnu-as
9740 @opindex mgnu-as
9741 @opindex mno-gnu-as
9742 Generate (or don't) code for the GNU assembler.  This is the default.
9743 @c Also, this is the default if the configure option @option{--with-gnu-as}
9744 @c is used.
9745
9746 @item -mgnu-ld
9747 @itemx -mno-gnu-ld
9748 @opindex mgnu-ld
9749 @opindex mno-gnu-ld
9750 Generate (or don't) code for the GNU linker.  This is the default.
9751 @c Also, this is the default if the configure option @option{--with-gnu-ld}
9752 @c is used.
9753
9754 @item -mno-pic
9755 @opindex mno-pic
9756 Generate code that does not use a global pointer register.  The result
9757 is not position independent code, and violates the IA-64 ABI@.
9758
9759 @item -mvolatile-asm-stop
9760 @itemx -mno-volatile-asm-stop
9761 @opindex mvolatile-asm-stop
9762 @opindex mno-volatile-asm-stop
9763 Generate (or don't) a stop bit immediately before and after volatile asm
9764 statements.
9765
9766 @item -mregister-names
9767 @itemx -mno-register-names
9768 @opindex mregister-names
9769 @opindex mno-register-names
9770 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
9771 the stacked registers.  This may make assembler output more readable.
9772
9773 @item -mno-sdata
9774 @itemx -msdata
9775 @opindex mno-sdata
9776 @opindex msdata
9777 Disable (or enable) optimizations that use the small data section.  This may
9778 be useful for working around optimizer bugs.
9779
9780 @item -mconstant-gp
9781 @opindex mconstant-gp
9782 Generate code that uses a single constant global pointer value.  This is
9783 useful when compiling kernel code.
9784
9785 @item -mauto-pic
9786 @opindex mauto-pic
9787 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
9788 This is useful when compiling firmware code.
9789
9790 @item -minline-float-divide-min-latency
9791 @opindex minline-float-divide-min-latency
9792 Generate code for inline divides of floating point values
9793 using the minimum latency algorithm.
9794
9795 @item -minline-float-divide-max-throughput
9796 @opindex minline-float-divide-max-throughput
9797 Generate code for inline divides of floating point values
9798 using the maximum throughput algorithm.
9799
9800 @item -minline-int-divide-min-latency
9801 @opindex minline-int-divide-min-latency
9802 Generate code for inline divides of integer values
9803 using the minimum latency algorithm.
9804
9805 @item -minline-int-divide-max-throughput
9806 @opindex minline-int-divide-max-throughput
9807 Generate code for inline divides of integer values
9808 using the maximum throughput algorithm.
9809
9810 @item -minline-sqrt-min-latency
9811 @opindex minline-sqrt-min-latency
9812 Generate code for inline square roots
9813 using the minimum latency algorithm.
9814
9815 @item -minline-sqrt-max-throughput
9816 @opindex minline-sqrt-max-throughput
9817 Generate code for inline square roots
9818 using the maximum throughput algorithm.
9819
9820 @item -mno-dwarf2-asm
9821 @itemx -mdwarf2-asm
9822 @opindex mno-dwarf2-asm
9823 @opindex mdwarf2-asm
9824 Don't (or do) generate assembler code for the DWARF2 line number debugging
9825 info.  This may be useful when not using the GNU assembler.
9826
9827 @item -mearly-stop-bits
9828 @itemx -mno-early-stop-bits
9829 @opindex mearly-stop-bits
9830 @opindex mno-early-stop-bits
9831 Allow stop bits to be placed earlier than immediately preceding the
9832 instruction that triggered the stop bit.  This can improve instruction
9833 scheduling, but does not always do so.
9834
9835 @item -mfixed-range=@var{register-range}
9836 @opindex mfixed-range
9837 Generate code treating the given register range as fixed registers.
9838 A fixed register is one that the register allocator can not use.  This is
9839 useful when compiling kernel code.  A register range is specified as
9840 two registers separated by a dash.  Multiple register ranges can be
9841 specified separated by a comma.
9842
9843 @item -mtls-size=@var{tls-size}
9844 @opindex mtls-size
9845 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
9846 64.
9847
9848 @item -mtune=@var{cpu-type}
9849 @opindex mtune
9850 Tune the instruction scheduling for a particular CPU, Valid values are
9851 itanium, itanium1, merced, itanium2, and mckinley.
9852
9853 @item -mt
9854 @itemx -pthread
9855 @opindex mt
9856 @opindex pthread
9857 Add support for multithreading using the POSIX threads library.  This
9858 option sets flags for both the preprocessor and linker.  It does
9859 not affect the thread safety of object code produced by the compiler or
9860 that of libraries supplied with it.  These are HP-UX specific flags.
9861
9862 @item -milp32
9863 @itemx -mlp64
9864 @opindex milp32
9865 @opindex mlp64
9866 Generate code for a 32-bit or 64-bit environment.
9867 The 32-bit environment sets int, long and pointer to 32 bits.
9868 The 64-bit environment sets int to 32 bits and long and pointer
9869 to 64 bits.  These are HP-UX specific flags.
9870
9871 @item -mno-sched-br-data-spec
9872 @itemx -msched-br-data-spec
9873 @opindex -mno-sched-br-data-spec
9874 @opindex -msched-br-data-spec
9875 (Dis/En)able data speculative scheduling before reload.
9876 This will result in generation of the ld.a instructions and
9877 the corresponding check instructions (ld.c / chk.a).
9878 The default is 'disable'.
9879
9880 @item -msched-ar-data-spec
9881 @itemx -mno-sched-ar-data-spec
9882 @opindex -msched-ar-data-spec
9883 @opindex -mno-sched-ar-data-spec
9884 (En/Dis)able data speculative scheduling after reload.
9885 This will result in generation of the ld.a instructions and
9886 the corresponding check instructions (ld.c / chk.a).
9887 The default is 'enable'.
9888
9889 @item -mno-sched-control-spec
9890 @itemx -msched-control-spec
9891 @opindex -mno-sched-control-spec
9892 @opindex -msched-control-spec
9893 (Dis/En)able control speculative scheduling.  This feature is
9894 available only during region scheduling (i.e. before reload).
9895 This will result in generation of the ld.s instructions and
9896 the corresponding check instructions chk.s .
9897 The default is 'disable'.
9898
9899 @item -msched-br-in-data-spec
9900 @itemx -mno-sched-br-in-data-spec
9901 @opindex -msched-br-in-data-spec
9902 @opindex -mno-sched-br-in-data-spec
9903 (En/Dis)able speculative scheduling of the instructions that
9904 are dependent on the data speculative loads before reload.
9905 This is effective only with @option{-msched-br-data-spec} enabled.
9906 The default is 'enable'.
9907
9908 @item -msched-ar-in-data-spec
9909 @itemx -mno-sched-ar-in-data-spec
9910 @opindex -msched-ar-in-data-spec
9911 @opindex -mno-sched-ar-in-data-spec
9912 (En/Dis)able speculative scheduling of the instructions that
9913 are dependent on the data speculative loads after reload.
9914 This is effective only with @option{-msched-ar-data-spec} enabled.
9915 The default is 'enable'.
9916
9917 @item -msched-in-control-spec
9918 @itemx -mno-sched-in-control-spec
9919 @opindex -msched-in-control-spec
9920 @opindex -mno-sched-in-control-spec
9921 (En/Dis)able speculative scheduling of the instructions that
9922 are dependent on the control speculative loads.
9923 This is effective only with @option{-msched-control-spec} enabled.
9924 The default is 'enable'.
9925
9926 @item -msched-ldc
9927 @itemx -mno-sched-ldc
9928 @opindex -msched-ldc
9929 @opindex -mno-sched-ldc
9930 (En/Dis)able use of simple data speculation checks ld.c .
9931 If disabled, only chk.a instructions will be emitted to check
9932 data speculative loads.
9933 The default is 'enable'.
9934
9935 @item -mno-sched-control-ldc
9936 @itemx -msched-control-ldc
9937 @opindex -mno-sched-control-ldc
9938 @opindex -msched-control-ldc 
9939 (Dis/En)able use of ld.c instructions to check control speculative loads.
9940 If enabled, in case of control speculative load with no speculatively
9941 scheduled dependent instructions this load will be emitted as ld.sa and
9942 ld.c will be used to check it.
9943 The default is 'disable'.
9944
9945 @item -mno-sched-spec-verbose
9946 @itemx -msched-spec-verbose
9947 @opindex -mno-sched-spec-verbose
9948 @opindex -msched-spec-verbose
9949 (Dis/En)able printing of the information about speculative motions.
9950
9951 @item -mno-sched-prefer-non-data-spec-insns
9952 @itemx -msched-prefer-non-data-spec-insns
9953 @opindex -mno-sched-prefer-non-data-spec-insns
9954 @opindex -msched-prefer-non-data-spec-insns
9955 If enabled, data speculative instructions will be chosen for schedule
9956 only if there are no other choices at the moment.  This will make
9957 the use of the data speculation much more conservative.
9958 The default is 'disable'.
9959
9960 @item -mno-sched-prefer-non-control-spec-insns
9961 @itemx -msched-prefer-non-control-spec-insns
9962 @opindex -mno-sched-prefer-non-control-spec-insns
9963 @opindex -msched-prefer-non-control-spec-insns
9964 If enabled, control speculative instructions will be chosen for schedule
9965 only if there are no other choices at the moment.  This will make
9966 the use of the control speculation much more conservative.
9967 The default is 'disable'.
9968
9969 @item -mno-sched-count-spec-in-critical-path
9970 @itemx -msched-count-spec-in-critical-path
9971 @opindex -mno-sched-count-spec-in-critical-path
9972 @opindex -msched-count-spec-in-critical-path
9973 If enabled, speculative dependencies will be considered during
9974 computation of the instructions priorities.  This will make the use of the
9975 speculation a bit more conservative.
9976 The default is 'disable'.
9977
9978 @end table
9979
9980 @node M32C Options
9981 @subsection M32C Options
9982 @cindex M32C options
9983
9984 @table @gcctabopt
9985 @item -mcpu=@var{name}
9986 @opindex mcpu=
9987 Select the CPU for which code is generated.  @var{name} may be one of
9988 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
9989 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
9990 the M32C/80 series.
9991
9992 @item -msim
9993 @opindex msim
9994 Specifies that the program will be run on the simulator.  This causes
9995 an alternate runtime library to be linked in which supports, for
9996 example, file I/O.  You must not use this option when generating
9997 programs that will run on real hardware; you must provide your own
9998 runtime library for whatever I/O functions are needed.
9999
10000 @item -memregs=@var{number}
10001 @opindex memregs=
10002 Specifies the number of memory-based pseudo-registers GCC will use
10003 during code generation.  These pseudo-registers will be used like real
10004 registers, so there is a tradeoff between GCC's ability to fit the
10005 code into available registers, and the performance penalty of using
10006 memory instead of registers.  Note that all modules in a program must
10007 be compiled with the same value for this option.  Because of that, you
10008 must not use this option with the default runtime libraries gcc
10009 builds.
10010
10011 @end table
10012
10013 @node M32R/D Options
10014 @subsection M32R/D Options
10015 @cindex M32R/D options
10016
10017 These @option{-m} options are defined for Renesas M32R/D architectures:
10018
10019 @table @gcctabopt
10020 @item -m32r2
10021 @opindex m32r2
10022 Generate code for the M32R/2@.
10023
10024 @item -m32rx
10025 @opindex m32rx
10026 Generate code for the M32R/X@.
10027
10028 @item -m32r
10029 @opindex m32r
10030 Generate code for the M32R@.  This is the default.
10031
10032 @item -mmodel=small
10033 @opindex mmodel=small
10034 Assume all objects live in the lower 16MB of memory (so that their addresses
10035 can be loaded with the @code{ld24} instruction), and assume all subroutines
10036 are reachable with the @code{bl} instruction.
10037 This is the default.
10038
10039 The addressability of a particular object can be set with the
10040 @code{model} attribute.
10041
10042 @item -mmodel=medium
10043 @opindex mmodel=medium
10044 Assume objects may be anywhere in the 32-bit address space (the compiler
10045 will generate @code{seth/add3} instructions to load their addresses), and
10046 assume all subroutines are reachable with the @code{bl} instruction.
10047
10048 @item -mmodel=large
10049 @opindex mmodel=large
10050 Assume objects may be anywhere in the 32-bit address space (the compiler
10051 will generate @code{seth/add3} instructions to load their addresses), and
10052 assume subroutines may not be reachable with the @code{bl} instruction
10053 (the compiler will generate the much slower @code{seth/add3/jl}
10054 instruction sequence).
10055
10056 @item -msdata=none
10057 @opindex msdata=none
10058 Disable use of the small data area.  Variables will be put into
10059 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
10060 @code{section} attribute has been specified).
10061 This is the default.
10062
10063 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
10064 Objects may be explicitly put in the small data area with the
10065 @code{section} attribute using one of these sections.
10066
10067 @item -msdata=sdata
10068 @opindex msdata=sdata
10069 Put small global and static data in the small data area, but do not
10070 generate special code to reference them.
10071
10072 @item -msdata=use
10073 @opindex msdata=use
10074 Put small global and static data in the small data area, and generate
10075 special instructions to reference them.
10076
10077 @item -G @var{num}
10078 @opindex G
10079 @cindex smaller data references
10080 Put global and static objects less than or equal to @var{num} bytes
10081 into the small data or bss sections instead of the normal data or bss
10082 sections.  The default value of @var{num} is 8.
10083 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
10084 for this option to have any effect.
10085
10086 All modules should be compiled with the same @option{-G @var{num}} value.
10087 Compiling with different values of @var{num} may or may not work; if it
10088 doesn't the linker will give an error message---incorrect code will not be
10089 generated.
10090
10091 @item -mdebug
10092 @opindex mdebug
10093 Makes the M32R specific code in the compiler display some statistics
10094 that might help in debugging programs.
10095
10096 @item -malign-loops
10097 @opindex malign-loops
10098 Align all loops to a 32-byte boundary.
10099
10100 @item -mno-align-loops
10101 @opindex mno-align-loops
10102 Do not enforce a 32-byte alignment for loops.  This is the default.
10103
10104 @item -missue-rate=@var{number}
10105 @opindex missue-rate=@var{number}
10106 Issue @var{number} instructions per cycle.  @var{number} can only be 1
10107 or 2.
10108
10109 @item -mbranch-cost=@var{number}
10110 @opindex mbranch-cost=@var{number}
10111 @var{number} can only be 1 or 2.  If it is 1 then branches will be
10112 preferred over conditional code, if it is 2, then the opposite will
10113 apply.
10114
10115 @item -mflush-trap=@var{number}
10116 @opindex mflush-trap=@var{number}
10117 Specifies the trap number to use to flush the cache.  The default is
10118 12.  Valid numbers are between 0 and 15 inclusive.
10119
10120 @item -mno-flush-trap
10121 @opindex mno-flush-trap
10122 Specifies that the cache cannot be flushed by using a trap.
10123
10124 @item -mflush-func=@var{name}
10125 @opindex mflush-func=@var{name}
10126 Specifies the name of the operating system function to call to flush
10127 the cache.  The default is @emph{_flush_cache}, but a function call
10128 will only be used if a trap is not available.
10129
10130 @item -mno-flush-func
10131 @opindex mno-flush-func
10132 Indicates that there is no OS function for flushing the cache.
10133
10134 @end table
10135
10136 @node M680x0 Options
10137 @subsection M680x0 Options
10138 @cindex M680x0 options
10139
10140 These are the @samp{-m} options defined for the 68000 series.  The default
10141 values for these options depends on which style of 68000 was selected when
10142 the compiler was configured; the defaults for the most common choices are
10143 given below.
10144
10145 @table @gcctabopt
10146 @item -m68000
10147 @itemx -mc68000
10148 @opindex m68000
10149 @opindex mc68000
10150 Generate output for a 68000.  This is the default
10151 when the compiler is configured for 68000-based systems.
10152
10153 Use this option for microcontrollers with a 68000 or EC000 core,
10154 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
10155
10156 @item -m68020
10157 @itemx -mc68020
10158 @opindex m68020
10159 @opindex mc68020
10160 Generate output for a 68020.  This is the default
10161 when the compiler is configured for 68020-based systems.
10162
10163 @item -m68881
10164 @opindex m68881
10165 Generate output containing 68881 instructions for floating point.
10166 This is the default for most 68020 systems unless @option{--nfp} was
10167 specified when the compiler was configured.
10168
10169 @item -m68030
10170 @opindex m68030
10171 Generate output for a 68030.  This is the default when the compiler is
10172 configured for 68030-based systems.
10173
10174 @item -m68040
10175 @opindex m68040
10176 Generate output for a 68040.  This is the default when the compiler is
10177 configured for 68040-based systems.
10178
10179 This option inhibits the use of 68881/68882 instructions that have to be
10180 emulated by software on the 68040.  Use this option if your 68040 does not
10181 have code to emulate those instructions.
10182
10183 @item -m68060
10184 @opindex m68060
10185 Generate output for a 68060.  This is the default when the compiler is
10186 configured for 68060-based systems.
10187
10188 This option inhibits the use of 68020 and 68881/68882 instructions that
10189 have to be emulated by software on the 68060.  Use this option if your 68060
10190 does not have code to emulate those instructions.
10191
10192 @item -mcpu32
10193 @opindex mcpu32
10194 Generate output for a CPU32.  This is the default
10195 when the compiler is configured for CPU32-based systems.
10196
10197 Use this option for microcontrollers with a
10198 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
10199 68336, 68340, 68341, 68349 and 68360.
10200
10201 @item -m5200
10202 @opindex m5200
10203 Generate output for a 520X ``coldfire'' family cpu.  This is the default
10204 when the compiler is configured for 520X-based systems.
10205
10206 Use this option for microcontroller with a 5200 core, including
10207 the MCF5202, MCF5203, MCF5204 and MCF5202.
10208
10209 @item -mcfv4e
10210 @opindex mcfv4e
10211 Generate output for a ColdFire V4e family cpu (e.g.@: 547x/548x).
10212 This includes use of hardware floating point instructions.
10213
10214 @item -m68020-40
10215 @opindex m68020-40
10216 Generate output for a 68040, without using any of the new instructions.
10217 This results in code which can run relatively efficiently on either a
10218 68020/68881 or a 68030 or a 68040.  The generated code does use the
10219 68881 instructions that are emulated on the 68040.
10220
10221 @item -m68020-60
10222 @opindex m68020-60
10223 Generate output for a 68060, without using any of the new instructions.
10224 This results in code which can run relatively efficiently on either a
10225 68020/68881 or a 68030 or a 68040.  The generated code does use the
10226 68881 instructions that are emulated on the 68060.
10227
10228 @item -msoft-float
10229 @opindex msoft-float
10230 Generate output containing library calls for floating point.
10231 @strong{Warning:} the requisite libraries are not available for all m68k
10232 targets.  Normally the facilities of the machine's usual C compiler are
10233 used, but this can't be done directly in cross-compilation.  You must
10234 make your own arrangements to provide suitable library functions for
10235 cross-compilation.  The embedded targets @samp{m68k-*-aout} and
10236 @samp{m68k-*-coff} do provide software floating point support.
10237
10238 @item -mshort
10239 @opindex mshort
10240 Consider type @code{int} to be 16 bits wide, like @code{short int}.
10241 Additionally, parameters passed on the stack are also aligned to a
10242 16-bit boundary even on targets whose API mandates promotion to 32-bit.
10243
10244 @item -mnobitfield
10245 @opindex mnobitfield
10246 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
10247 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
10248
10249 @item -mbitfield
10250 @opindex mbitfield
10251 Do use the bit-field instructions.  The @option{-m68020} option implies
10252 @option{-mbitfield}.  This is the default if you use a configuration
10253 designed for a 68020.
10254
10255 @item -mrtd
10256 @opindex mrtd
10257 Use a different function-calling convention, in which functions
10258 that take a fixed number of arguments return with the @code{rtd}
10259 instruction, which pops their arguments while returning.  This
10260 saves one instruction in the caller since there is no need to pop
10261 the arguments there.
10262
10263 This calling convention is incompatible with the one normally
10264 used on Unix, so you cannot use it if you need to call libraries
10265 compiled with the Unix compiler.
10266
10267 Also, you must provide function prototypes for all functions that
10268 take variable numbers of arguments (including @code{printf});
10269 otherwise incorrect code will be generated for calls to those
10270 functions.
10271
10272 In addition, seriously incorrect code will result if you call a
10273 function with too many arguments.  (Normally, extra arguments are
10274 harmlessly ignored.)
10275
10276 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
10277 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
10278
10279 @item -malign-int
10280 @itemx -mno-align-int
10281 @opindex malign-int
10282 @opindex mno-align-int
10283 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
10284 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
10285 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
10286 Aligning variables on 32-bit boundaries produces code that runs somewhat
10287 faster on processors with 32-bit busses at the expense of more memory.
10288
10289 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
10290 align structures containing the above types  differently than
10291 most published application binary interface specifications for the m68k.
10292
10293 @item -mpcrel
10294 @opindex mpcrel
10295 Use the pc-relative addressing mode of the 68000 directly, instead of
10296 using a global offset table.  At present, this option implies @option{-fpic},
10297 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
10298 not presently supported with @option{-mpcrel}, though this could be supported for
10299 68020 and higher processors.
10300
10301 @item -mno-strict-align
10302 @itemx -mstrict-align
10303 @opindex mno-strict-align
10304 @opindex mstrict-align
10305 Do not (do) assume that unaligned memory references will be handled by
10306 the system.
10307
10308 @item -msep-data
10309 Generate code that allows the data segment to be located in a different
10310 area of memory from the text segment.  This allows for execute in place in
10311 an environment without virtual memory management.  This option implies
10312 @option{-fPIC}.
10313
10314 @item -mno-sep-data
10315 Generate code that assumes that the data segment follows the text segment.
10316 This is the default.
10317
10318 @item -mid-shared-library
10319 Generate code that supports shared libraries via the library ID method.
10320 This allows for execute in place and shared libraries in an environment
10321 without virtual memory management.  This option implies @option{-fPIC}.
10322
10323 @item -mno-id-shared-library
10324 Generate code that doesn't assume ID based shared libraries are being used.
10325 This is the default.
10326
10327 @item -mshared-library-id=n
10328 Specified the identification number of the ID based shared library being
10329 compiled.  Specifying a value of 0 will generate more compact code, specifying
10330 other values will force the allocation of that number to the current
10331 library but is no more space or time efficient than omitting this option.
10332
10333 @end table
10334
10335 @node M68hc1x Options
10336 @subsection M68hc1x Options
10337 @cindex M68hc1x options
10338
10339 These are the @samp{-m} options defined for the 68hc11 and 68hc12
10340 microcontrollers.  The default values for these options depends on
10341 which style of microcontroller was selected when the compiler was configured;
10342 the defaults for the most common choices are given below.
10343
10344 @table @gcctabopt
10345 @item -m6811
10346 @itemx -m68hc11
10347 @opindex m6811
10348 @opindex m68hc11
10349 Generate output for a 68HC11.  This is the default
10350 when the compiler is configured for 68HC11-based systems.
10351
10352 @item -m6812
10353 @itemx -m68hc12
10354 @opindex m6812
10355 @opindex m68hc12
10356 Generate output for a 68HC12.  This is the default
10357 when the compiler is configured for 68HC12-based systems.
10358
10359 @item -m68S12
10360 @itemx -m68hcs12
10361 @opindex m68S12
10362 @opindex m68hcs12
10363 Generate output for a 68HCS12.
10364
10365 @item -mauto-incdec
10366 @opindex mauto-incdec
10367 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
10368 addressing modes.
10369
10370 @item -minmax
10371 @itemx -nominmax
10372 @opindex minmax
10373 @opindex mnominmax
10374 Enable the use of 68HC12 min and max instructions.
10375
10376 @item -mlong-calls
10377 @itemx -mno-long-calls
10378 @opindex mlong-calls
10379 @opindex mno-long-calls
10380 Treat all calls as being far away (near).  If calls are assumed to be
10381 far away, the compiler will use the @code{call} instruction to
10382 call a function and the @code{rtc} instruction for returning.
10383
10384 @item -mshort
10385 @opindex mshort
10386 Consider type @code{int} to be 16 bits wide, like @code{short int}.
10387
10388 @item -msoft-reg-count=@var{count}
10389 @opindex msoft-reg-count
10390 Specify the number of pseudo-soft registers which are used for the
10391 code generation.  The maximum number is 32.  Using more pseudo-soft
10392 register may or may not result in better code depending on the program.
10393 The default is 4 for 68HC11 and 2 for 68HC12.
10394
10395 @end table
10396
10397 @node MCore Options
10398 @subsection MCore Options
10399 @cindex MCore options
10400
10401 These are the @samp{-m} options defined for the Motorola M*Core
10402 processors.
10403
10404 @table @gcctabopt
10405
10406 @item -mhardlit
10407 @itemx -mno-hardlit
10408 @opindex mhardlit
10409 @opindex mno-hardlit
10410 Inline constants into the code stream if it can be done in two
10411 instructions or less.
10412
10413 @item -mdiv
10414 @itemx -mno-div
10415 @opindex mdiv
10416 @opindex mno-div
10417 Use the divide instruction.  (Enabled by default).
10418
10419 @item -mrelax-immediate
10420 @itemx -mno-relax-immediate
10421 @opindex mrelax-immediate
10422 @opindex mno-relax-immediate
10423 Allow arbitrary sized immediates in bit operations.
10424
10425 @item -mwide-bitfields
10426 @itemx -mno-wide-bitfields
10427 @opindex mwide-bitfields
10428 @opindex mno-wide-bitfields
10429 Always treat bit-fields as int-sized.
10430
10431 @item -m4byte-functions
10432 @itemx -mno-4byte-functions
10433 @opindex m4byte-functions
10434 @opindex mno-4byte-functions
10435 Force all functions to be aligned to a four byte boundary.
10436
10437 @item -mcallgraph-data
10438 @itemx -mno-callgraph-data
10439 @opindex mcallgraph-data
10440 @opindex mno-callgraph-data
10441 Emit callgraph information.
10442
10443 @item -mslow-bytes
10444 @itemx -mno-slow-bytes
10445 @opindex mslow-bytes
10446 @opindex mno-slow-bytes
10447 Prefer word access when reading byte quantities.
10448
10449 @item -mlittle-endian
10450 @itemx -mbig-endian
10451 @opindex mlittle-endian
10452 @opindex mbig-endian
10453 Generate code for a little endian target.
10454
10455 @item -m210
10456 @itemx -m340
10457 @opindex m210
10458 @opindex m340
10459 Generate code for the 210 processor.
10460 @end table
10461
10462 @node MIPS Options
10463 @subsection MIPS Options
10464 @cindex MIPS options
10465
10466 @table @gcctabopt
10467
10468 @item -EB
10469 @opindex EB
10470 Generate big-endian code.
10471
10472 @item -EL
10473 @opindex EL
10474 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
10475 configurations.
10476
10477 @item -march=@var{arch}
10478 @opindex march
10479 Generate code that will run on @var{arch}, which can be the name of a
10480 generic MIPS ISA, or the name of a particular processor.
10481 The ISA names are:
10482 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
10483 @samp{mips32}, @samp{mips32r2}, and @samp{mips64}.
10484 The processor names are:
10485 @samp{4kc}, @samp{4km}, @samp{4kp},
10486 @samp{4kec}, @samp{4kem}, @samp{4kep},
10487 @samp{5kc}, @samp{5kf},
10488 @samp{20kc},
10489 @samp{24kc}, @samp{24kf}, @samp{24kx},
10490 @samp{24kec}, @samp{24kef}, @samp{24kex},
10491 @samp{34kc}, @samp{34kf}, @samp{34kx},
10492 @samp{m4k},
10493 @samp{orion},
10494 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
10495 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
10496 @samp{rm7000}, @samp{rm9000},
10497 @samp{sb1},
10498 @samp{sr71000},
10499 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
10500 @samp{vr5000}, @samp{vr5400} and @samp{vr5500}.
10501 The special value @samp{from-abi} selects the
10502 most compatible architecture for the selected ABI (that is,
10503 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
10504
10505 In processor names, a final @samp{000} can be abbreviated as @samp{k}
10506 (for example, @samp{-march=r2k}).  Prefixes are optional, and
10507 @samp{vr} may be written @samp{r}.
10508
10509 GCC defines two macros based on the value of this option.  The first
10510 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
10511 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
10512 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
10513 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
10514 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
10515
10516 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
10517 above.  In other words, it will have the full prefix and will not
10518 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
10519 the macro names the resolved architecture (either @samp{"mips1"} or
10520 @samp{"mips3"}).  It names the default architecture when no
10521 @option{-march} option is given.
10522
10523 @item -mtune=@var{arch}
10524 @opindex mtune
10525 Optimize for @var{arch}.  Among other things, this option controls
10526 the way instructions are scheduled, and the perceived cost of arithmetic
10527 operations.  The list of @var{arch} values is the same as for
10528 @option{-march}.
10529
10530 When this option is not used, GCC will optimize for the processor
10531 specified by @option{-march}.  By using @option{-march} and
10532 @option{-mtune} together, it is possible to generate code that will
10533 run on a family of processors, but optimize the code for one
10534 particular member of that family.
10535
10536 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
10537 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
10538 @samp{-march} ones described above.
10539
10540 @item -mips1
10541 @opindex mips1
10542 Equivalent to @samp{-march=mips1}.
10543
10544 @item -mips2
10545 @opindex mips2
10546 Equivalent to @samp{-march=mips2}.
10547
10548 @item -mips3
10549 @opindex mips3
10550 Equivalent to @samp{-march=mips3}.
10551
10552 @item -mips4
10553 @opindex mips4
10554 Equivalent to @samp{-march=mips4}.
10555
10556 @item -mips32
10557 @opindex mips32
10558 Equivalent to @samp{-march=mips32}.
10559
10560 @item -mips32r2
10561 @opindex mips32r2
10562 Equivalent to @samp{-march=mips32r2}.
10563
10564 @item -mips64
10565 @opindex mips64
10566 Equivalent to @samp{-march=mips64}.
10567
10568 @item -mips16
10569 @itemx -mno-mips16
10570 @opindex mips16
10571 @opindex mno-mips16
10572 Generate (do not generate) MIPS16 code.  If GCC is targetting a
10573 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
10574
10575 @item -mabi=32
10576 @itemx -mabi=o64
10577 @itemx -mabi=n32
10578 @itemx -mabi=64
10579 @itemx -mabi=eabi
10580 @opindex mabi=32
10581 @opindex mabi=o64
10582 @opindex mabi=n32
10583 @opindex mabi=64
10584 @opindex mabi=eabi
10585 Generate code for the given ABI@.
10586
10587 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
10588 generates 64-bit code when you select a 64-bit architecture, but you
10589 can use @option{-mgp32} to get 32-bit code instead.
10590
10591 For information about the O64 ABI, see
10592 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
10593
10594 @item -mabicalls
10595 @itemx -mno-abicalls
10596 @opindex mabicalls
10597 @opindex mno-abicalls
10598 Generate (do not generate) code that is suitable for SVR4-style
10599 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
10600 systems.
10601
10602 @item -mshared
10603 @itemx -mno-shared
10604 Generate (do not generate) code that is fully position-independent,
10605 and that can therefore be linked into shared libraries.  This option
10606 only affects @option{-mabicalls}.
10607
10608 All @option{-mabicalls} code has traditionally been position-independent,
10609 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
10610 as an extension, the GNU toolchain allows executables to use absolute
10611 accesses for locally-binding symbols.  It can also use shorter GP
10612 initialization sequences and generate direct calls to locally-defined
10613 functions.  This mode is selected by @option{-mno-shared}.
10614
10615 @option{-mno-shared} depends on binutils 2.16 or higher and generates
10616 objects that can only be linked by the GNU linker.  However, the option
10617 does not affect the ABI of the final executable; it only affects the ABI
10618 of relocatable objects.  Using @option{-mno-shared} will generally make
10619 executables both smaller and quicker.
10620
10621 @option{-mshared} is the default.
10622
10623 @item -mxgot
10624 @itemx -mno-xgot
10625 @opindex mxgot
10626 @opindex mno-xgot
10627 Lift (do not lift) the usual restrictions on the size of the global
10628 offset table.
10629
10630 GCC normally uses a single instruction to load values from the GOT@.
10631 While this is relatively efficient, it will only work if the GOT
10632 is smaller than about 64k.  Anything larger will cause the linker
10633 to report an error such as:
10634
10635 @cindex relocation truncated to fit (MIPS)
10636 @smallexample
10637 relocation truncated to fit: R_MIPS_GOT16 foobar
10638 @end smallexample
10639
10640 If this happens, you should recompile your code with @option{-mxgot}.
10641 It should then work with very large GOTs, although it will also be
10642 less efficient, since it will take three instructions to fetch the
10643 value of a global symbol.
10644
10645 Note that some linkers can create multiple GOTs.  If you have such a
10646 linker, you should only need to use @option{-mxgot} when a single object
10647 file accesses more than 64k's worth of GOT entries.  Very few do.
10648
10649 These options have no effect unless GCC is generating position
10650 independent code.
10651
10652 @item -mgp32
10653 @opindex mgp32
10654 Assume that general-purpose registers are 32 bits wide.
10655
10656 @item -mgp64
10657 @opindex mgp64
10658 Assume that general-purpose registers are 64 bits wide.
10659
10660 @item -mfp32
10661 @opindex mfp32
10662 Assume that floating-point registers are 32 bits wide.
10663
10664 @item -mfp64
10665 @opindex mfp64
10666 Assume that floating-point registers are 64 bits wide.
10667
10668 @item -mhard-float
10669 @opindex mhard-float
10670 Use floating-point coprocessor instructions.
10671
10672 @item -msoft-float
10673 @opindex msoft-float
10674 Do not use floating-point coprocessor instructions.  Implement
10675 floating-point calculations using library calls instead.
10676
10677 @item -msingle-float
10678 @opindex msingle-float
10679 Assume that the floating-point coprocessor only supports single-precision
10680 operations.
10681
10682 @itemx -mdouble-float
10683 @opindex mdouble-float
10684 Assume that the floating-point coprocessor supports double-precision
10685 operations.  This is the default.
10686
10687 @itemx -mdsp
10688 @itemx -mno-dsp
10689 @opindex mdsp
10690 @opindex mno-dsp
10691 Use (do not use) the MIPS DSP ASE.  @xref{MIPS DSP Built-in Functions}.
10692
10693 @itemx -mpaired-single
10694 @itemx -mno-paired-single
10695 @opindex mpaired-single
10696 @opindex mno-paired-single
10697 Use (do not use) paired-single floating-point instructions.
10698 @xref{MIPS Paired-Single Support}.  This option can only be used
10699 when generating 64-bit code and requires hardware floating-point
10700 support to be enabled.
10701
10702 @itemx -mips3d
10703 @itemx -mno-mips3d
10704 @opindex mips3d
10705 @opindex mno-mips3d
10706 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
10707 The option @option{-mips3d} implies @option{-mpaired-single}.
10708
10709 @item -mlong64
10710 @opindex mlong64
10711 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
10712 an explanation of the default and the way that the pointer size is
10713 determined.
10714
10715 @item -mlong32
10716 @opindex mlong32
10717 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
10718
10719 The default size of @code{int}s, @code{long}s and pointers depends on
10720 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
10721 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
10722 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
10723 or the same size as integer registers, whichever is smaller.
10724
10725 @item -msym32
10726 @itemx -mno-sym32
10727 @opindex msym32
10728 @opindex mno-sym32
10729 Assume (do not assume) that all symbols have 32-bit values, regardless
10730 of the selected ABI@.  This option is useful in combination with
10731 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
10732 to generate shorter and faster references to symbolic addresses.
10733
10734 @item -G @var{num}
10735 @opindex G
10736 @cindex smaller data references (MIPS)
10737 @cindex gp-relative references (MIPS)
10738 Put global and static items less than or equal to @var{num} bytes into
10739 the small data or bss section instead of the normal data or bss section.
10740 This allows the data to be accessed using a single instruction.
10741
10742 All modules should be compiled with the same @option{-G @var{num}}
10743 value.
10744
10745 @item -membedded-data
10746 @itemx -mno-embedded-data
10747 @opindex membedded-data
10748 @opindex mno-embedded-data
10749 Allocate variables to the read-only data section first if possible, then
10750 next in the small data section if possible, otherwise in data.  This gives
10751 slightly slower code than the default, but reduces the amount of RAM required
10752 when executing, and thus may be preferred for some embedded systems.
10753
10754 @item -muninit-const-in-rodata
10755 @itemx -mno-uninit-const-in-rodata
10756 @opindex muninit-const-in-rodata
10757 @opindex mno-uninit-const-in-rodata
10758 Put uninitialized @code{const} variables in the read-only data section.
10759 This option is only meaningful in conjunction with @option{-membedded-data}.
10760
10761 @item -msplit-addresses
10762 @itemx -mno-split-addresses
10763 @opindex msplit-addresses
10764 @opindex mno-split-addresses
10765 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
10766 relocation operators.  This option has been superseded by
10767 @option{-mexplicit-relocs} but is retained for backwards compatibility.
10768
10769 @item -mexplicit-relocs
10770 @itemx -mno-explicit-relocs
10771 @opindex mexplicit-relocs
10772 @opindex mno-explicit-relocs
10773 Use (do not use) assembler relocation operators when dealing with symbolic
10774 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
10775 is to use assembler macros instead.
10776
10777 @option{-mexplicit-relocs} is the default if GCC was configured
10778 to use an assembler that supports relocation operators.
10779
10780 @item -mcheck-zero-division
10781 @itemx -mno-check-zero-division
10782 @opindex mcheck-zero-division
10783 @opindex mno-check-zero-division
10784 Trap (do not trap) on integer division by zero.  The default is
10785 @option{-mcheck-zero-division}.
10786
10787 @item -mdivide-traps
10788 @itemx -mdivide-breaks
10789 @opindex mdivide-traps
10790 @opindex mdivide-breaks
10791 MIPS systems check for division by zero by generating either a
10792 conditional trap or a break instruction.  Using traps results in
10793 smaller code, but is only supported on MIPS II and later.  Also, some
10794 versions of the Linux kernel have a bug that prevents trap from
10795 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
10796 allow conditional traps on architectures that support them and
10797 @option{-mdivide-breaks} to force the use of breaks.
10798
10799 The default is usually @option{-mdivide-traps}, but this can be
10800 overridden at configure time using @option{--with-divide=breaks}.
10801 Divide-by-zero checks can be completely disabled using
10802 @option{-mno-check-zero-division}.
10803
10804 @item -mmemcpy
10805 @itemx -mno-memcpy
10806 @opindex mmemcpy
10807 @opindex mno-memcpy
10808 Force (do not force) the use of @code{memcpy()} for non-trivial block
10809 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
10810 most constant-sized copies.
10811
10812 @item -mlong-calls
10813 @itemx -mno-long-calls
10814 @opindex mlong-calls
10815 @opindex mno-long-calls
10816 Disable (do not disable) use of the @code{jal} instruction.  Calling
10817 functions using @code{jal} is more efficient but requires the caller
10818 and callee to be in the same 256 megabyte segment.
10819
10820 This option has no effect on abicalls code.  The default is
10821 @option{-mno-long-calls}.
10822
10823 @item -mmad
10824 @itemx -mno-mad
10825 @opindex mmad
10826 @opindex mno-mad
10827 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
10828 instructions, as provided by the R4650 ISA@.
10829
10830 @item -mfused-madd
10831 @itemx -mno-fused-madd
10832 @opindex mfused-madd
10833 @opindex mno-fused-madd
10834 Enable (disable) use of the floating point multiply-accumulate
10835 instructions, when they are available.  The default is
10836 @option{-mfused-madd}.
10837
10838 When multiply-accumulate instructions are used, the intermediate
10839 product is calculated to infinite precision and is not subject to
10840 the FCSR Flush to Zero bit.  This may be undesirable in some
10841 circumstances.
10842
10843 @item -nocpp
10844 @opindex nocpp
10845 Tell the MIPS assembler to not run its preprocessor over user
10846 assembler files (with a @samp{.s} suffix) when assembling them.
10847
10848 @item -mfix-r4000
10849 @itemx -mno-fix-r4000
10850 @opindex mfix-r4000
10851 @opindex mno-fix-r4000
10852 Work around certain R4000 CPU errata:
10853 @itemize @minus
10854 @item
10855 A double-word or a variable shift may give an incorrect result if executed
10856 immediately after starting an integer division.
10857 @item
10858 A double-word or a variable shift may give an incorrect result if executed
10859 while an integer multiplication is in progress.
10860 @item
10861 An integer division may give an incorrect result if started in a delay slot
10862 of a taken branch or a jump.
10863 @end itemize
10864
10865 @item -mfix-r4400
10866 @itemx -mno-fix-r4400
10867 @opindex mfix-r4400
10868 @opindex mno-fix-r4400
10869 Work around certain R4400 CPU errata:
10870 @itemize @minus
10871 @item
10872 A double-word or a variable shift may give an incorrect result if executed
10873 immediately after starting an integer division.
10874 @end itemize
10875
10876 @item -mfix-vr4120
10877 @itemx -mno-fix-vr4120
10878 @opindex mfix-vr4120
10879 Work around certain VR4120 errata:
10880 @itemize @minus
10881 @item
10882 @code{dmultu} does not always produce the correct result.
10883 @item
10884 @code{div} and @code{ddiv} do not always produce the correct result if one
10885 of the operands is negative.
10886 @end itemize
10887 The workarounds for the division errata rely on special functions in
10888 @file{libgcc.a}.  At present, these functions are only provided by
10889 the @code{mips64vr*-elf} configurations.
10890
10891 Other VR4120 errata require a nop to be inserted between certain pairs of
10892 instructions.  These errata are handled by the assembler, not by GCC itself.
10893
10894 @item -mfix-vr4130
10895 @opindex mfix-vr4130
10896 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
10897 workarounds are implemented by the assembler rather than by GCC,
10898 although GCC will avoid using @code{mflo} and @code{mfhi} if the
10899 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
10900 instructions are available instead.
10901
10902 @item -mfix-sb1
10903 @itemx -mno-fix-sb1
10904 @opindex mfix-sb1
10905 Work around certain SB-1 CPU core errata.
10906 (This flag currently works around the SB-1 revision 2
10907 ``F1'' and ``F2'' floating point errata.)
10908
10909 @item -mflush-func=@var{func}
10910 @itemx -mno-flush-func
10911 @opindex mflush-func
10912 Specifies the function to call to flush the I and D caches, or to not
10913 call any such function.  If called, the function must take the same
10914 arguments as the common @code{_flush_func()}, that is, the address of the
10915 memory range for which the cache is being flushed, the size of the
10916 memory range, and the number 3 (to flush both caches).  The default
10917 depends on the target GCC was configured for, but commonly is either
10918 @samp{_flush_func} or @samp{__cpu_flush}.
10919
10920 @item -mbranch-likely
10921 @itemx -mno-branch-likely
10922 @opindex mbranch-likely
10923 @opindex mno-branch-likely
10924 Enable or disable use of Branch Likely instructions, regardless of the
10925 default for the selected architecture.  By default, Branch Likely
10926 instructions may be generated if they are supported by the selected
10927 architecture.  An exception is for the MIPS32 and MIPS64 architectures
10928 and processors which implement those architectures; for those, Branch
10929 Likely instructions will not be generated by default because the MIPS32
10930 and MIPS64 architectures specifically deprecate their use.
10931
10932 @item -mfp-exceptions
10933 @itemx -mno-fp-exceptions
10934 @opindex mfp-exceptions
10935 Specifies whether FP exceptions are enabled.  This affects how we schedule
10936 FP instructions for some processors.  The default is that FP exceptions are
10937 enabled.
10938
10939 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
10940 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
10941 FP pipe.
10942
10943 @item -mvr4130-align
10944 @itemx -mno-vr4130-align
10945 @opindex mvr4130-align
10946 The VR4130 pipeline is two-way superscalar, but can only issue two
10947 instructions together if the first one is 8-byte aligned.  When this
10948 option is enabled, GCC will align pairs of instructions that it
10949 thinks should execute in parallel.
10950
10951 This option only has an effect when optimizing for the VR4130.
10952 It normally makes code faster, but at the expense of making it bigger.
10953 It is enabled by default at optimization level @option{-O3}.
10954 @end table
10955
10956 @node MMIX Options
10957 @subsection MMIX Options
10958 @cindex MMIX Options
10959
10960 These options are defined for the MMIX:
10961
10962 @table @gcctabopt
10963 @item -mlibfuncs
10964 @itemx -mno-libfuncs
10965 @opindex mlibfuncs
10966 @opindex mno-libfuncs
10967 Specify that intrinsic library functions are being compiled, passing all
10968 values in registers, no matter the size.
10969
10970 @item -mepsilon
10971 @itemx -mno-epsilon
10972 @opindex mepsilon
10973 @opindex mno-epsilon
10974 Generate floating-point comparison instructions that compare with respect
10975 to the @code{rE} epsilon register.
10976
10977 @item -mabi=mmixware
10978 @itemx -mabi=gnu
10979 @opindex mabi-mmixware
10980 @opindex mabi=gnu
10981 Generate code that passes function parameters and return values that (in
10982 the called function) are seen as registers @code{$0} and up, as opposed to
10983 the GNU ABI which uses global registers @code{$231} and up.
10984
10985 @item -mzero-extend
10986 @itemx -mno-zero-extend
10987 @opindex mzero-extend
10988 @opindex mno-zero-extend
10989 When reading data from memory in sizes shorter than 64 bits, use (do not
10990 use) zero-extending load instructions by default, rather than
10991 sign-extending ones.
10992
10993 @item -mknuthdiv
10994 @itemx -mno-knuthdiv
10995 @opindex mknuthdiv
10996 @opindex mno-knuthdiv
10997 Make the result of a division yielding a remainder have the same sign as
10998 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
10999 remainder follows the sign of the dividend.  Both methods are
11000 arithmetically valid, the latter being almost exclusively used.
11001
11002 @item -mtoplevel-symbols
11003 @itemx -mno-toplevel-symbols
11004 @opindex mtoplevel-symbols
11005 @opindex mno-toplevel-symbols
11006 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
11007 code can be used with the @code{PREFIX} assembly directive.
11008
11009 @item -melf
11010 @opindex melf
11011 Generate an executable in the ELF format, rather than the default
11012 @samp{mmo} format used by the @command{mmix} simulator.
11013
11014 @item -mbranch-predict
11015 @itemx -mno-branch-predict
11016 @opindex mbranch-predict
11017 @opindex mno-branch-predict
11018 Use (do not use) the probable-branch instructions, when static branch
11019 prediction indicates a probable branch.
11020
11021 @item -mbase-addresses
11022 @itemx -mno-base-addresses
11023 @opindex mbase-addresses
11024 @opindex mno-base-addresses
11025 Generate (do not generate) code that uses @emph{base addresses}.  Using a
11026 base address automatically generates a request (handled by the assembler
11027 and the linker) for a constant to be set up in a global register.  The
11028 register is used for one or more base address requests within the range 0
11029 to 255 from the value held in the register.  The generally leads to short
11030 and fast code, but the number of different data items that can be
11031 addressed is limited.  This means that a program that uses lots of static
11032 data may require @option{-mno-base-addresses}.
11033
11034 @item -msingle-exit
11035 @itemx -mno-single-exit
11036 @opindex msingle-exit
11037 @opindex mno-single-exit
11038 Force (do not force) generated code to have a single exit point in each
11039 function.
11040 @end table
11041
11042 @node MN10300 Options
11043 @subsection MN10300 Options
11044 @cindex MN10300 options
11045
11046 These @option{-m} options are defined for Matsushita MN10300 architectures:
11047
11048 @table @gcctabopt
11049 @item -mmult-bug
11050 @opindex mmult-bug
11051 Generate code to avoid bugs in the multiply instructions for the MN10300
11052 processors.  This is the default.
11053
11054 @item -mno-mult-bug
11055 @opindex mno-mult-bug
11056 Do not generate code to avoid bugs in the multiply instructions for the
11057 MN10300 processors.
11058
11059 @item -mam33
11060 @opindex mam33
11061 Generate code which uses features specific to the AM33 processor.
11062
11063 @item -mno-am33
11064 @opindex mno-am33
11065 Do not generate code which uses features specific to the AM33 processor.  This
11066 is the default.
11067
11068 @item -mreturn-pointer-on-d0
11069 @opindex mreturn-pointer-on-d0
11070 When generating a function which returns a pointer, return the pointer
11071 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
11072 only in a0, and attempts to call such functions without a prototype
11073 would result in errors.  Note that this option is on by default; use
11074 @option{-mno-return-pointer-on-d0} to disable it.
11075
11076 @item -mno-crt0
11077 @opindex mno-crt0
11078 Do not link in the C run-time initialization object file.
11079
11080 @item -mrelax
11081 @opindex mrelax
11082 Indicate to the linker that it should perform a relaxation optimization pass
11083 to shorten branches, calls and absolute memory addresses.  This option only
11084 has an effect when used on the command line for the final link step.
11085
11086 This option makes symbolic debugging impossible.
11087 @end table
11088
11089 @node MT Options
11090 @subsection MT Options
11091 @cindex MT options
11092
11093 These @option{-m} options are defined for Morpho MT architectures:
11094
11095 @table @gcctabopt
11096
11097 @item -march=@var{cpu-type}
11098 @opindex march
11099 Generate code that will run on @var{cpu-type}, which is the name of a system
11100 representing a certain processor type.  Possible values for
11101 @var{cpu-type} are @samp{ms1-64-001}, @samp{ms1-16-002},
11102 @samp{ms1-16-003} and @samp{ms2}.
11103
11104 When this option is not used, the default is @option{-march=ms1-16-002}.
11105
11106 @item -mbacc
11107 @opindex mbacc
11108 Use byte loads and stores when generating code.
11109
11110 @item -mno-bacc
11111 @opindex mno-bacc
11112 Do not use byte loads and stores when generating code.
11113
11114 @item -msim
11115 @opindex msim
11116 Use simulator runtime
11117
11118 @item -mno-crt0
11119 @opindex mno-crt0
11120 Do not link in the C run-time initialization object file
11121 @file{crti.o}.  Other run-time initialization and termination files
11122 such as @file{startup.o} and @file{exit.o} are still included on the
11123 linker command line.
11124
11125 @end table
11126
11127 @node PDP-11 Options
11128 @subsection PDP-11 Options
11129 @cindex PDP-11 Options
11130
11131 These options are defined for the PDP-11:
11132
11133 @table @gcctabopt
11134 @item -mfpu
11135 @opindex mfpu
11136 Use hardware FPP floating point.  This is the default.  (FIS floating
11137 point on the PDP-11/40 is not supported.)
11138
11139 @item -msoft-float
11140 @opindex msoft-float
11141 Do not use hardware floating point.
11142
11143 @item -mac0
11144 @opindex mac0
11145 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
11146
11147 @item -mno-ac0
11148 @opindex mno-ac0
11149 Return floating-point results in memory.  This is the default.
11150
11151 @item -m40
11152 @opindex m40
11153 Generate code for a PDP-11/40.
11154
11155 @item -m45
11156 @opindex m45
11157 Generate code for a PDP-11/45.  This is the default.
11158
11159 @item -m10
11160 @opindex m10
11161 Generate code for a PDP-11/10.
11162
11163 @item -mbcopy-builtin
11164 @opindex bcopy-builtin
11165 Use inline @code{movmemhi} patterns for copying memory.  This is the
11166 default.
11167
11168 @item -mbcopy
11169 @opindex mbcopy
11170 Do not use inline @code{movmemhi} patterns for copying memory.
11171
11172 @item -mint16
11173 @itemx -mno-int32
11174 @opindex mint16
11175 @opindex mno-int32
11176 Use 16-bit @code{int}.  This is the default.
11177
11178 @item -mint32
11179 @itemx -mno-int16
11180 @opindex mint32
11181 @opindex mno-int16
11182 Use 32-bit @code{int}.
11183
11184 @item -mfloat64
11185 @itemx -mno-float32
11186 @opindex mfloat64
11187 @opindex mno-float32
11188 Use 64-bit @code{float}.  This is the default.
11189
11190 @item -mfloat32
11191 @itemx -mno-float64
11192 @opindex mfloat32
11193 @opindex mno-float64
11194 Use 32-bit @code{float}.
11195
11196 @item -mabshi
11197 @opindex mabshi
11198 Use @code{abshi2} pattern.  This is the default.
11199
11200 @item -mno-abshi
11201 @opindex mno-abshi
11202 Do not use @code{abshi2} pattern.
11203
11204 @item -mbranch-expensive
11205 @opindex mbranch-expensive
11206 Pretend that branches are expensive.  This is for experimenting with
11207 code generation only.
11208
11209 @item -mbranch-cheap
11210 @opindex mbranch-cheap
11211 Do not pretend that branches are expensive.  This is the default.
11212
11213 @item -msplit
11214 @opindex msplit
11215 Generate code for a system with split I&D@.
11216
11217 @item -mno-split
11218 @opindex mno-split
11219 Generate code for a system without split I&D@.  This is the default.
11220
11221 @item -munix-asm
11222 @opindex munix-asm
11223 Use Unix assembler syntax.  This is the default when configured for
11224 @samp{pdp11-*-bsd}.
11225
11226 @item -mdec-asm
11227 @opindex mdec-asm
11228 Use DEC assembler syntax.  This is the default when configured for any
11229 PDP-11 target other than @samp{pdp11-*-bsd}.
11230 @end table
11231
11232 @node PowerPC Options
11233 @subsection PowerPC Options
11234 @cindex PowerPC options
11235
11236 These are listed under @xref{RS/6000 and PowerPC Options}.
11237
11238 @node RS/6000 and PowerPC Options
11239 @subsection IBM RS/6000 and PowerPC Options
11240 @cindex RS/6000 and PowerPC Options
11241 @cindex IBM RS/6000 and PowerPC Options
11242
11243 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
11244 @table @gcctabopt
11245 @item -mpower
11246 @itemx -mno-power
11247 @itemx -mpower2
11248 @itemx -mno-power2
11249 @itemx -mpowerpc
11250 @itemx -mno-powerpc
11251 @itemx -mpowerpc-gpopt
11252 @itemx -mno-powerpc-gpopt
11253 @itemx -mpowerpc-gfxopt
11254 @itemx -mno-powerpc-gfxopt
11255 @itemx -mpowerpc64
11256 @itemx -mno-powerpc64
11257 @itemx -mmfcrf
11258 @itemx -mno-mfcrf
11259 @itemx -mpopcntb
11260 @itemx -mno-popcntb
11261 @itemx -mfprnd
11262 @itemx -mno-fprnd
11263 @itemx -mmfpgpr
11264 @itemx -mno-mfpgpr
11265 @opindex mpower
11266 @opindex mno-power
11267 @opindex mpower2
11268 @opindex mno-power2
11269 @opindex mpowerpc
11270 @opindex mno-powerpc
11271 @opindex mpowerpc-gpopt
11272 @opindex mno-powerpc-gpopt
11273 @opindex mpowerpc-gfxopt
11274 @opindex mno-powerpc-gfxopt
11275 @opindex mpowerpc64
11276 @opindex mno-powerpc64
11277 @opindex mmfcrf
11278 @opindex mno-mfcrf
11279 @opindex mpopcntb
11280 @opindex mno-popcntb
11281 @opindex mfprnd
11282 @opindex mno-fprnd
11283 @opindex mmfpgpr
11284 @opindex mno-mfpgpr
11285 GCC supports two related instruction set architectures for the
11286 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
11287 instructions supported by the @samp{rios} chip set used in the original
11288 RS/6000 systems and the @dfn{PowerPC} instruction set is the
11289 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
11290 the IBM 4xx, 6xx, and follow-on microprocessors.
11291
11292 Neither architecture is a subset of the other.  However there is a
11293 large common subset of instructions supported by both.  An MQ
11294 register is included in processors supporting the POWER architecture.
11295
11296 You use these options to specify which instructions are available on the
11297 processor you are using.  The default value of these options is
11298 determined when configuring GCC@.  Specifying the
11299 @option{-mcpu=@var{cpu_type}} overrides the specification of these
11300 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
11301 rather than the options listed above.
11302
11303 The @option{-mpower} option allows GCC to generate instructions that
11304 are found only in the POWER architecture and to use the MQ register.
11305 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
11306 to generate instructions that are present in the POWER2 architecture but
11307 not the original POWER architecture.
11308
11309 The @option{-mpowerpc} option allows GCC to generate instructions that
11310 are found only in the 32-bit subset of the PowerPC architecture.
11311 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
11312 GCC to use the optional PowerPC architecture instructions in the
11313 General Purpose group, including floating-point square root.  Specifying
11314 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
11315 use the optional PowerPC architecture instructions in the Graphics
11316 group, including floating-point select.
11317
11318 The @option{-mmfcrf} option allows GCC to generate the move from
11319 condition register field instruction implemented on the POWER4
11320 processor and other processors that support the PowerPC V2.01
11321 architecture.
11322 The @option{-mpopcntb} option allows GCC to generate the popcount and
11323 double precision FP reciprocal estimate instruction implemented on the
11324 POWER5 processor and other processors that support the PowerPC V2.02
11325 architecture.
11326 The @option{-mfprnd} option allows GCC to generate the FP round to
11327 integer instructions implemented on the POWER5+ processor and other
11328 processors that support the PowerPC V2.03 architecture.
11329 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
11330 general purpose register instructions implemented on the POWER6X
11331 processor and other processors that support the extended PowerPC V2.05
11332 architecture.
11333
11334 The @option{-mpowerpc64} option allows GCC to generate the additional
11335 64-bit instructions that are found in the full PowerPC64 architecture
11336 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
11337 @option{-mno-powerpc64}.
11338
11339 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
11340 will use only the instructions in the common subset of both
11341 architectures plus some special AIX common-mode calls, and will not use
11342 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
11343 permits GCC to use any instruction from either architecture and to
11344 allow use of the MQ register; specify this for the Motorola MPC601.
11345
11346 @item -mnew-mnemonics
11347 @itemx -mold-mnemonics
11348 @opindex mnew-mnemonics
11349 @opindex mold-mnemonics
11350 Select which mnemonics to use in the generated assembler code.  With
11351 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
11352 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
11353 assembler mnemonics defined for the POWER architecture.  Instructions
11354 defined in only one architecture have only one mnemonic; GCC uses that
11355 mnemonic irrespective of which of these options is specified.
11356
11357 GCC defaults to the mnemonics appropriate for the architecture in
11358 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
11359 value of these option.  Unless you are building a cross-compiler, you
11360 should normally not specify either @option{-mnew-mnemonics} or
11361 @option{-mold-mnemonics}, but should instead accept the default.
11362
11363 @item -mcpu=@var{cpu_type}
11364 @opindex mcpu
11365 Set architecture type, register usage, choice of mnemonics, and
11366 instruction scheduling parameters for machine type @var{cpu_type}.
11367 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
11368 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{505},
11369 @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
11370 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
11371 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
11372 @samp{860}, @samp{970}, @samp{8540}, @samp{ec603e}, @samp{G3},
11373 @samp{G4}, @samp{G5}, @samp{power}, @samp{power2}, @samp{power3},
11374 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6},
11375 @samp{power6x}, @samp{common}, @samp{powerpc}, @samp{powerpc64},
11376 @samp{rios}, @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
11377
11378 @option{-mcpu=common} selects a completely generic processor.  Code
11379 generated under this option will run on any POWER or PowerPC processor.
11380 GCC will use only the instructions in the common subset of both
11381 architectures, and will not use the MQ register.  GCC assumes a generic
11382 processor model for scheduling purposes.
11383
11384 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
11385 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
11386 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
11387 types, with an appropriate, generic processor model assumed for
11388 scheduling purposes.
11389
11390 The other options specify a specific processor.  Code generated under
11391 those options will run best on that processor, and may not run at all on
11392 others.
11393
11394 The @option{-mcpu} options automatically enable or disable the
11395 following options: @option{-maltivec}, @option{-mfprnd},
11396 @option{-mhard-float}, @option{-mmfcrf}, @option{-mmultiple},
11397 @option{-mnew-mnemonics}, @option{-mpopcntb}, @option{-mpower},
11398 @option{-mpower2}, @option{-mpowerpc64}, @option{-mpowerpc-gpopt},
11399 @option{-mpowerpc-gfxopt}, @option{-mstring}, @option{-mmulhw},
11400 @option{-mdlmzb}, @option{-mmfpgpr}.
11401 The particular options set for any particular CPU will vary between
11402 compiler versions, depending on what setting seems to produce optimal
11403 code for that CPU; it doesn't necessarily reflect the actual hardware's
11404 capabilities.  If you wish to set an individual option to a particular
11405 value, you may specify it after the @option{-mcpu} option, like
11406 @samp{-mcpu=970 -mno-altivec}.
11407
11408 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
11409 not enabled or disabled by the @option{-mcpu} option at present because
11410 AIX does not have full support for these options.  You may still
11411 enable or disable them individually if you're sure it'll work in your
11412 environment.
11413
11414 @item -mtune=@var{cpu_type}
11415 @opindex mtune
11416 Set the instruction scheduling parameters for machine type
11417 @var{cpu_type}, but do not set the architecture type, register usage, or
11418 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
11419 values for @var{cpu_type} are used for @option{-mtune} as for
11420 @option{-mcpu}.  If both are specified, the code generated will use the
11421 architecture, registers, and mnemonics set by @option{-mcpu}, but the
11422 scheduling parameters set by @option{-mtune}.
11423
11424 @item -mswdiv
11425 @itemx -mno-swdiv
11426 @opindex mswdiv
11427 @opindex mno-swdiv
11428 Generate code to compute division as reciprocal estimate and iterative
11429 refinement, creating opportunities for increased throughput.  This
11430 feature requires: optional PowerPC Graphics instruction set for single
11431 precision and FRE instruction for double precision, assuming divides
11432 cannot generate user-visible traps, and the domain values not include
11433 Infinities, denormals or zero denominator.
11434
11435 @item -maltivec
11436 @itemx -mno-altivec
11437 @opindex maltivec
11438 @opindex mno-altivec
11439 Generate code that uses (does not use) AltiVec instructions, and also
11440 enable the use of built-in functions that allow more direct access to
11441 the AltiVec instruction set.  You may also need to set
11442 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
11443 enhancements.
11444
11445 @item -mvrsave
11446 @item -mno-vrsave
11447 @opindex mvrsave
11448 @opindex mno-vrsave
11449 Generate VRSAVE instructions when generating AltiVec code.
11450
11451 @item -msecure-plt
11452 @opindex msecure-plt
11453 Generate code that allows ld and ld.so to build executables and shared
11454 libraries with non-exec .plt and .got sections.  This is a PowerPC
11455 32-bit SYSV ABI option.
11456
11457 @item -mbss-plt
11458 @opindex mbss-plt
11459 Generate code that uses a BSS .plt section that ld.so fills in, and
11460 requires .plt and .got sections that are both writable and executable.
11461 This is a PowerPC 32-bit SYSV ABI option.
11462
11463 @item -misel
11464 @itemx -mno-isel
11465 @opindex misel
11466 @opindex mno-isel
11467 This switch enables or disables the generation of ISEL instructions.
11468
11469 @item -misel=@var{yes/no}
11470 This switch has been deprecated.  Use @option{-misel} and
11471 @option{-mno-isel} instead.
11472
11473 @item -mspe
11474 @itemx -mno-isel
11475 @opindex mspe
11476 @opindex mno-spe
11477 This switch enables or disables the generation of SPE simd
11478 instructions.
11479
11480 @item -mspe=@var{yes/no}
11481 This option has been deprecated.  Use @option{-mspe} and
11482 @option{-mno-spe} instead.
11483
11484 @item -mfloat-gprs=@var{yes/single/double/no}
11485 @itemx -mfloat-gprs
11486 @opindex mfloat-gprs
11487 This switch enables or disables the generation of floating point
11488 operations on the general purpose registers for architectures that
11489 support it.
11490
11491 The argument @var{yes} or @var{single} enables the use of
11492 single-precision floating point operations.
11493
11494 The argument @var{double} enables the use of single and
11495 double-precision floating point operations.
11496
11497 The argument @var{no} disables floating point operations on the
11498 general purpose registers.
11499
11500 This option is currently only available on the MPC854x.
11501
11502 @item -m32
11503 @itemx -m64
11504 @opindex m32
11505 @opindex m64
11506 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
11507 targets (including GNU/Linux).  The 32-bit environment sets int, long
11508 and pointer to 32 bits and generates code that runs on any PowerPC
11509 variant.  The 64-bit environment sets int to 32 bits and long and
11510 pointer to 64 bits, and generates code for PowerPC64, as for
11511 @option{-mpowerpc64}.
11512
11513 @item -mfull-toc
11514 @itemx -mno-fp-in-toc
11515 @itemx -mno-sum-in-toc
11516 @itemx -mminimal-toc
11517 @opindex mfull-toc
11518 @opindex mno-fp-in-toc
11519 @opindex mno-sum-in-toc
11520 @opindex mminimal-toc
11521 Modify generation of the TOC (Table Of Contents), which is created for
11522 every executable file.  The @option{-mfull-toc} option is selected by
11523 default.  In that case, GCC will allocate at least one TOC entry for
11524 each unique non-automatic variable reference in your program.  GCC
11525 will also place floating-point constants in the TOC@.  However, only
11526 16,384 entries are available in the TOC@.
11527
11528 If you receive a linker error message that saying you have overflowed
11529 the available TOC space, you can reduce the amount of TOC space used
11530 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
11531 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
11532 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
11533 generate code to calculate the sum of an address and a constant at
11534 run-time instead of putting that sum into the TOC@.  You may specify one
11535 or both of these options.  Each causes GCC to produce very slightly
11536 slower and larger code at the expense of conserving TOC space.
11537
11538 If you still run out of space in the TOC even when you specify both of
11539 these options, specify @option{-mminimal-toc} instead.  This option causes
11540 GCC to make only one TOC entry for every file.  When you specify this
11541 option, GCC will produce code that is slower and larger but which
11542 uses extremely little TOC space.  You may wish to use this option
11543 only on files that contain less frequently executed code.
11544
11545 @item -maix64
11546 @itemx -maix32
11547 @opindex maix64
11548 @opindex maix32
11549 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
11550 @code{long} type, and the infrastructure needed to support them.
11551 Specifying @option{-maix64} implies @option{-mpowerpc64} and
11552 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
11553 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
11554
11555 @item -mxl-compat
11556 @itemx -mno-xl-compat
11557 @opindex mxl-compat
11558 @opindex mno-xl-compat
11559 Produce code that conforms more closely to IBM XL compiler semantics
11560 when using AIX-compatible ABI.  Pass floating-point arguments to
11561 prototyped functions beyond the register save area (RSA) on the stack
11562 in addition to argument FPRs.  Do not assume that most significant
11563 double in 128-bit long double value is properly rounded when comparing
11564 values and converting to double.  Use XL symbol names for long double
11565 support routines.
11566
11567 The AIX calling convention was extended but not initially documented to
11568 handle an obscure K&R C case of calling a function that takes the
11569 address of its arguments with fewer arguments than declared.  IBM XL
11570 compilers access floating point arguments which do not fit in the
11571 RSA from the stack when a subroutine is compiled without
11572 optimization.  Because always storing floating-point arguments on the
11573 stack is inefficient and rarely needed, this option is not enabled by
11574 default and only is necessary when calling subroutines compiled by IBM
11575 XL compilers without optimization.
11576
11577 @item -mpe
11578 @opindex mpe
11579 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
11580 application written to use message passing with special startup code to
11581 enable the application to run.  The system must have PE installed in the
11582 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
11583 must be overridden with the @option{-specs=} option to specify the
11584 appropriate directory location.  The Parallel Environment does not
11585 support threads, so the @option{-mpe} option and the @option{-pthread}
11586 option are incompatible.
11587
11588 @item -malign-natural
11589 @itemx -malign-power
11590 @opindex malign-natural
11591 @opindex malign-power
11592 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
11593 @option{-malign-natural} overrides the ABI-defined alignment of larger
11594 types, such as floating-point doubles, on their natural size-based boundary.
11595 The option @option{-malign-power} instructs GCC to follow the ABI-specified
11596 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
11597
11598 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
11599 is not supported.
11600
11601 @item -msoft-float
11602 @itemx -mhard-float
11603 @opindex msoft-float
11604 @opindex mhard-float
11605 Generate code that does not use (uses) the floating-point register set.
11606 Software floating point emulation is provided if you use the
11607 @option{-msoft-float} option, and pass the option to GCC when linking.
11608
11609 @item -mmultiple
11610 @itemx -mno-multiple
11611 @opindex mmultiple
11612 @opindex mno-multiple
11613 Generate code that uses (does not use) the load multiple word
11614 instructions and the store multiple word instructions.  These
11615 instructions are generated by default on POWER systems, and not
11616 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
11617 endian PowerPC systems, since those instructions do not work when the
11618 processor is in little endian mode.  The exceptions are PPC740 and
11619 PPC750 which permit the instructions usage in little endian mode.
11620
11621 @item -mstring
11622 @itemx -mno-string
11623 @opindex mstring
11624 @opindex mno-string
11625 Generate code that uses (does not use) the load string instructions
11626 and the store string word instructions to save multiple registers and
11627 do small block moves.  These instructions are generated by default on
11628 POWER systems, and not generated on PowerPC systems.  Do not use
11629 @option{-mstring} on little endian PowerPC systems, since those
11630 instructions do not work when the processor is in little endian mode.
11631 The exceptions are PPC740 and PPC750 which permit the instructions
11632 usage in little endian mode.
11633
11634 @item -mupdate
11635 @itemx -mno-update
11636 @opindex mupdate
11637 @opindex mno-update
11638 Generate code that uses (does not use) the load or store instructions
11639 that update the base register to the address of the calculated memory
11640 location.  These instructions are generated by default.  If you use
11641 @option{-mno-update}, there is a small window between the time that the
11642 stack pointer is updated and the address of the previous frame is
11643 stored, which means code that walks the stack frame across interrupts or
11644 signals may get corrupted data.
11645
11646 @item -mfused-madd
11647 @itemx -mno-fused-madd
11648 @opindex mfused-madd
11649 @opindex mno-fused-madd
11650 Generate code that uses (does not use) the floating point multiply and
11651 accumulate instructions.  These instructions are generated by default if
11652 hardware floating is used.
11653
11654 @item -mmulhw
11655 @itemx -mno-mulhw
11656 @opindex mmulhw
11657 @opindex mno-mulhw
11658 Generate code that uses (does not use) the half-word multiply and
11659 multiply-accumulate instructions on the IBM 405 and 440 processors.
11660 These instructions are generated by default when targetting those
11661 processors.
11662
11663 @item -mdlmzb
11664 @itemx -mno-dlmzb
11665 @opindex mdlmzb
11666 @opindex mno-dlmzb
11667 Generate code that uses (does not use) the string-search @samp{dlmzb}
11668 instruction on the IBM 405 and 440 processors.  This instruction is
11669 generated by default when targetting those processors.
11670
11671 @item -mno-bit-align
11672 @itemx -mbit-align
11673 @opindex mno-bit-align
11674 @opindex mbit-align
11675 On System V.4 and embedded PowerPC systems do not (do) force structures
11676 and unions that contain bit-fields to be aligned to the base type of the
11677 bit-field.
11678
11679 For example, by default a structure containing nothing but 8
11680 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
11681 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
11682 the structure would be aligned to a 1 byte boundary and be one byte in
11683 size.
11684
11685 @item -mno-strict-align
11686 @itemx -mstrict-align
11687 @opindex mno-strict-align
11688 @opindex mstrict-align
11689 On System V.4 and embedded PowerPC systems do not (do) assume that
11690 unaligned memory references will be handled by the system.
11691
11692 @item -mrelocatable
11693 @itemx -mno-relocatable
11694 @opindex mrelocatable
11695 @opindex mno-relocatable
11696 On embedded PowerPC systems generate code that allows (does not allow)
11697 the program to be relocated to a different address at runtime.  If you
11698 use @option{-mrelocatable} on any module, all objects linked together must
11699 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
11700
11701 @item -mrelocatable-lib
11702 @itemx -mno-relocatable-lib
11703 @opindex mrelocatable-lib
11704 @opindex mno-relocatable-lib
11705 On embedded PowerPC systems generate code that allows (does not allow)
11706 the program to be relocated to a different address at runtime.  Modules
11707 compiled with @option{-mrelocatable-lib} can be linked with either modules
11708 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
11709 with modules compiled with the @option{-mrelocatable} options.
11710
11711 @item -mno-toc
11712 @itemx -mtoc
11713 @opindex mno-toc
11714 @opindex mtoc
11715 On System V.4 and embedded PowerPC systems do not (do) assume that
11716 register 2 contains a pointer to a global area pointing to the addresses
11717 used in the program.
11718
11719 @item -mlittle
11720 @itemx -mlittle-endian
11721 @opindex mlittle
11722 @opindex mlittle-endian
11723 On System V.4 and embedded PowerPC systems compile code for the
11724 processor in little endian mode.  The @option{-mlittle-endian} option is
11725 the same as @option{-mlittle}.
11726
11727 @item -mbig
11728 @itemx -mbig-endian
11729 @opindex mbig
11730 @opindex mbig-endian
11731 On System V.4 and embedded PowerPC systems compile code for the
11732 processor in big endian mode.  The @option{-mbig-endian} option is
11733 the same as @option{-mbig}.
11734
11735 @item -mdynamic-no-pic
11736 @opindex mdynamic-no-pic
11737 On Darwin and Mac OS X systems, compile code so that it is not
11738 relocatable, but that its external references are relocatable.  The
11739 resulting code is suitable for applications, but not shared
11740 libraries.
11741
11742 @item -mprioritize-restricted-insns=@var{priority}
11743 @opindex mprioritize-restricted-insns
11744 This option controls the priority that is assigned to
11745 dispatch-slot restricted instructions during the second scheduling
11746 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
11747 @var{no/highest/second-highest} priority to dispatch slot restricted
11748 instructions.
11749
11750 @item -msched-costly-dep=@var{dependence_type}
11751 @opindex msched-costly-dep
11752 This option controls which dependences are considered costly
11753 by the target during instruction scheduling.  The argument
11754 @var{dependence_type} takes one of the following values:
11755 @var{no}: no dependence is costly,
11756 @var{all}: all dependences are costly,
11757 @var{true_store_to_load}: a true dependence from store to load is costly,
11758 @var{store_to_load}: any dependence from store to load is costly,
11759 @var{number}: any dependence which latency >= @var{number} is costly.
11760
11761 @item -minsert-sched-nops=@var{scheme}
11762 @opindex minsert-sched-nops
11763 This option controls which nop insertion scheme will be used during
11764 the second scheduling pass.  The argument @var{scheme} takes one of the
11765 following values:
11766 @var{no}: Don't insert nops.
11767 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
11768 according to the scheduler's grouping.
11769 @var{regroup_exact}: Insert nops to force costly dependent insns into
11770 separate groups.  Insert exactly as many nops as needed to force an insn
11771 to a new group, according to the estimated processor grouping.
11772 @var{number}: Insert nops to force costly dependent insns into
11773 separate groups.  Insert @var{number} nops to force an insn to a new group.
11774
11775 @item -mcall-sysv
11776 @opindex mcall-sysv
11777 On System V.4 and embedded PowerPC systems compile code using calling
11778 conventions that adheres to the March 1995 draft of the System V
11779 Application Binary Interface, PowerPC processor supplement.  This is the
11780 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
11781
11782 @item -mcall-sysv-eabi
11783 @opindex mcall-sysv-eabi
11784 Specify both @option{-mcall-sysv} and @option{-meabi} options.
11785
11786 @item -mcall-sysv-noeabi
11787 @opindex mcall-sysv-noeabi
11788 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
11789
11790 @item -mcall-solaris
11791 @opindex mcall-solaris
11792 On System V.4 and embedded PowerPC systems compile code for the Solaris
11793 operating system.
11794
11795 @item -mcall-linux
11796 @opindex mcall-linux
11797 On System V.4 and embedded PowerPC systems compile code for the
11798 Linux-based GNU system.
11799
11800 @item -mcall-gnu
11801 @opindex mcall-gnu
11802 On System V.4 and embedded PowerPC systems compile code for the
11803 Hurd-based GNU system.
11804
11805 @item -mcall-netbsd
11806 @opindex mcall-netbsd
11807 On System V.4 and embedded PowerPC systems compile code for the
11808 NetBSD operating system.
11809
11810 @item -maix-struct-return
11811 @opindex maix-struct-return
11812 Return all structures in memory (as specified by the AIX ABI)@.
11813
11814 @item -msvr4-struct-return
11815 @opindex msvr4-struct-return
11816 Return structures smaller than 8 bytes in registers (as specified by the
11817 SVR4 ABI)@.
11818
11819 @item -mabi=@var{abi-type}
11820 @opindex mabi
11821 Extend the current ABI with a particular extension, or remove such extension.
11822 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
11823 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
11824
11825 @item -mabi=spe
11826 @opindex mabi=spe
11827 Extend the current ABI with SPE ABI extensions.  This does not change
11828 the default ABI, instead it adds the SPE ABI extensions to the current
11829 ABI@.
11830
11831 @item -mabi=no-spe
11832 @opindex mabi=no-spe
11833 Disable Booke SPE ABI extensions for the current ABI@.
11834
11835 @item -mabi=ibmlongdouble
11836 @opindex mabi=ibmlongdouble
11837 Change the current ABI to use IBM extended precision long double.
11838 This is a PowerPC 32-bit SYSV ABI option.
11839
11840 @item -mabi=ieeelongdouble
11841 @opindex mabi=ieeelongdouble
11842 Change the current ABI to use IEEE extended precision long double.
11843 This is a PowerPC 32-bit Linux ABI option.
11844
11845 @item -mprototype
11846 @itemx -mno-prototype
11847 @opindex mprototype
11848 @opindex mno-prototype
11849 On System V.4 and embedded PowerPC systems assume that all calls to
11850 variable argument functions are properly prototyped.  Otherwise, the
11851 compiler must insert an instruction before every non prototyped call to
11852 set or clear bit 6 of the condition code register (@var{CR}) to
11853 indicate whether floating point values were passed in the floating point
11854 registers in case the function takes a variable arguments.  With
11855 @option{-mprototype}, only calls to prototyped variable argument functions
11856 will set or clear the bit.
11857
11858 @item -msim
11859 @opindex msim
11860 On embedded PowerPC systems, assume that the startup module is called
11861 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
11862 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}.
11863 configurations.
11864
11865 @item -mmvme
11866 @opindex mmvme
11867 On embedded PowerPC systems, assume that the startup module is called
11868 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
11869 @file{libc.a}.
11870
11871 @item -mads
11872 @opindex mads
11873 On embedded PowerPC systems, assume that the startup module is called
11874 @file{crt0.o} and the standard C libraries are @file{libads.a} and
11875 @file{libc.a}.
11876
11877 @item -myellowknife
11878 @opindex myellowknife
11879 On embedded PowerPC systems, assume that the startup module is called
11880 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
11881 @file{libc.a}.
11882
11883 @item -mvxworks
11884 @opindex mvxworks
11885 On System V.4 and embedded PowerPC systems, specify that you are
11886 compiling for a VxWorks system.
11887
11888 @item -mwindiss
11889 @opindex mwindiss
11890 Specify that you are compiling for the WindISS simulation environment.
11891
11892 @item -memb
11893 @opindex memb
11894 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
11895 header to indicate that @samp{eabi} extended relocations are used.
11896
11897 @item -meabi
11898 @itemx -mno-eabi
11899 @opindex meabi
11900 @opindex mno-eabi
11901 On System V.4 and embedded PowerPC systems do (do not) adhere to the
11902 Embedded Applications Binary Interface (eabi) which is a set of
11903 modifications to the System V.4 specifications.  Selecting @option{-meabi}
11904 means that the stack is aligned to an 8 byte boundary, a function
11905 @code{__eabi} is called to from @code{main} to set up the eabi
11906 environment, and the @option{-msdata} option can use both @code{r2} and
11907 @code{r13} to point to two separate small data areas.  Selecting
11908 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
11909 do not call an initialization function from @code{main}, and the
11910 @option{-msdata} option will only use @code{r13} to point to a single
11911 small data area.  The @option{-meabi} option is on by default if you
11912 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
11913
11914 @item -msdata=eabi
11915 @opindex msdata=eabi
11916 On System V.4 and embedded PowerPC systems, put small initialized
11917 @code{const} global and static data in the @samp{.sdata2} section, which
11918 is pointed to by register @code{r2}.  Put small initialized
11919 non-@code{const} global and static data in the @samp{.sdata} section,
11920 which is pointed to by register @code{r13}.  Put small uninitialized
11921 global and static data in the @samp{.sbss} section, which is adjacent to
11922 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
11923 incompatible with the @option{-mrelocatable} option.  The
11924 @option{-msdata=eabi} option also sets the @option{-memb} option.
11925
11926 @item -msdata=sysv
11927 @opindex msdata=sysv
11928 On System V.4 and embedded PowerPC systems, put small global and static
11929 data in the @samp{.sdata} section, which is pointed to by register
11930 @code{r13}.  Put small uninitialized global and static data in the
11931 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
11932 The @option{-msdata=sysv} option is incompatible with the
11933 @option{-mrelocatable} option.
11934
11935 @item -msdata=default
11936 @itemx -msdata
11937 @opindex msdata=default
11938 @opindex msdata
11939 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
11940 compile code the same as @option{-msdata=eabi}, otherwise compile code the
11941 same as @option{-msdata=sysv}.
11942
11943 @item -msdata-data
11944 @opindex msdata-data
11945 On System V.4 and embedded PowerPC systems, put small global
11946 data in the @samp{.sdata} section.  Put small uninitialized global
11947 data in the @samp{.sbss} section.  Do not use register @code{r13}
11948 to address small data however.  This is the default behavior unless
11949 other @option{-msdata} options are used.
11950
11951 @item -msdata=none
11952 @itemx -mno-sdata
11953 @opindex msdata=none
11954 @opindex mno-sdata
11955 On embedded PowerPC systems, put all initialized global and static data
11956 in the @samp{.data} section, and all uninitialized data in the
11957 @samp{.bss} section.
11958
11959 @item -G @var{num}
11960 @opindex G
11961 @cindex smaller data references (PowerPC)
11962 @cindex .sdata/.sdata2 references (PowerPC)
11963 On embedded PowerPC systems, put global and static items less than or
11964 equal to @var{num} bytes into the small data or bss sections instead of
11965 the normal data or bss section.  By default, @var{num} is 8.  The
11966 @option{-G @var{num}} switch is also passed to the linker.
11967 All modules should be compiled with the same @option{-G @var{num}} value.
11968
11969 @item -mregnames
11970 @itemx -mno-regnames
11971 @opindex mregnames
11972 @opindex mno-regnames
11973 On System V.4 and embedded PowerPC systems do (do not) emit register
11974 names in the assembly language output using symbolic forms.
11975
11976 @item -mlongcall
11977 @itemx -mno-longcall
11978 @opindex mlongcall
11979 @opindex mno-longcall
11980 By default assume that all calls are far away so that a longer more
11981 expensive calling sequence is required.  This is required for calls
11982 further than 32 megabytes (33,554,432 bytes) from the current location.
11983 A short call will be generated if the compiler knows
11984 the call cannot be that far away.  This setting can be overridden by
11985 the @code{shortcall} function attribute, or by @code{#pragma
11986 longcall(0)}.
11987
11988 Some linkers are capable of detecting out-of-range calls and generating
11989 glue code on the fly.  On these systems, long calls are unnecessary and
11990 generate slower code.  As of this writing, the AIX linker can do this,
11991 as can the GNU linker for PowerPC/64.  It is planned to add this feature
11992 to the GNU linker for 32-bit PowerPC systems as well.
11993
11994 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
11995 callee, L42'', plus a ``branch island'' (glue code).  The two target
11996 addresses represent the callee and the ``branch island''.  The
11997 Darwin/PPC linker will prefer the first address and generate a ``bl
11998 callee'' if the PPC ``bl'' instruction will reach the callee directly;
11999 otherwise, the linker will generate ``bl L42'' to call the ``branch
12000 island''.  The ``branch island'' is appended to the body of the
12001 calling function; it computes the full 32-bit address of the callee
12002 and jumps to it.
12003
12004 On Mach-O (Darwin) systems, this option directs the compiler emit to
12005 the glue for every direct call, and the Darwin linker decides whether
12006 to use or discard it.
12007
12008 In the future, we may cause GCC to ignore all longcall specifications
12009 when the linker is known to generate glue.
12010
12011 @item -pthread
12012 @opindex pthread
12013 Adds support for multithreading with the @dfn{pthreads} library.
12014 This option sets flags for both the preprocessor and linker.
12015
12016 @end table
12017
12018 @node S/390 and zSeries Options
12019 @subsection S/390 and zSeries Options
12020 @cindex S/390 and zSeries Options
12021
12022 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
12023
12024 @table @gcctabopt
12025 @item -mhard-float
12026 @itemx -msoft-float
12027 @opindex mhard-float
12028 @opindex msoft-float
12029 Use (do not use) the hardware floating-point instructions and registers
12030 for floating-point operations.  When @option{-msoft-float} is specified,
12031 functions in @file{libgcc.a} will be used to perform floating-point
12032 operations.  When @option{-mhard-float} is specified, the compiler
12033 generates IEEE floating-point instructions.  This is the default.
12034
12035 @item -mlong-double-64
12036 @itemx -mlong-double-128
12037 @opindex mlong-double-64
12038 @opindex mlong-double-128
12039 These switches control the size of @code{long double} type. A size
12040 of 64bit makes the @code{long double} type equivalent to the @code{double}
12041 type. This is the default.
12042
12043 @item -mbackchain
12044 @itemx -mno-backchain
12045 @opindex mbackchain
12046 @opindex mno-backchain
12047 Store (do not store) the address of the caller's frame as backchain pointer
12048 into the callee's stack frame.
12049 A backchain may be needed to allow debugging using tools that do not understand
12050 DWARF-2 call frame information.
12051 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
12052 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
12053 the backchain is placed into the topmost word of the 96/160 byte register
12054 save area.
12055
12056 In general, code compiled with @option{-mbackchain} is call-compatible with
12057 code compiled with @option{-mmo-backchain}; however, use of the backchain
12058 for debugging purposes usually requires that the whole binary is built with
12059 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
12060 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
12061 to build a linux kernel use @option{-msoft-float}.
12062
12063 The default is to not maintain the backchain.
12064
12065 @item -mpacked-stack
12066 @item -mno-packed-stack
12067 @opindex mpacked-stack
12068 @opindex mno-packed-stack
12069 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
12070 specified, the compiler uses the all fields of the 96/160 byte register save
12071 area only for their default purpose; unused fields still take up stack space.
12072 When @option{-mpacked-stack} is specified, register save slots are densely
12073 packed at the top of the register save area; unused space is reused for other
12074 purposes, allowing for more efficient use of the available stack space.
12075 However, when @option{-mbackchain} is also in effect, the topmost word of
12076 the save area is always used to store the backchain, and the return address
12077 register is always saved two words below the backchain.
12078
12079 As long as the stack frame backchain is not used, code generated with
12080 @option{-mpacked-stack} is call-compatible with code generated with
12081 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
12082 S/390 or zSeries generated code that uses the stack frame backchain at run
12083 time, not just for debugging purposes.  Such code is not call-compatible
12084 with code compiled with @option{-mpacked-stack}.  Also, note that the
12085 combination of @option{-mbackchain},
12086 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
12087 to build a linux kernel use @option{-msoft-float}.
12088
12089 The default is to not use the packed stack layout.
12090
12091 @item -msmall-exec
12092 @itemx -mno-small-exec
12093 @opindex msmall-exec
12094 @opindex mno-small-exec
12095 Generate (or do not generate) code using the @code{bras} instruction
12096 to do subroutine calls.
12097 This only works reliably if the total executable size does not
12098 exceed 64k.  The default is to use the @code{basr} instruction instead,
12099 which does not have this limitation.
12100
12101 @item -m64
12102 @itemx -m31
12103 @opindex m64
12104 @opindex m31
12105 When @option{-m31} is specified, generate code compliant to the
12106 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
12107 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
12108 particular to generate 64-bit instructions.  For the @samp{s390}
12109 targets, the default is @option{-m31}, while the @samp{s390x}
12110 targets default to @option{-m64}.
12111
12112 @item -mzarch
12113 @itemx -mesa
12114 @opindex mzarch
12115 @opindex mesa
12116 When @option{-mzarch} is specified, generate code using the
12117 instructions available on z/Architecture.
12118 When @option{-mesa} is specified, generate code using the
12119 instructions available on ESA/390.  Note that @option{-mesa} is
12120 not possible with @option{-m64}.
12121 When generating code compliant to the GNU/Linux for S/390 ABI,
12122 the default is @option{-mesa}.  When generating code compliant
12123 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
12124
12125 @item -mmvcle
12126 @itemx -mno-mvcle
12127 @opindex mmvcle
12128 @opindex mno-mvcle
12129 Generate (or do not generate) code using the @code{mvcle} instruction
12130 to perform block moves.  When @option{-mno-mvcle} is specified,
12131 use a @code{mvc} loop instead.  This is the default unless optimizing for
12132 size.
12133
12134 @item -mdebug
12135 @itemx -mno-debug
12136 @opindex mdebug
12137 @opindex mno-debug
12138 Print (or do not print) additional debug information when compiling.
12139 The default is to not print debug information.
12140
12141 @item -march=@var{cpu-type}
12142 @opindex march
12143 Generate code that will run on @var{cpu-type}, which is the name of a system
12144 representing a certain processor type.  Possible values for
12145 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
12146 When generating code using the instructions available on z/Architecture,
12147 the default is @option{-march=z900}.  Otherwise, the default is
12148 @option{-march=g5}.
12149
12150 @item -mtune=@var{cpu-type}
12151 @opindex mtune
12152 Tune to @var{cpu-type} everything applicable about the generated code,
12153 except for the ABI and the set of available instructions.
12154 The list of @var{cpu-type} values is the same as for @option{-march}.
12155 The default is the value used for @option{-march}.
12156
12157 @item -mtpf-trace
12158 @itemx -mno-tpf-trace
12159 @opindex mtpf-trace
12160 @opindex mno-tpf-trace
12161 Generate code that adds (does not add) in TPF OS specific branches to trace
12162 routines in the operating system.  This option is off by default, even
12163 when compiling for the TPF OS@.
12164
12165 @item -mfused-madd
12166 @itemx -mno-fused-madd
12167 @opindex mfused-madd
12168 @opindex mno-fused-madd
12169 Generate code that uses (does not use) the floating point multiply and
12170 accumulate instructions.  These instructions are generated by default if
12171 hardware floating point is used.
12172
12173 @item -mwarn-framesize=@var{framesize}
12174 @opindex mwarn-framesize
12175 Emit a warning if the current function exceeds the given frame size.  Because
12176 this is a compile time check it doesn't need to be a real problem when the program
12177 runs.  It is intended to identify functions which most probably cause
12178 a stack overflow.  It is useful to be used in an environment with limited stack
12179 size e.g.@: the linux kernel.
12180
12181 @item -mwarn-dynamicstack
12182 @opindex mwarn-dynamicstack
12183 Emit a warning if the function calls alloca or uses dynamically
12184 sized arrays.  This is generally a bad idea with a limited stack size.
12185
12186 @item -mstack-guard=@var{stack-guard}
12187 @item -mstack-size=@var{stack-size}
12188 @opindex mstack-guard
12189 @opindex mstack-size
12190 These arguments always have to be used in conjunction.  If they are present the s390
12191 back end emits additional instructions in the function prologue which trigger a trap
12192 if the stack size is @var{stack-guard} bytes above the @var{stack-size}
12193 (remember that the stack on s390 grows downward).  These options are intended to
12194 be used to help debugging stack overflow problems.  The additionally emitted code
12195 causes only little overhead and hence can also be used in production like systems
12196 without greater performance degradation.  The given values have to be exact
12197 powers of 2 and @var{stack-size} has to be greater than @var{stack-guard} without
12198 exceeding 64k.
12199 In order to be efficient the extra code makes the assumption that the stack starts
12200 at an address aligned to the value given by @var{stack-size}.
12201 @end table
12202
12203 @node Score Options
12204 @subsection Score Options
12205 @cindex Score Options
12206
12207 These options are defined for Score implementations:
12208
12209 @table @gcctabopt
12210 @item -mel
12211 @opindex -mel
12212 Compile code for little endian mode. 
12213
12214 @item -meb
12215 @opindex meb
12216 Compile code for big endian mode.  This is the default.
12217
12218 @item -mmac
12219 @opindex mmac
12220 Enable the use of multiply-accumulate instructions. Disabled by default. 
12221
12222 @item -mscore5u
12223 @opindex mscore5u
12224 Specify the SCORE5U of the target architecture.
12225
12226 @item -mscore7
12227 @opindex mscore7
12228 Specify the SCORE7 of the target architecture. This is the default.
12229 @end table
12230
12231 @node SH Options
12232 @subsection SH Options
12233
12234 These @samp{-m} options are defined for the SH implementations:
12235
12236 @table @gcctabopt
12237 @item -m1
12238 @opindex m1
12239 Generate code for the SH1.
12240
12241 @item -m2
12242 @opindex m2
12243 Generate code for the SH2.
12244
12245 @item -m2e
12246 Generate code for the SH2e.
12247
12248 @item -m3
12249 @opindex m3
12250 Generate code for the SH3.
12251
12252 @item -m3e
12253 @opindex m3e
12254 Generate code for the SH3e.
12255
12256 @item -m4-nofpu
12257 @opindex m4-nofpu
12258 Generate code for the SH4 without a floating-point unit.
12259
12260 @item -m4-single-only
12261 @opindex m4-single-only
12262 Generate code for the SH4 with a floating-point unit that only
12263 supports single-precision arithmetic.
12264
12265 @item -m4-single
12266 @opindex m4-single
12267 Generate code for the SH4 assuming the floating-point unit is in
12268 single-precision mode by default.
12269
12270 @item -m4
12271 @opindex m4
12272 Generate code for the SH4.
12273
12274 @item -m4a-nofpu
12275 @opindex m4a-nofpu
12276 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
12277 floating-point unit is not used.
12278
12279 @item -m4a-single-only
12280 @opindex m4a-single-only
12281 Generate code for the SH4a, in such a way that no double-precision
12282 floating point operations are used.
12283
12284 @item -m4a-single
12285 @opindex m4a-single
12286 Generate code for the SH4a assuming the floating-point unit is in
12287 single-precision mode by default.
12288
12289 @item -m4a
12290 @opindex m4a
12291 Generate code for the SH4a.
12292
12293 @item -m4al
12294 @opindex m4al
12295 Same as @option{-m4a-nofpu}, except that it implicitly passes
12296 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
12297 instructions at the moment.
12298
12299 @item -mb
12300 @opindex mb
12301 Compile code for the processor in big endian mode.
12302
12303 @item -ml
12304 @opindex ml
12305 Compile code for the processor in little endian mode.
12306
12307 @item -mdalign
12308 @opindex mdalign
12309 Align doubles at 64-bit boundaries.  Note that this changes the calling
12310 conventions, and thus some functions from the standard C library will
12311 not work unless you recompile it first with @option{-mdalign}.
12312
12313 @item -mrelax
12314 @opindex mrelax
12315 Shorten some address references at link time, when possible; uses the
12316 linker option @option{-relax}.
12317
12318 @item -mbigtable
12319 @opindex mbigtable
12320 Use 32-bit offsets in @code{switch} tables.  The default is to use
12321 16-bit offsets.
12322
12323 @item -mfmovd
12324 @opindex mfmovd
12325 Enable the use of the instruction @code{fmovd}.
12326
12327 @item -mhitachi
12328 @opindex mhitachi
12329 Comply with the calling conventions defined by Renesas.
12330
12331 @item -mrenesas
12332 @opindex mhitachi
12333 Comply with the calling conventions defined by Renesas.
12334
12335 @item -mno-renesas
12336 @opindex mhitachi
12337 Comply with the calling conventions defined for GCC before the Renesas
12338 conventions were available.  This option is the default for all
12339 targets of the SH toolchain except for @samp{sh-symbianelf}.
12340
12341 @item -mnomacsave
12342 @opindex mnomacsave
12343 Mark the @code{MAC} register as call-clobbered, even if
12344 @option{-mhitachi} is given.
12345
12346 @item -mieee
12347 @opindex mieee
12348 Increase IEEE-compliance of floating-point code.
12349 At the moment, this is equivalent to @option{-fno-finite-math-only}.
12350 When generating 16 bit SH opcodes, getting IEEE-conforming results for
12351 comparisons of NANs / infinities incurs extra overhead in every
12352 floating point comparison, therefore the default is set to
12353 @option{-ffinite-math-only}.
12354
12355 @item -misize
12356 @opindex misize
12357 Dump instruction size and location in the assembly code.
12358
12359 @item -mpadstruct
12360 @opindex mpadstruct
12361 This option is deprecated.  It pads structures to multiple of 4 bytes,
12362 which is incompatible with the SH ABI@.
12363
12364 @item -mspace
12365 @opindex mspace
12366 Optimize for space instead of speed.  Implied by @option{-Os}.
12367
12368 @item -mprefergot
12369 @opindex mprefergot
12370 When generating position-independent code, emit function calls using
12371 the Global Offset Table instead of the Procedure Linkage Table.
12372
12373 @item -musermode
12374 @opindex musermode
12375 Generate a library function call to invalidate instruction cache
12376 entries, after fixing up a trampoline.  This library function call
12377 doesn't assume it can write to the whole memory address space.  This
12378 is the default when the target is @code{sh-*-linux*}.
12379
12380 @item -multcost=@var{number}
12381 @opindex multcost=@var{number}
12382 Set the cost to assume for a multiply insn.
12383
12384 @item -mdiv=@var{strategy}
12385 @opindex mdiv=@var{strategy}
12386 Set the division strategy to use for SHmedia code.  @var{strategy} must be
12387 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
12388 inv:call2, inv:fp .
12389 "fp" performs the operation in floating point.  This has a very high latency,
12390 but needs only a few instructions, so it might be a good choice if
12391 your code has enough easily exploitable ILP to allow the compiler to
12392 schedule the floating point instructions together with other instructions.
12393 Division by zero causes a floating point exception.
12394 "inv" uses integer operations to calculate the inverse of the divisor,
12395 and then multiplies the dividend with the inverse.  This strategy allows
12396 cse and hoisting of the inverse calculation.  Division by zero calculates
12397 an unspecified result, but does not trap.
12398 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
12399 have been found, or if the entire operation has been hoisted to the same
12400 place, the last stages of the inverse calculation are intertwined with the
12401 final multiply to reduce the overall latency, at the expense of using a few
12402 more instructions, and thus offering fewer scheduling opportunities with
12403 other code.
12404 "call" calls a library function that usually implements the inv:minlat
12405 strategy.
12406 This gives high code density for m5-*media-nofpu compilations.
12407 "call2" uses a different entry point of the same library function, where it
12408 assumes that a pointer to a lookup table has already been set up, which
12409 exposes the pointer load to cse / code hoisting optimizations.
12410 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
12411 code generation, but if the code stays unoptimized, revert to the "call",
12412 "call2", or "fp" strategies, respectively.  Note that the
12413 potentially-trapping side effect of division by zero is carried by a
12414 separate instruction, so it is possible that all the integer instructions
12415 are hoisted out, but the marker for the side effect stays where it is.
12416 A recombination to fp operations or a call is not possible in that case.
12417 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
12418 that the inverse calculation was nor separated from the multiply, they speed
12419 up division where the dividend fits into 20 bits (plus sign where applicable),
12420 by inserting a test to skip a number of operations in this case; this test
12421 slows down the case of larger dividends.  inv20u assumes the case of a such
12422 a small dividend to be unlikely, and inv20l assumes it to be likely.
12423
12424 @item -mdivsi3_libfunc=@var{name}
12425 @opindex mdivsi3_libfunc=@var{name}
12426 Set the name of the library function used for 32 bit signed division to
12427 @var{name}.  This only affect the name used in the call and inv:call
12428 division strategies, and the compiler will still expect the same
12429 sets of input/output/clobbered registers as if this option was not present.
12430
12431 @item -madjust-unroll
12432 @opindex madjust-unroll
12433 Throttle unrolling to avoid thrashing target registers.
12434 This option only has an effect if the gcc code base supports the
12435 TARGET_ADJUST_UNROLL_MAX target hook.
12436
12437 @item -mindexed-addressing
12438 @opindex mindexed-addressing
12439 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
12440 This is only safe if the hardware and/or OS implement 32 bit wrap-around
12441 semantics for the indexed addressing mode.  The architecture allows the
12442 implementation of processors with 64 bit MMU, which the OS could use to
12443 get 32 bit addressing, but since no current hardware implementation supports
12444 this or any other way to make the indexed addressing mode safe to use in
12445 the 32 bit ABI, the default is -mno-indexed-addressing.
12446
12447 @item -mgettrcost=@var{number}
12448 @opindex mgettrcost=@var{number}
12449 Set the cost assumed for the gettr instruction to @var{number}.
12450 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
12451
12452 @item -mpt-fixed
12453 @opindex mpt-fixed
12454 Assume pt* instructions won't trap.  This will generally generate better
12455 scheduled code, but is unsafe on current hardware.  The current architecture
12456 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
12457 This has the unintentional effect of making it unsafe to schedule ptabs /
12458 ptrel before a branch, or hoist it out of a loop.  For example,
12459 __do_global_ctors, a part of libgcc that runs constructors at program
12460 startup, calls functions in a list which is delimited by -1.  With the
12461 -mpt-fixed option, the ptabs will be done before testing against -1.
12462 That means that all the constructors will be run a bit quicker, but when
12463 the loop comes to the end of the list, the program crashes because ptabs
12464 loads -1 into a target register.  Since this option is unsafe for any
12465 hardware implementing the current architecture specification, the default
12466 is -mno-pt-fixed.  Unless the user specifies a specific cost with
12467 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
12468 this deters register allocation using target registers for storing
12469 ordinary integers.
12470
12471 @item -minvalid-symbols
12472 @opindex minvalid-symbols
12473 Assume symbols might be invalid.  Ordinary function symbols generated by
12474 the compiler will always be valid to load with movi/shori/ptabs or
12475 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
12476 to generate symbols that will cause ptabs / ptrel to trap.
12477 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
12478 It will then prevent cross-basic-block cse, hoisting and most scheduling
12479 of symbol loads.  The default is @option{-mno-invalid-symbols}.
12480 @end table
12481
12482 @node SPARC Options
12483 @subsection SPARC Options
12484 @cindex SPARC options
12485
12486 These @samp{-m} options are supported on the SPARC:
12487
12488 @table @gcctabopt
12489 @item -mno-app-regs
12490 @itemx -mapp-regs
12491 @opindex mno-app-regs
12492 @opindex mapp-regs
12493 Specify @option{-mapp-regs} to generate output using the global registers
12494 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
12495 is the default.
12496
12497 To be fully SVR4 ABI compliant at the cost of some performance loss,
12498 specify @option{-mno-app-regs}.  You should compile libraries and system
12499 software with this option.
12500
12501 @item -mfpu
12502 @itemx -mhard-float
12503 @opindex mfpu
12504 @opindex mhard-float
12505 Generate output containing floating point instructions.  This is the
12506 default.
12507
12508 @item -mno-fpu
12509 @itemx -msoft-float
12510 @opindex mno-fpu
12511 @opindex msoft-float
12512 Generate output containing library calls for floating point.
12513 @strong{Warning:} the requisite libraries are not available for all SPARC
12514 targets.  Normally the facilities of the machine's usual C compiler are
12515 used, but this cannot be done directly in cross-compilation.  You must make
12516 your own arrangements to provide suitable library functions for
12517 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
12518 @samp{sparclite-*-*} do provide software floating point support.
12519
12520 @option{-msoft-float} changes the calling convention in the output file;
12521 therefore, it is only useful if you compile @emph{all} of a program with
12522 this option.  In particular, you need to compile @file{libgcc.a}, the
12523 library that comes with GCC, with @option{-msoft-float} in order for
12524 this to work.
12525
12526 @item -mhard-quad-float
12527 @opindex mhard-quad-float
12528 Generate output containing quad-word (long double) floating point
12529 instructions.
12530
12531 @item -msoft-quad-float
12532 @opindex msoft-quad-float
12533 Generate output containing library calls for quad-word (long double)
12534 floating point instructions.  The functions called are those specified
12535 in the SPARC ABI@.  This is the default.
12536
12537 As of this writing, there are no SPARC implementations that have hardware
12538 support for the quad-word floating point instructions.  They all invoke
12539 a trap handler for one of these instructions, and then the trap handler
12540 emulates the effect of the instruction.  Because of the trap handler overhead,
12541 this is much slower than calling the ABI library routines.  Thus the
12542 @option{-msoft-quad-float} option is the default.
12543
12544 @item -mno-unaligned-doubles
12545 @itemx -munaligned-doubles
12546 @opindex mno-unaligned-doubles
12547 @opindex munaligned-doubles
12548 Assume that doubles have 8 byte alignment.  This is the default.
12549
12550 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
12551 alignment only if they are contained in another type, or if they have an
12552 absolute address.  Otherwise, it assumes they have 4 byte alignment.
12553 Specifying this option avoids some rare compatibility problems with code
12554 generated by other compilers.  It is not the default because it results
12555 in a performance loss, especially for floating point code.
12556
12557 @item -mno-faster-structs
12558 @itemx -mfaster-structs
12559 @opindex mno-faster-structs
12560 @opindex mfaster-structs
12561 With @option{-mfaster-structs}, the compiler assumes that structures
12562 should have 8 byte alignment.  This enables the use of pairs of
12563 @code{ldd} and @code{std} instructions for copies in structure
12564 assignment, in place of twice as many @code{ld} and @code{st} pairs.
12565 However, the use of this changed alignment directly violates the SPARC
12566 ABI@.  Thus, it's intended only for use on targets where the developer
12567 acknowledges that their resulting code will not be directly in line with
12568 the rules of the ABI@.
12569
12570 @item -mimpure-text
12571 @opindex mimpure-text
12572 @option{-mimpure-text}, used in addition to @option{-shared}, tells
12573 the compiler to not pass @option{-z text} to the linker when linking a
12574 shared object.  Using this option, you can link position-dependent
12575 code into a shared object.
12576
12577 @option{-mimpure-text} suppresses the ``relocations remain against
12578 allocatable but non-writable sections'' linker error message.
12579 However, the necessary relocations will trigger copy-on-write, and the
12580 shared object is not actually shared across processes.  Instead of
12581 using @option{-mimpure-text}, you should compile all source code with
12582 @option{-fpic} or @option{-fPIC}.
12583
12584 This option is only available on SunOS and Solaris.
12585
12586 @item -mcpu=@var{cpu_type}
12587 @opindex mcpu
12588 Set the instruction set, register set, and instruction scheduling parameters
12589 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
12590 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
12591 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
12592 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
12593 @samp{ultrasparc3}, and @samp{niagara}.
12594
12595 Default instruction scheduling parameters are used for values that select
12596 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
12597 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
12598
12599 Here is a list of each supported architecture and their supported
12600 implementations.
12601
12602 @smallexample
12603     v7:             cypress
12604     v8:             supersparc, hypersparc
12605     sparclite:      f930, f934, sparclite86x
12606     sparclet:       tsc701
12607     v9:             ultrasparc, ultrasparc3, niagara
12608 @end smallexample
12609
12610 By default (unless configured otherwise), GCC generates code for the V7
12611 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
12612 additionally optimizes it for the Cypress CY7C602 chip, as used in the
12613 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
12614 SPARCStation 1, 2, IPX etc.
12615
12616 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
12617 architecture.  The only difference from V7 code is that the compiler emits
12618 the integer multiply and integer divide instructions which exist in SPARC-V8
12619 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
12620 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
12621 2000 series.
12622
12623 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
12624 the SPARC architecture.  This adds the integer multiply, integer divide step
12625 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
12626 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
12627 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
12628 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
12629 MB86934 chip, which is the more recent SPARClite with FPU@.
12630
12631 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
12632 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
12633 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
12634 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
12635 optimizes it for the TEMIC SPARClet chip.
12636
12637 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
12638 architecture.  This adds 64-bit integer and floating-point move instructions,
12639 3 additional floating-point condition code registers and conditional move
12640 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
12641 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
12642 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
12643 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
12644 @option{-mcpu=niagara}, the compiler additionally optimizes it for
12645 Sun UltraSPARC T1 chips.
12646
12647 @item -mtune=@var{cpu_type}
12648 @opindex mtune
12649 Set the instruction scheduling parameters for machine type
12650 @var{cpu_type}, but do not set the instruction set or register set that the
12651 option @option{-mcpu=@var{cpu_type}} would.
12652
12653 The same values for @option{-mcpu=@var{cpu_type}} can be used for
12654 @option{-mtune=@var{cpu_type}}, but the only useful values are those
12655 that select a particular cpu implementation.  Those are @samp{cypress},
12656 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
12657 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
12658 @samp{ultrasparc3}, and @samp{niagara}.
12659
12660 @item -mv8plus
12661 @itemx -mno-v8plus
12662 @opindex mv8plus
12663 @opindex mno-v8plus
12664 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
12665 difference from the V8 ABI is that the global and out registers are
12666 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
12667 mode for all SPARC-V9 processors.
12668
12669 @item -mvis
12670 @itemx -mno-vis
12671 @opindex mvis
12672 @opindex mno-vis
12673 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
12674 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
12675 @end table
12676
12677 These @samp{-m} options are supported in addition to the above
12678 on SPARC-V9 processors in 64-bit environments:
12679
12680 @table @gcctabopt
12681 @item -mlittle-endian
12682 @opindex mlittle-endian
12683 Generate code for a processor running in little-endian mode.  It is only
12684 available for a few configurations and most notably not on Solaris and Linux.
12685
12686 @item -m32
12687 @itemx -m64
12688 @opindex m32
12689 @opindex m64
12690 Generate code for a 32-bit or 64-bit environment.
12691 The 32-bit environment sets int, long and pointer to 32 bits.
12692 The 64-bit environment sets int to 32 bits and long and pointer
12693 to 64 bits.
12694
12695 @item -mcmodel=medlow
12696 @opindex mcmodel=medlow
12697 Generate code for the Medium/Low code model: 64-bit addresses, programs
12698 must be linked in the low 32 bits of memory.  Programs can be statically
12699 or dynamically linked.
12700
12701 @item -mcmodel=medmid
12702 @opindex mcmodel=medmid
12703 Generate code for the Medium/Middle code model: 64-bit addresses, programs
12704 must be linked in the low 44 bits of memory, the text and data segments must
12705 be less than 2GB in size and the data segment must be located within 2GB of
12706 the text segment.
12707
12708 @item -mcmodel=medany
12709 @opindex mcmodel=medany
12710 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
12711 may be linked anywhere in memory, the text and data segments must be less
12712 than 2GB in size and the data segment must be located within 2GB of the
12713 text segment.
12714
12715 @item -mcmodel=embmedany
12716 @opindex mcmodel=embmedany
12717 Generate code for the Medium/Anywhere code model for embedded systems:
12718 64-bit addresses, the text and data segments must be less than 2GB in
12719 size, both starting anywhere in memory (determined at link time).  The
12720 global register %g4 points to the base of the data segment.  Programs
12721 are statically linked and PIC is not supported.
12722
12723 @item -mstack-bias
12724 @itemx -mno-stack-bias
12725 @opindex mstack-bias
12726 @opindex mno-stack-bias
12727 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
12728 frame pointer if present, are offset by @minus{}2047 which must be added back
12729 when making stack frame references.  This is the default in 64-bit mode.
12730 Otherwise, assume no such offset is present.
12731 @end table
12732
12733 These switches are supported in addition to the above on Solaris:
12734
12735 @table @gcctabopt
12736 @item -threads
12737 @opindex threads
12738 Add support for multithreading using the Solaris threads library.  This
12739 option sets flags for both the preprocessor and linker.  This option does
12740 not affect the thread safety of object code produced by the compiler or
12741 that of libraries supplied with it.
12742
12743 @item -pthreads
12744 @opindex pthreads
12745 Add support for multithreading using the POSIX threads library.  This
12746 option sets flags for both the preprocessor and linker.  This option does
12747 not affect the thread safety of object code produced  by the compiler or
12748 that of libraries supplied with it.
12749
12750 @item -pthread
12751 @opindex pthread
12752 This is a synonym for @option{-pthreads}.
12753 @end table
12754
12755 @node System V Options
12756 @subsection Options for System V
12757
12758 These additional options are available on System V Release 4 for
12759 compatibility with other compilers on those systems:
12760
12761 @table @gcctabopt
12762 @item -G
12763 @opindex G
12764 Create a shared object.
12765 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
12766
12767 @item -Qy
12768 @opindex Qy
12769 Identify the versions of each tool used by the compiler, in a
12770 @code{.ident} assembler directive in the output.
12771
12772 @item -Qn
12773 @opindex Qn
12774 Refrain from adding @code{.ident} directives to the output file (this is
12775 the default).
12776
12777 @item -YP,@var{dirs}
12778 @opindex YP
12779 Search the directories @var{dirs}, and no others, for libraries
12780 specified with @option{-l}.
12781
12782 @item -Ym,@var{dir}
12783 @opindex Ym
12784 Look in the directory @var{dir} to find the M4 preprocessor.
12785 The assembler uses this option.
12786 @c This is supposed to go with a -Yd for predefined M4 macro files, but
12787 @c the generic assembler that comes with Solaris takes just -Ym.
12788 @end table
12789
12790 @node TMS320C3x/C4x Options
12791 @subsection TMS320C3x/C4x Options
12792 @cindex TMS320C3x/C4x Options
12793
12794 These @samp{-m} options are defined for TMS320C3x/C4x implementations:
12795
12796 @table @gcctabopt
12797
12798 @item -mcpu=@var{cpu_type}
12799 @opindex mcpu
12800 Set the instruction set, register set, and instruction scheduling
12801 parameters for machine type @var{cpu_type}.  Supported values for
12802 @var{cpu_type} are @samp{c30}, @samp{c31}, @samp{c32}, @samp{c40}, and
12803 @samp{c44}.  The default is @samp{c40} to generate code for the
12804 TMS320C40.
12805
12806 @item -mbig-memory
12807 @itemx -mbig
12808 @itemx -msmall-memory
12809 @itemx -msmall
12810 @opindex mbig-memory
12811 @opindex mbig
12812 @opindex msmall-memory
12813 @opindex msmall
12814 Generates code for the big or small memory model.  The small memory
12815 model assumed that all data fits into one 64K word page.  At run-time
12816 the data page (DP) register must be set to point to the 64K page
12817 containing the .bss and .data program sections.  The big memory model is
12818 the default and requires reloading of the DP register for every direct
12819 memory access.
12820
12821 @item -mbk
12822 @itemx -mno-bk
12823 @opindex mbk
12824 @opindex mno-bk
12825 Allow (disallow) allocation of general integer operands into the block
12826 count register BK@.
12827
12828 @item -mdb
12829 @itemx -mno-db
12830 @opindex mdb
12831 @opindex mno-db
12832 Enable (disable) generation of code using decrement and branch,
12833 DBcond(D), instructions.  This is enabled by default for the C4x.  To be
12834 on the safe side, this is disabled for the C3x, since the maximum
12835 iteration count on the C3x is @math{2^{23} + 1} (but who iterates loops more than
12836 @math{2^{23}} times on the C3x?).  Note that GCC will try to reverse a loop so
12837 that it can utilize the decrement and branch instruction, but will give
12838 up if there is more than one memory reference in the loop.  Thus a loop
12839 where the loop counter is decremented can generate slightly more
12840 efficient code, in cases where the RPTB instruction cannot be utilized.
12841
12842 @item -mdp-isr-reload
12843 @itemx -mparanoid
12844 @opindex mdp-isr-reload
12845 @opindex mparanoid
12846 Force the DP register to be saved on entry to an interrupt service
12847 routine (ISR), reloaded to point to the data section, and restored on
12848 exit from the ISR@.  This should not be required unless someone has
12849 violated the small memory model by modifying the DP register, say within
12850 an object library.
12851
12852 @item -mmpyi
12853 @itemx -mno-mpyi
12854 @opindex mmpyi
12855 @opindex mno-mpyi
12856 For the C3x use the 24-bit MPYI instruction for integer multiplies
12857 instead of a library call to guarantee 32-bit results.  Note that if one
12858 of the operands is a constant, then the multiplication will be performed
12859 using shifts and adds.  If the @option{-mmpyi} option is not specified for the C3x,
12860 then squaring operations are performed inline instead of a library call.
12861
12862 @item -mfast-fix
12863 @itemx -mno-fast-fix
12864 @opindex mfast-fix
12865 @opindex mno-fast-fix
12866 The C3x/C4x FIX instruction to convert a floating point value to an
12867 integer value chooses the nearest integer less than or equal to the
12868 floating point value rather than to the nearest integer.  Thus if the
12869 floating point number is negative, the result will be incorrectly
12870 truncated an additional code is necessary to detect and correct this
12871 case.  This option can be used to disable generation of the additional
12872 code required to correct the result.
12873
12874 @item -mrptb
12875 @itemx -mno-rptb
12876 @opindex mrptb
12877 @opindex mno-rptb
12878 Enable (disable) generation of repeat block sequences using the RPTB
12879 instruction for zero overhead looping.  The RPTB construct is only used
12880 for innermost loops that do not call functions or jump across the loop
12881 boundaries.  There is no advantage having nested RPTB loops due to the
12882 overhead required to save and restore the RC, RS, and RE registers.
12883 This is enabled by default with @option{-O2}.
12884
12885 @item -mrpts=@var{count}
12886 @itemx -mno-rpts
12887 @opindex mrpts
12888 @opindex mno-rpts
12889 Enable (disable) the use of the single instruction repeat instruction
12890 RPTS@.  If a repeat block contains a single instruction, and the loop
12891 count can be guaranteed to be less than the value @var{count}, GCC will
12892 emit a RPTS instruction instead of a RPTB@.  If no value is specified,
12893 then a RPTS will be emitted even if the loop count cannot be determined
12894 at compile time.  Note that the repeated instruction following RPTS does
12895 not have to be reloaded from memory each iteration, thus freeing up the
12896 CPU buses for operands.  However, since interrupts are blocked by this
12897 instruction, it is disabled by default.
12898
12899 @item -mloop-unsigned
12900 @itemx -mno-loop-unsigned
12901 @opindex mloop-unsigned
12902 @opindex mno-loop-unsigned
12903 The maximum iteration count when using RPTS and RPTB (and DB on the C40)
12904 is @math{2^{31} + 1} since these instructions test if the iteration count is
12905 negative to terminate the loop.  If the iteration count is unsigned
12906 there is a possibility than the @math{2^{31} + 1} maximum iteration count may be
12907 exceeded.  This switch allows an unsigned iteration count.
12908
12909 @item -mti
12910 @opindex mti
12911 Try to emit an assembler syntax that the TI assembler (asm30) is happy
12912 with.  This also enforces compatibility with the API employed by the TI
12913 C3x C compiler.  For example, long doubles are passed as structures
12914 rather than in floating point registers.
12915
12916 @item -mregparm
12917 @itemx -mmemparm
12918 @opindex mregparm
12919 @opindex mmemparm
12920 Generate code that uses registers (stack) for passing arguments to functions.
12921 By default, arguments are passed in registers where possible rather
12922 than by pushing arguments on to the stack.
12923
12924 @item -mparallel-insns
12925 @itemx -mno-parallel-insns
12926 @opindex mparallel-insns
12927 @opindex mno-parallel-insns
12928 Allow the generation of parallel instructions.  This is enabled by
12929 default with @option{-O2}.
12930
12931 @item -mparallel-mpy
12932 @itemx -mno-parallel-mpy
12933 @opindex mparallel-mpy
12934 @opindex mno-parallel-mpy
12935 Allow the generation of MPY||ADD and MPY||SUB parallel instructions,
12936 provided @option{-mparallel-insns} is also specified.  These instructions have
12937 tight register constraints which can pessimize the code generation
12938 of large functions.
12939
12940 @end table
12941
12942 @node V850 Options
12943 @subsection V850 Options
12944 @cindex V850 Options
12945
12946 These @samp{-m} options are defined for V850 implementations:
12947
12948 @table @gcctabopt
12949 @item -mlong-calls
12950 @itemx -mno-long-calls
12951 @opindex mlong-calls
12952 @opindex mno-long-calls
12953 Treat all calls as being far away (near).  If calls are assumed to be
12954 far away, the compiler will always load the functions address up into a
12955 register, and call indirect through the pointer.
12956
12957 @item -mno-ep
12958 @itemx -mep
12959 @opindex mno-ep
12960 @opindex mep
12961 Do not optimize (do optimize) basic blocks that use the same index
12962 pointer 4 or more times to copy pointer into the @code{ep} register, and
12963 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
12964 option is on by default if you optimize.
12965
12966 @item -mno-prolog-function
12967 @itemx -mprolog-function
12968 @opindex mno-prolog-function
12969 @opindex mprolog-function
12970 Do not use (do use) external functions to save and restore registers
12971 at the prologue and epilogue of a function.  The external functions
12972 are slower, but use less code space if more than one function saves
12973 the same number of registers.  The @option{-mprolog-function} option
12974 is on by default if you optimize.
12975
12976 @item -mspace
12977 @opindex mspace
12978 Try to make the code as small as possible.  At present, this just turns
12979 on the @option{-mep} and @option{-mprolog-function} options.
12980
12981 @item -mtda=@var{n}
12982 @opindex mtda
12983 Put static or global variables whose size is @var{n} bytes or less into
12984 the tiny data area that register @code{ep} points to.  The tiny data
12985 area can hold up to 256 bytes in total (128 bytes for byte references).
12986
12987 @item -msda=@var{n}
12988 @opindex msda
12989 Put static or global variables whose size is @var{n} bytes or less into
12990 the small data area that register @code{gp} points to.  The small data
12991 area can hold up to 64 kilobytes.
12992
12993 @item -mzda=@var{n}
12994 @opindex mzda
12995 Put static or global variables whose size is @var{n} bytes or less into
12996 the first 32 kilobytes of memory.
12997
12998 @item -mv850
12999 @opindex mv850
13000 Specify that the target processor is the V850.
13001
13002 @item -mbig-switch
13003 @opindex mbig-switch
13004 Generate code suitable for big switch tables.  Use this option only if
13005 the assembler/linker complain about out of range branches within a switch
13006 table.
13007
13008 @item -mapp-regs
13009 @opindex mapp-regs
13010 This option will cause r2 and r5 to be used in the code generated by
13011 the compiler.  This setting is the default.
13012
13013 @item -mno-app-regs
13014 @opindex mno-app-regs
13015 This option will cause r2 and r5 to be treated as fixed registers.
13016
13017 @item -mv850e1
13018 @opindex mv850e1
13019 Specify that the target processor is the V850E1.  The preprocessor
13020 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
13021 this option is used.
13022
13023 @item -mv850e
13024 @opindex mv850e
13025 Specify that the target processor is the V850E@.  The preprocessor
13026 constant @samp{__v850e__} will be defined if this option is used.
13027
13028 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
13029 are defined then a default target processor will be chosen and the
13030 relevant @samp{__v850*__} preprocessor constant will be defined.
13031
13032 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
13033 defined, regardless of which processor variant is the target.
13034
13035 @item -mdisable-callt
13036 @opindex mdisable-callt
13037 This option will suppress generation of the CALLT instruction for the
13038 v850e and v850e1 flavors of the v850 architecture.  The default is
13039 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
13040
13041 @end table
13042
13043 @node VAX Options
13044 @subsection VAX Options
13045 @cindex VAX options
13046
13047 These @samp{-m} options are defined for the VAX:
13048
13049 @table @gcctabopt
13050 @item -munix
13051 @opindex munix
13052 Do not output certain jump instructions (@code{aobleq} and so on)
13053 that the Unix assembler for the VAX cannot handle across long
13054 ranges.
13055
13056 @item -mgnu
13057 @opindex mgnu
13058 Do output those jump instructions, on the assumption that you
13059 will assemble with the GNU assembler.
13060
13061 @item -mg
13062 @opindex mg
13063 Output code for g-format floating point numbers instead of d-format.
13064 @end table
13065
13066 @node x86-64 Options
13067 @subsection x86-64 Options
13068 @cindex x86-64 options
13069
13070 These are listed under @xref{i386 and x86-64 Options}.
13071
13072 @node Xstormy16 Options
13073 @subsection Xstormy16 Options
13074 @cindex Xstormy16 Options
13075
13076 These options are defined for Xstormy16:
13077
13078 @table @gcctabopt
13079 @item -msim
13080 @opindex msim
13081 Choose startup files and linker script suitable for the simulator.
13082 @end table
13083
13084 @node Xtensa Options
13085 @subsection Xtensa Options
13086 @cindex Xtensa Options
13087
13088 These options are supported for Xtensa targets:
13089
13090 @table @gcctabopt
13091 @item -mconst16
13092 @itemx -mno-const16
13093 @opindex mconst16
13094 @opindex mno-const16
13095 Enable or disable use of @code{CONST16} instructions for loading
13096 constant values.  The @code{CONST16} instruction is currently not a
13097 standard option from Tensilica.  When enabled, @code{CONST16}
13098 instructions are always used in place of the standard @code{L32R}
13099 instructions.  The use of @code{CONST16} is enabled by default only if
13100 the @code{L32R} instruction is not available.
13101
13102 @item -mfused-madd
13103 @itemx -mno-fused-madd
13104 @opindex mfused-madd
13105 @opindex mno-fused-madd
13106 Enable or disable use of fused multiply/add and multiply/subtract
13107 instructions in the floating-point option.  This has no effect if the
13108 floating-point option is not also enabled.  Disabling fused multiply/add
13109 and multiply/subtract instructions forces the compiler to use separate
13110 instructions for the multiply and add/subtract operations.  This may be
13111 desirable in some cases where strict IEEE 754-compliant results are
13112 required: the fused multiply add/subtract instructions do not round the
13113 intermediate result, thereby producing results with @emph{more} bits of
13114 precision than specified by the IEEE standard.  Disabling fused multiply
13115 add/subtract instructions also ensures that the program output is not
13116 sensitive to the compiler's ability to combine multiply and add/subtract
13117 operations.
13118
13119 @item -mtext-section-literals
13120 @itemx -mno-text-section-literals
13121 @opindex mtext-section-literals
13122 @opindex mno-text-section-literals
13123 Control the treatment of literal pools.  The default is
13124 @option{-mno-text-section-literals}, which places literals in a separate
13125 section in the output file.  This allows the literal pool to be placed
13126 in a data RAM/ROM, and it also allows the linker to combine literal
13127 pools from separate object files to remove redundant literals and
13128 improve code size.  With @option{-mtext-section-literals}, the literals
13129 are interspersed in the text section in order to keep them as close as
13130 possible to their references.  This may be necessary for large assembly
13131 files.
13132
13133 @item -mtarget-align
13134 @itemx -mno-target-align
13135 @opindex mtarget-align
13136 @opindex mno-target-align
13137 When this option is enabled, GCC instructs the assembler to
13138 automatically align instructions to reduce branch penalties at the
13139 expense of some code density.  The assembler attempts to widen density
13140 instructions to align branch targets and the instructions following call
13141 instructions.  If there are not enough preceding safe density
13142 instructions to align a target, no widening will be performed.  The
13143 default is @option{-mtarget-align}.  These options do not affect the
13144 treatment of auto-aligned instructions like @code{LOOP}, which the
13145 assembler will always align, either by widening density instructions or
13146 by inserting no-op instructions.
13147
13148 @item -mlongcalls
13149 @itemx -mno-longcalls
13150 @opindex mlongcalls
13151 @opindex mno-longcalls
13152 When this option is enabled, GCC instructs the assembler to translate
13153 direct calls to indirect calls unless it can determine that the target
13154 of a direct call is in the range allowed by the call instruction.  This
13155 translation typically occurs for calls to functions in other source
13156 files.  Specifically, the assembler translates a direct @code{CALL}
13157 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
13158 The default is @option{-mno-longcalls}.  This option should be used in
13159 programs where the call target can potentially be out of range.  This
13160 option is implemented in the assembler, not the compiler, so the
13161 assembly code generated by GCC will still show direct call
13162 instructions---look at the disassembled object code to see the actual
13163 instructions.  Note that the assembler will use an indirect call for
13164 every cross-file call, not just those that really will be out of range.
13165 @end table
13166
13167 @node zSeries Options
13168 @subsection zSeries Options
13169 @cindex zSeries options
13170
13171 These are listed under @xref{S/390 and zSeries Options}.
13172
13173 @node Code Gen Options
13174 @section Options for Code Generation Conventions
13175 @cindex code generation conventions
13176 @cindex options, code generation
13177 @cindex run-time options
13178
13179 These machine-independent options control the interface conventions
13180 used in code generation.
13181
13182 Most of them have both positive and negative forms; the negative form
13183 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
13184 one of the forms is listed---the one which is not the default.  You
13185 can figure out the other form by either removing @samp{no-} or adding
13186 it.
13187
13188 @table @gcctabopt
13189 @item -fbounds-check
13190 @opindex fbounds-check
13191 For front-ends that support it, generate additional code to check that
13192 indices used to access arrays are within the declared range.  This is
13193 currently only supported by the Java and Fortran front-ends, where
13194 this option defaults to true and false respectively.
13195
13196 @item -ftrapv
13197 @opindex ftrapv
13198 This option generates traps for signed overflow on addition, subtraction,
13199 multiplication operations.
13200
13201 @item -fwrapv
13202 @opindex fwrapv
13203 This option instructs the compiler to assume that signed arithmetic
13204 overflow of addition, subtraction and multiplication wraps around
13205 using twos-complement representation.  This flag enables some optimizations
13206 and disables others.  This option is enabled by default for the Java
13207 front-end, as required by the Java language specification.
13208
13209 @item -fexceptions
13210 @opindex fexceptions
13211 Enable exception handling.  Generates extra code needed to propagate
13212 exceptions.  For some targets, this implies GCC will generate frame
13213 unwind information for all functions, which can produce significant data
13214 size overhead, although it does not affect execution.  If you do not
13215 specify this option, GCC will enable it by default for languages like
13216 C++ which normally require exception handling, and disable it for
13217 languages like C that do not normally require it.  However, you may need
13218 to enable this option when compiling C code that needs to interoperate
13219 properly with exception handlers written in C++.  You may also wish to
13220 disable this option if you are compiling older C++ programs that don't
13221 use exception handling.
13222
13223 @item -fnon-call-exceptions
13224 @opindex fnon-call-exceptions
13225 Generate code that allows trapping instructions to throw exceptions.
13226 Note that this requires platform-specific runtime support that does
13227 not exist everywhere.  Moreover, it only allows @emph{trapping}
13228 instructions to throw exceptions, i.e.@: memory references or floating
13229 point instructions.  It does not allow exceptions to be thrown from
13230 arbitrary signal handlers such as @code{SIGALRM}.
13231
13232 @item -funwind-tables
13233 @opindex funwind-tables
13234 Similar to @option{-fexceptions}, except that it will just generate any needed
13235 static data, but will not affect the generated code in any other way.
13236 You will normally not enable this option; instead, a language processor
13237 that needs this handling would enable it on your behalf.
13238
13239 @item -fasynchronous-unwind-tables
13240 @opindex fasynchronous-unwind-tables
13241 Generate unwind table in dwarf2 format, if supported by target machine.  The
13242 table is exact at each instruction boundary, so it can be used for stack
13243 unwinding from asynchronous events (such as debugger or garbage collector).
13244
13245 @item -fpcc-struct-return
13246 @opindex fpcc-struct-return
13247 Return ``short'' @code{struct} and @code{union} values in memory like
13248 longer ones, rather than in registers.  This convention is less
13249 efficient, but it has the advantage of allowing intercallability between
13250 GCC-compiled files and files compiled with other compilers, particularly
13251 the Portable C Compiler (pcc).
13252
13253 The precise convention for returning structures in memory depends
13254 on the target configuration macros.
13255
13256 Short structures and unions are those whose size and alignment match
13257 that of some integer type.
13258
13259 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
13260 switch is not binary compatible with code compiled with the
13261 @option{-freg-struct-return} switch.
13262 Use it to conform to a non-default application binary interface.
13263
13264 @item -freg-struct-return
13265 @opindex freg-struct-return
13266 Return @code{struct} and @code{union} values in registers when possible.
13267 This is more efficient for small structures than
13268 @option{-fpcc-struct-return}.
13269
13270 If you specify neither @option{-fpcc-struct-return} nor
13271 @option{-freg-struct-return}, GCC defaults to whichever convention is
13272 standard for the target.  If there is no standard convention, GCC
13273 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
13274 the principal compiler.  In those cases, we can choose the standard, and
13275 we chose the more efficient register return alternative.
13276
13277 @strong{Warning:} code compiled with the @option{-freg-struct-return}
13278 switch is not binary compatible with code compiled with the
13279 @option{-fpcc-struct-return} switch.
13280 Use it to conform to a non-default application binary interface.
13281
13282 @item -fshort-enums
13283 @opindex fshort-enums
13284 Allocate to an @code{enum} type only as many bytes as it needs for the
13285 declared range of possible values.  Specifically, the @code{enum} type
13286 will be equivalent to the smallest integer type which has enough room.
13287
13288 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
13289 code that is not binary compatible with code generated without that switch.
13290 Use it to conform to a non-default application binary interface.
13291
13292 @item -fshort-double
13293 @opindex fshort-double
13294 Use the same size for @code{double} as for @code{float}.
13295
13296 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
13297 code that is not binary compatible with code generated without that switch.
13298 Use it to conform to a non-default application binary interface.
13299
13300 @item -fshort-wchar
13301 @opindex fshort-wchar
13302 Override the underlying type for @samp{wchar_t} to be @samp{short
13303 unsigned int} instead of the default for the target.  This option is
13304 useful for building programs to run under WINE@.
13305
13306 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
13307 code that is not binary compatible with code generated without that switch.
13308 Use it to conform to a non-default application binary interface.
13309
13310 @item -fno-common
13311 @opindex fno-common
13312 In C, allocate even uninitialized global variables in the data section of the
13313 object file, rather than generating them as common blocks.  This has the
13314 effect that if the same variable is declared (without @code{extern}) in
13315 two different compilations, you will get an error when you link them.
13316 The only reason this might be useful is if you wish to verify that the
13317 program will work on other systems which always work this way.
13318
13319 @item -fno-ident
13320 @opindex fno-ident
13321 Ignore the @samp{#ident} directive.
13322
13323 @item -finhibit-size-directive
13324 @opindex finhibit-size-directive
13325 Don't output a @code{.size} assembler directive, or anything else that
13326 would cause trouble if the function is split in the middle, and the
13327 two halves are placed at locations far apart in memory.  This option is
13328 used when compiling @file{crtstuff.c}; you should not need to use it
13329 for anything else.
13330
13331 @item -fverbose-asm
13332 @opindex fverbose-asm
13333 Put extra commentary information in the generated assembly code to
13334 make it more readable.  This option is generally only of use to those
13335 who actually need to read the generated assembly code (perhaps while
13336 debugging the compiler itself).
13337
13338 @option{-fno-verbose-asm}, the default, causes the
13339 extra information to be omitted and is useful when comparing two assembler
13340 files.
13341
13342 @item -fpic
13343 @opindex fpic
13344 @cindex global offset table
13345 @cindex PIC
13346 Generate position-independent code (PIC) suitable for use in a shared
13347 library, if supported for the target machine.  Such code accesses all
13348 constant addresses through a global offset table (GOT)@.  The dynamic
13349 loader resolves the GOT entries when the program starts (the dynamic
13350 loader is not part of GCC; it is part of the operating system).  If
13351 the GOT size for the linked executable exceeds a machine-specific
13352 maximum size, you get an error message from the linker indicating that
13353 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
13354 instead.  (These maximums are 8k on the SPARC and 32k
13355 on the m68k and RS/6000.  The 386 has no such limit.)
13356
13357 Position-independent code requires special support, and therefore works
13358 only on certain machines.  For the 386, GCC supports PIC for System V
13359 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
13360 position-independent.
13361
13362 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
13363 are defined to 1.
13364
13365 @item -fPIC
13366 @opindex fPIC
13367 If supported for the target machine, emit position-independent code,
13368 suitable for dynamic linking and avoiding any limit on the size of the
13369 global offset table.  This option makes a difference on the m68k,
13370 PowerPC and SPARC@.
13371
13372 Position-independent code requires special support, and therefore works
13373 only on certain machines.
13374
13375 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
13376 are defined to 2.
13377
13378 @item -fpie
13379 @itemx -fPIE
13380 @opindex fpie
13381 @opindex fPIE
13382 These options are similar to @option{-fpic} and @option{-fPIC}, but
13383 generated position independent code can be only linked into executables.
13384 Usually these options are used when @option{-pie} GCC option will be
13385 used during linking.
13386
13387 @item -fno-jump-tables
13388 @opindex fno-jump-tables
13389 Do not use jump tables for switch statements even where it would be
13390 more efficient than other code generation strategies.  This option is
13391 of use in conjunction with @option{-fpic} or @option{-fPIC} for
13392 building code which forms part of a dynamic linker and cannot
13393 reference the address of a jump table.  On some targets, jump tables
13394 do not require a GOT and this option is not needed.
13395
13396 @item -ffixed-@var{reg}
13397 @opindex ffixed
13398 Treat the register named @var{reg} as a fixed register; generated code
13399 should never refer to it (except perhaps as a stack pointer, frame
13400 pointer or in some other fixed role).
13401
13402 @var{reg} must be the name of a register.  The register names accepted
13403 are machine-specific and are defined in the @code{REGISTER_NAMES}
13404 macro in the machine description macro file.
13405
13406 This flag does not have a negative form, because it specifies a
13407 three-way choice.
13408
13409 @item -fcall-used-@var{reg}
13410 @opindex fcall-used
13411 Treat the register named @var{reg} as an allocable register that is
13412 clobbered by function calls.  It may be allocated for temporaries or
13413 variables that do not live across a call.  Functions compiled this way
13414 will not save and restore the register @var{reg}.
13415
13416 It is an error to used this flag with the frame pointer or stack pointer.
13417 Use of this flag for other registers that have fixed pervasive roles in
13418 the machine's execution model will produce disastrous results.
13419
13420 This flag does not have a negative form, because it specifies a
13421 three-way choice.
13422
13423 @item -fcall-saved-@var{reg}
13424 @opindex fcall-saved
13425 Treat the register named @var{reg} as an allocable register saved by
13426 functions.  It may be allocated even for temporaries or variables that
13427 live across a call.  Functions compiled this way will save and restore
13428 the register @var{reg} if they use it.
13429
13430 It is an error to used this flag with the frame pointer or stack pointer.
13431 Use of this flag for other registers that have fixed pervasive roles in
13432 the machine's execution model will produce disastrous results.
13433
13434 A different sort of disaster will result from the use of this flag for
13435 a register in which function values may be returned.
13436
13437 This flag does not have a negative form, because it specifies a
13438 three-way choice.
13439
13440 @item -fpack-struct[=@var{n}]
13441 @opindex fpack-struct
13442 Without a value specified, pack all structure members together without
13443 holes.  When a value is specified (which must be a small power of two), pack
13444 structure members according to this value, representing the maximum
13445 alignment (that is, objects with default alignment requirements larger than
13446 this will be output potentially unaligned at the next fitting location.
13447
13448 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
13449 code that is not binary compatible with code generated without that switch.
13450 Additionally, it makes the code suboptimal.
13451 Use it to conform to a non-default application binary interface.
13452
13453 @item -finstrument-functions
13454 @opindex finstrument-functions
13455 Generate instrumentation calls for entry and exit to functions.  Just
13456 after function entry and just before function exit, the following
13457 profiling functions will be called with the address of the current
13458 function and its call site.  (On some platforms,
13459 @code{__builtin_return_address} does not work beyond the current
13460 function, so the call site information may not be available to the
13461 profiling functions otherwise.)
13462
13463 @smallexample
13464 void __cyg_profile_func_enter (void *this_fn,
13465                                void *call_site);
13466 void __cyg_profile_func_exit  (void *this_fn,
13467                                void *call_site);
13468 @end smallexample
13469
13470 The first argument is the address of the start of the current function,
13471 which may be looked up exactly in the symbol table.
13472
13473 This instrumentation is also done for functions expanded inline in other
13474 functions.  The profiling calls will indicate where, conceptually, the
13475 inline function is entered and exited.  This means that addressable
13476 versions of such functions must be available.  If all your uses of a
13477 function are expanded inline, this may mean an additional expansion of
13478 code size.  If you use @samp{extern inline} in your C code, an
13479 addressable version of such functions must be provided.  (This is
13480 normally the case anyways, but if you get lucky and the optimizer always
13481 expands the functions inline, you might have gotten away without
13482 providing static copies.)
13483
13484 A function may be given the attribute @code{no_instrument_function}, in
13485 which case this instrumentation will not be done.  This can be used, for
13486 example, for the profiling functions listed above, high-priority
13487 interrupt routines, and any functions from which the profiling functions
13488 cannot safely be called (perhaps signal handlers, if the profiling
13489 routines generate output or allocate memory).
13490
13491 @item -fstack-check
13492 @opindex fstack-check
13493 Generate code to verify that you do not go beyond the boundary of the
13494 stack.  You should specify this flag if you are running in an
13495 environment with multiple threads, but only rarely need to specify it in
13496 a single-threaded environment since stack overflow is automatically
13497 detected on nearly all systems if there is only one stack.
13498
13499 Note that this switch does not actually cause checking to be done; the
13500 operating system must do that.  The switch causes generation of code
13501 to ensure that the operating system sees the stack being extended.
13502
13503 @item -fstack-limit-register=@var{reg}
13504 @itemx -fstack-limit-symbol=@var{sym}
13505 @itemx -fno-stack-limit
13506 @opindex fstack-limit-register
13507 @opindex fstack-limit-symbol
13508 @opindex fno-stack-limit
13509 Generate code to ensure that the stack does not grow beyond a certain value,
13510 either the value of a register or the address of a symbol.  If the stack
13511 would grow beyond the value, a signal is raised.  For most targets,
13512 the signal is raised before the stack overruns the boundary, so
13513 it is possible to catch the signal without taking special precautions.
13514
13515 For instance, if the stack starts at absolute address @samp{0x80000000}
13516 and grows downwards, you can use the flags
13517 @option{-fstack-limit-symbol=__stack_limit} and
13518 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
13519 of 128KB@.  Note that this may only work with the GNU linker.
13520
13521 @cindex aliasing of parameters
13522 @cindex parameters, aliased
13523 @item -fargument-alias
13524 @itemx -fargument-noalias
13525 @itemx -fargument-noalias-global
13526 @itemx -fargument-noalias-anything
13527 @opindex fargument-alias
13528 @opindex fargument-noalias
13529 @opindex fargument-noalias-global
13530 @opindex fargument-noalias-anything
13531 Specify the possible relationships among parameters and between
13532 parameters and global data.
13533
13534 @option{-fargument-alias} specifies that arguments (parameters) may
13535 alias each other and may alias global storage.@*
13536 @option{-fargument-noalias} specifies that arguments do not alias
13537 each other, but may alias global storage.@*
13538 @option{-fargument-noalias-global} specifies that arguments do not
13539 alias each other and do not alias global storage.
13540 @option{-fargument-noalias-anything} specifies that arguments do not
13541 alias any other storage.
13542
13543 Each language will automatically use whatever option is required by
13544 the language standard.  You should not need to use these options yourself.
13545
13546 @item -fleading-underscore
13547 @opindex fleading-underscore
13548 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
13549 change the way C symbols are represented in the object file.  One use
13550 is to help link with legacy assembly code.
13551
13552 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
13553 generate code that is not binary compatible with code generated without that
13554 switch.  Use it to conform to a non-default application binary interface.
13555 Not all targets provide complete support for this switch.
13556
13557 @item -ftls-model=@var{model}
13558 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
13559 The @var{model} argument should be one of @code{global-dynamic},
13560 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
13561
13562 The default without @option{-fpic} is @code{initial-exec}; with
13563 @option{-fpic} the default is @code{global-dynamic}.
13564
13565 @item -fvisibility=@var{default|internal|hidden|protected}
13566 @opindex fvisibility
13567 Set the default ELF image symbol visibility to the specified option---all
13568 symbols will be marked with this unless overridden within the code.
13569 Using this feature can very substantially improve linking and
13570 load times of shared object libraries, produce more optimized
13571 code, provide near-perfect API export and prevent symbol clashes.
13572 It is @strong{strongly} recommended that you use this in any shared objects
13573 you distribute.
13574
13575 Despite the nomenclature, @code{default} always means public ie;
13576 available to be linked against from outside the shared object.
13577 @code{protected} and @code{internal} are pretty useless in real-world
13578 usage so the only other commonly used option will be @code{hidden}.
13579 The default if @option{-fvisibility} isn't specified is
13580 @code{default}, i.e., make every
13581 symbol public---this causes the same behavior as previous versions of
13582 GCC@.
13583
13584 A good explanation of the benefits offered by ensuring ELF
13585 symbols have the correct visibility is given by ``How To Write
13586 Shared Libraries'' by Ulrich Drepper (which can be found at
13587 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
13588 solution made possible by this option to marking things hidden when
13589 the default is public is to make the default hidden and mark things
13590 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
13591 and @code{__attribute__ ((visibility("default")))} instead of
13592 @code{__declspec(dllexport)} you get almost identical semantics with
13593 identical syntax.  This is a great boon to those working with
13594 cross-platform projects.
13595
13596 For those adding visibility support to existing code, you may find
13597 @samp{#pragma GCC visibility} of use.  This works by you enclosing
13598 the declarations you wish to set visibility for with (for example)
13599 @samp{#pragma GCC visibility push(hidden)} and
13600 @samp{#pragma GCC visibility pop}.
13601 Bear in mind that symbol visibility should be viewed @strong{as
13602 part of the API interface contract} and thus all new code should
13603 always specify visibility when it is not the default ie; declarations
13604 only for use within the local DSO should @strong{always} be marked explicitly
13605 as hidden as so to avoid PLT indirection overheads---making this
13606 abundantly clear also aids readability and self-documentation of the code.
13607 Note that due to ISO C++ specification requirements, operator new and
13608 operator delete must always be of default visibility.
13609
13610 Be aware that headers from outside your project, in particular system
13611 headers and headers from any other library you use, may not be
13612 expecting to be compiled with visibility other than the default.  You
13613 may need to explicitly say @samp{#pragma GCC visibility push(default)}
13614 before including any such headers.
13615
13616 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
13617 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
13618 no modifications.  However, this means that calls to @samp{extern}
13619 functions with no explicit visibility will use the PLT, so it is more
13620 effective to use @samp{__attribute ((visibility))} and/or
13621 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
13622 declarations should be treated as hidden.
13623
13624 Note that @samp{-fvisibility} does affect C++ vague linkage
13625 entities. This means that, for instance, an exception class that will
13626 be thrown between DSOs must be explicitly marked with default
13627 visibility so that the @samp{type_info} nodes will be unified between
13628 the DSOs.
13629
13630 An overview of these techniques, their benefits and how to use them
13631 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
13632
13633 @end table
13634
13635 @c man end
13636
13637 @node Environment Variables
13638 @section Environment Variables Affecting GCC
13639 @cindex environment variables
13640
13641 @c man begin ENVIRONMENT
13642 This section describes several environment variables that affect how GCC
13643 operates.  Some of them work by specifying directories or prefixes to use
13644 when searching for various kinds of files.  Some are used to specify other
13645 aspects of the compilation environment.
13646
13647 Note that you can also specify places to search using options such as
13648 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
13649 take precedence over places specified using environment variables, which
13650 in turn take precedence over those specified by the configuration of GCC@.
13651 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
13652 GNU Compiler Collection (GCC) Internals}.
13653
13654 @table @env
13655 @item LANG
13656 @itemx LC_CTYPE
13657 @c @itemx LC_COLLATE
13658 @itemx LC_MESSAGES
13659 @c @itemx LC_MONETARY
13660 @c @itemx LC_NUMERIC
13661 @c @itemx LC_TIME
13662 @itemx LC_ALL
13663 @findex LANG
13664 @findex LC_CTYPE
13665 @c @findex LC_COLLATE
13666 @findex LC_MESSAGES
13667 @c @findex LC_MONETARY
13668 @c @findex LC_NUMERIC
13669 @c @findex LC_TIME
13670 @findex LC_ALL
13671 @cindex locale
13672 These environment variables control the way that GCC uses
13673 localization information that allow GCC to work with different
13674 national conventions.  GCC inspects the locale categories
13675 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
13676 so.  These locale categories can be set to any value supported by your
13677 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
13678 Kingdom encoded in UTF-8.
13679
13680 The @env{LC_CTYPE} environment variable specifies character
13681 classification.  GCC uses it to determine the character boundaries in
13682 a string; this is needed for some multibyte encodings that contain quote
13683 and escape characters that would otherwise be interpreted as a string
13684 end or escape.
13685
13686 The @env{LC_MESSAGES} environment variable specifies the language to
13687 use in diagnostic messages.
13688
13689 If the @env{LC_ALL} environment variable is set, it overrides the value
13690 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
13691 and @env{LC_MESSAGES} default to the value of the @env{LANG}
13692 environment variable.  If none of these variables are set, GCC
13693 defaults to traditional C English behavior.
13694
13695 @item TMPDIR
13696 @findex TMPDIR
13697 If @env{TMPDIR} is set, it specifies the directory to use for temporary
13698 files.  GCC uses temporary files to hold the output of one stage of
13699 compilation which is to be used as input to the next stage: for example,
13700 the output of the preprocessor, which is the input to the compiler
13701 proper.
13702
13703 @item GCC_EXEC_PREFIX
13704 @findex GCC_EXEC_PREFIX
13705 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
13706 names of the subprograms executed by the compiler.  No slash is added
13707 when this prefix is combined with the name of a subprogram, but you can
13708 specify a prefix that ends with a slash if you wish.
13709
13710 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
13711 an appropriate prefix to use based on the pathname it was invoked with.
13712
13713 If GCC cannot find the subprogram using the specified prefix, it
13714 tries looking in the usual places for the subprogram.
13715
13716 The default value of @env{GCC_EXEC_PREFIX} is
13717 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the value
13718 of @code{prefix} when you ran the @file{configure} script.
13719
13720 Other prefixes specified with @option{-B} take precedence over this prefix.
13721
13722 This prefix is also used for finding files such as @file{crt0.o} that are
13723 used for linking.
13724
13725 In addition, the prefix is used in an unusual way in finding the
13726 directories to search for header files.  For each of the standard
13727 directories whose name normally begins with @samp{/usr/local/lib/gcc}
13728 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
13729 replacing that beginning with the specified prefix to produce an
13730 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
13731 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
13732 These alternate directories are searched first; the standard directories
13733 come next.
13734
13735 @item COMPILER_PATH
13736 @findex COMPILER_PATH
13737 The value of @env{COMPILER_PATH} is a colon-separated list of
13738 directories, much like @env{PATH}.  GCC tries the directories thus
13739 specified when searching for subprograms, if it can't find the
13740 subprograms using @env{GCC_EXEC_PREFIX}.
13741
13742 @item LIBRARY_PATH
13743 @findex LIBRARY_PATH
13744 The value of @env{LIBRARY_PATH} is a colon-separated list of
13745 directories, much like @env{PATH}.  When configured as a native compiler,
13746 GCC tries the directories thus specified when searching for special
13747 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
13748 using GCC also uses these directories when searching for ordinary
13749 libraries for the @option{-l} option (but directories specified with
13750 @option{-L} come first).
13751
13752 @item LANG
13753 @findex LANG
13754 @cindex locale definition
13755 This variable is used to pass locale information to the compiler.  One way in
13756 which this information is used is to determine the character set to be used
13757 when character literals, string literals and comments are parsed in C and C++.
13758 When the compiler is configured to allow multibyte characters,
13759 the following values for @env{LANG} are recognized:
13760
13761 @table @samp
13762 @item C-JIS
13763 Recognize JIS characters.
13764 @item C-SJIS
13765 Recognize SJIS characters.
13766 @item C-EUCJP
13767 Recognize EUCJP characters.
13768 @end table
13769
13770 If @env{LANG} is not defined, or if it has some other value, then the
13771 compiler will use mblen and mbtowc as defined by the default locale to
13772 recognize and translate multibyte characters.
13773 @end table
13774
13775 @noindent
13776 Some additional environments variables affect the behavior of the
13777 preprocessor.
13778
13779 @include cppenv.texi
13780
13781 @c man end
13782
13783 @node Precompiled Headers
13784 @section Using Precompiled Headers
13785 @cindex precompiled headers
13786 @cindex speed of compilation
13787
13788 Often large projects have many header files that are included in every
13789 source file.  The time the compiler takes to process these header files
13790 over and over again can account for nearly all of the time required to
13791 build the project.  To make builds faster, GCC allows users to
13792 `precompile' a header file; then, if builds can use the precompiled
13793 header file they will be much faster.
13794
13795 To create a precompiled header file, simply compile it as you would any
13796 other file, if necessary using the @option{-x} option to make the driver
13797 treat it as a C or C++ header file.  You will probably want to use a
13798 tool like @command{make} to keep the precompiled header up-to-date when
13799 the headers it contains change.
13800
13801 A precompiled header file will be searched for when @code{#include} is
13802 seen in the compilation.  As it searches for the included file
13803 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
13804 compiler looks for a precompiled header in each directory just before it
13805 looks for the include file in that directory.  The name searched for is
13806 the name specified in the @code{#include} with @samp{.gch} appended.  If
13807 the precompiled header file can't be used, it is ignored.
13808
13809 For instance, if you have @code{#include "all.h"}, and you have
13810 @file{all.h.gch} in the same directory as @file{all.h}, then the
13811 precompiled header file will be used if possible, and the original
13812 header will be used otherwise.
13813
13814 Alternatively, you might decide to put the precompiled header file in a
13815 directory and use @option{-I} to ensure that directory is searched
13816 before (or instead of) the directory containing the original header.
13817 Then, if you want to check that the precompiled header file is always
13818 used, you can put a file of the same name as the original header in this
13819 directory containing an @code{#error} command.
13820
13821 This also works with @option{-include}.  So yet another way to use
13822 precompiled headers, good for projects not designed with precompiled
13823 header files in mind, is to simply take most of the header files used by
13824 a project, include them from another header file, precompile that header
13825 file, and @option{-include} the precompiled header.  If the header files
13826 have guards against multiple inclusion, they will be skipped because
13827 they've already been included (in the precompiled header).
13828
13829 If you need to precompile the same header file for different
13830 languages, targets, or compiler options, you can instead make a
13831 @emph{directory} named like @file{all.h.gch}, and put each precompiled
13832 header in the directory, perhaps using @option{-o}.  It doesn't matter
13833 what you call the files in the directory, every precompiled header in
13834 the directory will be considered.  The first precompiled header
13835 encountered in the directory that is valid for this compilation will
13836 be used; they're searched in no particular order.
13837
13838 There are many other possibilities, limited only by your imagination,
13839 good sense, and the constraints of your build system.
13840
13841 A precompiled header file can be used only when these conditions apply:
13842
13843 @itemize
13844 @item
13845 Only one precompiled header can be used in a particular compilation.
13846
13847 @item
13848 A precompiled header can't be used once the first C token is seen.  You
13849 can have preprocessor directives before a precompiled header; you can
13850 even include a precompiled header from inside another header, so long as
13851 there are no C tokens before the @code{#include}.
13852
13853 @item
13854 The precompiled header file must be produced for the same language as
13855 the current compilation.  You can't use a C precompiled header for a C++
13856 compilation.
13857
13858 @item
13859 The precompiled header file must have been produced by the same compiler
13860 binary as the current compilation is using.
13861
13862 @item
13863 Any macros defined before the precompiled header is included must
13864 either be defined in the same way as when the precompiled header was
13865 generated, or must not affect the precompiled header, which usually
13866 means that they don't appear in the precompiled header at all.
13867
13868 The @option{-D} option is one way to define a macro before a
13869 precompiled header is included; using a @code{#define} can also do it.
13870 There are also some options that define macros implicitly, like
13871 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
13872 defined this way.
13873
13874 @item If debugging information is output when using the precompiled
13875 header, using @option{-g} or similar, the same kind of debugging information
13876 must have been output when building the precompiled header.  However,
13877 a precompiled header built using @option{-g} can be used in a compilation
13878 when no debugging information is being output.
13879
13880 @item The same @option{-m} options must generally be used when building
13881 and using the precompiled header.  @xref{Submodel Options},
13882 for any cases where this rule is relaxed.
13883
13884 @item Each of the following options must be the same when building and using
13885 the precompiled header:
13886
13887 @gccoptlist{-fexceptions -funit-at-a-time}
13888
13889 @item
13890 Some other command-line options starting with @option{-f},
13891 @option{-p}, or @option{-O} must be defined in the same way as when
13892 the precompiled header was generated.  At present, it's not clear
13893 which options are safe to change and which are not; the safest choice
13894 is to use exactly the same options when generating and using the
13895 precompiled header.  The following are known to be safe:
13896
13897 @gccoptlist{-fmessage-length= -fpreprocessed
13898 -fsched-interblock -fsched-spec -fsched-spec-load -fsched-spec-load-dangerous
13899 -fsched-verbose=<number> -fschedule-insns -fvisibility=
13900 -pedantic-errors}
13901
13902 @end itemize
13903
13904 For all of these except the last, the compiler will automatically
13905 ignore the precompiled header if the conditions aren't met.  If you
13906 find an option combination that doesn't work and doesn't cause the
13907 precompiled header to be ignored, please consider filing a bug report,
13908 see @ref{Bugs}.
13909
13910 If you do use differing options when generating and using the
13911 precompiled header, the actual behavior will be a mixture of the
13912 behavior for the options.  For instance, if you use @option{-g} to
13913 generate the precompiled header but not when using it, you may or may
13914 not get debugging information for routines in the precompiled header.
13915
13916 @node Running Protoize
13917 @section Running Protoize
13918
13919 The program @code{protoize} is an optional part of GCC@.  You can use
13920 it to add prototypes to a program, thus converting the program to ISO
13921 C in one respect.  The companion program @code{unprotoize} does the
13922 reverse: it removes argument types from any prototypes that are found.
13923
13924 When you run these programs, you must specify a set of source files as
13925 command line arguments.  The conversion programs start out by compiling
13926 these files to see what functions they define.  The information gathered
13927 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
13928
13929 After scanning comes actual conversion.  The specified files are all
13930 eligible to be converted; any files they include (whether sources or
13931 just headers) are eligible as well.
13932
13933 But not all the eligible files are converted.  By default,
13934 @code{protoize} and @code{unprotoize} convert only source and header
13935 files in the current directory.  You can specify additional directories
13936 whose files should be converted with the @option{-d @var{directory}}
13937 option.  You can also specify particular files to exclude with the
13938 @option{-x @var{file}} option.  A file is converted if it is eligible, its
13939 directory name matches one of the specified directory names, and its
13940 name within the directory has not been excluded.
13941
13942 Basic conversion with @code{protoize} consists of rewriting most
13943 function definitions and function declarations to specify the types of
13944 the arguments.  The only ones not rewritten are those for varargs
13945 functions.
13946
13947 @code{protoize} optionally inserts prototype declarations at the
13948 beginning of the source file, to make them available for any calls that
13949 precede the function's definition.  Or it can insert prototype
13950 declarations with block scope in the blocks where undeclared functions
13951 are called.
13952
13953 Basic conversion with @code{unprotoize} consists of rewriting most
13954 function declarations to remove any argument types, and rewriting
13955 function definitions to the old-style pre-ISO form.
13956
13957 Both conversion programs print a warning for any function declaration or
13958 definition that they can't convert.  You can suppress these warnings
13959 with @option{-q}.
13960
13961 The output from @code{protoize} or @code{unprotoize} replaces the
13962 original source file.  The original file is renamed to a name ending
13963 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
13964 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
13965 for DOS) file already exists, then the source file is simply discarded.
13966
13967 @code{protoize} and @code{unprotoize} both depend on GCC itself to
13968 scan the program and collect information about the functions it uses.
13969 So neither of these programs will work until GCC is installed.
13970
13971 Here is a table of the options you can use with @code{protoize} and
13972 @code{unprotoize}.  Each option works with both programs unless
13973 otherwise stated.
13974
13975 @table @code
13976 @item -B @var{directory}
13977 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
13978 usual directory (normally @file{/usr/local/lib}).  This file contains
13979 prototype information about standard system functions.  This option
13980 applies only to @code{protoize}.
13981
13982 @item -c @var{compilation-options}
13983 Use @var{compilation-options} as the options when running @command{gcc} to
13984 produce the @samp{.X} files.  The special option @option{-aux-info} is
13985 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
13986
13987 Note that the compilation options must be given as a single argument to
13988 @code{protoize} or @code{unprotoize}.  If you want to specify several
13989 @command{gcc} options, you must quote the entire set of compilation options
13990 to make them a single word in the shell.
13991
13992 There are certain @command{gcc} arguments that you cannot use, because they
13993 would produce the wrong kind of output.  These include @option{-g},
13994 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
13995 the @var{compilation-options}, they are ignored.
13996
13997 @item -C
13998 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
13999 systems) instead of @samp{.c}.  This is convenient if you are converting
14000 a C program to C++.  This option applies only to @code{protoize}.
14001
14002 @item -g
14003 Add explicit global declarations.  This means inserting explicit
14004 declarations at the beginning of each source file for each function
14005 that is called in the file and was not declared.  These declarations
14006 precede the first function definition that contains a call to an
14007 undeclared function.  This option applies only to @code{protoize}.
14008
14009 @item -i @var{string}
14010 Indent old-style parameter declarations with the string @var{string}.
14011 This option applies only to @code{protoize}.
14012
14013 @code{unprotoize} converts prototyped function definitions to old-style
14014 function definitions, where the arguments are declared between the
14015 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
14016 uses five spaces as the indentation.  If you want to indent with just
14017 one space instead, use @option{-i " "}.
14018
14019 @item -k
14020 Keep the @samp{.X} files.  Normally, they are deleted after conversion
14021 is finished.
14022
14023 @item -l
14024 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
14025 a prototype declaration for each function in each block which calls the
14026 function without any declaration.  This option applies only to
14027 @code{protoize}.
14028
14029 @item -n
14030 Make no real changes.  This mode just prints information about the conversions
14031 that would have been done without @option{-n}.
14032
14033 @item -N
14034 Make no @samp{.save} files.  The original files are simply deleted.
14035 Use this option with caution.
14036
14037 @item -p @var{program}
14038 Use the program @var{program} as the compiler.  Normally, the name
14039 @file{gcc} is used.
14040
14041 @item -q
14042 Work quietly.  Most warnings are suppressed.
14043
14044 @item -v
14045 Print the version number, just like @option{-v} for @command{gcc}.
14046 @end table
14047
14048 If you need special compiler options to compile one of your program's
14049 source files, then you should generate that file's @samp{.X} file
14050 specially, by running @command{gcc} on that source file with the
14051 appropriate options and the option @option{-aux-info}.  Then run
14052 @code{protoize} on the entire set of files.  @code{protoize} will use
14053 the existing @samp{.X} file because it is newer than the source file.
14054 For example:
14055
14056 @smallexample
14057 gcc -Dfoo=bar file1.c -aux-info file1.X
14058 protoize *.c
14059 @end smallexample
14060
14061 @noindent
14062 You need to include the special files along with the rest in the
14063 @code{protoize} command, even though their @samp{.X} files already
14064 exist, because otherwise they won't get converted.
14065
14066 @xref{Protoize Caveats}, for more information on how to use
14067 @code{protoize} successfully.