OSDN Git Service

f47cb62b1cc853c2f67e65c095c26f17348a1331
[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}  -mx87regparm @gol
539 -msseregparm @gol  -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 @item prefetch-latency
6333 Estimate on average number of instructions that are executed before
6334 prefetch finishes.  The distance we prefetch ahead is proportional
6335 to this constant.  Increasing this number may also lead to less
6336 streams being prefetched (see @option{simultaneous-prefetches}).
6337
6338 @item simultaneous-prefetches
6339 Maximum number of prefetches that can run at the same time.
6340
6341 @item l1-cache-line-size
6342 The size of cache line in L1 cache, in bytes.
6343
6344 @item l1-cache-size
6345 The number of cache lines in L1 cache.
6346
6347 @end table
6348 @end table
6349
6350 @node Preprocessor Options
6351 @section Options Controlling the Preprocessor
6352 @cindex preprocessor options
6353 @cindex options, preprocessor
6354
6355 These options control the C preprocessor, which is run on each C source
6356 file before actual compilation.
6357
6358 If you use the @option{-E} option, nothing is done except preprocessing.
6359 Some of these options make sense only together with @option{-E} because
6360 they cause the preprocessor output to be unsuitable for actual
6361 compilation.
6362
6363 @table @gcctabopt
6364 @opindex Wp
6365 You can use @option{-Wp,@var{option}} to bypass the compiler driver
6366 and pass @var{option} directly through to the preprocessor.  If
6367 @var{option} contains commas, it is split into multiple options at the
6368 commas.  However, many options are modified, translated or interpreted
6369 by the compiler driver before being passed to the preprocessor, and
6370 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
6371 interface is undocumented and subject to change, so whenever possible
6372 you should avoid using @option{-Wp} and let the driver handle the
6373 options instead.
6374
6375 @item -Xpreprocessor @var{option}
6376 @opindex preprocessor
6377 Pass @var{option} as an option to the preprocessor.  You can use this to
6378 supply system-specific preprocessor options which GCC does not know how to
6379 recognize.
6380
6381 If you want to pass an option that takes an argument, you must use
6382 @option{-Xpreprocessor} twice, once for the option and once for the argument.
6383 @end table
6384
6385 @include cppopts.texi
6386
6387 @node Assembler Options
6388 @section Passing Options to the Assembler
6389
6390 @c prevent bad page break with this line
6391 You can pass options to the assembler.
6392
6393 @table @gcctabopt
6394 @item -Wa,@var{option}
6395 @opindex Wa
6396 Pass @var{option} as an option to the assembler.  If @var{option}
6397 contains commas, it is split into multiple options at the commas.
6398
6399 @item -Xassembler @var{option}
6400 @opindex Xassembler
6401 Pass @var{option} as an option to the assembler.  You can use this to
6402 supply system-specific assembler options which GCC does not know how to
6403 recognize.
6404
6405 If you want to pass an option that takes an argument, you must use
6406 @option{-Xassembler} twice, once for the option and once for the argument.
6407
6408 @end table
6409
6410 @node Link Options
6411 @section Options for Linking
6412 @cindex link options
6413 @cindex options, linking
6414
6415 These options come into play when the compiler links object files into
6416 an executable output file.  They are meaningless if the compiler is
6417 not doing a link step.
6418
6419 @table @gcctabopt
6420 @cindex file names
6421 @item @var{object-file-name}
6422 A file name that does not end in a special recognized suffix is
6423 considered to name an object file or library.  (Object files are
6424 distinguished from libraries by the linker according to the file
6425 contents.)  If linking is done, these object files are used as input
6426 to the linker.
6427
6428 @item -c
6429 @itemx -S
6430 @itemx -E
6431 @opindex c
6432 @opindex S
6433 @opindex E
6434 If any of these options is used, then the linker is not run, and
6435 object file names should not be used as arguments.  @xref{Overall
6436 Options}.
6437
6438 @cindex Libraries
6439 @item -l@var{library}
6440 @itemx -l @var{library}
6441 @opindex l
6442 Search the library named @var{library} when linking.  (The second
6443 alternative with the library as a separate argument is only for
6444 POSIX compliance and is not recommended.)
6445
6446 It makes a difference where in the command you write this option; the
6447 linker searches and processes libraries and object files in the order they
6448 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
6449 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
6450 to functions in @samp{z}, those functions may not be loaded.
6451
6452 The linker searches a standard list of directories for the library,
6453 which is actually a file named @file{lib@var{library}.a}.  The linker
6454 then uses this file as if it had been specified precisely by name.
6455
6456 The directories searched include several standard system directories
6457 plus any that you specify with @option{-L}.
6458
6459 Normally the files found this way are library files---archive files
6460 whose members are object files.  The linker handles an archive file by
6461 scanning through it for members which define symbols that have so far
6462 been referenced but not defined.  But if the file that is found is an
6463 ordinary object file, it is linked in the usual fashion.  The only
6464 difference between using an @option{-l} option and specifying a file name
6465 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
6466 and searches several directories.
6467
6468 @item -lobjc
6469 @opindex lobjc
6470 You need this special case of the @option{-l} option in order to
6471 link an Objective-C or Objective-C++ program.
6472
6473 @item -nostartfiles
6474 @opindex nostartfiles
6475 Do not use the standard system startup files when linking.
6476 The standard system libraries are used normally, unless @option{-nostdlib}
6477 or @option{-nodefaultlibs} is used.
6478
6479 @item -nodefaultlibs
6480 @opindex nodefaultlibs
6481 Do not use the standard system libraries when linking.
6482 Only the libraries you specify will be passed to the linker.
6483 The standard startup files are used normally, unless @option{-nostartfiles}
6484 is used.  The compiler may generate calls to @code{memcmp},
6485 @code{memset}, @code{memcpy} and @code{memmove}.
6486 These entries are usually resolved by entries in
6487 libc.  These entry points should be supplied through some other
6488 mechanism when this option is specified.
6489
6490 @item -nostdlib
6491 @opindex nostdlib
6492 Do not use the standard system startup files or libraries when linking.
6493 No startup files and only the libraries you specify will be passed to
6494 the linker.  The compiler may generate calls to @code{memcmp}, @code{memset},
6495 @code{memcpy} and @code{memmove}.
6496 These entries are usually resolved by entries in
6497 libc.  These entry points should be supplied through some other
6498 mechanism when this option is specified.
6499
6500 @cindex @option{-lgcc}, use with @option{-nostdlib}
6501 @cindex @option{-nostdlib} and unresolved references
6502 @cindex unresolved references and @option{-nostdlib}
6503 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
6504 @cindex @option{-nodefaultlibs} and unresolved references
6505 @cindex unresolved references and @option{-nodefaultlibs}
6506 One of the standard libraries bypassed by @option{-nostdlib} and
6507 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
6508 that GCC uses to overcome shortcomings of particular machines, or special
6509 needs for some languages.
6510 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
6511 Collection (GCC) Internals},
6512 for more discussion of @file{libgcc.a}.)
6513 In most cases, you need @file{libgcc.a} even when you want to avoid
6514 other standard libraries.  In other words, when you specify @option{-nostdlib}
6515 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
6516 This ensures that you have no unresolved references to internal GCC
6517 library subroutines.  (For example, @samp{__main}, used to ensure C++
6518 constructors will be called; @pxref{Collect2,,@code{collect2}, gccint,
6519 GNU Compiler Collection (GCC) Internals}.)
6520
6521 @item -pie
6522 @opindex pie
6523 Produce a position independent executable on targets which support it.
6524 For predictable results, you must also specify the same set of options
6525 that were used to generate code (@option{-fpie}, @option{-fPIE},
6526 or model suboptions) when you specify this option.
6527
6528 @item -rdynamic
6529 @opindex rdynamic
6530 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
6531 that support it. This instructs the linker to add all symbols, not
6532 only used ones, to the dynamic symbol table. This option is needed
6533 for some uses of @code{dlopen} or to allow obtaining backtraces
6534 from within a program.
6535
6536 @item -s
6537 @opindex s
6538 Remove all symbol table and relocation information from the executable.
6539
6540 @item -static
6541 @opindex static
6542 On systems that support dynamic linking, this prevents linking with the shared
6543 libraries.  On other systems, this option has no effect.
6544
6545 @item -shared
6546 @opindex shared
6547 Produce a shared object which can then be linked with other objects to
6548 form an executable.  Not all systems support this option.  For predictable
6549 results, you must also specify the same set of options that were used to
6550 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
6551 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
6552 needs to build supplementary stub code for constructors to work.  On
6553 multi-libbed systems, @samp{gcc -shared} must select the correct support
6554 libraries to link against.  Failing to supply the correct flags may lead
6555 to subtle defects.  Supplying them in cases where they are not necessary
6556 is innocuous.}
6557
6558 @item -shared-libgcc
6559 @itemx -static-libgcc
6560 @opindex shared-libgcc
6561 @opindex static-libgcc
6562 On systems that provide @file{libgcc} as a shared library, these options
6563 force the use of either the shared or static version respectively.
6564 If no shared version of @file{libgcc} was built when the compiler was
6565 configured, these options have no effect.
6566
6567 There are several situations in which an application should use the
6568 shared @file{libgcc} instead of the static version.  The most common
6569 of these is when the application wishes to throw and catch exceptions
6570 across different shared libraries.  In that case, each of the libraries
6571 as well as the application itself should use the shared @file{libgcc}.
6572
6573 Therefore, the G++ and GCJ drivers automatically add
6574 @option{-shared-libgcc} whenever you build a shared library or a main
6575 executable, because C++ and Java programs typically use exceptions, so
6576 this is the right thing to do.
6577
6578 If, instead, you use the GCC driver to create shared libraries, you may
6579 find that they will not always be linked with the shared @file{libgcc}.
6580 If GCC finds, at its configuration time, that you have a non-GNU linker
6581 or a GNU linker that does not support option @option{--eh-frame-hdr},
6582 it will link the shared version of @file{libgcc} into shared libraries
6583 by default.  Otherwise, it will take advantage of the linker and optimize
6584 away the linking with the shared version of @file{libgcc}, linking with
6585 the static version of libgcc by default.  This allows exceptions to
6586 propagate through such shared libraries, without incurring relocation
6587 costs at library load time.
6588
6589 However, if a library or main executable is supposed to throw or catch
6590 exceptions, you must link it using the G++ or GCJ driver, as appropriate
6591 for the languages used in the program, or using the option
6592 @option{-shared-libgcc}, such that it is linked with the shared
6593 @file{libgcc}.
6594
6595 @item -symbolic
6596 @opindex symbolic
6597 Bind references to global symbols when building a shared object.  Warn
6598 about any unresolved references (unless overridden by the link editor
6599 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
6600 this option.
6601
6602 @item -Xlinker @var{option}
6603 @opindex Xlinker
6604 Pass @var{option} as an option to the linker.  You can use this to
6605 supply system-specific linker options which GCC does not know how to
6606 recognize.
6607
6608 If you want to pass an option that takes an argument, you must use
6609 @option{-Xlinker} twice, once for the option and once for the argument.
6610 For example, to pass @option{-assert definitions}, you must write
6611 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
6612 @option{-Xlinker "-assert definitions"}, because this passes the entire
6613 string as a single argument, which is not what the linker expects.
6614
6615 @item -Wl,@var{option}
6616 @opindex Wl
6617 Pass @var{option} as an option to the linker.  If @var{option} contains
6618 commas, it is split into multiple options at the commas.
6619
6620 @item -u @var{symbol}
6621 @opindex u
6622 Pretend the symbol @var{symbol} is undefined, to force linking of
6623 library modules to define it.  You can use @option{-u} multiple times with
6624 different symbols to force loading of additional library modules.
6625 @end table
6626
6627 @node Directory Options
6628 @section Options for Directory Search
6629 @cindex directory options
6630 @cindex options, directory search
6631 @cindex search path
6632
6633 These options specify directories to search for header files, for
6634 libraries and for parts of the compiler:
6635
6636 @table @gcctabopt
6637 @item -I@var{dir}
6638 @opindex I
6639 Add the directory @var{dir} to the head of the list of directories to be
6640 searched for header files.  This can be used to override a system header
6641 file, substituting your own version, since these directories are
6642 searched before the system header file directories.  However, you should
6643 not use this option to add directories that contain vendor-supplied
6644 system header files (use @option{-isystem} for that).  If you use more than
6645 one @option{-I} option, the directories are scanned in left-to-right
6646 order; the standard system directories come after.
6647
6648 If a standard system include directory, or a directory specified with
6649 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
6650 option will be ignored.  The directory will still be searched but as a
6651 system directory at its normal position in the system include chain.
6652 This is to ensure that GCC's procedure to fix buggy system headers and
6653 the ordering for the include_next directive are not inadvertently changed.
6654 If you really need to change the search order for system directories,
6655 use the @option{-nostdinc} and/or @option{-isystem} options.
6656
6657 @item -iquote@var{dir}
6658 @opindex iquote
6659 Add the directory @var{dir} to the head of the list of directories to
6660 be searched for header files only for the case of @samp{#include
6661 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
6662 otherwise just like @option{-I}.
6663
6664 @item -L@var{dir}
6665 @opindex L
6666 Add directory @var{dir} to the list of directories to be searched
6667 for @option{-l}.
6668
6669 @item -B@var{prefix}
6670 @opindex B
6671 This option specifies where to find the executables, libraries,
6672 include files, and data files of the compiler itself.
6673
6674 The compiler driver program runs one or more of the subprograms
6675 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
6676 @var{prefix} as a prefix for each program it tries to run, both with and
6677 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
6678
6679 For each subprogram to be run, the compiler driver first tries the
6680 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
6681 was not specified, the driver tries two standard prefixes, which are
6682 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
6683 those results in a file name that is found, the unmodified program
6684 name is searched for using the directories specified in your
6685 @env{PATH} environment variable.
6686
6687 The compiler will check to see if the path provided by the @option{-B}
6688 refers to a directory, and if necessary it will add a directory
6689 separator character at the end of the path.
6690
6691 @option{-B} prefixes that effectively specify directory names also apply
6692 to libraries in the linker, because the compiler translates these
6693 options into @option{-L} options for the linker.  They also apply to
6694 includes files in the preprocessor, because the compiler translates these
6695 options into @option{-isystem} options for the preprocessor.  In this case,
6696 the compiler appends @samp{include} to the prefix.
6697
6698 The run-time support file @file{libgcc.a} can also be searched for using
6699 the @option{-B} prefix, if needed.  If it is not found there, the two
6700 standard prefixes above are tried, and that is all.  The file is left
6701 out of the link if it is not found by those means.
6702
6703 Another way to specify a prefix much like the @option{-B} prefix is to use
6704 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
6705 Variables}.
6706
6707 As a special kludge, if the path provided by @option{-B} is
6708 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
6709 9, then it will be replaced by @file{[dir/]include}.  This is to help
6710 with boot-strapping the compiler.
6711
6712 @item -specs=@var{file}
6713 @opindex specs
6714 Process @var{file} after the compiler reads in the standard @file{specs}
6715 file, in order to override the defaults that the @file{gcc} driver
6716 program uses when determining what switches to pass to @file{cc1},
6717 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
6718 @option{-specs=@var{file}} can be specified on the command line, and they
6719 are processed in order, from left to right.
6720
6721 @item --sysroot=@var{dir}
6722 @opindex sysroot
6723 Use @var{dir} as the logical root directory for headers and libraries.
6724 For example, if the compiler would normally search for headers in
6725 @file{/usr/include} and libraries in @file{/usr/lib}, it will instead
6726 search @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.  
6727
6728 If you use both this option and the @option{-isysroot} option, then
6729 the @option{--sysroot} option will apply to libraries, but the
6730 @option{-isysroot} option will apply to header files.
6731
6732 The GNU linker (beginning with version 2.16) has the necessary support
6733 for this option.  If your linker does not support this option, the
6734 header file aspect of @option{--sysroot} will still work, but the
6735 library aspect will not.
6736
6737 @item -I-
6738 @opindex I-
6739 This option has been deprecated.  Please use @option{-iquote} instead for
6740 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
6741 Any directories you specify with @option{-I} options before the @option{-I-}
6742 option are searched only for the case of @samp{#include "@var{file}"};
6743 they are not searched for @samp{#include <@var{file}>}.
6744
6745 If additional directories are specified with @option{-I} options after
6746 the @option{-I-}, these directories are searched for all @samp{#include}
6747 directives.  (Ordinarily @emph{all} @option{-I} directories are used
6748 this way.)
6749
6750 In addition, the @option{-I-} option inhibits the use of the current
6751 directory (where the current input file came from) as the first search
6752 directory for @samp{#include "@var{file}"}.  There is no way to
6753 override this effect of @option{-I-}.  With @option{-I.} you can specify
6754 searching the directory which was current when the compiler was
6755 invoked.  That is not exactly the same as what the preprocessor does
6756 by default, but it is often satisfactory.
6757
6758 @option{-I-} does not inhibit the use of the standard system directories
6759 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
6760 independent.
6761 @end table
6762
6763 @c man end
6764
6765 @node Spec Files
6766 @section Specifying subprocesses and the switches to pass to them
6767 @cindex Spec Files
6768
6769 @command{gcc} is a driver program.  It performs its job by invoking a
6770 sequence of other programs to do the work of compiling, assembling and
6771 linking.  GCC interprets its command-line parameters and uses these to
6772 deduce which programs it should invoke, and which command-line options
6773 it ought to place on their command lines.  This behavior is controlled
6774 by @dfn{spec strings}.  In most cases there is one spec string for each
6775 program that GCC can invoke, but a few programs have multiple spec
6776 strings to control their behavior.  The spec strings built into GCC can
6777 be overridden by using the @option{-specs=} command-line switch to specify
6778 a spec file.
6779
6780 @dfn{Spec files} are plaintext files that are used to construct spec
6781 strings.  They consist of a sequence of directives separated by blank
6782 lines.  The type of directive is determined by the first non-whitespace
6783 character on the line and it can be one of the following:
6784
6785 @table @code
6786 @item %@var{command}
6787 Issues a @var{command} to the spec file processor.  The commands that can
6788 appear here are:
6789
6790 @table @code
6791 @item %include <@var{file}>
6792 @cindex %include
6793 Search for @var{file} and insert its text at the current point in the
6794 specs file.
6795
6796 @item %include_noerr <@var{file}>
6797 @cindex %include_noerr
6798 Just like @samp{%include}, but do not generate an error message if the include
6799 file cannot be found.
6800
6801 @item %rename @var{old_name} @var{new_name}
6802 @cindex %rename
6803 Rename the spec string @var{old_name} to @var{new_name}.
6804
6805 @end table
6806
6807 @item *[@var{spec_name}]:
6808 This tells the compiler to create, override or delete the named spec
6809 string.  All lines after this directive up to the next directive or
6810 blank line are considered to be the text for the spec string.  If this
6811 results in an empty string then the spec will be deleted.  (Or, if the
6812 spec did not exist, then nothing will happened.)  Otherwise, if the spec
6813 does not currently exist a new spec will be created.  If the spec does
6814 exist then its contents will be overridden by the text of this
6815 directive, unless the first character of that text is the @samp{+}
6816 character, in which case the text will be appended to the spec.
6817
6818 @item [@var{suffix}]:
6819 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
6820 and up to the next directive or blank line are considered to make up the
6821 spec string for the indicated suffix.  When the compiler encounters an
6822 input file with the named suffix, it will processes the spec string in
6823 order to work out how to compile that file.  For example:
6824
6825 @smallexample
6826 .ZZ:
6827 z-compile -input %i
6828 @end smallexample
6829
6830 This says that any input file whose name ends in @samp{.ZZ} should be
6831 passed to the program @samp{z-compile}, which should be invoked with the
6832 command-line switch @option{-input} and with the result of performing the
6833 @samp{%i} substitution.  (See below.)
6834
6835 As an alternative to providing a spec string, the text that follows a
6836 suffix directive can be one of the following:
6837
6838 @table @code
6839 @item @@@var{language}
6840 This says that the suffix is an alias for a known @var{language}.  This is
6841 similar to using the @option{-x} command-line switch to GCC to specify a
6842 language explicitly.  For example:
6843
6844 @smallexample
6845 .ZZ:
6846 @@c++
6847 @end smallexample
6848
6849 Says that .ZZ files are, in fact, C++ source files.
6850
6851 @item #@var{name}
6852 This causes an error messages saying:
6853
6854 @smallexample
6855 @var{name} compiler not installed on this system.
6856 @end smallexample
6857 @end table
6858
6859 GCC already has an extensive list of suffixes built into it.
6860 This directive will add an entry to the end of the list of suffixes, but
6861 since the list is searched from the end backwards, it is effectively
6862 possible to override earlier entries using this technique.
6863
6864 @end table
6865
6866 GCC has the following spec strings built into it.  Spec files can
6867 override these strings or create their own.  Note that individual
6868 targets can also add their own spec strings to this list.
6869
6870 @smallexample
6871 asm          Options to pass to the assembler
6872 asm_final    Options to pass to the assembler post-processor
6873 cpp          Options to pass to the C preprocessor
6874 cc1          Options to pass to the C compiler
6875 cc1plus      Options to pass to the C++ compiler
6876 endfile      Object files to include at the end of the link
6877 link         Options to pass to the linker
6878 lib          Libraries to include on the command line to the linker
6879 libgcc       Decides which GCC support library to pass to the linker
6880 linker       Sets the name of the linker
6881 predefines   Defines to be passed to the C preprocessor
6882 signed_char  Defines to pass to CPP to say whether @code{char} is signed
6883              by default
6884 startfile    Object files to include at the start of the link
6885 @end smallexample
6886
6887 Here is a small example of a spec file:
6888
6889 @smallexample
6890 %rename lib                 old_lib
6891
6892 *lib:
6893 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
6894 @end smallexample
6895
6896 This example renames the spec called @samp{lib} to @samp{old_lib} and
6897 then overrides the previous definition of @samp{lib} with a new one.
6898 The new definition adds in some extra command-line options before
6899 including the text of the old definition.
6900
6901 @dfn{Spec strings} are a list of command-line options to be passed to their
6902 corresponding program.  In addition, the spec strings can contain
6903 @samp{%}-prefixed sequences to substitute variable text or to
6904 conditionally insert text into the command line.  Using these constructs
6905 it is possible to generate quite complex command lines.
6906
6907 Here is a table of all defined @samp{%}-sequences for spec
6908 strings.  Note that spaces are not generated automatically around the
6909 results of expanding these sequences.  Therefore you can concatenate them
6910 together or combine them with constant text in a single argument.
6911
6912 @table @code
6913 @item %%
6914 Substitute one @samp{%} into the program name or argument.
6915
6916 @item %i
6917 Substitute the name of the input file being processed.
6918
6919 @item %b
6920 Substitute the basename of the input file being processed.
6921 This is the substring up to (and not including) the last period
6922 and not including the directory.
6923
6924 @item %B
6925 This is the same as @samp{%b}, but include the file suffix (text after
6926 the last period).
6927
6928 @item %d
6929 Marks the argument containing or following the @samp{%d} as a
6930 temporary file name, so that that file will be deleted if GCC exits
6931 successfully.  Unlike @samp{%g}, this contributes no text to the
6932 argument.
6933
6934 @item %g@var{suffix}
6935 Substitute a file name that has suffix @var{suffix} and is chosen
6936 once per compilation, and mark the argument in the same way as
6937 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
6938 name is now chosen in a way that is hard to predict even when previously
6939 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
6940 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
6941 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
6942 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
6943 was simply substituted with a file name chosen once per compilation,
6944 without regard to any appended suffix (which was therefore treated
6945 just like ordinary text), making such attacks more likely to succeed.
6946
6947 @item %u@var{suffix}
6948 Like @samp{%g}, but generates a new temporary file name even if
6949 @samp{%u@var{suffix}} was already seen.
6950
6951 @item %U@var{suffix}
6952 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
6953 new one if there is no such last file name.  In the absence of any
6954 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
6955 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
6956 would involve the generation of two distinct file names, one
6957 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
6958 simply substituted with a file name chosen for the previous @samp{%u},
6959 without regard to any appended suffix.
6960
6961 @item %j@var{suffix}
6962 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
6963 writable, and if save-temps is off; otherwise, substitute the name
6964 of a temporary file, just like @samp{%u}.  This temporary file is not
6965 meant for communication between processes, but rather as a junk
6966 disposal mechanism.
6967
6968 @item %|@var{suffix}
6969 @itemx %m@var{suffix}
6970 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
6971 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
6972 all.  These are the two most common ways to instruct a program that it
6973 should read from standard input or write to standard output.  If you
6974 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
6975 construct: see for example @file{f/lang-specs.h}.
6976
6977 @item %.@var{SUFFIX}
6978 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
6979 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
6980 terminated by the next space or %.
6981
6982 @item %w
6983 Marks the argument containing or following the @samp{%w} as the
6984 designated output file of this compilation.  This puts the argument
6985 into the sequence of arguments that @samp{%o} will substitute later.
6986
6987 @item %o
6988 Substitutes the names of all the output files, with spaces
6989 automatically placed around them.  You should write spaces
6990 around the @samp{%o} as well or the results are undefined.
6991 @samp{%o} is for use in the specs for running the linker.
6992 Input files whose names have no recognized suffix are not compiled
6993 at all, but they are included among the output files, so they will
6994 be linked.
6995
6996 @item %O
6997 Substitutes the suffix for object files.  Note that this is
6998 handled specially when it immediately follows @samp{%g, %u, or %U},
6999 because of the need for those to form complete file names.  The
7000 handling is such that @samp{%O} is treated exactly as if it had already
7001 been substituted, except that @samp{%g, %u, and %U} do not currently
7002 support additional @var{suffix} characters following @samp{%O} as they would
7003 following, for example, @samp{.o}.
7004
7005 @item %p
7006 Substitutes the standard macro predefinitions for the
7007 current target machine.  Use this when running @code{cpp}.
7008
7009 @item %P
7010 Like @samp{%p}, but puts @samp{__} before and after the name of each
7011 predefined macro, except for macros that start with @samp{__} or with
7012 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
7013 C@.
7014
7015 @item %I
7016 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
7017 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
7018 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
7019 and @option{-imultilib} as necessary.
7020
7021 @item %s
7022 Current argument is the name of a library or startup file of some sort.
7023 Search for that file in a standard list of directories and substitute
7024 the full name found.
7025
7026 @item %e@var{str}
7027 Print @var{str} as an error message.  @var{str} is terminated by a newline.
7028 Use this when inconsistent options are detected.
7029
7030 @item %(@var{name})
7031 Substitute the contents of spec string @var{name} at this point.
7032
7033 @item %[@var{name}]
7034 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
7035
7036 @item %x@{@var{option}@}
7037 Accumulate an option for @samp{%X}.
7038
7039 @item %X
7040 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
7041 spec string.
7042
7043 @item %Y
7044 Output the accumulated assembler options specified by @option{-Wa}.
7045
7046 @item %Z
7047 Output the accumulated preprocessor options specified by @option{-Wp}.
7048
7049 @item %a
7050 Process the @code{asm} spec.  This is used to compute the
7051 switches to be passed to the assembler.
7052
7053 @item %A
7054 Process the @code{asm_final} spec.  This is a spec string for
7055 passing switches to an assembler post-processor, if such a program is
7056 needed.
7057
7058 @item %l
7059 Process the @code{link} spec.  This is the spec for computing the
7060 command line passed to the linker.  Typically it will make use of the
7061 @samp{%L %G %S %D and %E} sequences.
7062
7063 @item %D
7064 Dump out a @option{-L} option for each directory that GCC believes might
7065 contain startup files.  If the target supports multilibs then the
7066 current multilib directory will be prepended to each of these paths.
7067
7068 @item %L
7069 Process the @code{lib} spec.  This is a spec string for deciding which
7070 libraries should be included on the command line to the linker.
7071
7072 @item %G
7073 Process the @code{libgcc} spec.  This is a spec string for deciding
7074 which GCC support library should be included on the command line to the linker.
7075
7076 @item %S
7077 Process the @code{startfile} spec.  This is a spec for deciding which
7078 object files should be the first ones passed to the linker.  Typically
7079 this might be a file named @file{crt0.o}.
7080
7081 @item %E
7082 Process the @code{endfile} spec.  This is a spec string that specifies
7083 the last object files that will be passed to the linker.
7084
7085 @item %C
7086 Process the @code{cpp} spec.  This is used to construct the arguments
7087 to be passed to the C preprocessor.
7088
7089 @item %1
7090 Process the @code{cc1} spec.  This is used to construct the options to be
7091 passed to the actual C compiler (@samp{cc1}).
7092
7093 @item %2
7094 Process the @code{cc1plus} spec.  This is used to construct the options to be
7095 passed to the actual C++ compiler (@samp{cc1plus}).
7096
7097 @item %*
7098 Substitute the variable part of a matched option.  See below.
7099 Note that each comma in the substituted string is replaced by
7100 a single space.
7101
7102 @item %<@code{S}
7103 Remove all occurrences of @code{-S} from the command line.  Note---this
7104 command is position dependent.  @samp{%} commands in the spec string
7105 before this one will see @code{-S}, @samp{%} commands in the spec string
7106 after this one will not.
7107
7108 @item %:@var{function}(@var{args})
7109 Call the named function @var{function}, passing it @var{args}.
7110 @var{args} is first processed as a nested spec string, then split
7111 into an argument vector in the usual fashion.  The function returns
7112 a string which is processed as if it had appeared literally as part
7113 of the current spec.
7114
7115 The following built-in spec functions are provided:
7116
7117 @table @code
7118 @item @code{if-exists}
7119 The @code{if-exists} spec function takes one argument, an absolute
7120 pathname to a file.  If the file exists, @code{if-exists} returns the
7121 pathname.  Here is a small example of its usage:
7122
7123 @smallexample
7124 *startfile:
7125 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
7126 @end smallexample
7127
7128 @item @code{if-exists-else}
7129 The @code{if-exists-else} spec function is similar to the @code{if-exists}
7130 spec function, except that it takes two arguments.  The first argument is
7131 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
7132 returns the pathname.  If it does not exist, it returns the second argument.
7133 This way, @code{if-exists-else} can be used to select one file or another,
7134 based on the existence of the first.  Here is a small example of its usage:
7135
7136 @smallexample
7137 *startfile:
7138 crt0%O%s %:if-exists(crti%O%s) \
7139 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
7140 @end smallexample
7141
7142 @item @code{replace-outfile}
7143 The @code{replace-outfile} spec function takes two arguments.  It looks for the
7144 first argument in the outfiles array and replaces it with the second argument.  Here
7145 is a small example of its usage:
7146
7147 @smallexample
7148 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
7149 @end smallexample
7150
7151 @end table
7152
7153 @item %@{@code{S}@}
7154 Substitutes the @code{-S} switch, if that switch was given to GCC@.
7155 If that switch was not specified, this substitutes nothing.  Note that
7156 the leading dash is omitted when specifying this option, and it is
7157 automatically inserted if the substitution is performed.  Thus the spec
7158 string @samp{%@{foo@}} would match the command-line option @option{-foo}
7159 and would output the command line option @option{-foo}.
7160
7161 @item %W@{@code{S}@}
7162 Like %@{@code{S}@} but mark last argument supplied within as a file to be
7163 deleted on failure.
7164
7165 @item %@{@code{S}*@}
7166 Substitutes all the switches specified to GCC whose names start
7167 with @code{-S}, but which also take an argument.  This is used for
7168 switches like @option{-o}, @option{-D}, @option{-I}, etc.
7169 GCC considers @option{-o foo} as being
7170 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
7171 text, including the space.  Thus two arguments would be generated.
7172
7173 @item %@{@code{S}*&@code{T}*@}
7174 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
7175 (the order of @code{S} and @code{T} in the spec is not significant).
7176 There can be any number of ampersand-separated variables; for each the
7177 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
7178
7179 @item %@{@code{S}:@code{X}@}
7180 Substitutes @code{X}, if the @samp{-S} switch was given to GCC@.
7181
7182 @item %@{!@code{S}:@code{X}@}
7183 Substitutes @code{X}, if the @samp{-S} switch was @emph{not} given to GCC@.
7184
7185 @item %@{@code{S}*:@code{X}@}
7186 Substitutes @code{X} if one or more switches whose names start with
7187 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
7188 once, no matter how many such switches appeared.  However, if @code{%*}
7189 appears somewhere in @code{X}, then @code{X} will be substituted once
7190 for each matching switch, with the @code{%*} replaced by the part of
7191 that switch that matched the @code{*}.
7192
7193 @item %@{.@code{S}:@code{X}@}
7194 Substitutes @code{X}, if processing a file with suffix @code{S}.
7195
7196 @item %@{!.@code{S}:@code{X}@}
7197 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
7198
7199 @item %@{@code{S}|@code{P}:@code{X}@}
7200 Substitutes @code{X} if either @code{-S} or @code{-P} was given to GCC@.
7201 This may be combined with @samp{!}, @samp{.}, and @code{*} sequences as well,
7202 although they have a stronger binding than the @samp{|}.  If @code{%*}
7203 appears in @code{X}, all of the alternatives must be starred, and only
7204 the first matching alternative is substituted.
7205
7206 For example, a spec string like this:
7207
7208 @smallexample
7209 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
7210 @end smallexample
7211
7212 will output the following command-line options from the following input
7213 command-line options:
7214
7215 @smallexample
7216 fred.c        -foo -baz
7217 jim.d         -bar -boggle
7218 -d fred.c     -foo -baz -boggle
7219 -d jim.d      -bar -baz -boggle
7220 @end smallexample
7221
7222 @item %@{S:X; T:Y; :D@}
7223
7224 If @code{S} was given to GCC, substitutes @code{X}; else if @code{T} was
7225 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
7226 be as many clauses as you need.  This may be combined with @code{.},
7227 @code{!}, @code{|}, and @code{*} as needed.
7228
7229
7230 @end table
7231
7232 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
7233 construct may contain other nested @samp{%} constructs or spaces, or
7234 even newlines.  They are processed as usual, as described above.
7235 Trailing white space in @code{X} is ignored.  White space may also
7236 appear anywhere on the left side of the colon in these constructs,
7237 except between @code{.} or @code{*} and the corresponding word.
7238
7239 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
7240 handled specifically in these constructs.  If another value of
7241 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
7242 @option{-W} switch is found later in the command line, the earlier
7243 switch value is ignored, except with @{@code{S}*@} where @code{S} is
7244 just one letter, which passes all matching options.
7245
7246 The character @samp{|} at the beginning of the predicate text is used to
7247 indicate that a command should be piped to the following command, but
7248 only if @option{-pipe} is specified.
7249
7250 It is built into GCC which switches take arguments and which do not.
7251 (You might think it would be useful to generalize this to allow each
7252 compiler's spec to say which switches take arguments.  But this cannot
7253 be done in a consistent fashion.  GCC cannot even decide which input
7254 files have been specified without knowing which switches take arguments,
7255 and it must know which input files to compile in order to tell which
7256 compilers to run).
7257
7258 GCC also knows implicitly that arguments starting in @option{-l} are to be
7259 treated as compiler output files, and passed to the linker in their
7260 proper position among the other output files.
7261
7262 @c man begin OPTIONS
7263
7264 @node Target Options
7265 @section Specifying Target Machine and Compiler Version
7266 @cindex target options
7267 @cindex cross compiling
7268 @cindex specifying machine version
7269 @cindex specifying compiler version and target machine
7270 @cindex compiler version, specifying
7271 @cindex target machine, specifying
7272
7273 The usual way to run GCC is to run the executable called @file{gcc}, or
7274 @file{<machine>-gcc} when cross-compiling, or
7275 @file{<machine>-gcc-<version>} to run a version other than the one that
7276 was installed last.  Sometimes this is inconvenient, so GCC provides
7277 options that will switch to another cross-compiler or version.
7278
7279 @table @gcctabopt
7280 @item -b @var{machine}
7281 @opindex b
7282 The argument @var{machine} specifies the target machine for compilation.
7283
7284 The value to use for @var{machine} is the same as was specified as the
7285 machine type when configuring GCC as a cross-compiler.  For
7286 example, if a cross-compiler was configured with @samp{configure
7287 arm-elf}, meaning to compile for an arm processor with elf binaries,
7288 then you would specify @option{-b arm-elf} to run that cross compiler.
7289 Because there are other options beginning with @option{-b}, the
7290 configuration must contain a hyphen. 
7291
7292 @item -V @var{version}
7293 @opindex V
7294 The argument @var{version} specifies which version of GCC to run.
7295 This is useful when multiple versions are installed.  For example,
7296 @var{version} might be @samp{4.0}, meaning to run GCC version 4.0.
7297 @end table
7298
7299 The @option{-V} and @option{-b} options work by running the
7300 @file{<machine>-gcc-<version>} executable, so there's no real reason to
7301 use them if you can just run that directly.
7302
7303 @node Submodel Options
7304 @section Hardware Models and Configurations
7305 @cindex submodel options
7306 @cindex specifying hardware config
7307 @cindex hardware models and configurations, specifying
7308 @cindex machine dependent options
7309
7310 Earlier we discussed the standard option @option{-b} which chooses among
7311 different installed compilers for completely different target
7312 machines, such as VAX vs.@: 68000 vs.@: 80386.
7313
7314 In addition, each of these target machine types can have its own
7315 special options, starting with @samp{-m}, to choose among various
7316 hardware models or configurations---for example, 68010 vs 68020,
7317 floating coprocessor or none.  A single installed version of the
7318 compiler can compile for any model or configuration, according to the
7319 options specified.
7320
7321 Some configurations of the compiler also support additional special
7322 options, usually for compatibility with other compilers on the same
7323 platform.
7324
7325 @c This list is ordered alphanumerically by subsection name.
7326 @c It should be the same order and spelling as these options are listed
7327 @c in Machine Dependent Options
7328
7329 @menu
7330 * ARC Options::
7331 * ARM Options::
7332 * AVR Options::
7333 * Blackfin Options::
7334 * CRIS Options::
7335 * CRX Options::
7336 * Darwin Options::
7337 * DEC Alpha Options::
7338 * DEC Alpha/VMS Options::
7339 * FRV Options::
7340 * GNU/Linux Options::
7341 * H8/300 Options::
7342 * HPPA Options::
7343 * i386 and x86-64 Options::
7344 * IA-64 Options::
7345 * M32C Options::
7346 * M32R/D Options::
7347 * M680x0 Options::
7348 * M68hc1x Options::
7349 * MCore Options::
7350 * MIPS Options::
7351 * MMIX Options::
7352 * MN10300 Options::
7353 * MT Options::
7354 * PDP-11 Options::
7355 * PowerPC Options::
7356 * RS/6000 and PowerPC Options::
7357 * S/390 and zSeries Options::
7358 * Score Options::
7359 * SH Options::
7360 * SPARC Options::
7361 * System V Options::
7362 * TMS320C3x/C4x Options::
7363 * V850 Options::
7364 * VAX Options::
7365 * x86-64 Options::
7366 * Xstormy16 Options::
7367 * Xtensa Options::
7368 * zSeries Options::
7369 @end menu
7370
7371 @node ARC Options
7372 @subsection ARC Options
7373 @cindex ARC Options
7374
7375 These options are defined for ARC implementations:
7376
7377 @table @gcctabopt
7378 @item -EL
7379 @opindex EL
7380 Compile code for little endian mode.  This is the default.
7381
7382 @item -EB
7383 @opindex EB
7384 Compile code for big endian mode.
7385
7386 @item -mmangle-cpu
7387 @opindex mmangle-cpu
7388 Prepend the name of the cpu to all public symbol names.
7389 In multiple-processor systems, there are many ARC variants with different
7390 instruction and register set characteristics.  This flag prevents code
7391 compiled for one cpu to be linked with code compiled for another.
7392 No facility exists for handling variants that are ``almost identical''.
7393 This is an all or nothing option.
7394
7395 @item -mcpu=@var{cpu}
7396 @opindex mcpu
7397 Compile code for ARC variant @var{cpu}.
7398 Which variants are supported depend on the configuration.
7399 All variants support @option{-mcpu=base}, this is the default.
7400
7401 @item -mtext=@var{text-section}
7402 @itemx -mdata=@var{data-section}
7403 @itemx -mrodata=@var{readonly-data-section}
7404 @opindex mtext
7405 @opindex mdata
7406 @opindex mrodata
7407 Put functions, data, and readonly data in @var{text-section},
7408 @var{data-section}, and @var{readonly-data-section} respectively
7409 by default.  This can be overridden with the @code{section} attribute.
7410 @xref{Variable Attributes}.
7411
7412 @end table
7413
7414 @node ARM Options
7415 @subsection ARM Options
7416 @cindex ARM options
7417
7418 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
7419 architectures:
7420
7421 @table @gcctabopt
7422 @item -mabi=@var{name}
7423 @opindex mabi
7424 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
7425 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
7426
7427 @item -mapcs-frame
7428 @opindex mapcs-frame
7429 Generate a stack frame that is compliant with the ARM Procedure Call
7430 Standard for all functions, even if this is not strictly necessary for
7431 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
7432 with this option will cause the stack frames not to be generated for
7433 leaf functions.  The default is @option{-mno-apcs-frame}.
7434
7435 @item -mapcs
7436 @opindex mapcs
7437 This is a synonym for @option{-mapcs-frame}.
7438
7439 @ignore
7440 @c not currently implemented
7441 @item -mapcs-stack-check
7442 @opindex mapcs-stack-check
7443 Generate code to check the amount of stack space available upon entry to
7444 every function (that actually uses some stack space).  If there is
7445 insufficient space available then either the function
7446 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
7447 called, depending upon the amount of stack space required.  The run time
7448 system is required to provide these functions.  The default is
7449 @option{-mno-apcs-stack-check}, since this produces smaller code.
7450
7451 @c not currently implemented
7452 @item -mapcs-float
7453 @opindex mapcs-float
7454 Pass floating point arguments using the float point registers.  This is
7455 one of the variants of the APCS@.  This option is recommended if the
7456 target hardware has a floating point unit or if a lot of floating point
7457 arithmetic is going to be performed by the code.  The default is
7458 @option{-mno-apcs-float}, since integer only code is slightly increased in
7459 size if @option{-mapcs-float} is used.
7460
7461 @c not currently implemented
7462 @item -mapcs-reentrant
7463 @opindex mapcs-reentrant
7464 Generate reentrant, position independent code.  The default is
7465 @option{-mno-apcs-reentrant}.
7466 @end ignore
7467
7468 @item -mthumb-interwork
7469 @opindex mthumb-interwork
7470 Generate code which supports calling between the ARM and Thumb
7471 instruction sets.  Without this option the two instruction sets cannot
7472 be reliably used inside one program.  The default is
7473 @option{-mno-thumb-interwork}, since slightly larger code is generated
7474 when @option{-mthumb-interwork} is specified.
7475
7476 @item -mno-sched-prolog
7477 @opindex mno-sched-prolog
7478 Prevent the reordering of instructions in the function prolog, or the
7479 merging of those instruction with the instructions in the function's
7480 body.  This means that all functions will start with a recognizable set
7481 of instructions (or in fact one of a choice from a small set of
7482 different function prologues), and this information can be used to
7483 locate the start if functions inside an executable piece of code.  The
7484 default is @option{-msched-prolog}.
7485
7486 @item -mhard-float
7487 @opindex mhard-float
7488 Generate output containing floating point instructions.  This is the
7489 default.
7490
7491 @item -msoft-float
7492 @opindex msoft-float
7493 Generate output containing library calls for floating point.
7494 @strong{Warning:} the requisite libraries are not available for all ARM
7495 targets.  Normally the facilities of the machine's usual C compiler are
7496 used, but this cannot be done directly in cross-compilation.  You must make
7497 your own arrangements to provide suitable library functions for
7498 cross-compilation.
7499
7500 @option{-msoft-float} changes the calling convention in the output file;
7501 therefore, it is only useful if you compile @emph{all} of a program with
7502 this option.  In particular, you need to compile @file{libgcc.a}, the
7503 library that comes with GCC, with @option{-msoft-float} in order for
7504 this to work.
7505
7506 @item -mfloat-abi=@var{name}
7507 @opindex mfloat-abi
7508 Specifies which ABI to use for floating point values.  Permissible values
7509 are: @samp{soft}, @samp{softfp} and @samp{hard}.
7510
7511 @samp{soft} and @samp{hard} are equivalent to @option{-msoft-float}
7512 and @option{-mhard-float} respectively.  @samp{softfp} allows the generation
7513 of floating point instructions, but still uses the soft-float calling
7514 conventions.
7515
7516 @item -mlittle-endian
7517 @opindex mlittle-endian
7518 Generate code for a processor running in little-endian mode.  This is
7519 the default for all standard configurations.
7520
7521 @item -mbig-endian
7522 @opindex mbig-endian
7523 Generate code for a processor running in big-endian mode; the default is
7524 to compile code for a little-endian processor.
7525
7526 @item -mwords-little-endian
7527 @opindex mwords-little-endian
7528 This option only applies when generating code for big-endian processors.
7529 Generate code for a little-endian word order but a big-endian byte
7530 order.  That is, a byte order of the form @samp{32107654}.  Note: this
7531 option should only be used if you require compatibility with code for
7532 big-endian ARM processors generated by versions of the compiler prior to
7533 2.8.
7534
7535 @item -mcpu=@var{name}
7536 @opindex mcpu
7537 This specifies the name of the target ARM processor.  GCC uses this name
7538 to determine what kind of instructions it can emit when generating
7539 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
7540 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
7541 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
7542 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
7543 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
7544 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
7545 @samp{arm8}, @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
7546 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
7547 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
7548 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
7549 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
7550 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
7551 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
7552 @samp{arm1176jz-s}, @samp{arm1176jzf-s}, @samp{xscale}, @samp{iwmmxt},
7553 @samp{ep9312}.
7554
7555 @itemx -mtune=@var{name}
7556 @opindex mtune
7557 This option is very similar to the @option{-mcpu=} option, except that
7558 instead of specifying the actual target processor type, and hence
7559 restricting which instructions can be used, it specifies that GCC should
7560 tune the performance of the code as if the target were of the type
7561 specified in this option, but still choosing the instructions that it
7562 will generate based on the cpu specified by a @option{-mcpu=} option.
7563 For some ARM implementations better performance can be obtained by using
7564 this option.
7565
7566 @item -march=@var{name}
7567 @opindex march
7568 This specifies the name of the target ARM architecture.  GCC uses this
7569 name to determine what kind of instructions it can emit when generating
7570 assembly code.  This option can be used in conjunction with or instead
7571 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
7572 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
7573 @samp{armv5}, @samp{armv5t}, @samp{armv5te}, @samp{armv6}, @samp{armv6j},
7574 @samp{iwmmxt}, @samp{ep9312}.
7575
7576 @item -mfpu=@var{name}
7577 @itemx -mfpe=@var{number}
7578 @itemx -mfp=@var{number}
7579 @opindex mfpu
7580 @opindex mfpe
7581 @opindex mfp
7582 This specifies what floating point hardware (or hardware emulation) is
7583 available on the target.  Permissible names are: @samp{fpa}, @samp{fpe2},
7584 @samp{fpe3}, @samp{maverick}, @samp{vfp}.  @option{-mfp} and @option{-mfpe}
7585 are synonyms for @option{-mfpu}=@samp{fpe}@var{number}, for compatibility
7586 with older versions of GCC@.
7587
7588 If @option{-msoft-float} is specified this specifies the format of
7589 floating point values.
7590
7591 @item -mstructure-size-boundary=@var{n}
7592 @opindex mstructure-size-boundary
7593 The size of all structures and unions will be rounded up to a multiple
7594 of the number of bits set by this option.  Permissible values are 8, 32
7595 and 64.  The default value varies for different toolchains.  For the COFF
7596 targeted toolchain the default value is 8.  A value of 64 is only allowed
7597 if the underlying ABI supports it.
7598
7599 Specifying the larger number can produce faster, more efficient code, but
7600 can also increase the size of the program.  Different values are potentially
7601 incompatible.  Code compiled with one value cannot necessarily expect to
7602 work with code or libraries compiled with another value, if they exchange
7603 information using structures or unions.
7604
7605 @item -mabort-on-noreturn
7606 @opindex mabort-on-noreturn
7607 Generate a call to the function @code{abort} at the end of a
7608 @code{noreturn} function.  It will be executed if the function tries to
7609 return.
7610
7611 @item -mlong-calls
7612 @itemx -mno-long-calls
7613 @opindex mlong-calls
7614 @opindex mno-long-calls
7615 Tells the compiler to perform function calls by first loading the
7616 address of the function into a register and then performing a subroutine
7617 call on this register.  This switch is needed if the target function
7618 will lie outside of the 64 megabyte addressing range of the offset based
7619 version of subroutine call instruction.
7620
7621 Even if this switch is enabled, not all function calls will be turned
7622 into long calls.  The heuristic is that static functions, functions
7623 which have the @samp{short-call} attribute, functions that are inside
7624 the scope of a @samp{#pragma no_long_calls} directive and functions whose
7625 definitions have already been compiled within the current compilation
7626 unit, will not be turned into long calls.  The exception to this rule is
7627 that weak function definitions, functions with the @samp{long-call}
7628 attribute or the @samp{section} attribute, and functions that are within
7629 the scope of a @samp{#pragma long_calls} directive, will always be
7630 turned into long calls.
7631
7632 This feature is not enabled by default.  Specifying
7633 @option{-mno-long-calls} will restore the default behavior, as will
7634 placing the function calls within the scope of a @samp{#pragma
7635 long_calls_off} directive.  Note these switches have no effect on how
7636 the compiler generates code to handle function calls via function
7637 pointers.
7638
7639 @item -mnop-fun-dllimport
7640 @opindex mnop-fun-dllimport
7641 Disable support for the @code{dllimport} attribute.
7642
7643 @item -msingle-pic-base
7644 @opindex msingle-pic-base
7645 Treat the register used for PIC addressing as read-only, rather than
7646 loading it in the prologue for each function.  The run-time system is
7647 responsible for initializing this register with an appropriate value
7648 before execution begins.
7649
7650 @item -mpic-register=@var{reg}
7651 @opindex mpic-register
7652 Specify the register to be used for PIC addressing.  The default is R10
7653 unless stack-checking is enabled, when R9 is used.
7654
7655 @item -mcirrus-fix-invalid-insns
7656 @opindex mcirrus-fix-invalid-insns
7657 @opindex mno-cirrus-fix-invalid-insns
7658 Insert NOPs into the instruction stream to in order to work around
7659 problems with invalid Maverick instruction combinations.  This option
7660 is only valid if the @option{-mcpu=ep9312} option has been used to
7661 enable generation of instructions for the Cirrus Maverick floating
7662 point co-processor.  This option is not enabled by default, since the
7663 problem is only present in older Maverick implementations.  The default
7664 can be re-enabled by use of the @option{-mno-cirrus-fix-invalid-insns}
7665 switch.
7666
7667 @item -mpoke-function-name
7668 @opindex mpoke-function-name
7669 Write the name of each function into the text section, directly
7670 preceding the function prologue.  The generated code is similar to this:
7671
7672 @smallexample
7673      t0
7674          .ascii "arm_poke_function_name", 0
7675          .align
7676      t1
7677          .word 0xff000000 + (t1 - t0)
7678      arm_poke_function_name
7679          mov     ip, sp
7680          stmfd   sp!, @{fp, ip, lr, pc@}
7681          sub     fp, ip, #4
7682 @end smallexample
7683
7684 When performing a stack backtrace, code can inspect the value of
7685 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
7686 location @code{pc - 12} and the top 8 bits are set, then we know that
7687 there is a function name embedded immediately preceding this location
7688 and has length @code{((pc[-3]) & 0xff000000)}.
7689
7690 @item -mthumb
7691 @opindex mthumb
7692 Generate code for the 16-bit Thumb instruction set.  The default is to
7693 use the 32-bit ARM instruction set.
7694
7695 @item -mtpcs-frame
7696 @opindex mtpcs-frame
7697 Generate a stack frame that is compliant with the Thumb Procedure Call
7698 Standard for all non-leaf functions.  (A leaf function is one that does
7699 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
7700
7701 @item -mtpcs-leaf-frame
7702 @opindex mtpcs-leaf-frame
7703 Generate a stack frame that is compliant with the Thumb Procedure Call
7704 Standard for all leaf functions.  (A leaf function is one that does
7705 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
7706
7707 @item -mcallee-super-interworking
7708 @opindex mcallee-super-interworking
7709 Gives all externally visible functions in the file being compiled an ARM
7710 instruction set header which switches to Thumb mode before executing the
7711 rest of the function.  This allows these functions to be called from
7712 non-interworking code.
7713
7714 @item -mcaller-super-interworking
7715 @opindex mcaller-super-interworking
7716 Allows calls via function pointers (including virtual functions) to
7717 execute correctly regardless of whether the target code has been
7718 compiled for interworking or not.  There is a small overhead in the cost
7719 of executing a function pointer if this option is enabled.
7720
7721 @item -mtp=@var{name}
7722 @opindex mtp
7723 Specify the access model for the thread local storage pointer.  The valid
7724 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
7725 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
7726 (supported in the arm6k architecture), and @option{auto}, which uses the
7727 best available method for the selected processor.  The default setting is
7728 @option{auto}.
7729
7730 @end table
7731
7732 @node AVR Options
7733 @subsection AVR Options
7734 @cindex AVR Options
7735
7736 These options are defined for AVR implementations:
7737
7738 @table @gcctabopt
7739 @item -mmcu=@var{mcu}
7740 @opindex mmcu
7741 Specify ATMEL AVR instruction set or MCU type.
7742
7743 Instruction set avr1 is for the minimal AVR core, not supported by the C
7744 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
7745 attiny11, attiny12, attiny15, attiny28).
7746
7747 Instruction set avr2 (default) is for the classic AVR core with up to
7748 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
7749 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
7750 at90c8534, at90s8535).
7751
7752 Instruction set avr3 is for the classic AVR core with up to 128K program
7753 memory space (MCU types: atmega103, atmega603, at43usb320, at76c711).
7754
7755 Instruction set avr4 is for the enhanced AVR core with up to 8K program
7756 memory space (MCU types: atmega8, atmega83, atmega85).
7757
7758 Instruction set avr5 is for the enhanced AVR core with up to 128K program
7759 memory space (MCU types: atmega16, atmega161, atmega163, atmega32, atmega323,
7760 atmega64, atmega128, at43usb355, at94k).
7761
7762 @item -msize
7763 @opindex msize
7764 Output instruction sizes to the asm file.
7765
7766 @item -minit-stack=@var{N}
7767 @opindex minit-stack
7768 Specify the initial stack address, which may be a symbol or numeric value,
7769 @samp{__stack} is the default.
7770
7771 @item -mno-interrupts
7772 @opindex mno-interrupts
7773 Generated code is not compatible with hardware interrupts.
7774 Code size will be smaller.
7775
7776 @item -mcall-prologues
7777 @opindex mcall-prologues
7778 Functions prologues/epilogues expanded as call to appropriate
7779 subroutines.  Code size will be smaller.
7780
7781 @item -mno-tablejump
7782 @opindex mno-tablejump
7783 Do not generate tablejump insns which sometimes increase code size.
7784
7785 @item -mtiny-stack
7786 @opindex mtiny-stack
7787 Change only the low 8 bits of the stack pointer.
7788
7789 @item -mint8
7790 @opindex mint8
7791 Assume int to be 8 bit integer.  This affects the sizes of all types: A
7792 char will be 1 byte, an int will be 1 byte, an long will be 2 bytes
7793 and long long will be 4 bytes.  Please note that this option does not
7794 comply to the C standards, but it will provide you with smaller code
7795 size.
7796 @end table
7797
7798 @node Blackfin Options
7799 @subsection Blackfin Options
7800 @cindex Blackfin Options
7801
7802 @table @gcctabopt
7803 @item -momit-leaf-frame-pointer
7804 @opindex momit-leaf-frame-pointer
7805 Don't keep the frame pointer in a register for leaf functions.  This
7806 avoids the instructions to save, set up and restore frame pointers and
7807 makes an extra register available in leaf functions.  The option
7808 @option{-fomit-frame-pointer} removes the frame pointer for all functions
7809 which might make debugging harder.
7810
7811 @item -mspecld-anomaly
7812 @opindex mspecld-anomaly
7813 When enabled, the compiler will ensure that the generated code does not
7814 contain speculative loads after jump instructions.  This option is enabled
7815 by default.
7816
7817 @item -mno-specld-anomaly
7818 @opindex mno-specld-anomaly
7819 Don't generate extra code to prevent speculative loads from occurring.
7820
7821 @item -mcsync-anomaly
7822 @opindex mcsync-anomaly
7823 When enabled, the compiler will ensure that the generated code does not
7824 contain CSYNC or SSYNC instructions too soon after conditional branches.
7825 This option is enabled by default.
7826
7827 @item -mno-csync-anomaly
7828 @opindex mno-csync-anomaly
7829 Don't generate extra code to prevent CSYNC or SSYNC instructions from
7830 occurring too soon after a conditional branch.
7831
7832 @item -mlow-64k
7833 @opindex mlow-64k
7834 When enabled, the compiler is free to take advantage of the knowledge that
7835 the entire program fits into the low 64k of memory.
7836
7837 @item -mno-low-64k
7838 @opindex mno-low-64k
7839 Assume that the program is arbitrarily large.  This is the default.
7840
7841 @item -mid-shared-library
7842 @opindex mid-shared-library
7843 Generate code that supports shared libraries via the library ID method.
7844 This allows for execute in place and shared libraries in an environment
7845 without virtual memory management.  This option implies @option{-fPIC}.
7846
7847 @item -mno-id-shared-library
7848 @opindex mno-id-shared-library
7849 Generate code that doesn't assume ID based shared libraries are being used.
7850 This is the default.
7851
7852 @item -mshared-library-id=n
7853 @opindex mshared-library-id
7854 Specified the identification number of the ID based shared library being
7855 compiled.  Specifying a value of 0 will generate more compact code, specifying
7856 other values will force the allocation of that number to the current
7857 library but is no more space or time efficient than omitting this option.
7858
7859 @item -mlong-calls
7860 @itemx -mno-long-calls
7861 @opindex mlong-calls
7862 @opindex mno-long-calls
7863 Tells the compiler to perform function calls by first loading the
7864 address of the function into a register and then performing a subroutine
7865 call on this register.  This switch is needed if the target function
7866 will lie outside of the 24 bit addressing range of the offset based
7867 version of subroutine call instruction.
7868
7869 This feature is not enabled by default.  Specifying
7870 @option{-mno-long-calls} will restore the default behavior.  Note these
7871 switches have no effect on how the compiler generates code to handle
7872 function calls via function pointers.
7873 @end table
7874
7875 @node CRIS Options
7876 @subsection CRIS Options
7877 @cindex CRIS Options
7878
7879 These options are defined specifically for the CRIS ports.
7880
7881 @table @gcctabopt
7882 @item -march=@var{architecture-type}
7883 @itemx -mcpu=@var{architecture-type}
7884 @opindex march
7885 @opindex mcpu
7886 Generate code for the specified architecture.  The choices for
7887 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
7888 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
7889 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
7890 @samp{v10}.
7891
7892 @item -mtune=@var{architecture-type}
7893 @opindex mtune
7894 Tune to @var{architecture-type} everything applicable about the generated
7895 code, except for the ABI and the set of available instructions.  The
7896 choices for @var{architecture-type} are the same as for
7897 @option{-march=@var{architecture-type}}.
7898
7899 @item -mmax-stack-frame=@var{n}
7900 @opindex mmax-stack-frame
7901 Warn when the stack frame of a function exceeds @var{n} bytes.
7902
7903 @item -melinux-stacksize=@var{n}
7904 @opindex melinux-stacksize
7905 Only available with the @samp{cris-axis-aout} target.  Arranges for
7906 indications in the program to the kernel loader that the stack of the
7907 program should be set to @var{n} bytes.
7908
7909 @item -metrax4
7910 @itemx -metrax100
7911 @opindex metrax4
7912 @opindex metrax100
7913 The options @option{-metrax4} and @option{-metrax100} are synonyms for
7914 @option{-march=v3} and @option{-march=v8} respectively.
7915
7916 @item -mmul-bug-workaround
7917 @itemx -mno-mul-bug-workaround
7918 @opindex mmul-bug-workaround
7919 @opindex mno-mul-bug-workaround
7920 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
7921 models where it applies.  This option is active by default.
7922
7923 @item -mpdebug
7924 @opindex mpdebug
7925 Enable CRIS-specific verbose debug-related information in the assembly
7926 code.  This option also has the effect to turn off the @samp{#NO_APP}
7927 formatted-code indicator to the assembler at the beginning of the
7928 assembly file.
7929
7930 @item -mcc-init
7931 @opindex mcc-init
7932 Do not use condition-code results from previous instruction; always emit
7933 compare and test instructions before use of condition codes.
7934
7935 @item -mno-side-effects
7936 @opindex mno-side-effects
7937 Do not emit instructions with side-effects in addressing modes other than
7938 post-increment.
7939
7940 @item -mstack-align
7941 @itemx -mno-stack-align
7942 @itemx -mdata-align
7943 @itemx -mno-data-align
7944 @itemx -mconst-align
7945 @itemx -mno-const-align
7946 @opindex mstack-align
7947 @opindex mno-stack-align
7948 @opindex mdata-align
7949 @opindex mno-data-align
7950 @opindex mconst-align
7951 @opindex mno-const-align
7952 These options (no-options) arranges (eliminate arrangements) for the
7953 stack-frame, individual data and constants to be aligned for the maximum
7954 single data access size for the chosen CPU model.  The default is to
7955 arrange for 32-bit alignment.  ABI details such as structure layout are
7956 not affected by these options.
7957
7958 @item -m32-bit
7959 @itemx -m16-bit
7960 @itemx -m8-bit
7961 @opindex m32-bit
7962 @opindex m16-bit
7963 @opindex m8-bit
7964 Similar to the stack- data- and const-align options above, these options
7965 arrange for stack-frame, writable data and constants to all be 32-bit,
7966 16-bit or 8-bit aligned.  The default is 32-bit alignment.
7967
7968 @item -mno-prologue-epilogue
7969 @itemx -mprologue-epilogue
7970 @opindex mno-prologue-epilogue
7971 @opindex mprologue-epilogue
7972 With @option{-mno-prologue-epilogue}, the normal function prologue and
7973 epilogue that sets up the stack-frame are omitted and no return
7974 instructions or return sequences are generated in the code.  Use this
7975 option only together with visual inspection of the compiled code: no
7976 warnings or errors are generated when call-saved registers must be saved,
7977 or storage for local variable needs to be allocated.
7978
7979 @item -mno-gotplt
7980 @itemx -mgotplt
7981 @opindex mno-gotplt
7982 @opindex mgotplt
7983 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
7984 instruction sequences that load addresses for functions from the PLT part
7985 of the GOT rather than (traditional on other architectures) calls to the
7986 PLT@.  The default is @option{-mgotplt}.
7987
7988 @item -maout
7989 @opindex maout
7990 Legacy no-op option only recognized with the cris-axis-aout target.
7991
7992 @item -melf
7993 @opindex melf
7994 Legacy no-op option only recognized with the cris-axis-elf and
7995 cris-axis-linux-gnu targets.
7996
7997 @item -melinux
7998 @opindex melinux
7999 Only recognized with the cris-axis-aout target, where it selects a
8000 GNU/linux-like multilib, include files and instruction set for
8001 @option{-march=v8}.
8002
8003 @item -mlinux
8004 @opindex mlinux
8005 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
8006
8007 @item -sim
8008 @opindex sim
8009 This option, recognized for the cris-axis-aout and cris-axis-elf arranges
8010 to link with input-output functions from a simulator library.  Code,
8011 initialized data and zero-initialized data are allocated consecutively.
8012
8013 @item -sim2
8014 @opindex sim2
8015 Like @option{-sim}, but pass linker options to locate initialized data at
8016 0x40000000 and zero-initialized data at 0x80000000.
8017 @end table
8018
8019 @node CRX Options
8020 @subsection CRX Options
8021 @cindex CRX Options
8022
8023 These options are defined specifically for the CRX ports.
8024
8025 @table @gcctabopt
8026
8027 @item -mmac
8028 @opindex mmac
8029 Enable the use of multiply-accumulate instructions. Disabled by default.
8030
8031 @item -mpush-args
8032 @opindex mpush-args
8033 Push instructions will be used to pass outgoing arguments when functions
8034 are called. Enabled by default.
8035 @end table
8036
8037 @node Darwin Options
8038 @subsection Darwin Options
8039 @cindex Darwin options
8040
8041 These options are defined for all architectures running the Darwin operating
8042 system.
8043
8044 FSF GCC on Darwin does not create ``fat'' object files; it will create
8045 an object file for the single architecture that it was built to
8046 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
8047 @option{-arch} options are used; it does so by running the compiler or
8048 linker multiple times and joining the results together with
8049 @file{lipo}.
8050
8051 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
8052 @samp{i686}) is determined by the flags that specify the ISA
8053 that GCC is targetting, like @option{-mcpu} or @option{-march}.  The
8054 @option{-force_cpusubtype_ALL} option can be used to override this.
8055
8056 The Darwin tools vary in their behavior when presented with an ISA
8057 mismatch.  The assembler, @file{as}, will only permit instructions to
8058 be used that are valid for the subtype of the file it is generating,
8059 so you cannot put 64-bit instructions in an @samp{ppc750} object file.
8060 The linker for shared libraries, @file{/usr/bin/libtool}, will fail
8061 and print an error if asked to create a shared library with a less
8062 restrictive subtype than its input files (for instance, trying to put
8063 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
8064 for executables, @file{ld}, will quietly give the executable the most
8065 restrictive subtype of any of its input files.
8066
8067 @table @gcctabopt
8068 @item -F@var{dir}
8069 @opindex F
8070 Add the framework directory @var{dir} to the head of the list of
8071 directories to be searched for header files.  These directories are
8072 interleaved with those specified by @option{-I} options and are
8073 scanned in a left-to-right order.
8074
8075 A framework directory is a directory with frameworks in it.  A
8076 framework is a directory with a @samp{"Headers"} and/or
8077 @samp{"PrivateHeaders"} directory contained directly in it that ends
8078 in @samp{".framework"}.  The name of a framework is the name of this
8079 directory excluding the @samp{".framework"}.  Headers associated with
8080 the framework are found in one of those two directories, with
8081 @samp{"Headers"} being searched first.  A subframework is a framework
8082 directory that is in a framework's @samp{"Frameworks"} directory.
8083 Includes of subframework headers can only appear in a header of a
8084 framework that contains the subframework, or in a sibling subframework
8085 header.  Two subframeworks are siblings if they occur in the same
8086 framework.  A subframework should not have the same name as a
8087 framework, a warning will be issued if this is violated.  Currently a
8088 subframework cannot have subframeworks, in the future, the mechanism
8089 may be extended to support this.  The standard frameworks can be found
8090 in @samp{"/System/Library/Frameworks"} and
8091 @samp{"/Library/Frameworks"}.  An example include looks like
8092 @code{#include <Framework/header.h>}, where @samp{Framework} denotes
8093 the name of the framework and header.h is found in the
8094 @samp{"PrivateHeaders"} or @samp{"Headers"} directory.
8095
8096 @item -gused
8097 @opindex -gused
8098 Emit debugging information for symbols that are used.  For STABS
8099 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
8100 This is by default ON@.
8101
8102 @item -gfull
8103 @opindex -gfull
8104 Emit debugging information for all symbols and types.
8105
8106 @item -mmacosx-version-min=@var{version}
8107 The earliest version of MacOS X that this executable will run on
8108 is @var{version}.  Typical values of @var{version} include @code{10.1},
8109 @code{10.2}, and @code{10.3.9}.
8110
8111 The default for this option is to make choices that seem to be most
8112 useful.  
8113
8114 @item -mkernel
8115 @opindex mkernel
8116 Enable kernel development mode.  The @option{-mkernel} option sets
8117 @option{-static}, @option{-fno-common}, @option{-fno-cxa-atexit},
8118 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
8119 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
8120 applicable.  This mode also sets @option{-mno-altivec},
8121 @option{-msoft-float}, @option{-fno-builtin} and
8122 @option{-mlong-branch} for PowerPC targets.
8123
8124 @item -mone-byte-bool
8125 @opindex -mone-byte-bool
8126 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
8127 By default @samp{sizeof(bool)} is @samp{4} when compiling for
8128 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
8129 option has no effect on x86.
8130
8131 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
8132 to generate code that is not binary compatible with code generated
8133 without that switch.  Using this switch may require recompiling all
8134 other modules in a program, including system libraries.  Use this
8135 switch to conform to a non-default data model.
8136
8137 @item -mfix-and-continue
8138 @itemx -ffix-and-continue
8139 @itemx -findirect-data
8140 @opindex mfix-and-continue
8141 @opindex ffix-and-continue
8142 @opindex findirect-data
8143 Generate code suitable for fast turn around development.  Needed to
8144 enable gdb to dynamically load @code{.o} files into already running
8145 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
8146 are provided for backwards compatibility.
8147
8148 @item -all_load
8149 @opindex all_load
8150 Loads all members of static archive libraries.
8151 See man ld(1) for more information.
8152
8153 @item -arch_errors_fatal
8154 @opindex arch_errors_fatal
8155 Cause the errors having to do with files that have the wrong architecture
8156 to be fatal.
8157
8158 @item -bind_at_load
8159 @opindex bind_at_load
8160 Causes the output file to be marked such that the dynamic linker will
8161 bind all undefined references when the file is loaded or launched.
8162
8163 @item -bundle
8164 @opindex bundle
8165 Produce a Mach-o bundle format file.
8166 See man ld(1) for more information.
8167
8168 @item -bundle_loader @var{executable}
8169 @opindex bundle_loader
8170 This option specifies the @var{executable} that will be loading the build
8171 output file being linked.  See man ld(1) for more information.
8172
8173 @item -dynamiclib
8174 @opindex -dynamiclib
8175 When passed this option, GCC will produce a dynamic library instead of
8176 an executable when linking, using the Darwin @file{libtool} command.
8177
8178 @item -force_cpusubtype_ALL
8179 @opindex -force_cpusubtype_ALL
8180 This causes GCC's output file to have the @var{ALL} subtype, instead of
8181 one controlled by the @option{-mcpu} or @option{-march} option.
8182
8183 @item -allowable_client  @var{client_name}
8184 @itemx -client_name
8185 @itemx -compatibility_version
8186 @itemx -current_version
8187 @itemx -dead_strip
8188 @itemx -dependency-file
8189 @itemx -dylib_file
8190 @itemx -dylinker_install_name
8191 @itemx -dynamic
8192 @itemx -exported_symbols_list
8193 @itemx -filelist
8194 @itemx -flat_namespace
8195 @itemx -force_flat_namespace
8196 @itemx -headerpad_max_install_names
8197 @itemx -image_base
8198 @itemx -init
8199 @itemx -install_name
8200 @itemx -keep_private_externs
8201 @itemx -multi_module
8202 @itemx -multiply_defined
8203 @itemx -multiply_defined_unused
8204 @itemx -noall_load
8205 @itemx -no_dead_strip_inits_and_terms
8206 @itemx -nofixprebinding
8207 @itemx -nomultidefs
8208 @itemx -noprebind
8209 @itemx -noseglinkedit
8210 @itemx -pagezero_size
8211 @itemx -prebind
8212 @itemx -prebind_all_twolevel_modules
8213 @itemx -private_bundle
8214 @itemx -read_only_relocs
8215 @itemx -sectalign
8216 @itemx -sectobjectsymbols
8217 @itemx -whyload
8218 @itemx -seg1addr
8219 @itemx -sectcreate
8220 @itemx -sectobjectsymbols
8221 @itemx -sectorder
8222 @itemx -segaddr
8223 @itemx -segs_read_only_addr
8224 @itemx -segs_read_write_addr
8225 @itemx -seg_addr_table
8226 @itemx -seg_addr_table_filename
8227 @itemx -seglinkedit
8228 @itemx -segprot
8229 @itemx -segs_read_only_addr
8230 @itemx -segs_read_write_addr
8231 @itemx -single_module
8232 @itemx -static
8233 @itemx -sub_library
8234 @itemx -sub_umbrella
8235 @itemx -twolevel_namespace
8236 @itemx -umbrella
8237 @itemx -undefined
8238 @itemx -unexported_symbols_list
8239 @itemx -weak_reference_mismatches
8240 @itemx -whatsloaded
8241
8242 @opindex allowable_client
8243 @opindex client_name
8244 @opindex compatibility_version
8245 @opindex current_version
8246 @opindex dead_strip
8247 @opindex dependency-file
8248 @opindex dylib_file
8249 @opindex dylinker_install_name
8250 @opindex dynamic
8251 @opindex exported_symbols_list
8252 @opindex filelist
8253 @opindex flat_namespace
8254 @opindex force_flat_namespace
8255 @opindex headerpad_max_install_names
8256 @opindex image_base
8257 @opindex init
8258 @opindex install_name
8259 @opindex keep_private_externs
8260 @opindex multi_module
8261 @opindex multiply_defined
8262 @opindex multiply_defined_unused
8263 @opindex noall_load
8264 @opindex no_dead_strip_inits_and_terms
8265 @opindex nofixprebinding
8266 @opindex nomultidefs
8267 @opindex noprebind
8268 @opindex noseglinkedit
8269 @opindex pagezero_size
8270 @opindex prebind
8271 @opindex prebind_all_twolevel_modules
8272 @opindex private_bundle
8273 @opindex read_only_relocs
8274 @opindex sectalign
8275 @opindex sectobjectsymbols
8276 @opindex whyload
8277 @opindex seg1addr
8278 @opindex sectcreate
8279 @opindex sectobjectsymbols
8280 @opindex sectorder
8281 @opindex segaddr
8282 @opindex segs_read_only_addr
8283 @opindex segs_read_write_addr
8284 @opindex seg_addr_table
8285 @opindex seg_addr_table_filename
8286 @opindex seglinkedit
8287 @opindex segprot
8288 @opindex segs_read_only_addr
8289 @opindex segs_read_write_addr
8290 @opindex single_module
8291 @opindex static
8292 @opindex sub_library
8293 @opindex sub_umbrella
8294 @opindex twolevel_namespace
8295 @opindex umbrella
8296 @opindex undefined
8297 @opindex unexported_symbols_list
8298 @opindex weak_reference_mismatches
8299 @opindex whatsloaded
8300
8301 These options are passed to the Darwin linker.  The Darwin linker man page
8302 describes them in detail.
8303 @end table
8304
8305 @node DEC Alpha Options
8306 @subsection DEC Alpha Options
8307
8308 These @samp{-m} options are defined for the DEC Alpha implementations:
8309
8310 @table @gcctabopt
8311 @item -mno-soft-float
8312 @itemx -msoft-float
8313 @opindex mno-soft-float
8314 @opindex msoft-float
8315 Use (do not use) the hardware floating-point instructions for
8316 floating-point operations.  When @option{-msoft-float} is specified,
8317 functions in @file{libgcc.a} will be used to perform floating-point
8318 operations.  Unless they are replaced by routines that emulate the
8319 floating-point operations, or compiled in such a way as to call such
8320 emulations routines, these routines will issue floating-point
8321 operations.   If you are compiling for an Alpha without floating-point
8322 operations, you must ensure that the library is built so as not to call
8323 them.
8324
8325 Note that Alpha implementations without floating-point operations are
8326 required to have floating-point registers.
8327
8328 @item -mfp-reg
8329 @itemx -mno-fp-regs
8330 @opindex mfp-reg
8331 @opindex mno-fp-regs
8332 Generate code that uses (does not use) the floating-point register set.
8333 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
8334 register set is not used, floating point operands are passed in integer
8335 registers as if they were integers and floating-point results are passed
8336 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
8337 so any function with a floating-point argument or return value called by code
8338 compiled with @option{-mno-fp-regs} must also be compiled with that
8339 option.
8340
8341 A typical use of this option is building a kernel that does not use,
8342 and hence need not save and restore, any floating-point registers.
8343
8344 @item -mieee
8345 @opindex mieee
8346 The Alpha architecture implements floating-point hardware optimized for
8347 maximum performance.  It is mostly compliant with the IEEE floating
8348 point standard.  However, for full compliance, software assistance is
8349 required.  This option generates code fully IEEE compliant code
8350 @emph{except} that the @var{inexact-flag} is not maintained (see below).
8351 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
8352 defined during compilation.  The resulting code is less efficient but is
8353 able to correctly support denormalized numbers and exceptional IEEE
8354 values such as not-a-number and plus/minus infinity.  Other Alpha
8355 compilers call this option @option{-ieee_with_no_inexact}.
8356
8357 @item -mieee-with-inexact
8358 @opindex mieee-with-inexact
8359 This is like @option{-mieee} except the generated code also maintains
8360 the IEEE @var{inexact-flag}.  Turning on this option causes the
8361 generated code to implement fully-compliant IEEE math.  In addition to
8362 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
8363 macro.  On some Alpha implementations the resulting code may execute
8364 significantly slower than the code generated by default.  Since there is
8365 very little code that depends on the @var{inexact-flag}, you should
8366 normally not specify this option.  Other Alpha compilers call this
8367 option @option{-ieee_with_inexact}.
8368
8369 @item -mfp-trap-mode=@var{trap-mode}
8370 @opindex mfp-trap-mode
8371 This option controls what floating-point related traps are enabled.
8372 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
8373 The trap mode can be set to one of four values:
8374
8375 @table @samp
8376 @item n
8377 This is the default (normal) setting.  The only traps that are enabled
8378 are the ones that cannot be disabled in software (e.g., division by zero
8379 trap).
8380
8381 @item u
8382 In addition to the traps enabled by @samp{n}, underflow traps are enabled
8383 as well.
8384
8385 @item su
8386 Like @samp{u}, but the instructions are marked to be safe for software
8387 completion (see Alpha architecture manual for details).
8388
8389 @item sui
8390 Like @samp{su}, but inexact traps are enabled as well.
8391 @end table
8392
8393 @item -mfp-rounding-mode=@var{rounding-mode}
8394 @opindex mfp-rounding-mode
8395 Selects the IEEE rounding mode.  Other Alpha compilers call this option
8396 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
8397 of:
8398
8399 @table @samp
8400 @item n
8401 Normal IEEE rounding mode.  Floating point numbers are rounded towards
8402 the nearest machine number or towards the even machine number in case
8403 of a tie.
8404
8405 @item m
8406 Round towards minus infinity.
8407
8408 @item c
8409 Chopped rounding mode.  Floating point numbers are rounded towards zero.
8410
8411 @item d
8412 Dynamic rounding mode.  A field in the floating point control register
8413 (@var{fpcr}, see Alpha architecture reference manual) controls the
8414 rounding mode in effect.  The C library initializes this register for
8415 rounding towards plus infinity.  Thus, unless your program modifies the
8416 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
8417 @end table
8418
8419 @item -mtrap-precision=@var{trap-precision}
8420 @opindex mtrap-precision
8421 In the Alpha architecture, floating point traps are imprecise.  This
8422 means without software assistance it is impossible to recover from a
8423 floating trap and program execution normally needs to be terminated.
8424 GCC can generate code that can assist operating system trap handlers
8425 in determining the exact location that caused a floating point trap.
8426 Depending on the requirements of an application, different levels of
8427 precisions can be selected:
8428
8429 @table @samp
8430 @item p
8431 Program precision.  This option is the default and means a trap handler
8432 can only identify which program caused a floating point exception.
8433
8434 @item f
8435 Function precision.  The trap handler can determine the function that
8436 caused a floating point exception.
8437
8438 @item i
8439 Instruction precision.  The trap handler can determine the exact
8440 instruction that caused a floating point exception.
8441 @end table
8442
8443 Other Alpha compilers provide the equivalent options called
8444 @option{-scope_safe} and @option{-resumption_safe}.
8445
8446 @item -mieee-conformant
8447 @opindex mieee-conformant
8448 This option marks the generated code as IEEE conformant.  You must not
8449 use this option unless you also specify @option{-mtrap-precision=i} and either
8450 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
8451 is to emit the line @samp{.eflag 48} in the function prologue of the
8452 generated assembly file.  Under DEC Unix, this has the effect that
8453 IEEE-conformant math library routines will be linked in.
8454
8455 @item -mbuild-constants
8456 @opindex mbuild-constants
8457 Normally GCC examines a 32- or 64-bit integer constant to
8458 see if it can construct it from smaller constants in two or three
8459 instructions.  If it cannot, it will output the constant as a literal and
8460 generate code to load it from the data segment at runtime.
8461
8462 Use this option to require GCC to construct @emph{all} integer constants
8463 using code, even if it takes more instructions (the maximum is six).
8464
8465 You would typically use this option to build a shared library dynamic
8466 loader.  Itself a shared library, it must relocate itself in memory
8467 before it can find the variables and constants in its own data segment.
8468
8469 @item -malpha-as
8470 @itemx -mgas
8471 @opindex malpha-as
8472 @opindex mgas
8473 Select whether to generate code to be assembled by the vendor-supplied
8474 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
8475
8476 @item -mbwx
8477 @itemx -mno-bwx
8478 @itemx -mcix
8479 @itemx -mno-cix
8480 @itemx -mfix
8481 @itemx -mno-fix
8482 @itemx -mmax
8483 @itemx -mno-max
8484 @opindex mbwx
8485 @opindex mno-bwx
8486 @opindex mcix
8487 @opindex mno-cix
8488 @opindex mfix
8489 @opindex mno-fix
8490 @opindex mmax
8491 @opindex mno-max
8492 Indicate whether GCC should generate code to use the optional BWX,
8493 CIX, FIX and MAX instruction sets.  The default is to use the instruction
8494 sets supported by the CPU type specified via @option{-mcpu=} option or that
8495 of the CPU on which GCC was built if none was specified.
8496
8497 @item -mfloat-vax
8498 @itemx -mfloat-ieee
8499 @opindex mfloat-vax
8500 @opindex mfloat-ieee
8501 Generate code that uses (does not use) VAX F and G floating point
8502 arithmetic instead of IEEE single and double precision.
8503
8504 @item -mexplicit-relocs
8505 @itemx -mno-explicit-relocs
8506 @opindex mexplicit-relocs
8507 @opindex mno-explicit-relocs
8508 Older Alpha assemblers provided no way to generate symbol relocations
8509 except via assembler macros.  Use of these macros does not allow
8510 optimal instruction scheduling.  GNU binutils as of version 2.12
8511 supports a new syntax that allows the compiler to explicitly mark
8512 which relocations should apply to which instructions.  This option
8513 is mostly useful for debugging, as GCC detects the capabilities of
8514 the assembler when it is built and sets the default accordingly.
8515
8516 @item -msmall-data
8517 @itemx -mlarge-data
8518 @opindex msmall-data
8519 @opindex mlarge-data
8520 When @option{-mexplicit-relocs} is in effect, static data is
8521 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
8522 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
8523 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
8524 16-bit relocations off of the @code{$gp} register.  This limits the
8525 size of the small data area to 64KB, but allows the variables to be
8526 directly accessed via a single instruction.
8527
8528 The default is @option{-mlarge-data}.  With this option the data area
8529 is limited to just below 2GB@.  Programs that require more than 2GB of
8530 data must use @code{malloc} or @code{mmap} to allocate the data in the
8531 heap instead of in the program's data segment.
8532
8533 When generating code for shared libraries, @option{-fpic} implies
8534 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
8535
8536 @item -msmall-text
8537 @itemx -mlarge-text
8538 @opindex msmall-text
8539 @opindex mlarge-text
8540 When @option{-msmall-text} is used, the compiler assumes that the
8541 code of the entire program (or shared library) fits in 4MB, and is
8542 thus reachable with a branch instruction.  When @option{-msmall-data}
8543 is used, the compiler can assume that all local symbols share the
8544 same @code{$gp} value, and thus reduce the number of instructions
8545 required for a function call from 4 to 1.
8546
8547 The default is @option{-mlarge-text}.
8548
8549 @item -mcpu=@var{cpu_type}
8550 @opindex mcpu
8551 Set the instruction set and instruction scheduling parameters for
8552 machine type @var{cpu_type}.  You can specify either the @samp{EV}
8553 style name or the corresponding chip number.  GCC supports scheduling
8554 parameters for the EV4, EV5 and EV6 family of processors and will
8555 choose the default values for the instruction set from the processor
8556 you specify.  If you do not specify a processor type, GCC will default
8557 to the processor on which the compiler was built.
8558
8559 Supported values for @var{cpu_type} are
8560
8561 @table @samp
8562 @item ev4
8563 @itemx ev45
8564 @itemx 21064
8565 Schedules as an EV4 and has no instruction set extensions.
8566
8567 @item ev5
8568 @itemx 21164
8569 Schedules as an EV5 and has no instruction set extensions.
8570
8571 @item ev56
8572 @itemx 21164a
8573 Schedules as an EV5 and supports the BWX extension.
8574
8575 @item pca56
8576 @itemx 21164pc
8577 @itemx 21164PC
8578 Schedules as an EV5 and supports the BWX and MAX extensions.
8579
8580 @item ev6
8581 @itemx 21264
8582 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
8583
8584 @item ev67
8585 @itemx 21264a
8586 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
8587 @end table
8588
8589 @item -mtune=@var{cpu_type}
8590 @opindex mtune
8591 Set only the instruction scheduling parameters for machine type
8592 @var{cpu_type}.  The instruction set is not changed.
8593
8594 @item -mmemory-latency=@var{time}
8595 @opindex mmemory-latency
8596 Sets the latency the scheduler should assume for typical memory
8597 references as seen by the application.  This number is highly
8598 dependent on the memory access patterns used by the application
8599 and the size of the external cache on the machine.
8600
8601 Valid options for @var{time} are
8602
8603 @table @samp
8604 @item @var{number}
8605 A decimal number representing clock cycles.
8606
8607 @item L1
8608 @itemx L2
8609 @itemx L3
8610 @itemx main
8611 The compiler contains estimates of the number of clock cycles for
8612 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
8613 (also called Dcache, Scache, and Bcache), as well as to main memory.
8614 Note that L3 is only valid for EV5.
8615
8616 @end table
8617 @end table
8618
8619 @node DEC Alpha/VMS Options
8620 @subsection DEC Alpha/VMS Options
8621
8622 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
8623
8624 @table @gcctabopt
8625 @item -mvms-return-codes
8626 @opindex mvms-return-codes
8627 Return VMS condition codes from main.  The default is to return POSIX
8628 style condition (e.g.@ error) codes.
8629 @end table
8630
8631 @node FRV Options
8632 @subsection FRV Options
8633 @cindex FRV Options
8634
8635 @table @gcctabopt
8636 @item -mgpr-32
8637 @opindex mgpr-32
8638
8639 Only use the first 32 general purpose registers.
8640
8641 @item -mgpr-64
8642 @opindex mgpr-64
8643
8644 Use all 64 general purpose registers.
8645
8646 @item -mfpr-32
8647 @opindex mfpr-32
8648
8649 Use only the first 32 floating point registers.
8650
8651 @item -mfpr-64
8652 @opindex mfpr-64
8653
8654 Use all 64 floating point registers
8655
8656 @item -mhard-float
8657 @opindex mhard-float
8658
8659 Use hardware instructions for floating point operations.
8660
8661 @item -msoft-float
8662 @opindex msoft-float
8663
8664 Use library routines for floating point operations.
8665
8666 @item -malloc-cc
8667 @opindex malloc-cc
8668
8669 Dynamically allocate condition code registers.
8670
8671 @item -mfixed-cc
8672 @opindex mfixed-cc
8673
8674 Do not try to dynamically allocate condition code registers, only
8675 use @code{icc0} and @code{fcc0}.
8676
8677 @item -mdword
8678 @opindex mdword
8679
8680 Change ABI to use double word insns.
8681
8682 @item -mno-dword
8683 @opindex mno-dword
8684
8685 Do not use double word instructions.
8686
8687 @item -mdouble
8688 @opindex mdouble
8689
8690 Use floating point double instructions.
8691
8692 @item -mno-double
8693 @opindex mno-double
8694
8695 Do not use floating point double instructions.
8696
8697 @item -mmedia
8698 @opindex mmedia
8699
8700 Use media instructions.
8701
8702 @item -mno-media
8703 @opindex mno-media
8704
8705 Do not use media instructions.
8706
8707 @item -mmuladd
8708 @opindex mmuladd
8709
8710 Use multiply and add/subtract instructions.
8711
8712 @item -mno-muladd
8713 @opindex mno-muladd
8714
8715 Do not use multiply and add/subtract instructions.
8716
8717 @item -mfdpic
8718 @opindex mfdpic
8719
8720 Select the FDPIC ABI, that uses function descriptors to represent
8721 pointers to functions.  Without any PIC/PIE-related options, it
8722 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
8723 assumes GOT entries and small data are within a 12-bit range from the
8724 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
8725 are computed with 32 bits.
8726
8727 @item -minline-plt
8728 @opindex minline-plt
8729
8730 Enable inlining of PLT entries in function calls to functions that are
8731 not known to bind locally.  It has no effect without @option{-mfdpic}.
8732 It's enabled by default if optimizing for speed and compiling for
8733 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
8734 optimization option such as @option{-O3} or above is present in the
8735 command line.
8736
8737 @item -mTLS
8738 @opindex TLS
8739
8740 Assume a large TLS segment when generating thread-local code.
8741
8742 @item -mtls
8743 @opindex tls
8744
8745 Do not assume a large TLS segment when generating thread-local code.
8746
8747 @item -mgprel-ro
8748 @opindex mgprel-ro
8749
8750 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
8751 that is known to be in read-only sections.  It's enabled by default,
8752 except for @option{-fpic} or @option{-fpie}: even though it may help
8753 make the global offset table smaller, it trades 1 instruction for 4.
8754 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
8755 one of which may be shared by multiple symbols, and it avoids the need
8756 for a GOT entry for the referenced symbol, so it's more likely to be a
8757 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
8758
8759 @item -multilib-library-pic
8760 @opindex multilib-library-pic
8761
8762 Link with the (library, not FD) pic libraries.  It's implied by
8763 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
8764 @option{-fpic} without @option{-mfdpic}.  You should never have to use
8765 it explicitly.
8766
8767 @item -mlinked-fp
8768 @opindex mlinked-fp
8769
8770 Follow the EABI requirement of always creating a frame pointer whenever
8771 a stack frame is allocated.  This option is enabled by default and can
8772 be disabled with @option{-mno-linked-fp}.
8773
8774 @item -mlong-calls
8775 @opindex mlong-calls
8776
8777 Use indirect addressing to call functions outside the current
8778 compilation unit.  This allows the functions to be placed anywhere
8779 within the 32-bit address space.
8780
8781 @item -malign-labels
8782 @opindex malign-labels
8783
8784 Try to align labels to an 8-byte boundary by inserting nops into the
8785 previous packet.  This option only has an effect when VLIW packing
8786 is enabled.  It doesn't create new packets; it merely adds nops to
8787 existing ones.
8788
8789 @item -mlibrary-pic
8790 @opindex mlibrary-pic
8791
8792 Generate position-independent EABI code.
8793
8794 @item -macc-4
8795 @opindex macc-4
8796
8797 Use only the first four media accumulator registers.
8798
8799 @item -macc-8
8800 @opindex macc-8
8801
8802 Use all eight media accumulator registers.
8803
8804 @item -mpack
8805 @opindex mpack
8806
8807 Pack VLIW instructions.
8808
8809 @item -mno-pack
8810 @opindex mno-pack
8811
8812 Do not pack VLIW instructions.
8813
8814 @item -mno-eflags
8815 @opindex mno-eflags
8816
8817 Do not mark ABI switches in e_flags.
8818
8819 @item -mcond-move
8820 @opindex mcond-move
8821
8822 Enable the use of conditional-move instructions (default).
8823
8824 This switch is mainly for debugging the compiler and will likely be removed
8825 in a future version.
8826
8827 @item -mno-cond-move
8828 @opindex mno-cond-move
8829
8830 Disable the use of conditional-move instructions.
8831
8832 This switch is mainly for debugging the compiler and will likely be removed
8833 in a future version.
8834
8835 @item -mscc
8836 @opindex mscc
8837
8838 Enable the use of conditional set instructions (default).
8839
8840 This switch is mainly for debugging the compiler and will likely be removed
8841 in a future version.
8842
8843 @item -mno-scc
8844 @opindex mno-scc
8845
8846 Disable the use of conditional set instructions.
8847
8848 This switch is mainly for debugging the compiler and will likely be removed
8849 in a future version.
8850
8851 @item -mcond-exec
8852 @opindex mcond-exec
8853
8854 Enable the use of conditional execution (default).
8855
8856 This switch is mainly for debugging the compiler and will likely be removed
8857 in a future version.
8858
8859 @item -mno-cond-exec
8860 @opindex mno-cond-exec
8861
8862 Disable the use of conditional execution.
8863
8864 This switch is mainly for debugging the compiler and will likely be removed
8865 in a future version.
8866
8867 @item -mvliw-branch
8868 @opindex mvliw-branch
8869
8870 Run a pass to pack branches into VLIW instructions (default).
8871
8872 This switch is mainly for debugging the compiler and will likely be removed
8873 in a future version.
8874
8875 @item -mno-vliw-branch
8876 @opindex mno-vliw-branch
8877
8878 Do not run a pass to pack branches into VLIW instructions.
8879
8880 This switch is mainly for debugging the compiler and will likely be removed
8881 in a future version.
8882
8883 @item -mmulti-cond-exec
8884 @opindex mmulti-cond-exec
8885
8886 Enable optimization of @code{&&} and @code{||} in conditional execution
8887 (default).
8888
8889 This switch is mainly for debugging the compiler and will likely be removed
8890 in a future version.
8891
8892 @item -mno-multi-cond-exec
8893 @opindex mno-multi-cond-exec
8894
8895 Disable optimization of @code{&&} and @code{||} in conditional execution.
8896
8897 This switch is mainly for debugging the compiler and will likely be removed
8898 in a future version.
8899
8900 @item -mnested-cond-exec
8901 @opindex mnested-cond-exec
8902
8903 Enable nested conditional execution optimizations (default).
8904
8905 This switch is mainly for debugging the compiler and will likely be removed
8906 in a future version.
8907
8908 @item -mno-nested-cond-exec
8909 @opindex mno-nested-cond-exec
8910
8911 Disable nested conditional execution optimizations.
8912
8913 This switch is mainly for debugging the compiler and will likely be removed
8914 in a future version.
8915
8916 @item -moptimize-membar
8917 @opindex moptimize-membar
8918
8919 This switch removes redundant @code{membar} instructions from the
8920 compiler generated code.  It is enabled by default.
8921
8922 @item -mno-optimize-membar
8923 @opindex mno-optimize-membar
8924
8925 This switch disables the automatic removal of redundant @code{membar}
8926 instructions from the generated code.
8927
8928 @item -mtomcat-stats
8929 @opindex mtomcat-stats
8930
8931 Cause gas to print out tomcat statistics.
8932
8933 @item -mcpu=@var{cpu}
8934 @opindex mcpu
8935
8936 Select the processor type for which to generate code.  Possible values are
8937 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
8938 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
8939
8940 @end table
8941
8942 @node GNU/Linux Options
8943 @subsection GNU/Linux Options
8944
8945 These @samp{-m} options are defined for GNU/Linux targets:
8946
8947 @table @gcctabopt
8948 @item -mglibc
8949 @opindex mglibc
8950 Use the GNU C library instead of uClibc.  This is the default except
8951 on @samp{*-*-linux-*uclibc*} targets.
8952
8953 @item -muclibc
8954 @opindex muclibc
8955 Use uClibc instead of the GNU C library.  This is the default on
8956 @samp{*-*-linux-*uclibc*} targets.
8957 @end table
8958
8959 @node H8/300 Options
8960 @subsection H8/300 Options
8961
8962 These @samp{-m} options are defined for the H8/300 implementations:
8963
8964 @table @gcctabopt
8965 @item -mrelax
8966 @opindex mrelax
8967 Shorten some address references at link time, when possible; uses the
8968 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
8969 ld, Using ld}, for a fuller description.
8970
8971 @item -mh
8972 @opindex mh
8973 Generate code for the H8/300H@.
8974
8975 @item -ms
8976 @opindex ms
8977 Generate code for the H8S@.
8978
8979 @item -mn
8980 @opindex mn
8981 Generate code for the H8S and H8/300H in the normal mode.  This switch
8982 must be used either with @option{-mh} or @option{-ms}.
8983
8984 @item -ms2600
8985 @opindex ms2600
8986 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
8987
8988 @item -mint32
8989 @opindex mint32
8990 Make @code{int} data 32 bits by default.
8991
8992 @item -malign-300
8993 @opindex malign-300
8994 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
8995 The default for the H8/300H and H8S is to align longs and floats on 4
8996 byte boundaries.
8997 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
8998 This option has no effect on the H8/300.
8999 @end table
9000
9001 @node HPPA Options
9002 @subsection HPPA Options
9003 @cindex HPPA Options
9004
9005 These @samp{-m} options are defined for the HPPA family of computers:
9006
9007 @table @gcctabopt
9008 @item -march=@var{architecture-type}
9009 @opindex march
9010 Generate code for the specified architecture.  The choices for
9011 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
9012 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
9013 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
9014 architecture option for your machine.  Code compiled for lower numbered
9015 architectures will run on higher numbered architectures, but not the
9016 other way around.
9017
9018 @item -mpa-risc-1-0
9019 @itemx -mpa-risc-1-1
9020 @itemx -mpa-risc-2-0
9021 @opindex mpa-risc-1-0
9022 @opindex mpa-risc-1-1
9023 @opindex mpa-risc-2-0
9024 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
9025
9026 @item -mbig-switch
9027 @opindex mbig-switch
9028 Generate code suitable for big switch tables.  Use this option only if
9029 the assembler/linker complain about out of range branches within a switch
9030 table.
9031
9032 @item -mjump-in-delay
9033 @opindex mjump-in-delay
9034 Fill delay slots of function calls with unconditional jump instructions
9035 by modifying the return pointer for the function call to be the target
9036 of the conditional jump.
9037
9038 @item -mdisable-fpregs
9039 @opindex mdisable-fpregs
9040 Prevent floating point registers from being used in any manner.  This is
9041 necessary for compiling kernels which perform lazy context switching of
9042 floating point registers.  If you use this option and attempt to perform
9043 floating point operations, the compiler will abort.
9044
9045 @item -mdisable-indexing
9046 @opindex mdisable-indexing
9047 Prevent the compiler from using indexing address modes.  This avoids some
9048 rather obscure problems when compiling MIG generated code under MACH@.
9049
9050 @item -mno-space-regs
9051 @opindex mno-space-regs
9052 Generate code that assumes the target has no space registers.  This allows
9053 GCC to generate faster indirect calls and use unscaled index address modes.
9054
9055 Such code is suitable for level 0 PA systems and kernels.
9056
9057 @item -mfast-indirect-calls
9058 @opindex mfast-indirect-calls
9059 Generate code that assumes calls never cross space boundaries.  This
9060 allows GCC to emit code which performs faster indirect calls.
9061
9062 This option will not work in the presence of shared libraries or nested
9063 functions.
9064
9065 @item -mfixed-range=@var{register-range}
9066 @opindex mfixed-range
9067 Generate code treating the given register range as fixed registers.
9068 A fixed register is one that the register allocator can not use.  This is
9069 useful when compiling kernel code.  A register range is specified as
9070 two registers separated by a dash.  Multiple register ranges can be
9071 specified separated by a comma.
9072
9073 @item -mlong-load-store
9074 @opindex mlong-load-store
9075 Generate 3-instruction load and store sequences as sometimes required by
9076 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
9077 the HP compilers.
9078
9079 @item -mportable-runtime
9080 @opindex mportable-runtime
9081 Use the portable calling conventions proposed by HP for ELF systems.
9082
9083 @item -mgas
9084 @opindex mgas
9085 Enable the use of assembler directives only GAS understands.
9086
9087 @item -mschedule=@var{cpu-type}
9088 @opindex mschedule
9089 Schedule code according to the constraints for the machine type
9090 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
9091 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
9092 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
9093 proper scheduling option for your machine.  The default scheduling is
9094 @samp{8000}.
9095
9096 @item -mlinker-opt
9097 @opindex mlinker-opt
9098 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
9099 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
9100 linkers in which they give bogus error messages when linking some programs.
9101
9102 @item -msoft-float
9103 @opindex msoft-float
9104 Generate output containing library calls for floating point.
9105 @strong{Warning:} the requisite libraries are not available for all HPPA
9106 targets.  Normally the facilities of the machine's usual C compiler are
9107 used, but this cannot be done directly in cross-compilation.  You must make
9108 your own arrangements to provide suitable library functions for
9109 cross-compilation.  The embedded target @samp{hppa1.1-*-pro}
9110 does provide software floating point support.
9111
9112 @option{-msoft-float} changes the calling convention in the output file;
9113 therefore, it is only useful if you compile @emph{all} of a program with
9114 this option.  In particular, you need to compile @file{libgcc.a}, the
9115 library that comes with GCC, with @option{-msoft-float} in order for
9116 this to work.
9117
9118 @item -msio
9119 @opindex msio
9120 Generate the predefine, @code{_SIO}, for server IO@.  The default is
9121 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
9122 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
9123 options are available under HP-UX and HI-UX@.
9124
9125 @item -mgnu-ld
9126 @opindex gnu-ld
9127 Use GNU ld specific options.  This passes @option{-shared} to ld when
9128 building a shared library.  It is the default when GCC is configured,
9129 explicitly or implicitly, with the GNU linker.  This option does not
9130 have any affect on which ld is called, it only changes what parameters
9131 are passed to that ld.  The ld that is called is determined by the
9132 @option{--with-ld} configure option, GCC's program search path, and
9133 finally by the user's @env{PATH}.  The linker used by GCC can be printed
9134 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
9135 on the 64 bit HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
9136
9137 @item -mhp-ld
9138 @opindex hp-ld
9139 Use HP ld specific options.  This passes @option{-b} to ld when building
9140 a shared library and passes @option{+Accept TypeMismatch} to ld on all
9141 links.  It is the default when GCC is configured, explicitly or
9142 implicitly, with the HP linker.  This option does not have any affect on
9143 which ld is called, it only changes what parameters are passed to that
9144 ld.  The ld that is called is determined by the @option{--with-ld}
9145 configure option, GCC's program search path, and finally by the user's
9146 @env{PATH}.  The linker used by GCC can be printed using @samp{which
9147 `gcc -print-prog-name=ld`}.  This option is only available on the 64 bit
9148 HP-UX GCC, i.e. configured with @samp{hppa*64*-*-hpux*}.
9149
9150 @item -mlong-calls
9151 @opindex mno-long-calls
9152 Generate code that uses long call sequences.  This ensures that a call
9153 is always able to reach linker generated stubs.  The default is to generate
9154 long calls only when the distance from the call site to the beginning
9155 of the function or translation unit, as the case may be, exceeds a
9156 predefined limit set by the branch type being used.  The limits for
9157 normal calls are 7,600,000 and 240,000 bytes, respectively for the
9158 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
9159 240,000 bytes.
9160
9161 Distances are measured from the beginning of functions when using the
9162 @option{-ffunction-sections} option, or when using the @option{-mgas}
9163 and @option{-mno-portable-runtime} options together under HP-UX with
9164 the SOM linker.
9165
9166 It is normally not desirable to use this option as it will degrade
9167 performance.  However, it may be useful in large applications,
9168 particularly when partial linking is used to build the application.
9169
9170 The types of long calls used depends on the capabilities of the
9171 assembler and linker, and the type of code being generated.  The
9172 impact on systems that support long absolute calls, and long pic
9173 symbol-difference or pc-relative calls should be relatively small.
9174 However, an indirect call is used on 32-bit ELF systems in pic code
9175 and it is quite long.
9176
9177 @item -munix=@var{unix-std}
9178 @opindex march
9179 Generate compiler predefines and select a startfile for the specified
9180 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
9181 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
9182 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
9183 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
9184 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
9185 and later.
9186
9187 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
9188 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
9189 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
9190 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
9191 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
9192 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
9193
9194 It is @emph{important} to note that this option changes the interfaces
9195 for various library routines.  It also affects the operational behavior
9196 of the C library.  Thus, @emph{extreme} care is needed in using this
9197 option.
9198
9199 Library code that is intended to operate with more than one UNIX
9200 standard must test, set and restore the variable @var{__xpg4_extended_mask}
9201 as appropriate.  Most GNU software doesn't provide this capability.
9202
9203 @item -nolibdld
9204 @opindex nolibdld
9205 Suppress the generation of link options to search libdld.sl when the
9206 @option{-static} option is specified on HP-UX 10 and later.
9207
9208 @item -static
9209 @opindex static
9210 The HP-UX implementation of setlocale in libc has a dependency on
9211 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
9212 when the @option{-static} option is specified, special link options
9213 are needed to resolve this dependency.
9214
9215 On HP-UX 10 and later, the GCC driver adds the necessary options to
9216 link with libdld.sl when the @option{-static} option is specified.
9217 This causes the resulting binary to be dynamic.  On the 64-bit port,
9218 the linkers generate dynamic binaries by default in any case.  The
9219 @option{-nolibdld} option can be used to prevent the GCC driver from
9220 adding these link options.
9221
9222 @item -threads
9223 @opindex threads
9224 Add support for multithreading with the @dfn{dce thread} library
9225 under HP-UX@.  This option sets flags for both the preprocessor and
9226 linker.
9227 @end table
9228
9229 @node i386 and x86-64 Options
9230 @subsection Intel 386 and AMD x86-64 Options
9231 @cindex i386 Options
9232 @cindex x86-64 Options
9233 @cindex Intel 386 Options
9234 @cindex AMD x86-64 Options
9235
9236 These @samp{-m} options are defined for the i386 and x86-64 family of
9237 computers:
9238
9239 @table @gcctabopt
9240 @item -mtune=@var{cpu-type}
9241 @opindex mtune
9242 Tune to @var{cpu-type} everything applicable about the generated code, except
9243 for the ABI and the set of available instructions.  The choices for
9244 @var{cpu-type} are:
9245 @table @emph
9246 @item generic
9247 Produce code optimized for the most common IA32/AMD64/EM64T processors.
9248 If you know the CPU on which your code will run, then you should use
9249 the corresponding @option{-mtune} option instead of
9250 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
9251 of your application will have, then you should use this option.
9252
9253 As new processors are deployed in the marketplace, the behavior of this
9254 option will change.  Therefore, if you upgrade to a newer version of
9255 GCC, the code generated option will change to reflect the processors
9256 that were most common when that version of GCC was released.
9257
9258 There is no @option{-march=generic} option because @option{-march}
9259 indicates the instruction set the compiler can use, and there is no
9260 generic instruction set applicable to all processors.  In contrast,
9261 @option{-mtune} indicates the processor (or, in this case, collection of
9262 processors) for which the code is optimized.
9263 @item native
9264 This selects the CPU to tune for at compilation time by determining
9265 the processor type of the compiling machine.  Using @option{-mtune=native}
9266 will produce code optimized for the local machine under the constraints
9267 of the selected instruction set.  Using @option{-march=native} will
9268 enable all instruction subsets supported by the local machine (hence
9269 the result might not run on different machines).
9270 @item i386
9271 Original Intel's i386 CPU@.
9272 @item i486
9273 Intel's i486 CPU@.  (No scheduling is implemented for this chip.)
9274 @item i586, pentium
9275 Intel Pentium CPU with no MMX support.
9276 @item pentium-mmx
9277 Intel PentiumMMX CPU based on Pentium core with MMX instruction set support.
9278 @item pentiumpro
9279 Intel PentiumPro CPU@.
9280 @item i686
9281 Same as @code{generic}, but when used as @code{march} option, PentiumPro
9282 instruction set will be used, so the code will run on all i686 family chips.
9283 @item pentium2
9284 Intel Pentium2 CPU based on PentiumPro core with MMX instruction set support.
9285 @item pentium3, pentium3m
9286 Intel Pentium3 CPU based on PentiumPro core with MMX and SSE instruction set
9287 support.
9288 @item pentium-m
9289 Low power version of Intel Pentium3 CPU with MMX, SSE and SSE2 instruction set
9290 support.  Used by Centrino notebooks.
9291 @item pentium4, pentium4m
9292 Intel Pentium4 CPU with MMX, SSE and SSE2 instruction set support.
9293 @item prescott
9294 Improved version of Intel Pentium4 CPU with MMX, SSE, SSE2 and SSE3 instruction
9295 set support.
9296 @item nocona
9297 Improved version of Intel Pentium4 CPU with 64-bit extensions, MMX, SSE,
9298 SSE2 and SSE3 instruction set support.
9299 @item core2
9300 Intel Core2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
9301 instruction set support.
9302 @item k6
9303 AMD K6 CPU with MMX instruction set support.
9304 @item k6-2, k6-3
9305 Improved versions of AMD K6 CPU with MMX and 3dNOW! instruction set support.
9306 @item athlon, athlon-tbird
9307 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch instructions
9308 support.
9309 @item athlon-4, athlon-xp, athlon-mp
9310 Improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE
9311 instruction set support.
9312 @item k8, opteron, athlon64, athlon-fx
9313 AMD K8 core based CPUs with x86-64 instruction set support.  (This supersets
9314 MMX, SSE, SSE2, 3dNOW!, enhanced 3dNOW! and 64-bit instruction set extensions.)
9315 @item winchip-c6
9316 IDT Winchip C6 CPU, dealt in same way as i486 with additional MMX instruction
9317 set support.
9318 @item winchip2
9319 IDT Winchip2 CPU, dealt in same way as i486 with additional MMX and 3dNOW!
9320 instruction set support.
9321 @item c3
9322 Via C3 CPU with MMX and 3dNOW! instruction set support.  (No scheduling is
9323 implemented for this chip.)
9324 @item c3-2
9325 Via C3-2 CPU with MMX and SSE instruction set support.  (No scheduling is
9326 implemented for this chip.)
9327 @item geode
9328 Embedded AMD CPU with MMX and 3dNOW! instruction set support.
9329 @end table
9330
9331 While picking a specific @var{cpu-type} will schedule things appropriately
9332 for that particular chip, the compiler will not generate any code that
9333 does not run on the i386 without the @option{-march=@var{cpu-type}} option
9334 being used.
9335
9336 @item -march=@var{cpu-type}
9337 @opindex march
9338 Generate instructions for the machine type @var{cpu-type}.  The choices
9339 for @var{cpu-type} are the same as for @option{-mtune}.  Moreover,
9340 specifying @option{-march=@var{cpu-type}} implies @option{-mtune=@var{cpu-type}}.
9341
9342 @item -mcpu=@var{cpu-type}
9343 @opindex mcpu
9344 A deprecated synonym for @option{-mtune}.
9345
9346 @item -m386
9347 @itemx -m486
9348 @itemx -mpentium
9349 @itemx -mpentiumpro
9350 @opindex m386
9351 @opindex m486
9352 @opindex mpentium
9353 @opindex mpentiumpro
9354 These options are synonyms for @option{-mtune=i386}, @option{-mtune=i486},
9355 @option{-mtune=pentium}, and @option{-mtune=pentiumpro} respectively.
9356 These synonyms are deprecated.
9357
9358 @item -mfpmath=@var{unit}
9359 @opindex march
9360 Generate floating point arithmetics for selected unit @var{unit}.  The choices
9361 for @var{unit} are:
9362
9363 @table @samp
9364 @item 387
9365 Use the standard 387 floating point coprocessor present majority of chips and
9366 emulated otherwise.  Code compiled with this option will run almost everywhere.
9367 The temporary results are computed in 80bit precision instead of precision
9368 specified by the type resulting in slightly different results compared to most
9369 of other chips.  See @option{-ffloat-store} for more detailed description.
9370
9371 This is the default choice for i386 compiler.
9372
9373 @item sse
9374 Use scalar floating point instructions present in the SSE instruction set.
9375 This instruction set is supported by Pentium3 and newer chips, in the AMD line
9376 by Athlon-4, Athlon-xp and Athlon-mp chips.  The earlier version of SSE
9377 instruction set supports only single precision arithmetics, thus the double and
9378 extended precision arithmetics is still done using 387.  Later version, present
9379 only in Pentium4 and the future AMD x86-64 chips supports double precision
9380 arithmetics too.
9381
9382 For the i386 compiler, you need to use @option{-march=@var{cpu-type}}, @option{-msse}
9383 or @option{-msse2} switches to enable SSE extensions and make this option
9384 effective.  For the x86-64 compiler, these extensions are enabled by default.
9385
9386 The resulting code should be considerably faster in the majority of cases and avoid
9387 the numerical instability problems of 387 code, but may break some existing
9388 code that expects temporaries to be 80bit.
9389
9390 This is the default choice for the x86-64 compiler.
9391
9392 @item sse,387
9393 Attempt to utilize both instruction sets at once.  This effectively double the
9394 amount of available registers and on chips with separate execution units for
9395 387 and SSE the execution resources too.  Use this option with care, as it is
9396 still experimental, because the GCC register allocator does not model separate
9397 functional units well resulting in instable performance.
9398 @end table
9399
9400 @item -masm=@var{dialect}
9401 @opindex masm=@var{dialect}
9402 Output asm instructions using selected @var{dialect}.  Supported
9403 choices are @samp{intel} or @samp{att} (the default one).  Darwin does
9404 not support @samp{intel}.
9405
9406 @item -mieee-fp
9407 @itemx -mno-ieee-fp
9408 @opindex mieee-fp
9409 @opindex mno-ieee-fp
9410 Control whether or not the compiler uses IEEE floating point
9411 comparisons.  These handle correctly the case where the result of a
9412 comparison is unordered.
9413
9414 @item -msoft-float
9415 @opindex msoft-float
9416 Generate output containing library calls for floating point.
9417 @strong{Warning:} the requisite libraries are not part of GCC@.
9418 Normally the facilities of the machine's usual C compiler are used, but
9419 this can't be done directly in cross-compilation.  You must make your
9420 own arrangements to provide suitable library functions for
9421 cross-compilation.
9422
9423 On machines where a function returns floating point results in the 80387
9424 register stack, some floating point opcodes may be emitted even if
9425 @option{-msoft-float} is used.
9426
9427 @item -mno-fp-ret-in-387
9428 @opindex mno-fp-ret-in-387
9429 Do not use the FPU registers for return values of functions.
9430
9431 The usual calling convention has functions return values of types
9432 @code{float} and @code{double} in an FPU register, even if there
9433 is no FPU@.  The idea is that the operating system should emulate
9434 an FPU@.
9435
9436 The option @option{-mno-fp-ret-in-387} causes such values to be returned
9437 in ordinary CPU registers instead.
9438
9439 @item -mno-fancy-math-387
9440 @opindex mno-fancy-math-387
9441 Some 387 emulators do not support the @code{sin}, @code{cos} and
9442 @code{sqrt} instructions for the 387.  Specify this option to avoid
9443 generating those instructions.  This option is the default on FreeBSD,
9444 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
9445 indicates that the target cpu will always have an FPU and so the
9446 instruction will not need emulation.  As of revision 2.6.1, these
9447 instructions are not generated unless you also use the
9448 @option{-funsafe-math-optimizations} switch.
9449
9450 @item -malign-double
9451 @itemx -mno-align-double
9452 @opindex malign-double
9453 @opindex mno-align-double
9454 Control whether GCC aligns @code{double}, @code{long double}, and
9455 @code{long long} variables on a two word boundary or a one word
9456 boundary.  Aligning @code{double} variables on a two word boundary will
9457 produce code that runs somewhat faster on a @samp{Pentium} at the
9458 expense of more memory.
9459
9460 On x86-64, @option{-malign-double} is enabled by default.
9461
9462 @strong{Warning:} if you use the @option{-malign-double} switch,
9463 structures containing the above types will be aligned differently than
9464 the published application binary interface specifications for the 386
9465 and will not be binary compatible with structures in code compiled
9466 without that switch.
9467
9468 @item -m96bit-long-double
9469 @itemx -m128bit-long-double
9470 @opindex m96bit-long-double
9471 @opindex m128bit-long-double
9472 These switches control the size of @code{long double} type.  The i386
9473 application binary interface specifies the size to be 96 bits,
9474 so @option{-m96bit-long-double} is the default in 32 bit mode.
9475
9476 Modern architectures (Pentium and newer) would prefer @code{long double}
9477 to be aligned to an 8 or 16 byte boundary.  In arrays or structures
9478 conforming to the ABI, this would not be possible.  So specifying a
9479 @option{-m128bit-long-double} will align @code{long double}
9480 to a 16 byte boundary by padding the @code{long double} with an additional
9481 32 bit zero.
9482
9483 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
9484 its ABI specifies that @code{long double} is to be aligned on 16 byte boundary.
9485
9486 Notice that neither of these options enable any extra precision over the x87
9487 standard of 80 bits for a @code{long double}.
9488
9489 @strong{Warning:} if you override the default value for your target ABI, the
9490 structures and arrays containing @code{long double} variables will change
9491 their size as well as function calling convention for function taking
9492 @code{long double} will be modified.  Hence they will not be binary
9493 compatible with arrays or structures in code compiled without that switch.
9494
9495 @item -mmlarge-data-threshold=@var{number}
9496 @opindex mlarge-data-threshold=@var{number}
9497 When @option{-mcmodel=medium} is specified, the data greater than
9498 @var{threshold} are placed in large data section.  This value must be the
9499 same across all object linked into the binary and defaults to 65535.
9500
9501 @item -msvr3-shlib
9502 @itemx -mno-svr3-shlib
9503 @opindex msvr3-shlib
9504 @opindex mno-svr3-shlib
9505 Control whether GCC places uninitialized local variables into the
9506 @code{bss} or @code{data} segments.  @option{-msvr3-shlib} places them
9507 into @code{bss}.  These options are meaningful only on System V Release 3.
9508
9509 @item -mrtd
9510 @opindex mrtd
9511 Use a different function-calling convention, in which functions that
9512 take a fixed number of arguments return with the @code{ret} @var{num}
9513 instruction, which pops their arguments while returning.  This saves one
9514 instruction in the caller since there is no need to pop the arguments
9515 there.
9516
9517 You can specify that an individual function is called with this calling
9518 sequence with the function attribute @samp{stdcall}.  You can also
9519 override the @option{-mrtd} option by using the function attribute
9520 @samp{cdecl}.  @xref{Function Attributes}.
9521
9522 @strong{Warning:} this calling convention is incompatible with the one
9523 normally used on Unix, so you cannot use it if you need to call
9524 libraries compiled with the Unix compiler.
9525
9526 Also, you must provide function prototypes for all functions that
9527 take variable numbers of arguments (including @code{printf});
9528 otherwise incorrect code will be generated for calls to those
9529 functions.
9530
9531 In addition, seriously incorrect code will result if you call a
9532 function with too many arguments.  (Normally, extra arguments are
9533 harmlessly ignored.)
9534
9535 @item -mregparm=@var{num}
9536 @opindex mregparm
9537 Control how many registers are used to pass integer arguments.  By
9538 default, no registers are used to pass arguments, and at most 3
9539 registers can be used.  You can control this behavior for a specific
9540 function by using the function attribute @samp{regparm}.
9541 @xref{Function Attributes}.
9542
9543 @strong{Warning:} if you use this switch, and
9544 @var{num} is nonzero, then you must build all modules with the same
9545 value, including any libraries.  This includes the system libraries and
9546 startup modules.
9547
9548 @item -mx87regparm
9549 @opindex mx87regparm
9550 Use 80387 register passing conventions for floating point arguments.
9551 You can control this behavior for a specific function by using the
9552 function attribute @samp{x87regparm}.
9553 @xref{Function Attributes}.
9554
9555 @strong{Warning:} if you use this switch then you must build all
9556 modules with the same value, including any libraries.  This includes
9557 the system libraries and startup modules.
9558
9559 @item -msseregparm
9560 @opindex msseregparm
9561 Use SSE register passing conventions for float and double arguments
9562 and return values.  You can control this behavior for a specific
9563 function by using the function attribute @samp{sseregparm}.
9564 @xref{Function Attributes}.
9565
9566 @strong{Warning:} if you use this switch then you must build all
9567 modules with the same value, including any libraries.  This includes
9568 the system libraries and startup modules.
9569
9570 @item -mstackrealign
9571 @opindex mstackrealign
9572 Realign the stack at entry.  On the Intel x86, the
9573 @option{-mstackrealign} option will generate an alternate prologue and
9574 epilogue that realigns the runtime stack.  This supports mixing legacy
9575 codes that keep a 4-byte aligned stack with modern codes that keep a
9576 16-byte stack for SSE compatibility.  The alternate prologue and
9577 epilogue are slower and bigger than the regular ones, and the
9578 alternate prologue requires an extra scratch register; this lowers the
9579 number of registers available if used in conjunction with the
9580 @code{regparm} attribute.  The @option{-mstackrealign} option is
9581 incompatible with the nested function prologue; this is considered a
9582 hard error.  See also the attribute @code{force_align_arg_pointer},
9583 applicable to individual functions.
9584
9585 @item -mpreferred-stack-boundary=@var{num}
9586 @opindex mpreferred-stack-boundary
9587 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
9588 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
9589 the default is 4 (16 bytes or 128 bits).
9590
9591 On Pentium and PentiumPro, @code{double} and @code{long double} values
9592 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
9593 suffer significant run time performance penalties.  On Pentium III, the
9594 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
9595 properly if it is not 16 byte aligned.
9596
9597 To ensure proper alignment of this values on the stack, the stack boundary
9598 must be as aligned as that required by any value stored on the stack.
9599 Further, every function must be generated such that it keeps the stack
9600 aligned.  Thus calling a function compiled with a higher preferred
9601 stack boundary from a function compiled with a lower preferred stack
9602 boundary will most likely misalign the stack.  It is recommended that
9603 libraries that use callbacks always use the default setting.
9604
9605 This extra alignment does consume extra stack space, and generally
9606 increases code size.  Code that is sensitive to stack space usage, such
9607 as embedded systems and operating system kernels, may want to reduce the
9608 preferred alignment to @option{-mpreferred-stack-boundary=2}.
9609
9610 @item -mmmx
9611 @itemx -mno-mmx
9612 @item -msse
9613 @itemx -mno-sse
9614 @item -msse2
9615 @itemx -mno-sse2
9616 @item -msse3
9617 @itemx -mno-sse3
9618 @item -mssse3
9619 @itemx -mno-ssse3
9620 @item -m3dnow
9621 @itemx -mno-3dnow
9622 @opindex mmmx
9623 @opindex mno-mmx
9624 @opindex msse
9625 @opindex mno-sse
9626 @opindex m3dnow
9627 @opindex mno-3dnow
9628 These switches enable or disable the use of instructions in the MMX,
9629 SSE, SSE2, SSE3, SSSE3 or 3DNow! extended instruction sets.
9630 These extensions are also available as built-in functions: see
9631 @ref{X86 Built-in Functions}, for details of the functions enabled and
9632 disabled by these switches.
9633
9634 To have SSE/SSE2 instructions generated automatically from floating-point
9635 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
9636
9637 These options will enable GCC to use these extended instructions in
9638 generated code, even without @option{-mfpmath=sse}.  Applications which
9639 perform runtime CPU detection must compile separate files for each
9640 supported architecture, using the appropriate flags.  In particular,
9641 the file containing the CPU detection code should be compiled without
9642 these options.
9643
9644 @item -mpush-args
9645 @itemx -mno-push-args
9646 @opindex mpush-args
9647 @opindex mno-push-args
9648 Use PUSH operations to store outgoing parameters.  This method is shorter
9649 and usually equally fast as method using SUB/MOV operations and is enabled
9650 by default.  In some cases disabling it may improve performance because of
9651 improved scheduling and reduced dependencies.
9652
9653 @item -maccumulate-outgoing-args
9654 @opindex maccumulate-outgoing-args
9655 If enabled, the maximum amount of space required for outgoing arguments will be
9656 computed in the function prologue.  This is faster on most modern CPUs
9657 because of reduced dependencies, improved scheduling and reduced stack usage
9658 when preferred stack boundary is not equal to 2.  The drawback is a notable
9659 increase in code size.  This switch implies @option{-mno-push-args}.
9660
9661 @item -mthreads
9662 @opindex mthreads
9663 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
9664 on thread-safe exception handling must compile and link all code with the
9665 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
9666 @option{-D_MT}; when linking, it links in a special thread helper library
9667 @option{-lmingwthrd} which cleans up per thread exception handling data.
9668
9669 @item -mno-align-stringops
9670 @opindex mno-align-stringops
9671 Do not align destination of inlined string operations.  This switch reduces
9672 code size and improves performance in case the destination is already aligned,
9673 but GCC doesn't know about it.
9674
9675 @item -minline-all-stringops
9676 @opindex minline-all-stringops
9677 By default GCC inlines string operations only when destination is known to be
9678 aligned at least to 4 byte boundary.  This enables more inlining, increase code
9679 size, but may improve performance of code that depends on fast memcpy, strlen
9680 and memset for short lengths.
9681
9682 @item -momit-leaf-frame-pointer
9683 @opindex momit-leaf-frame-pointer
9684 Don't keep the frame pointer in a register for leaf functions.  This
9685 avoids the instructions to save, set up and restore frame pointers and
9686 makes an extra register available in leaf functions.  The option
9687 @option{-fomit-frame-pointer} removes the frame pointer for all functions
9688 which might make debugging harder.
9689
9690 @item -mtls-direct-seg-refs
9691 @itemx -mno-tls-direct-seg-refs
9692 @opindex mtls-direct-seg-refs
9693 Controls whether TLS variables may be accessed with offsets from the
9694 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
9695 or whether the thread base pointer must be added.  Whether or not this
9696 is legal depends on the operating system, and whether it maps the
9697 segment to cover the entire TLS area.
9698
9699 For systems that use GNU libc, the default is on.
9700 @end table
9701
9702 These @samp{-m} switches are supported in addition to the above
9703 on AMD x86-64 processors in 64-bit environments.
9704
9705 @table @gcctabopt
9706 @item -m32
9707 @itemx -m64
9708 @opindex m32
9709 @opindex m64
9710 Generate code for a 32-bit or 64-bit environment.
9711 The 32-bit environment sets int, long and pointer to 32 bits and
9712 generates code that runs on any i386 system.
9713 The 64-bit environment sets int to 32 bits and long and pointer
9714 to 64 bits and generates code for AMD's x86-64 architecture.
9715
9716 @item -mno-red-zone
9717 @opindex no-red-zone
9718 Do not use a so called red zone for x86-64 code.  The red zone is mandated
9719 by the x86-64 ABI, it is a 128-byte area beyond the location of the
9720 stack pointer that will not be modified by signal or interrupt handlers
9721 and therefore can be used for temporary data without adjusting the stack
9722 pointer.  The flag @option{-mno-red-zone} disables this red zone.
9723
9724 @item -mcmodel=small
9725 @opindex mcmodel=small
9726 Generate code for the small code model: the program and its symbols must
9727 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
9728 Programs can be statically or dynamically linked.  This is the default
9729 code model.
9730
9731 @item -mcmodel=kernel
9732 @opindex mcmodel=kernel
9733 Generate code for the kernel code model.  The kernel runs in the
9734 negative 2 GB of the address space.
9735 This model has to be used for Linux kernel code.
9736
9737 @item -mcmodel=medium
9738 @opindex mcmodel=medium
9739 Generate code for the medium model: The program is linked in the lower 2
9740 GB of the address space but symbols can be located anywhere in the
9741 address space.  Programs can be statically or dynamically linked, but
9742 building of shared libraries are not supported with the medium model.
9743
9744 @item -mcmodel=large
9745 @opindex mcmodel=large
9746 Generate code for the large model: This model makes no assumptions
9747 about addresses and sizes of sections.  Currently GCC does not implement
9748 this model.
9749 @end table
9750
9751 @node IA-64 Options
9752 @subsection IA-64 Options
9753 @cindex IA-64 Options
9754
9755 These are the @samp{-m} options defined for the Intel IA-64 architecture.
9756
9757 @table @gcctabopt
9758 @item -mbig-endian
9759 @opindex mbig-endian
9760 Generate code for a big endian target.  This is the default for HP-UX@.
9761
9762 @item -mlittle-endian
9763 @opindex mlittle-endian
9764 Generate code for a little endian target.  This is the default for AIX5
9765 and GNU/Linux.
9766
9767 @item -mgnu-as
9768 @itemx -mno-gnu-as
9769 @opindex mgnu-as
9770 @opindex mno-gnu-as
9771 Generate (or don't) code for the GNU assembler.  This is the default.
9772 @c Also, this is the default if the configure option @option{--with-gnu-as}
9773 @c is used.
9774
9775 @item -mgnu-ld
9776 @itemx -mno-gnu-ld
9777 @opindex mgnu-ld
9778 @opindex mno-gnu-ld
9779 Generate (or don't) code for the GNU linker.  This is the default.
9780 @c Also, this is the default if the configure option @option{--with-gnu-ld}
9781 @c is used.
9782
9783 @item -mno-pic
9784 @opindex mno-pic
9785 Generate code that does not use a global pointer register.  The result
9786 is not position independent code, and violates the IA-64 ABI@.
9787
9788 @item -mvolatile-asm-stop
9789 @itemx -mno-volatile-asm-stop
9790 @opindex mvolatile-asm-stop
9791 @opindex mno-volatile-asm-stop
9792 Generate (or don't) a stop bit immediately before and after volatile asm
9793 statements.
9794
9795 @item -mregister-names
9796 @itemx -mno-register-names
9797 @opindex mregister-names
9798 @opindex mno-register-names
9799 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
9800 the stacked registers.  This may make assembler output more readable.
9801
9802 @item -mno-sdata
9803 @itemx -msdata
9804 @opindex mno-sdata
9805 @opindex msdata
9806 Disable (or enable) optimizations that use the small data section.  This may
9807 be useful for working around optimizer bugs.
9808
9809 @item -mconstant-gp
9810 @opindex mconstant-gp
9811 Generate code that uses a single constant global pointer value.  This is
9812 useful when compiling kernel code.
9813
9814 @item -mauto-pic
9815 @opindex mauto-pic
9816 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
9817 This is useful when compiling firmware code.
9818
9819 @item -minline-float-divide-min-latency
9820 @opindex minline-float-divide-min-latency
9821 Generate code for inline divides of floating point values
9822 using the minimum latency algorithm.
9823
9824 @item -minline-float-divide-max-throughput
9825 @opindex minline-float-divide-max-throughput
9826 Generate code for inline divides of floating point values
9827 using the maximum throughput algorithm.
9828
9829 @item -minline-int-divide-min-latency
9830 @opindex minline-int-divide-min-latency
9831 Generate code for inline divides of integer values
9832 using the minimum latency algorithm.
9833
9834 @item -minline-int-divide-max-throughput
9835 @opindex minline-int-divide-max-throughput
9836 Generate code for inline divides of integer values
9837 using the maximum throughput algorithm.
9838
9839 @item -minline-sqrt-min-latency
9840 @opindex minline-sqrt-min-latency
9841 Generate code for inline square roots
9842 using the minimum latency algorithm.
9843
9844 @item -minline-sqrt-max-throughput
9845 @opindex minline-sqrt-max-throughput
9846 Generate code for inline square roots
9847 using the maximum throughput algorithm.
9848
9849 @item -mno-dwarf2-asm
9850 @itemx -mdwarf2-asm
9851 @opindex mno-dwarf2-asm
9852 @opindex mdwarf2-asm
9853 Don't (or do) generate assembler code for the DWARF2 line number debugging
9854 info.  This may be useful when not using the GNU assembler.
9855
9856 @item -mearly-stop-bits
9857 @itemx -mno-early-stop-bits
9858 @opindex mearly-stop-bits
9859 @opindex mno-early-stop-bits
9860 Allow stop bits to be placed earlier than immediately preceding the
9861 instruction that triggered the stop bit.  This can improve instruction
9862 scheduling, but does not always do so.
9863
9864 @item -mfixed-range=@var{register-range}
9865 @opindex mfixed-range
9866 Generate code treating the given register range as fixed registers.
9867 A fixed register is one that the register allocator can not use.  This is
9868 useful when compiling kernel code.  A register range is specified as
9869 two registers separated by a dash.  Multiple register ranges can be
9870 specified separated by a comma.
9871
9872 @item -mtls-size=@var{tls-size}
9873 @opindex mtls-size
9874 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
9875 64.
9876
9877 @item -mtune=@var{cpu-type}
9878 @opindex mtune
9879 Tune the instruction scheduling for a particular CPU, Valid values are
9880 itanium, itanium1, merced, itanium2, and mckinley.
9881
9882 @item -mt
9883 @itemx -pthread
9884 @opindex mt
9885 @opindex pthread
9886 Add support for multithreading using the POSIX threads library.  This
9887 option sets flags for both the preprocessor and linker.  It does
9888 not affect the thread safety of object code produced by the compiler or
9889 that of libraries supplied with it.  These are HP-UX specific flags.
9890
9891 @item -milp32
9892 @itemx -mlp64
9893 @opindex milp32
9894 @opindex mlp64
9895 Generate code for a 32-bit or 64-bit environment.
9896 The 32-bit environment sets int, long and pointer to 32 bits.
9897 The 64-bit environment sets int to 32 bits and long and pointer
9898 to 64 bits.  These are HP-UX specific flags.
9899
9900 @item -mno-sched-br-data-spec
9901 @itemx -msched-br-data-spec
9902 @opindex -mno-sched-br-data-spec
9903 @opindex -msched-br-data-spec
9904 (Dis/En)able data speculative scheduling before reload.
9905 This will result in generation of the ld.a instructions and
9906 the corresponding check instructions (ld.c / chk.a).
9907 The default is 'disable'.
9908
9909 @item -msched-ar-data-spec
9910 @itemx -mno-sched-ar-data-spec
9911 @opindex -msched-ar-data-spec
9912 @opindex -mno-sched-ar-data-spec
9913 (En/Dis)able data speculative scheduling after reload.
9914 This will result in generation of the ld.a instructions and
9915 the corresponding check instructions (ld.c / chk.a).
9916 The default is 'enable'.
9917
9918 @item -mno-sched-control-spec
9919 @itemx -msched-control-spec
9920 @opindex -mno-sched-control-spec
9921 @opindex -msched-control-spec
9922 (Dis/En)able control speculative scheduling.  This feature is
9923 available only during region scheduling (i.e. before reload).
9924 This will result in generation of the ld.s instructions and
9925 the corresponding check instructions chk.s .
9926 The default is 'disable'.
9927
9928 @item -msched-br-in-data-spec
9929 @itemx -mno-sched-br-in-data-spec
9930 @opindex -msched-br-in-data-spec
9931 @opindex -mno-sched-br-in-data-spec
9932 (En/Dis)able speculative scheduling of the instructions that
9933 are dependent on the data speculative loads before reload.
9934 This is effective only with @option{-msched-br-data-spec} enabled.
9935 The default is 'enable'.
9936
9937 @item -msched-ar-in-data-spec
9938 @itemx -mno-sched-ar-in-data-spec
9939 @opindex -msched-ar-in-data-spec
9940 @opindex -mno-sched-ar-in-data-spec
9941 (En/Dis)able speculative scheduling of the instructions that
9942 are dependent on the data speculative loads after reload.
9943 This is effective only with @option{-msched-ar-data-spec} enabled.
9944 The default is 'enable'.
9945
9946 @item -msched-in-control-spec
9947 @itemx -mno-sched-in-control-spec
9948 @opindex -msched-in-control-spec
9949 @opindex -mno-sched-in-control-spec
9950 (En/Dis)able speculative scheduling of the instructions that
9951 are dependent on the control speculative loads.
9952 This is effective only with @option{-msched-control-spec} enabled.
9953 The default is 'enable'.
9954
9955 @item -msched-ldc
9956 @itemx -mno-sched-ldc
9957 @opindex -msched-ldc
9958 @opindex -mno-sched-ldc
9959 (En/Dis)able use of simple data speculation checks ld.c .
9960 If disabled, only chk.a instructions will be emitted to check
9961 data speculative loads.
9962 The default is 'enable'.
9963
9964 @item -mno-sched-control-ldc
9965 @itemx -msched-control-ldc
9966 @opindex -mno-sched-control-ldc
9967 @opindex -msched-control-ldc 
9968 (Dis/En)able use of ld.c instructions to check control speculative loads.
9969 If enabled, in case of control speculative load with no speculatively
9970 scheduled dependent instructions this load will be emitted as ld.sa and
9971 ld.c will be used to check it.
9972 The default is 'disable'.
9973
9974 @item -mno-sched-spec-verbose
9975 @itemx -msched-spec-verbose
9976 @opindex -mno-sched-spec-verbose
9977 @opindex -msched-spec-verbose
9978 (Dis/En)able printing of the information about speculative motions.
9979
9980 @item -mno-sched-prefer-non-data-spec-insns
9981 @itemx -msched-prefer-non-data-spec-insns
9982 @opindex -mno-sched-prefer-non-data-spec-insns
9983 @opindex -msched-prefer-non-data-spec-insns
9984 If enabled, data speculative instructions will be chosen for schedule
9985 only if there are no other choices at the moment.  This will make
9986 the use of the data speculation much more conservative.
9987 The default is 'disable'.
9988
9989 @item -mno-sched-prefer-non-control-spec-insns
9990 @itemx -msched-prefer-non-control-spec-insns
9991 @opindex -mno-sched-prefer-non-control-spec-insns
9992 @opindex -msched-prefer-non-control-spec-insns
9993 If enabled, control speculative instructions will be chosen for schedule
9994 only if there are no other choices at the moment.  This will make
9995 the use of the control speculation much more conservative.
9996 The default is 'disable'.
9997
9998 @item -mno-sched-count-spec-in-critical-path
9999 @itemx -msched-count-spec-in-critical-path
10000 @opindex -mno-sched-count-spec-in-critical-path
10001 @opindex -msched-count-spec-in-critical-path
10002 If enabled, speculative dependencies will be considered during
10003 computation of the instructions priorities.  This will make the use of the
10004 speculation a bit more conservative.
10005 The default is 'disable'.
10006
10007 @end table
10008
10009 @node M32C Options
10010 @subsection M32C Options
10011 @cindex M32C options
10012
10013 @table @gcctabopt
10014 @item -mcpu=@var{name}
10015 @opindex mcpu=
10016 Select the CPU for which code is generated.  @var{name} may be one of
10017 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
10018 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
10019 the M32C/80 series.
10020
10021 @item -msim
10022 @opindex msim
10023 Specifies that the program will be run on the simulator.  This causes
10024 an alternate runtime library to be linked in which supports, for
10025 example, file I/O.  You must not use this option when generating
10026 programs that will run on real hardware; you must provide your own
10027 runtime library for whatever I/O functions are needed.
10028
10029 @item -memregs=@var{number}
10030 @opindex memregs=
10031 Specifies the number of memory-based pseudo-registers GCC will use
10032 during code generation.  These pseudo-registers will be used like real
10033 registers, so there is a tradeoff between GCC's ability to fit the
10034 code into available registers, and the performance penalty of using
10035 memory instead of registers.  Note that all modules in a program must
10036 be compiled with the same value for this option.  Because of that, you
10037 must not use this option with the default runtime libraries gcc
10038 builds.
10039
10040 @end table
10041
10042 @node M32R/D Options
10043 @subsection M32R/D Options
10044 @cindex M32R/D options
10045
10046 These @option{-m} options are defined for Renesas M32R/D architectures:
10047
10048 @table @gcctabopt
10049 @item -m32r2
10050 @opindex m32r2
10051 Generate code for the M32R/2@.
10052
10053 @item -m32rx
10054 @opindex m32rx
10055 Generate code for the M32R/X@.
10056
10057 @item -m32r
10058 @opindex m32r
10059 Generate code for the M32R@.  This is the default.
10060
10061 @item -mmodel=small
10062 @opindex mmodel=small
10063 Assume all objects live in the lower 16MB of memory (so that their addresses
10064 can be loaded with the @code{ld24} instruction), and assume all subroutines
10065 are reachable with the @code{bl} instruction.
10066 This is the default.
10067
10068 The addressability of a particular object can be set with the
10069 @code{model} attribute.
10070
10071 @item -mmodel=medium
10072 @opindex mmodel=medium
10073 Assume objects may be anywhere in the 32-bit address space (the compiler
10074 will generate @code{seth/add3} instructions to load their addresses), and
10075 assume all subroutines are reachable with the @code{bl} instruction.
10076
10077 @item -mmodel=large
10078 @opindex mmodel=large
10079 Assume objects may be anywhere in the 32-bit address space (the compiler
10080 will generate @code{seth/add3} instructions to load their addresses), and
10081 assume subroutines may not be reachable with the @code{bl} instruction
10082 (the compiler will generate the much slower @code{seth/add3/jl}
10083 instruction sequence).
10084
10085 @item -msdata=none
10086 @opindex msdata=none
10087 Disable use of the small data area.  Variables will be put into
10088 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
10089 @code{section} attribute has been specified).
10090 This is the default.
10091
10092 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
10093 Objects may be explicitly put in the small data area with the
10094 @code{section} attribute using one of these sections.
10095
10096 @item -msdata=sdata
10097 @opindex msdata=sdata
10098 Put small global and static data in the small data area, but do not
10099 generate special code to reference them.
10100
10101 @item -msdata=use
10102 @opindex msdata=use
10103 Put small global and static data in the small data area, and generate
10104 special instructions to reference them.
10105
10106 @item -G @var{num}
10107 @opindex G
10108 @cindex smaller data references
10109 Put global and static objects less than or equal to @var{num} bytes
10110 into the small data or bss sections instead of the normal data or bss
10111 sections.  The default value of @var{num} is 8.
10112 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
10113 for this option to have any effect.
10114
10115 All modules should be compiled with the same @option{-G @var{num}} value.
10116 Compiling with different values of @var{num} may or may not work; if it
10117 doesn't the linker will give an error message---incorrect code will not be
10118 generated.
10119
10120 @item -mdebug
10121 @opindex mdebug
10122 Makes the M32R specific code in the compiler display some statistics
10123 that might help in debugging programs.
10124
10125 @item -malign-loops
10126 @opindex malign-loops
10127 Align all loops to a 32-byte boundary.
10128
10129 @item -mno-align-loops
10130 @opindex mno-align-loops
10131 Do not enforce a 32-byte alignment for loops.  This is the default.
10132
10133 @item -missue-rate=@var{number}
10134 @opindex missue-rate=@var{number}
10135 Issue @var{number} instructions per cycle.  @var{number} can only be 1
10136 or 2.
10137
10138 @item -mbranch-cost=@var{number}
10139 @opindex mbranch-cost=@var{number}
10140 @var{number} can only be 1 or 2.  If it is 1 then branches will be
10141 preferred over conditional code, if it is 2, then the opposite will
10142 apply.
10143
10144 @item -mflush-trap=@var{number}
10145 @opindex mflush-trap=@var{number}
10146 Specifies the trap number to use to flush the cache.  The default is
10147 12.  Valid numbers are between 0 and 15 inclusive.
10148
10149 @item -mno-flush-trap
10150 @opindex mno-flush-trap
10151 Specifies that the cache cannot be flushed by using a trap.
10152
10153 @item -mflush-func=@var{name}
10154 @opindex mflush-func=@var{name}
10155 Specifies the name of the operating system function to call to flush
10156 the cache.  The default is @emph{_flush_cache}, but a function call
10157 will only be used if a trap is not available.
10158
10159 @item -mno-flush-func
10160 @opindex mno-flush-func
10161 Indicates that there is no OS function for flushing the cache.
10162
10163 @end table
10164
10165 @node M680x0 Options
10166 @subsection M680x0 Options
10167 @cindex M680x0 options
10168
10169 These are the @samp{-m} options defined for the 68000 series.  The default
10170 values for these options depends on which style of 68000 was selected when
10171 the compiler was configured; the defaults for the most common choices are
10172 given below.
10173
10174 @table @gcctabopt
10175 @item -m68000
10176 @itemx -mc68000
10177 @opindex m68000
10178 @opindex mc68000
10179 Generate output for a 68000.  This is the default
10180 when the compiler is configured for 68000-based systems.
10181
10182 Use this option for microcontrollers with a 68000 or EC000 core,
10183 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
10184
10185 @item -m68020
10186 @itemx -mc68020
10187 @opindex m68020
10188 @opindex mc68020
10189 Generate output for a 68020.  This is the default
10190 when the compiler is configured for 68020-based systems.
10191
10192 @item -m68881
10193 @opindex m68881
10194 Generate output containing 68881 instructions for floating point.
10195 This is the default for most 68020 systems unless @option{--nfp} was
10196 specified when the compiler was configured.
10197
10198 @item -m68030
10199 @opindex m68030
10200 Generate output for a 68030.  This is the default when the compiler is
10201 configured for 68030-based systems.
10202
10203 @item -m68040
10204 @opindex m68040
10205 Generate output for a 68040.  This is the default when the compiler is
10206 configured for 68040-based systems.
10207
10208 This option inhibits the use of 68881/68882 instructions that have to be
10209 emulated by software on the 68040.  Use this option if your 68040 does not
10210 have code to emulate those instructions.
10211
10212 @item -m68060
10213 @opindex m68060
10214 Generate output for a 68060.  This is the default when the compiler is
10215 configured for 68060-based systems.
10216
10217 This option inhibits the use of 68020 and 68881/68882 instructions that
10218 have to be emulated by software on the 68060.  Use this option if your 68060
10219 does not have code to emulate those instructions.
10220
10221 @item -mcpu32
10222 @opindex mcpu32
10223 Generate output for a CPU32.  This is the default
10224 when the compiler is configured for CPU32-based systems.
10225
10226 Use this option for microcontrollers with a
10227 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
10228 68336, 68340, 68341, 68349 and 68360.
10229
10230 @item -m5200
10231 @opindex m5200
10232 Generate output for a 520X ``coldfire'' family cpu.  This is the default
10233 when the compiler is configured for 520X-based systems.
10234
10235 Use this option for microcontroller with a 5200 core, including
10236 the MCF5202, MCF5203, MCF5204 and MCF5202.
10237
10238 @item -mcfv4e
10239 @opindex mcfv4e
10240 Generate output for a ColdFire V4e family cpu (e.g.@: 547x/548x).
10241 This includes use of hardware floating point instructions.
10242
10243 @item -m68020-40
10244 @opindex m68020-40
10245 Generate output for a 68040, without using any of the new instructions.
10246 This results in code which can run relatively efficiently on either a
10247 68020/68881 or a 68030 or a 68040.  The generated code does use the
10248 68881 instructions that are emulated on the 68040.
10249
10250 @item -m68020-60
10251 @opindex m68020-60
10252 Generate output for a 68060, without using any of the new instructions.
10253 This results in code which can run relatively efficiently on either a
10254 68020/68881 or a 68030 or a 68040.  The generated code does use the
10255 68881 instructions that are emulated on the 68060.
10256
10257 @item -msoft-float
10258 @opindex msoft-float
10259 Generate output containing library calls for floating point.
10260 @strong{Warning:} the requisite libraries are not available for all m68k
10261 targets.  Normally the facilities of the machine's usual C compiler are
10262 used, but this can't be done directly in cross-compilation.  You must
10263 make your own arrangements to provide suitable library functions for
10264 cross-compilation.  The embedded targets @samp{m68k-*-aout} and
10265 @samp{m68k-*-coff} do provide software floating point support.
10266
10267 @item -mshort
10268 @opindex mshort
10269 Consider type @code{int} to be 16 bits wide, like @code{short int}.
10270 Additionally, parameters passed on the stack are also aligned to a
10271 16-bit boundary even on targets whose API mandates promotion to 32-bit.
10272
10273 @item -mnobitfield
10274 @opindex mnobitfield
10275 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
10276 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
10277
10278 @item -mbitfield
10279 @opindex mbitfield
10280 Do use the bit-field instructions.  The @option{-m68020} option implies
10281 @option{-mbitfield}.  This is the default if you use a configuration
10282 designed for a 68020.
10283
10284 @item -mrtd
10285 @opindex mrtd
10286 Use a different function-calling convention, in which functions
10287 that take a fixed number of arguments return with the @code{rtd}
10288 instruction, which pops their arguments while returning.  This
10289 saves one instruction in the caller since there is no need to pop
10290 the arguments there.
10291
10292 This calling convention is incompatible with the one normally
10293 used on Unix, so you cannot use it if you need to call libraries
10294 compiled with the Unix compiler.
10295
10296 Also, you must provide function prototypes for all functions that
10297 take variable numbers of arguments (including @code{printf});
10298 otherwise incorrect code will be generated for calls to those
10299 functions.
10300
10301 In addition, seriously incorrect code will result if you call a
10302 function with too many arguments.  (Normally, extra arguments are
10303 harmlessly ignored.)
10304
10305 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
10306 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
10307
10308 @item -malign-int
10309 @itemx -mno-align-int
10310 @opindex malign-int
10311 @opindex mno-align-int
10312 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
10313 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
10314 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
10315 Aligning variables on 32-bit boundaries produces code that runs somewhat
10316 faster on processors with 32-bit busses at the expense of more memory.
10317
10318 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
10319 align structures containing the above types  differently than
10320 most published application binary interface specifications for the m68k.
10321
10322 @item -mpcrel
10323 @opindex mpcrel
10324 Use the pc-relative addressing mode of the 68000 directly, instead of
10325 using a global offset table.  At present, this option implies @option{-fpic},
10326 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
10327 not presently supported with @option{-mpcrel}, though this could be supported for
10328 68020 and higher processors.
10329
10330 @item -mno-strict-align
10331 @itemx -mstrict-align
10332 @opindex mno-strict-align
10333 @opindex mstrict-align
10334 Do not (do) assume that unaligned memory references will be handled by
10335 the system.
10336
10337 @item -msep-data
10338 Generate code that allows the data segment to be located in a different
10339 area of memory from the text segment.  This allows for execute in place in
10340 an environment without virtual memory management.  This option implies
10341 @option{-fPIC}.
10342
10343 @item -mno-sep-data
10344 Generate code that assumes that the data segment follows the text segment.
10345 This is the default.
10346
10347 @item -mid-shared-library
10348 Generate code that supports shared libraries via the library ID method.
10349 This allows for execute in place and shared libraries in an environment
10350 without virtual memory management.  This option implies @option{-fPIC}.
10351
10352 @item -mno-id-shared-library
10353 Generate code that doesn't assume ID based shared libraries are being used.
10354 This is the default.
10355
10356 @item -mshared-library-id=n
10357 Specified the identification number of the ID based shared library being
10358 compiled.  Specifying a value of 0 will generate more compact code, specifying
10359 other values will force the allocation of that number to the current
10360 library but is no more space or time efficient than omitting this option.
10361
10362 @end table
10363
10364 @node M68hc1x Options
10365 @subsection M68hc1x Options
10366 @cindex M68hc1x options
10367
10368 These are the @samp{-m} options defined for the 68hc11 and 68hc12
10369 microcontrollers.  The default values for these options depends on
10370 which style of microcontroller was selected when the compiler was configured;
10371 the defaults for the most common choices are given below.
10372
10373 @table @gcctabopt
10374 @item -m6811
10375 @itemx -m68hc11
10376 @opindex m6811
10377 @opindex m68hc11
10378 Generate output for a 68HC11.  This is the default
10379 when the compiler is configured for 68HC11-based systems.
10380
10381 @item -m6812
10382 @itemx -m68hc12
10383 @opindex m6812
10384 @opindex m68hc12
10385 Generate output for a 68HC12.  This is the default
10386 when the compiler is configured for 68HC12-based systems.
10387
10388 @item -m68S12
10389 @itemx -m68hcs12
10390 @opindex m68S12
10391 @opindex m68hcs12
10392 Generate output for a 68HCS12.
10393
10394 @item -mauto-incdec
10395 @opindex mauto-incdec
10396 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
10397 addressing modes.
10398
10399 @item -minmax
10400 @itemx -nominmax
10401 @opindex minmax
10402 @opindex mnominmax
10403 Enable the use of 68HC12 min and max instructions.
10404
10405 @item -mlong-calls
10406 @itemx -mno-long-calls
10407 @opindex mlong-calls
10408 @opindex mno-long-calls
10409 Treat all calls as being far away (near).  If calls are assumed to be
10410 far away, the compiler will use the @code{call} instruction to
10411 call a function and the @code{rtc} instruction for returning.
10412
10413 @item -mshort
10414 @opindex mshort
10415 Consider type @code{int} to be 16 bits wide, like @code{short int}.
10416
10417 @item -msoft-reg-count=@var{count}
10418 @opindex msoft-reg-count
10419 Specify the number of pseudo-soft registers which are used for the
10420 code generation.  The maximum number is 32.  Using more pseudo-soft
10421 register may or may not result in better code depending on the program.
10422 The default is 4 for 68HC11 and 2 for 68HC12.
10423
10424 @end table
10425
10426 @node MCore Options
10427 @subsection MCore Options
10428 @cindex MCore options
10429
10430 These are the @samp{-m} options defined for the Motorola M*Core
10431 processors.
10432
10433 @table @gcctabopt
10434
10435 @item -mhardlit
10436 @itemx -mno-hardlit
10437 @opindex mhardlit
10438 @opindex mno-hardlit
10439 Inline constants into the code stream if it can be done in two
10440 instructions or less.
10441
10442 @item -mdiv
10443 @itemx -mno-div
10444 @opindex mdiv
10445 @opindex mno-div
10446 Use the divide instruction.  (Enabled by default).
10447
10448 @item -mrelax-immediate
10449 @itemx -mno-relax-immediate
10450 @opindex mrelax-immediate
10451 @opindex mno-relax-immediate
10452 Allow arbitrary sized immediates in bit operations.
10453
10454 @item -mwide-bitfields
10455 @itemx -mno-wide-bitfields
10456 @opindex mwide-bitfields
10457 @opindex mno-wide-bitfields
10458 Always treat bit-fields as int-sized.
10459
10460 @item -m4byte-functions
10461 @itemx -mno-4byte-functions
10462 @opindex m4byte-functions
10463 @opindex mno-4byte-functions
10464 Force all functions to be aligned to a four byte boundary.
10465
10466 @item -mcallgraph-data
10467 @itemx -mno-callgraph-data
10468 @opindex mcallgraph-data
10469 @opindex mno-callgraph-data
10470 Emit callgraph information.
10471
10472 @item -mslow-bytes
10473 @itemx -mno-slow-bytes
10474 @opindex mslow-bytes
10475 @opindex mno-slow-bytes
10476 Prefer word access when reading byte quantities.
10477
10478 @item -mlittle-endian
10479 @itemx -mbig-endian
10480 @opindex mlittle-endian
10481 @opindex mbig-endian
10482 Generate code for a little endian target.
10483
10484 @item -m210
10485 @itemx -m340
10486 @opindex m210
10487 @opindex m340
10488 Generate code for the 210 processor.
10489 @end table
10490
10491 @node MIPS Options
10492 @subsection MIPS Options
10493 @cindex MIPS options
10494
10495 @table @gcctabopt
10496
10497 @item -EB
10498 @opindex EB
10499 Generate big-endian code.
10500
10501 @item -EL
10502 @opindex EL
10503 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
10504 configurations.
10505
10506 @item -march=@var{arch}
10507 @opindex march
10508 Generate code that will run on @var{arch}, which can be the name of a
10509 generic MIPS ISA, or the name of a particular processor.
10510 The ISA names are:
10511 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
10512 @samp{mips32}, @samp{mips32r2}, and @samp{mips64}.
10513 The processor names are:
10514 @samp{4kc}, @samp{4km}, @samp{4kp},
10515 @samp{4kec}, @samp{4kem}, @samp{4kep},
10516 @samp{5kc}, @samp{5kf},
10517 @samp{20kc},
10518 @samp{24kc}, @samp{24kf}, @samp{24kx},
10519 @samp{24kec}, @samp{24kef}, @samp{24kex},
10520 @samp{34kc}, @samp{34kf}, @samp{34kx},
10521 @samp{m4k},
10522 @samp{orion},
10523 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
10524 @samp{r4600}, @samp{r4650}, @samp{r6000}, @samp{r8000},
10525 @samp{rm7000}, @samp{rm9000},
10526 @samp{sb1},
10527 @samp{sr71000},
10528 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
10529 @samp{vr5000}, @samp{vr5400} and @samp{vr5500}.
10530 The special value @samp{from-abi} selects the
10531 most compatible architecture for the selected ABI (that is,
10532 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
10533
10534 In processor names, a final @samp{000} can be abbreviated as @samp{k}
10535 (for example, @samp{-march=r2k}).  Prefixes are optional, and
10536 @samp{vr} may be written @samp{r}.
10537
10538 GCC defines two macros based on the value of this option.  The first
10539 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
10540 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
10541 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
10542 For example, @samp{-march=r2000} will set @samp{_MIPS_ARCH}
10543 to @samp{"r2000"} and define the macro @samp{_MIPS_ARCH_R2000}.
10544
10545 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
10546 above.  In other words, it will have the full prefix and will not
10547 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
10548 the macro names the resolved architecture (either @samp{"mips1"} or
10549 @samp{"mips3"}).  It names the default architecture when no
10550 @option{-march} option is given.
10551
10552 @item -mtune=@var{arch}
10553 @opindex mtune
10554 Optimize for @var{arch}.  Among other things, this option controls
10555 the way instructions are scheduled, and the perceived cost of arithmetic
10556 operations.  The list of @var{arch} values is the same as for
10557 @option{-march}.
10558
10559 When this option is not used, GCC will optimize for the processor
10560 specified by @option{-march}.  By using @option{-march} and
10561 @option{-mtune} together, it is possible to generate code that will
10562 run on a family of processors, but optimize the code for one
10563 particular member of that family.
10564
10565 @samp{-mtune} defines the macros @samp{_MIPS_TUNE} and
10566 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
10567 @samp{-march} ones described above.
10568
10569 @item -mips1
10570 @opindex mips1
10571 Equivalent to @samp{-march=mips1}.
10572
10573 @item -mips2
10574 @opindex mips2
10575 Equivalent to @samp{-march=mips2}.
10576
10577 @item -mips3
10578 @opindex mips3
10579 Equivalent to @samp{-march=mips3}.
10580
10581 @item -mips4
10582 @opindex mips4
10583 Equivalent to @samp{-march=mips4}.
10584
10585 @item -mips32
10586 @opindex mips32
10587 Equivalent to @samp{-march=mips32}.
10588
10589 @item -mips32r2
10590 @opindex mips32r2
10591 Equivalent to @samp{-march=mips32r2}.
10592
10593 @item -mips64
10594 @opindex mips64
10595 Equivalent to @samp{-march=mips64}.
10596
10597 @item -mips16
10598 @itemx -mno-mips16
10599 @opindex mips16
10600 @opindex mno-mips16
10601 Generate (do not generate) MIPS16 code.  If GCC is targetting a
10602 MIPS32 or MIPS64 architecture, it will make use of the MIPS16e ASE@.
10603
10604 @item -mabi=32
10605 @itemx -mabi=o64
10606 @itemx -mabi=n32
10607 @itemx -mabi=64
10608 @itemx -mabi=eabi
10609 @opindex mabi=32
10610 @opindex mabi=o64
10611 @opindex mabi=n32
10612 @opindex mabi=64
10613 @opindex mabi=eabi
10614 Generate code for the given ABI@.
10615
10616 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
10617 generates 64-bit code when you select a 64-bit architecture, but you
10618 can use @option{-mgp32} to get 32-bit code instead.
10619
10620 For information about the O64 ABI, see
10621 @w{@uref{http://gcc.gnu.org/projects/mipso64-abi.html}}.
10622
10623 @item -mabicalls
10624 @itemx -mno-abicalls
10625 @opindex mabicalls
10626 @opindex mno-abicalls
10627 Generate (do not generate) code that is suitable for SVR4-style
10628 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
10629 systems.
10630
10631 @item -mshared
10632 @itemx -mno-shared
10633 Generate (do not generate) code that is fully position-independent,
10634 and that can therefore be linked into shared libraries.  This option
10635 only affects @option{-mabicalls}.
10636
10637 All @option{-mabicalls} code has traditionally been position-independent,
10638 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
10639 as an extension, the GNU toolchain allows executables to use absolute
10640 accesses for locally-binding symbols.  It can also use shorter GP
10641 initialization sequences and generate direct calls to locally-defined
10642 functions.  This mode is selected by @option{-mno-shared}.
10643
10644 @option{-mno-shared} depends on binutils 2.16 or higher and generates
10645 objects that can only be linked by the GNU linker.  However, the option
10646 does not affect the ABI of the final executable; it only affects the ABI
10647 of relocatable objects.  Using @option{-mno-shared} will generally make
10648 executables both smaller and quicker.
10649
10650 @option{-mshared} is the default.
10651
10652 @item -mxgot
10653 @itemx -mno-xgot
10654 @opindex mxgot
10655 @opindex mno-xgot
10656 Lift (do not lift) the usual restrictions on the size of the global
10657 offset table.
10658
10659 GCC normally uses a single instruction to load values from the GOT@.
10660 While this is relatively efficient, it will only work if the GOT
10661 is smaller than about 64k.  Anything larger will cause the linker
10662 to report an error such as:
10663
10664 @cindex relocation truncated to fit (MIPS)
10665 @smallexample
10666 relocation truncated to fit: R_MIPS_GOT16 foobar
10667 @end smallexample
10668
10669 If this happens, you should recompile your code with @option{-mxgot}.
10670 It should then work with very large GOTs, although it will also be
10671 less efficient, since it will take three instructions to fetch the
10672 value of a global symbol.
10673
10674 Note that some linkers can create multiple GOTs.  If you have such a
10675 linker, you should only need to use @option{-mxgot} when a single object
10676 file accesses more than 64k's worth of GOT entries.  Very few do.
10677
10678 These options have no effect unless GCC is generating position
10679 independent code.
10680
10681 @item -mgp32
10682 @opindex mgp32
10683 Assume that general-purpose registers are 32 bits wide.
10684
10685 @item -mgp64
10686 @opindex mgp64
10687 Assume that general-purpose registers are 64 bits wide.
10688
10689 @item -mfp32
10690 @opindex mfp32
10691 Assume that floating-point registers are 32 bits wide.
10692
10693 @item -mfp64
10694 @opindex mfp64
10695 Assume that floating-point registers are 64 bits wide.
10696
10697 @item -mhard-float
10698 @opindex mhard-float
10699 Use floating-point coprocessor instructions.
10700
10701 @item -msoft-float
10702 @opindex msoft-float
10703 Do not use floating-point coprocessor instructions.  Implement
10704 floating-point calculations using library calls instead.
10705
10706 @item -msingle-float
10707 @opindex msingle-float
10708 Assume that the floating-point coprocessor only supports single-precision
10709 operations.
10710
10711 @itemx -mdouble-float
10712 @opindex mdouble-float
10713 Assume that the floating-point coprocessor supports double-precision
10714 operations.  This is the default.
10715
10716 @itemx -mdsp
10717 @itemx -mno-dsp
10718 @opindex mdsp
10719 @opindex mno-dsp
10720 Use (do not use) the MIPS DSP ASE.  @xref{MIPS DSP Built-in Functions}.
10721
10722 @itemx -mpaired-single
10723 @itemx -mno-paired-single
10724 @opindex mpaired-single
10725 @opindex mno-paired-single
10726 Use (do not use) paired-single floating-point instructions.
10727 @xref{MIPS Paired-Single Support}.  This option can only be used
10728 when generating 64-bit code and requires hardware floating-point
10729 support to be enabled.
10730
10731 @itemx -mips3d
10732 @itemx -mno-mips3d
10733 @opindex mips3d
10734 @opindex mno-mips3d
10735 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
10736 The option @option{-mips3d} implies @option{-mpaired-single}.
10737
10738 @item -mlong64
10739 @opindex mlong64
10740 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
10741 an explanation of the default and the way that the pointer size is
10742 determined.
10743
10744 @item -mlong32
10745 @opindex mlong32
10746 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
10747
10748 The default size of @code{int}s, @code{long}s and pointers depends on
10749 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
10750 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
10751 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
10752 or the same size as integer registers, whichever is smaller.
10753
10754 @item -msym32
10755 @itemx -mno-sym32
10756 @opindex msym32
10757 @opindex mno-sym32
10758 Assume (do not assume) that all symbols have 32-bit values, regardless
10759 of the selected ABI@.  This option is useful in combination with
10760 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
10761 to generate shorter and faster references to symbolic addresses.
10762
10763 @item -G @var{num}
10764 @opindex G
10765 @cindex smaller data references (MIPS)
10766 @cindex gp-relative references (MIPS)
10767 Put global and static items less than or equal to @var{num} bytes into
10768 the small data or bss section instead of the normal data or bss section.
10769 This allows the data to be accessed using a single instruction.
10770
10771 All modules should be compiled with the same @option{-G @var{num}}
10772 value.
10773
10774 @item -membedded-data
10775 @itemx -mno-embedded-data
10776 @opindex membedded-data
10777 @opindex mno-embedded-data
10778 Allocate variables to the read-only data section first if possible, then
10779 next in the small data section if possible, otherwise in data.  This gives
10780 slightly slower code than the default, but reduces the amount of RAM required
10781 when executing, and thus may be preferred for some embedded systems.
10782
10783 @item -muninit-const-in-rodata
10784 @itemx -mno-uninit-const-in-rodata
10785 @opindex muninit-const-in-rodata
10786 @opindex mno-uninit-const-in-rodata
10787 Put uninitialized @code{const} variables in the read-only data section.
10788 This option is only meaningful in conjunction with @option{-membedded-data}.
10789
10790 @item -msplit-addresses
10791 @itemx -mno-split-addresses
10792 @opindex msplit-addresses
10793 @opindex mno-split-addresses
10794 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
10795 relocation operators.  This option has been superseded by
10796 @option{-mexplicit-relocs} but is retained for backwards compatibility.
10797
10798 @item -mexplicit-relocs
10799 @itemx -mno-explicit-relocs
10800 @opindex mexplicit-relocs
10801 @opindex mno-explicit-relocs
10802 Use (do not use) assembler relocation operators when dealing with symbolic
10803 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
10804 is to use assembler macros instead.
10805
10806 @option{-mexplicit-relocs} is the default if GCC was configured
10807 to use an assembler that supports relocation operators.
10808
10809 @item -mcheck-zero-division
10810 @itemx -mno-check-zero-division
10811 @opindex mcheck-zero-division
10812 @opindex mno-check-zero-division
10813 Trap (do not trap) on integer division by zero.  The default is
10814 @option{-mcheck-zero-division}.
10815
10816 @item -mdivide-traps
10817 @itemx -mdivide-breaks
10818 @opindex mdivide-traps
10819 @opindex mdivide-breaks
10820 MIPS systems check for division by zero by generating either a
10821 conditional trap or a break instruction.  Using traps results in
10822 smaller code, but is only supported on MIPS II and later.  Also, some
10823 versions of the Linux kernel have a bug that prevents trap from
10824 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
10825 allow conditional traps on architectures that support them and
10826 @option{-mdivide-breaks} to force the use of breaks.
10827
10828 The default is usually @option{-mdivide-traps}, but this can be
10829 overridden at configure time using @option{--with-divide=breaks}.
10830 Divide-by-zero checks can be completely disabled using
10831 @option{-mno-check-zero-division}.
10832
10833 @item -mmemcpy
10834 @itemx -mno-memcpy
10835 @opindex mmemcpy
10836 @opindex mno-memcpy
10837 Force (do not force) the use of @code{memcpy()} for non-trivial block
10838 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
10839 most constant-sized copies.
10840
10841 @item -mlong-calls
10842 @itemx -mno-long-calls
10843 @opindex mlong-calls
10844 @opindex mno-long-calls
10845 Disable (do not disable) use of the @code{jal} instruction.  Calling
10846 functions using @code{jal} is more efficient but requires the caller
10847 and callee to be in the same 256 megabyte segment.
10848
10849 This option has no effect on abicalls code.  The default is
10850 @option{-mno-long-calls}.
10851
10852 @item -mmad
10853 @itemx -mno-mad
10854 @opindex mmad
10855 @opindex mno-mad
10856 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
10857 instructions, as provided by the R4650 ISA@.
10858
10859 @item -mfused-madd
10860 @itemx -mno-fused-madd
10861 @opindex mfused-madd
10862 @opindex mno-fused-madd
10863 Enable (disable) use of the floating point multiply-accumulate
10864 instructions, when they are available.  The default is
10865 @option{-mfused-madd}.
10866
10867 When multiply-accumulate instructions are used, the intermediate
10868 product is calculated to infinite precision and is not subject to
10869 the FCSR Flush to Zero bit.  This may be undesirable in some
10870 circumstances.
10871
10872 @item -nocpp
10873 @opindex nocpp
10874 Tell the MIPS assembler to not run its preprocessor over user
10875 assembler files (with a @samp{.s} suffix) when assembling them.
10876
10877 @item -mfix-r4000
10878 @itemx -mno-fix-r4000
10879 @opindex mfix-r4000
10880 @opindex mno-fix-r4000
10881 Work around certain R4000 CPU errata:
10882 @itemize @minus
10883 @item
10884 A double-word or a variable shift may give an incorrect result if executed
10885 immediately after starting an integer division.
10886 @item
10887 A double-word or a variable shift may give an incorrect result if executed
10888 while an integer multiplication is in progress.
10889 @item
10890 An integer division may give an incorrect result if started in a delay slot
10891 of a taken branch or a jump.
10892 @end itemize
10893
10894 @item -mfix-r4400
10895 @itemx -mno-fix-r4400
10896 @opindex mfix-r4400
10897 @opindex mno-fix-r4400
10898 Work around certain R4400 CPU errata:
10899 @itemize @minus
10900 @item
10901 A double-word or a variable shift may give an incorrect result if executed
10902 immediately after starting an integer division.
10903 @end itemize
10904
10905 @item -mfix-vr4120
10906 @itemx -mno-fix-vr4120
10907 @opindex mfix-vr4120
10908 Work around certain VR4120 errata:
10909 @itemize @minus
10910 @item
10911 @code{dmultu} does not always produce the correct result.
10912 @item
10913 @code{div} and @code{ddiv} do not always produce the correct result if one
10914 of the operands is negative.
10915 @end itemize
10916 The workarounds for the division errata rely on special functions in
10917 @file{libgcc.a}.  At present, these functions are only provided by
10918 the @code{mips64vr*-elf} configurations.
10919
10920 Other VR4120 errata require a nop to be inserted between certain pairs of
10921 instructions.  These errata are handled by the assembler, not by GCC itself.
10922
10923 @item -mfix-vr4130
10924 @opindex mfix-vr4130
10925 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
10926 workarounds are implemented by the assembler rather than by GCC,
10927 although GCC will avoid using @code{mflo} and @code{mfhi} if the
10928 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
10929 instructions are available instead.
10930
10931 @item -mfix-sb1
10932 @itemx -mno-fix-sb1
10933 @opindex mfix-sb1
10934 Work around certain SB-1 CPU core errata.
10935 (This flag currently works around the SB-1 revision 2
10936 ``F1'' and ``F2'' floating point errata.)
10937
10938 @item -mflush-func=@var{func}
10939 @itemx -mno-flush-func
10940 @opindex mflush-func
10941 Specifies the function to call to flush the I and D caches, or to not
10942 call any such function.  If called, the function must take the same
10943 arguments as the common @code{_flush_func()}, that is, the address of the
10944 memory range for which the cache is being flushed, the size of the
10945 memory range, and the number 3 (to flush both caches).  The default
10946 depends on the target GCC was configured for, but commonly is either
10947 @samp{_flush_func} or @samp{__cpu_flush}.
10948
10949 @item -mbranch-likely
10950 @itemx -mno-branch-likely
10951 @opindex mbranch-likely
10952 @opindex mno-branch-likely
10953 Enable or disable use of Branch Likely instructions, regardless of the
10954 default for the selected architecture.  By default, Branch Likely
10955 instructions may be generated if they are supported by the selected
10956 architecture.  An exception is for the MIPS32 and MIPS64 architectures
10957 and processors which implement those architectures; for those, Branch
10958 Likely instructions will not be generated by default because the MIPS32
10959 and MIPS64 architectures specifically deprecate their use.
10960
10961 @item -mfp-exceptions
10962 @itemx -mno-fp-exceptions
10963 @opindex mfp-exceptions
10964 Specifies whether FP exceptions are enabled.  This affects how we schedule
10965 FP instructions for some processors.  The default is that FP exceptions are
10966 enabled.
10967
10968 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
10969 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
10970 FP pipe.
10971
10972 @item -mvr4130-align
10973 @itemx -mno-vr4130-align
10974 @opindex mvr4130-align
10975 The VR4130 pipeline is two-way superscalar, but can only issue two
10976 instructions together if the first one is 8-byte aligned.  When this
10977 option is enabled, GCC will align pairs of instructions that it
10978 thinks should execute in parallel.
10979
10980 This option only has an effect when optimizing for the VR4130.
10981 It normally makes code faster, but at the expense of making it bigger.
10982 It is enabled by default at optimization level @option{-O3}.
10983 @end table
10984
10985 @node MMIX Options
10986 @subsection MMIX Options
10987 @cindex MMIX Options
10988
10989 These options are defined for the MMIX:
10990
10991 @table @gcctabopt
10992 @item -mlibfuncs
10993 @itemx -mno-libfuncs
10994 @opindex mlibfuncs
10995 @opindex mno-libfuncs
10996 Specify that intrinsic library functions are being compiled, passing all
10997 values in registers, no matter the size.
10998
10999 @item -mepsilon
11000 @itemx -mno-epsilon
11001 @opindex mepsilon
11002 @opindex mno-epsilon
11003 Generate floating-point comparison instructions that compare with respect
11004 to the @code{rE} epsilon register.
11005
11006 @item -mabi=mmixware
11007 @itemx -mabi=gnu
11008 @opindex mabi-mmixware
11009 @opindex mabi=gnu
11010 Generate code that passes function parameters and return values that (in
11011 the called function) are seen as registers @code{$0} and up, as opposed to
11012 the GNU ABI which uses global registers @code{$231} and up.
11013
11014 @item -mzero-extend
11015 @itemx -mno-zero-extend
11016 @opindex mzero-extend
11017 @opindex mno-zero-extend
11018 When reading data from memory in sizes shorter than 64 bits, use (do not
11019 use) zero-extending load instructions by default, rather than
11020 sign-extending ones.
11021
11022 @item -mknuthdiv
11023 @itemx -mno-knuthdiv
11024 @opindex mknuthdiv
11025 @opindex mno-knuthdiv
11026 Make the result of a division yielding a remainder have the same sign as
11027 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
11028 remainder follows the sign of the dividend.  Both methods are
11029 arithmetically valid, the latter being almost exclusively used.
11030
11031 @item -mtoplevel-symbols
11032 @itemx -mno-toplevel-symbols
11033 @opindex mtoplevel-symbols
11034 @opindex mno-toplevel-symbols
11035 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
11036 code can be used with the @code{PREFIX} assembly directive.
11037
11038 @item -melf
11039 @opindex melf
11040 Generate an executable in the ELF format, rather than the default
11041 @samp{mmo} format used by the @command{mmix} simulator.
11042
11043 @item -mbranch-predict
11044 @itemx -mno-branch-predict
11045 @opindex mbranch-predict
11046 @opindex mno-branch-predict
11047 Use (do not use) the probable-branch instructions, when static branch
11048 prediction indicates a probable branch.
11049
11050 @item -mbase-addresses
11051 @itemx -mno-base-addresses
11052 @opindex mbase-addresses
11053 @opindex mno-base-addresses
11054 Generate (do not generate) code that uses @emph{base addresses}.  Using a
11055 base address automatically generates a request (handled by the assembler
11056 and the linker) for a constant to be set up in a global register.  The
11057 register is used for one or more base address requests within the range 0
11058 to 255 from the value held in the register.  The generally leads to short
11059 and fast code, but the number of different data items that can be
11060 addressed is limited.  This means that a program that uses lots of static
11061 data may require @option{-mno-base-addresses}.
11062
11063 @item -msingle-exit
11064 @itemx -mno-single-exit
11065 @opindex msingle-exit
11066 @opindex mno-single-exit
11067 Force (do not force) generated code to have a single exit point in each
11068 function.
11069 @end table
11070
11071 @node MN10300 Options
11072 @subsection MN10300 Options
11073 @cindex MN10300 options
11074
11075 These @option{-m} options are defined for Matsushita MN10300 architectures:
11076
11077 @table @gcctabopt
11078 @item -mmult-bug
11079 @opindex mmult-bug
11080 Generate code to avoid bugs in the multiply instructions for the MN10300
11081 processors.  This is the default.
11082
11083 @item -mno-mult-bug
11084 @opindex mno-mult-bug
11085 Do not generate code to avoid bugs in the multiply instructions for the
11086 MN10300 processors.
11087
11088 @item -mam33
11089 @opindex mam33
11090 Generate code which uses features specific to the AM33 processor.
11091
11092 @item -mno-am33
11093 @opindex mno-am33
11094 Do not generate code which uses features specific to the AM33 processor.  This
11095 is the default.
11096
11097 @item -mreturn-pointer-on-d0
11098 @opindex mreturn-pointer-on-d0
11099 When generating a function which returns a pointer, return the pointer
11100 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
11101 only in a0, and attempts to call such functions without a prototype
11102 would result in errors.  Note that this option is on by default; use
11103 @option{-mno-return-pointer-on-d0} to disable it.
11104
11105 @item -mno-crt0
11106 @opindex mno-crt0
11107 Do not link in the C run-time initialization object file.
11108
11109 @item -mrelax
11110 @opindex mrelax
11111 Indicate to the linker that it should perform a relaxation optimization pass
11112 to shorten branches, calls and absolute memory addresses.  This option only
11113 has an effect when used on the command line for the final link step.
11114
11115 This option makes symbolic debugging impossible.
11116 @end table
11117
11118 @node MT Options
11119 @subsection MT Options
11120 @cindex MT options
11121
11122 These @option{-m} options are defined for Morpho MT architectures:
11123
11124 @table @gcctabopt
11125
11126 @item -march=@var{cpu-type}
11127 @opindex march
11128 Generate code that will run on @var{cpu-type}, which is the name of a system
11129 representing a certain processor type.  Possible values for
11130 @var{cpu-type} are @samp{ms1-64-001}, @samp{ms1-16-002},
11131 @samp{ms1-16-003} and @samp{ms2}.
11132
11133 When this option is not used, the default is @option{-march=ms1-16-002}.
11134
11135 @item -mbacc
11136 @opindex mbacc
11137 Use byte loads and stores when generating code.
11138
11139 @item -mno-bacc
11140 @opindex mno-bacc
11141 Do not use byte loads and stores when generating code.
11142
11143 @item -msim
11144 @opindex msim
11145 Use simulator runtime
11146
11147 @item -mno-crt0
11148 @opindex mno-crt0
11149 Do not link in the C run-time initialization object file
11150 @file{crti.o}.  Other run-time initialization and termination files
11151 such as @file{startup.o} and @file{exit.o} are still included on the
11152 linker command line.
11153
11154 @end table
11155
11156 @node PDP-11 Options
11157 @subsection PDP-11 Options
11158 @cindex PDP-11 Options
11159
11160 These options are defined for the PDP-11:
11161
11162 @table @gcctabopt
11163 @item -mfpu
11164 @opindex mfpu
11165 Use hardware FPP floating point.  This is the default.  (FIS floating
11166 point on the PDP-11/40 is not supported.)
11167
11168 @item -msoft-float
11169 @opindex msoft-float
11170 Do not use hardware floating point.
11171
11172 @item -mac0
11173 @opindex mac0
11174 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
11175
11176 @item -mno-ac0
11177 @opindex mno-ac0
11178 Return floating-point results in memory.  This is the default.
11179
11180 @item -m40
11181 @opindex m40
11182 Generate code for a PDP-11/40.
11183
11184 @item -m45
11185 @opindex m45
11186 Generate code for a PDP-11/45.  This is the default.
11187
11188 @item -m10
11189 @opindex m10
11190 Generate code for a PDP-11/10.
11191
11192 @item -mbcopy-builtin
11193 @opindex bcopy-builtin
11194 Use inline @code{movmemhi} patterns for copying memory.  This is the
11195 default.
11196
11197 @item -mbcopy
11198 @opindex mbcopy
11199 Do not use inline @code{movmemhi} patterns for copying memory.
11200
11201 @item -mint16
11202 @itemx -mno-int32
11203 @opindex mint16
11204 @opindex mno-int32
11205 Use 16-bit @code{int}.  This is the default.
11206
11207 @item -mint32
11208 @itemx -mno-int16
11209 @opindex mint32
11210 @opindex mno-int16
11211 Use 32-bit @code{int}.
11212
11213 @item -mfloat64
11214 @itemx -mno-float32
11215 @opindex mfloat64
11216 @opindex mno-float32
11217 Use 64-bit @code{float}.  This is the default.
11218
11219 @item -mfloat32
11220 @itemx -mno-float64
11221 @opindex mfloat32
11222 @opindex mno-float64
11223 Use 32-bit @code{float}.
11224
11225 @item -mabshi
11226 @opindex mabshi
11227 Use @code{abshi2} pattern.  This is the default.
11228
11229 @item -mno-abshi
11230 @opindex mno-abshi
11231 Do not use @code{abshi2} pattern.
11232
11233 @item -mbranch-expensive
11234 @opindex mbranch-expensive
11235 Pretend that branches are expensive.  This is for experimenting with
11236 code generation only.
11237
11238 @item -mbranch-cheap
11239 @opindex mbranch-cheap
11240 Do not pretend that branches are expensive.  This is the default.
11241
11242 @item -msplit
11243 @opindex msplit
11244 Generate code for a system with split I&D@.
11245
11246 @item -mno-split
11247 @opindex mno-split
11248 Generate code for a system without split I&D@.  This is the default.
11249
11250 @item -munix-asm
11251 @opindex munix-asm
11252 Use Unix assembler syntax.  This is the default when configured for
11253 @samp{pdp11-*-bsd}.
11254
11255 @item -mdec-asm
11256 @opindex mdec-asm
11257 Use DEC assembler syntax.  This is the default when configured for any
11258 PDP-11 target other than @samp{pdp11-*-bsd}.
11259 @end table
11260
11261 @node PowerPC Options
11262 @subsection PowerPC Options
11263 @cindex PowerPC options
11264
11265 These are listed under @xref{RS/6000 and PowerPC Options}.
11266
11267 @node RS/6000 and PowerPC Options
11268 @subsection IBM RS/6000 and PowerPC Options
11269 @cindex RS/6000 and PowerPC Options
11270 @cindex IBM RS/6000 and PowerPC Options
11271
11272 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
11273 @table @gcctabopt
11274 @item -mpower
11275 @itemx -mno-power
11276 @itemx -mpower2
11277 @itemx -mno-power2
11278 @itemx -mpowerpc
11279 @itemx -mno-powerpc
11280 @itemx -mpowerpc-gpopt
11281 @itemx -mno-powerpc-gpopt
11282 @itemx -mpowerpc-gfxopt
11283 @itemx -mno-powerpc-gfxopt
11284 @itemx -mpowerpc64
11285 @itemx -mno-powerpc64
11286 @itemx -mmfcrf
11287 @itemx -mno-mfcrf
11288 @itemx -mpopcntb
11289 @itemx -mno-popcntb
11290 @itemx -mfprnd
11291 @itemx -mno-fprnd
11292 @itemx -mmfpgpr
11293 @itemx -mno-mfpgpr
11294 @opindex mpower
11295 @opindex mno-power
11296 @opindex mpower2
11297 @opindex mno-power2
11298 @opindex mpowerpc
11299 @opindex mno-powerpc
11300 @opindex mpowerpc-gpopt
11301 @opindex mno-powerpc-gpopt
11302 @opindex mpowerpc-gfxopt
11303 @opindex mno-powerpc-gfxopt
11304 @opindex mpowerpc64
11305 @opindex mno-powerpc64
11306 @opindex mmfcrf
11307 @opindex mno-mfcrf
11308 @opindex mpopcntb
11309 @opindex mno-popcntb
11310 @opindex mfprnd
11311 @opindex mno-fprnd
11312 @opindex mmfpgpr
11313 @opindex mno-mfpgpr
11314 GCC supports two related instruction set architectures for the
11315 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
11316 instructions supported by the @samp{rios} chip set used in the original
11317 RS/6000 systems and the @dfn{PowerPC} instruction set is the
11318 architecture of the Freescale MPC5xx, MPC6xx, MPC8xx microprocessors, and
11319 the IBM 4xx, 6xx, and follow-on microprocessors.
11320
11321 Neither architecture is a subset of the other.  However there is a
11322 large common subset of instructions supported by both.  An MQ
11323 register is included in processors supporting the POWER architecture.
11324
11325 You use these options to specify which instructions are available on the
11326 processor you are using.  The default value of these options is
11327 determined when configuring GCC@.  Specifying the
11328 @option{-mcpu=@var{cpu_type}} overrides the specification of these
11329 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
11330 rather than the options listed above.
11331
11332 The @option{-mpower} option allows GCC to generate instructions that
11333 are found only in the POWER architecture and to use the MQ register.
11334 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
11335 to generate instructions that are present in the POWER2 architecture but
11336 not the original POWER architecture.
11337
11338 The @option{-mpowerpc} option allows GCC to generate instructions that
11339 are found only in the 32-bit subset of the PowerPC architecture.
11340 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
11341 GCC to use the optional PowerPC architecture instructions in the
11342 General Purpose group, including floating-point square root.  Specifying
11343 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
11344 use the optional PowerPC architecture instructions in the Graphics
11345 group, including floating-point select.
11346
11347 The @option{-mmfcrf} option allows GCC to generate the move from
11348 condition register field instruction implemented on the POWER4
11349 processor and other processors that support the PowerPC V2.01
11350 architecture.
11351 The @option{-mpopcntb} option allows GCC to generate the popcount and
11352 double precision FP reciprocal estimate instruction implemented on the
11353 POWER5 processor and other processors that support the PowerPC V2.02
11354 architecture.
11355 The @option{-mfprnd} option allows GCC to generate the FP round to
11356 integer instructions implemented on the POWER5+ processor and other
11357 processors that support the PowerPC V2.03 architecture.
11358 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
11359 general purpose register instructions implemented on the POWER6X
11360 processor and other processors that support the extended PowerPC V2.05
11361 architecture.
11362
11363 The @option{-mpowerpc64} option allows GCC to generate the additional
11364 64-bit instructions that are found in the full PowerPC64 architecture
11365 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
11366 @option{-mno-powerpc64}.
11367
11368 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
11369 will use only the instructions in the common subset of both
11370 architectures plus some special AIX common-mode calls, and will not use
11371 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
11372 permits GCC to use any instruction from either architecture and to
11373 allow use of the MQ register; specify this for the Motorola MPC601.
11374
11375 @item -mnew-mnemonics
11376 @itemx -mold-mnemonics
11377 @opindex mnew-mnemonics
11378 @opindex mold-mnemonics
11379 Select which mnemonics to use in the generated assembler code.  With
11380 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
11381 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
11382 assembler mnemonics defined for the POWER architecture.  Instructions
11383 defined in only one architecture have only one mnemonic; GCC uses that
11384 mnemonic irrespective of which of these options is specified.
11385
11386 GCC defaults to the mnemonics appropriate for the architecture in
11387 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
11388 value of these option.  Unless you are building a cross-compiler, you
11389 should normally not specify either @option{-mnew-mnemonics} or
11390 @option{-mold-mnemonics}, but should instead accept the default.
11391
11392 @item -mcpu=@var{cpu_type}
11393 @opindex mcpu
11394 Set architecture type, register usage, choice of mnemonics, and
11395 instruction scheduling parameters for machine type @var{cpu_type}.
11396 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
11397 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{505},
11398 @samp{601}, @samp{602}, @samp{603}, @samp{603e}, @samp{604},
11399 @samp{604e}, @samp{620}, @samp{630}, @samp{740}, @samp{7400},
11400 @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
11401 @samp{860}, @samp{970}, @samp{8540}, @samp{ec603e}, @samp{G3},
11402 @samp{G4}, @samp{G5}, @samp{power}, @samp{power2}, @samp{power3},
11403 @samp{power4}, @samp{power5}, @samp{power5+}, @samp{power6},
11404 @samp{power6x}, @samp{common}, @samp{powerpc}, @samp{powerpc64},
11405 @samp{rios}, @samp{rios1}, @samp{rios2}, @samp{rsc}, and @samp{rs64}.
11406
11407 @option{-mcpu=common} selects a completely generic processor.  Code
11408 generated under this option will run on any POWER or PowerPC processor.
11409 GCC will use only the instructions in the common subset of both
11410 architectures, and will not use the MQ register.  GCC assumes a generic
11411 processor model for scheduling purposes.
11412
11413 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
11414 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
11415 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
11416 types, with an appropriate, generic processor model assumed for
11417 scheduling purposes.
11418
11419 The other options specify a specific processor.  Code generated under
11420 those options will run best on that processor, and may not run at all on
11421 others.
11422
11423 The @option{-mcpu} options automatically enable or disable the
11424 following options: @option{-maltivec}, @option{-mfprnd},
11425 @option{-mhard-float}, @option{-mmfcrf}, @option{-mmultiple},
11426 @option{-mnew-mnemonics}, @option{-mpopcntb}, @option{-mpower},
11427 @option{-mpower2}, @option{-mpowerpc64}, @option{-mpowerpc-gpopt},
11428 @option{-mpowerpc-gfxopt}, @option{-mstring}, @option{-mmulhw},
11429 @option{-mdlmzb}, @option{-mmfpgpr}.
11430 The particular options set for any particular CPU will vary between
11431 compiler versions, depending on what setting seems to produce optimal
11432 code for that CPU; it doesn't necessarily reflect the actual hardware's
11433 capabilities.  If you wish to set an individual option to a particular
11434 value, you may specify it after the @option{-mcpu} option, like
11435 @samp{-mcpu=970 -mno-altivec}.
11436
11437 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
11438 not enabled or disabled by the @option{-mcpu} option at present because
11439 AIX does not have full support for these options.  You may still
11440 enable or disable them individually if you're sure it'll work in your
11441 environment.
11442
11443 @item -mtune=@var{cpu_type}
11444 @opindex mtune
11445 Set the instruction scheduling parameters for machine type
11446 @var{cpu_type}, but do not set the architecture type, register usage, or
11447 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
11448 values for @var{cpu_type} are used for @option{-mtune} as for
11449 @option{-mcpu}.  If both are specified, the code generated will use the
11450 architecture, registers, and mnemonics set by @option{-mcpu}, but the
11451 scheduling parameters set by @option{-mtune}.
11452
11453 @item -mswdiv
11454 @itemx -mno-swdiv
11455 @opindex mswdiv
11456 @opindex mno-swdiv
11457 Generate code to compute division as reciprocal estimate and iterative
11458 refinement, creating opportunities for increased throughput.  This
11459 feature requires: optional PowerPC Graphics instruction set for single
11460 precision and FRE instruction for double precision, assuming divides
11461 cannot generate user-visible traps, and the domain values not include
11462 Infinities, denormals or zero denominator.
11463
11464 @item -maltivec
11465 @itemx -mno-altivec
11466 @opindex maltivec
11467 @opindex mno-altivec
11468 Generate code that uses (does not use) AltiVec instructions, and also
11469 enable the use of built-in functions that allow more direct access to
11470 the AltiVec instruction set.  You may also need to set
11471 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
11472 enhancements.
11473
11474 @item -mvrsave
11475 @item -mno-vrsave
11476 @opindex mvrsave
11477 @opindex mno-vrsave
11478 Generate VRSAVE instructions when generating AltiVec code.
11479
11480 @item -msecure-plt
11481 @opindex msecure-plt
11482 Generate code that allows ld and ld.so to build executables and shared
11483 libraries with non-exec .plt and .got sections.  This is a PowerPC
11484 32-bit SYSV ABI option.
11485
11486 @item -mbss-plt
11487 @opindex mbss-plt
11488 Generate code that uses a BSS .plt section that ld.so fills in, and
11489 requires .plt and .got sections that are both writable and executable.
11490 This is a PowerPC 32-bit SYSV ABI option.
11491
11492 @item -misel
11493 @itemx -mno-isel
11494 @opindex misel
11495 @opindex mno-isel
11496 This switch enables or disables the generation of ISEL instructions.
11497
11498 @item -misel=@var{yes/no}
11499 This switch has been deprecated.  Use @option{-misel} and
11500 @option{-mno-isel} instead.
11501
11502 @item -mspe
11503 @itemx -mno-spe
11504 @opindex mspe
11505 @opindex mno-spe
11506 This switch enables or disables the generation of SPE simd
11507 instructions.
11508
11509 @item -mspe=@var{yes/no}
11510 This option has been deprecated.  Use @option{-mspe} and
11511 @option{-mno-spe} instead.
11512
11513 @item -mfloat-gprs=@var{yes/single/double/no}
11514 @itemx -mfloat-gprs
11515 @opindex mfloat-gprs
11516 This switch enables or disables the generation of floating point
11517 operations on the general purpose registers for architectures that
11518 support it.
11519
11520 The argument @var{yes} or @var{single} enables the use of
11521 single-precision floating point operations.
11522
11523 The argument @var{double} enables the use of single and
11524 double-precision floating point operations.
11525
11526 The argument @var{no} disables floating point operations on the
11527 general purpose registers.
11528
11529 This option is currently only available on the MPC854x.
11530
11531 @item -m32
11532 @itemx -m64
11533 @opindex m32
11534 @opindex m64
11535 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
11536 targets (including GNU/Linux).  The 32-bit environment sets int, long
11537 and pointer to 32 bits and generates code that runs on any PowerPC
11538 variant.  The 64-bit environment sets int to 32 bits and long and
11539 pointer to 64 bits, and generates code for PowerPC64, as for
11540 @option{-mpowerpc64}.
11541
11542 @item -mfull-toc
11543 @itemx -mno-fp-in-toc
11544 @itemx -mno-sum-in-toc
11545 @itemx -mminimal-toc
11546 @opindex mfull-toc
11547 @opindex mno-fp-in-toc
11548 @opindex mno-sum-in-toc
11549 @opindex mminimal-toc
11550 Modify generation of the TOC (Table Of Contents), which is created for
11551 every executable file.  The @option{-mfull-toc} option is selected by
11552 default.  In that case, GCC will allocate at least one TOC entry for
11553 each unique non-automatic variable reference in your program.  GCC
11554 will also place floating-point constants in the TOC@.  However, only
11555 16,384 entries are available in the TOC@.
11556
11557 If you receive a linker error message that saying you have overflowed
11558 the available TOC space, you can reduce the amount of TOC space used
11559 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
11560 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
11561 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
11562 generate code to calculate the sum of an address and a constant at
11563 run-time instead of putting that sum into the TOC@.  You may specify one
11564 or both of these options.  Each causes GCC to produce very slightly
11565 slower and larger code at the expense of conserving TOC space.
11566
11567 If you still run out of space in the TOC even when you specify both of
11568 these options, specify @option{-mminimal-toc} instead.  This option causes
11569 GCC to make only one TOC entry for every file.  When you specify this
11570 option, GCC will produce code that is slower and larger but which
11571 uses extremely little TOC space.  You may wish to use this option
11572 only on files that contain less frequently executed code.
11573
11574 @item -maix64
11575 @itemx -maix32
11576 @opindex maix64
11577 @opindex maix32
11578 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
11579 @code{long} type, and the infrastructure needed to support them.
11580 Specifying @option{-maix64} implies @option{-mpowerpc64} and
11581 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
11582 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
11583
11584 @item -mxl-compat
11585 @itemx -mno-xl-compat
11586 @opindex mxl-compat
11587 @opindex mno-xl-compat
11588 Produce code that conforms more closely to IBM XL compiler semantics
11589 when using AIX-compatible ABI.  Pass floating-point arguments to
11590 prototyped functions beyond the register save area (RSA) on the stack
11591 in addition to argument FPRs.  Do not assume that most significant
11592 double in 128-bit long double value is properly rounded when comparing
11593 values and converting to double.  Use XL symbol names for long double
11594 support routines.
11595
11596 The AIX calling convention was extended but not initially documented to
11597 handle an obscure K&R C case of calling a function that takes the
11598 address of its arguments with fewer arguments than declared.  IBM XL
11599 compilers access floating point arguments which do not fit in the
11600 RSA from the stack when a subroutine is compiled without
11601 optimization.  Because always storing floating-point arguments on the
11602 stack is inefficient and rarely needed, this option is not enabled by
11603 default and only is necessary when calling subroutines compiled by IBM
11604 XL compilers without optimization.
11605
11606 @item -mpe
11607 @opindex mpe
11608 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
11609 application written to use message passing with special startup code to
11610 enable the application to run.  The system must have PE installed in the
11611 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
11612 must be overridden with the @option{-specs=} option to specify the
11613 appropriate directory location.  The Parallel Environment does not
11614 support threads, so the @option{-mpe} option and the @option{-pthread}
11615 option are incompatible.
11616
11617 @item -malign-natural
11618 @itemx -malign-power
11619 @opindex malign-natural
11620 @opindex malign-power
11621 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
11622 @option{-malign-natural} overrides the ABI-defined alignment of larger
11623 types, such as floating-point doubles, on their natural size-based boundary.
11624 The option @option{-malign-power} instructs GCC to follow the ABI-specified
11625 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
11626
11627 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
11628 is not supported.
11629
11630 @item -msoft-float
11631 @itemx -mhard-float
11632 @opindex msoft-float
11633 @opindex mhard-float
11634 Generate code that does not use (uses) the floating-point register set.
11635 Software floating point emulation is provided if you use the
11636 @option{-msoft-float} option, and pass the option to GCC when linking.
11637
11638 @item -mmultiple
11639 @itemx -mno-multiple
11640 @opindex mmultiple
11641 @opindex mno-multiple
11642 Generate code that uses (does not use) the load multiple word
11643 instructions and the store multiple word instructions.  These
11644 instructions are generated by default on POWER systems, and not
11645 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
11646 endian PowerPC systems, since those instructions do not work when the
11647 processor is in little endian mode.  The exceptions are PPC740 and
11648 PPC750 which permit the instructions usage in little endian mode.
11649
11650 @item -mstring
11651 @itemx -mno-string
11652 @opindex mstring
11653 @opindex mno-string
11654 Generate code that uses (does not use) the load string instructions
11655 and the store string word instructions to save multiple registers and
11656 do small block moves.  These instructions are generated by default on
11657 POWER systems, and not generated on PowerPC systems.  Do not use
11658 @option{-mstring} on little endian PowerPC systems, since those
11659 instructions do not work when the processor is in little endian mode.
11660 The exceptions are PPC740 and PPC750 which permit the instructions
11661 usage in little endian mode.
11662
11663 @item -mupdate
11664 @itemx -mno-update
11665 @opindex mupdate
11666 @opindex mno-update
11667 Generate code that uses (does not use) the load or store instructions
11668 that update the base register to the address of the calculated memory
11669 location.  These instructions are generated by default.  If you use
11670 @option{-mno-update}, there is a small window between the time that the
11671 stack pointer is updated and the address of the previous frame is
11672 stored, which means code that walks the stack frame across interrupts or
11673 signals may get corrupted data.
11674
11675 @item -mfused-madd
11676 @itemx -mno-fused-madd
11677 @opindex mfused-madd
11678 @opindex mno-fused-madd
11679 Generate code that uses (does not use) the floating point multiply and
11680 accumulate instructions.  These instructions are generated by default if
11681 hardware floating is used.
11682
11683 @item -mmulhw
11684 @itemx -mno-mulhw
11685 @opindex mmulhw
11686 @opindex mno-mulhw
11687 Generate code that uses (does not use) the half-word multiply and
11688 multiply-accumulate instructions on the IBM 405 and 440 processors.
11689 These instructions are generated by default when targetting those
11690 processors.
11691
11692 @item -mdlmzb
11693 @itemx -mno-dlmzb
11694 @opindex mdlmzb
11695 @opindex mno-dlmzb
11696 Generate code that uses (does not use) the string-search @samp{dlmzb}
11697 instruction on the IBM 405 and 440 processors.  This instruction is
11698 generated by default when targetting those processors.
11699
11700 @item -mno-bit-align
11701 @itemx -mbit-align
11702 @opindex mno-bit-align
11703 @opindex mbit-align
11704 On System V.4 and embedded PowerPC systems do not (do) force structures
11705 and unions that contain bit-fields to be aligned to the base type of the
11706 bit-field.
11707
11708 For example, by default a structure containing nothing but 8
11709 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
11710 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
11711 the structure would be aligned to a 1 byte boundary and be one byte in
11712 size.
11713
11714 @item -mno-strict-align
11715 @itemx -mstrict-align
11716 @opindex mno-strict-align
11717 @opindex mstrict-align
11718 On System V.4 and embedded PowerPC systems do not (do) assume that
11719 unaligned memory references will be handled by the system.
11720
11721 @item -mrelocatable
11722 @itemx -mno-relocatable
11723 @opindex mrelocatable
11724 @opindex mno-relocatable
11725 On embedded PowerPC systems generate code that allows (does not allow)
11726 the program to be relocated to a different address at runtime.  If you
11727 use @option{-mrelocatable} on any module, all objects linked together must
11728 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
11729
11730 @item -mrelocatable-lib
11731 @itemx -mno-relocatable-lib
11732 @opindex mrelocatable-lib
11733 @opindex mno-relocatable-lib
11734 On embedded PowerPC systems generate code that allows (does not allow)
11735 the program to be relocated to a different address at runtime.  Modules
11736 compiled with @option{-mrelocatable-lib} can be linked with either modules
11737 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
11738 with modules compiled with the @option{-mrelocatable} options.
11739
11740 @item -mno-toc
11741 @itemx -mtoc
11742 @opindex mno-toc
11743 @opindex mtoc
11744 On System V.4 and embedded PowerPC systems do not (do) assume that
11745 register 2 contains a pointer to a global area pointing to the addresses
11746 used in the program.
11747
11748 @item -mlittle
11749 @itemx -mlittle-endian
11750 @opindex mlittle
11751 @opindex mlittle-endian
11752 On System V.4 and embedded PowerPC systems compile code for the
11753 processor in little endian mode.  The @option{-mlittle-endian} option is
11754 the same as @option{-mlittle}.
11755
11756 @item -mbig
11757 @itemx -mbig-endian
11758 @opindex mbig
11759 @opindex mbig-endian
11760 On System V.4 and embedded PowerPC systems compile code for the
11761 processor in big endian mode.  The @option{-mbig-endian} option is
11762 the same as @option{-mbig}.
11763
11764 @item -mdynamic-no-pic
11765 @opindex mdynamic-no-pic
11766 On Darwin and Mac OS X systems, compile code so that it is not
11767 relocatable, but that its external references are relocatable.  The
11768 resulting code is suitable for applications, but not shared
11769 libraries.
11770
11771 @item -mprioritize-restricted-insns=@var{priority}
11772 @opindex mprioritize-restricted-insns
11773 This option controls the priority that is assigned to
11774 dispatch-slot restricted instructions during the second scheduling
11775 pass.  The argument @var{priority} takes the value @var{0/1/2} to assign
11776 @var{no/highest/second-highest} priority to dispatch slot restricted
11777 instructions.
11778
11779 @item -msched-costly-dep=@var{dependence_type}
11780 @opindex msched-costly-dep
11781 This option controls which dependences are considered costly
11782 by the target during instruction scheduling.  The argument
11783 @var{dependence_type} takes one of the following values:
11784 @var{no}: no dependence is costly,
11785 @var{all}: all dependences are costly,
11786 @var{true_store_to_load}: a true dependence from store to load is costly,
11787 @var{store_to_load}: any dependence from store to load is costly,
11788 @var{number}: any dependence which latency >= @var{number} is costly.
11789
11790 @item -minsert-sched-nops=@var{scheme}
11791 @opindex minsert-sched-nops
11792 This option controls which nop insertion scheme will be used during
11793 the second scheduling pass.  The argument @var{scheme} takes one of the
11794 following values:
11795 @var{no}: Don't insert nops.
11796 @var{pad}: Pad with nops any dispatch group which has vacant issue slots,
11797 according to the scheduler's grouping.
11798 @var{regroup_exact}: Insert nops to force costly dependent insns into
11799 separate groups.  Insert exactly as many nops as needed to force an insn
11800 to a new group, according to the estimated processor grouping.
11801 @var{number}: Insert nops to force costly dependent insns into
11802 separate groups.  Insert @var{number} nops to force an insn to a new group.
11803
11804 @item -mcall-sysv
11805 @opindex mcall-sysv
11806 On System V.4 and embedded PowerPC systems compile code using calling
11807 conventions that adheres to the March 1995 draft of the System V
11808 Application Binary Interface, PowerPC processor supplement.  This is the
11809 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
11810
11811 @item -mcall-sysv-eabi
11812 @opindex mcall-sysv-eabi
11813 Specify both @option{-mcall-sysv} and @option{-meabi} options.
11814
11815 @item -mcall-sysv-noeabi
11816 @opindex mcall-sysv-noeabi
11817 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
11818
11819 @item -mcall-solaris
11820 @opindex mcall-solaris
11821 On System V.4 and embedded PowerPC systems compile code for the Solaris
11822 operating system.
11823
11824 @item -mcall-linux
11825 @opindex mcall-linux
11826 On System V.4 and embedded PowerPC systems compile code for the
11827 Linux-based GNU system.
11828
11829 @item -mcall-gnu
11830 @opindex mcall-gnu
11831 On System V.4 and embedded PowerPC systems compile code for the
11832 Hurd-based GNU system.
11833
11834 @item -mcall-netbsd
11835 @opindex mcall-netbsd
11836 On System V.4 and embedded PowerPC systems compile code for the
11837 NetBSD operating system.
11838
11839 @item -maix-struct-return
11840 @opindex maix-struct-return
11841 Return all structures in memory (as specified by the AIX ABI)@.
11842
11843 @item -msvr4-struct-return
11844 @opindex msvr4-struct-return
11845 Return structures smaller than 8 bytes in registers (as specified by the
11846 SVR4 ABI)@.
11847
11848 @item -mabi=@var{abi-type}
11849 @opindex mabi
11850 Extend the current ABI with a particular extension, or remove such extension.
11851 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
11852 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble}@.
11853
11854 @item -mabi=spe
11855 @opindex mabi=spe
11856 Extend the current ABI with SPE ABI extensions.  This does not change
11857 the default ABI, instead it adds the SPE ABI extensions to the current
11858 ABI@.
11859
11860 @item -mabi=no-spe
11861 @opindex mabi=no-spe
11862 Disable Booke SPE ABI extensions for the current ABI@.
11863
11864 @item -mabi=ibmlongdouble
11865 @opindex mabi=ibmlongdouble
11866 Change the current ABI to use IBM extended precision long double.
11867 This is a PowerPC 32-bit SYSV ABI option.
11868
11869 @item -mabi=ieeelongdouble
11870 @opindex mabi=ieeelongdouble
11871 Change the current ABI to use IEEE extended precision long double.
11872 This is a PowerPC 32-bit Linux ABI option.
11873
11874 @item -mprototype
11875 @itemx -mno-prototype
11876 @opindex mprototype
11877 @opindex mno-prototype
11878 On System V.4 and embedded PowerPC systems assume that all calls to
11879 variable argument functions are properly prototyped.  Otherwise, the
11880 compiler must insert an instruction before every non prototyped call to
11881 set or clear bit 6 of the condition code register (@var{CR}) to
11882 indicate whether floating point values were passed in the floating point
11883 registers in case the function takes a variable arguments.  With
11884 @option{-mprototype}, only calls to prototyped variable argument functions
11885 will set or clear the bit.
11886
11887 @item -msim
11888 @opindex msim
11889 On embedded PowerPC systems, assume that the startup module is called
11890 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
11891 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}.
11892 configurations.
11893
11894 @item -mmvme
11895 @opindex mmvme
11896 On embedded PowerPC systems, assume that the startup module is called
11897 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
11898 @file{libc.a}.
11899
11900 @item -mads
11901 @opindex mads
11902 On embedded PowerPC systems, assume that the startup module is called
11903 @file{crt0.o} and the standard C libraries are @file{libads.a} and
11904 @file{libc.a}.
11905
11906 @item -myellowknife
11907 @opindex myellowknife
11908 On embedded PowerPC systems, assume that the startup module is called
11909 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
11910 @file{libc.a}.
11911
11912 @item -mvxworks
11913 @opindex mvxworks
11914 On System V.4 and embedded PowerPC systems, specify that you are
11915 compiling for a VxWorks system.
11916
11917 @item -mwindiss
11918 @opindex mwindiss
11919 Specify that you are compiling for the WindISS simulation environment.
11920
11921 @item -memb
11922 @opindex memb
11923 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
11924 header to indicate that @samp{eabi} extended relocations are used.
11925
11926 @item -meabi
11927 @itemx -mno-eabi
11928 @opindex meabi
11929 @opindex mno-eabi
11930 On System V.4 and embedded PowerPC systems do (do not) adhere to the
11931 Embedded Applications Binary Interface (eabi) which is a set of
11932 modifications to the System V.4 specifications.  Selecting @option{-meabi}
11933 means that the stack is aligned to an 8 byte boundary, a function
11934 @code{__eabi} is called to from @code{main} to set up the eabi
11935 environment, and the @option{-msdata} option can use both @code{r2} and
11936 @code{r13} to point to two separate small data areas.  Selecting
11937 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
11938 do not call an initialization function from @code{main}, and the
11939 @option{-msdata} option will only use @code{r13} to point to a single
11940 small data area.  The @option{-meabi} option is on by default if you
11941 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
11942
11943 @item -msdata=eabi
11944 @opindex msdata=eabi
11945 On System V.4 and embedded PowerPC systems, put small initialized
11946 @code{const} global and static data in the @samp{.sdata2} section, which
11947 is pointed to by register @code{r2}.  Put small initialized
11948 non-@code{const} global and static data in the @samp{.sdata} section,
11949 which is pointed to by register @code{r13}.  Put small uninitialized
11950 global and static data in the @samp{.sbss} section, which is adjacent to
11951 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
11952 incompatible with the @option{-mrelocatable} option.  The
11953 @option{-msdata=eabi} option also sets the @option{-memb} option.
11954
11955 @item -msdata=sysv
11956 @opindex msdata=sysv
11957 On System V.4 and embedded PowerPC systems, put small global and static
11958 data in the @samp{.sdata} section, which is pointed to by register
11959 @code{r13}.  Put small uninitialized global and static data in the
11960 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
11961 The @option{-msdata=sysv} option is incompatible with the
11962 @option{-mrelocatable} option.
11963
11964 @item -msdata=default
11965 @itemx -msdata
11966 @opindex msdata=default
11967 @opindex msdata
11968 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
11969 compile code the same as @option{-msdata=eabi}, otherwise compile code the
11970 same as @option{-msdata=sysv}.
11971
11972 @item -msdata-data
11973 @opindex msdata-data
11974 On System V.4 and embedded PowerPC systems, put small global
11975 data in the @samp{.sdata} section.  Put small uninitialized global
11976 data in the @samp{.sbss} section.  Do not use register @code{r13}
11977 to address small data however.  This is the default behavior unless
11978 other @option{-msdata} options are used.
11979
11980 @item -msdata=none
11981 @itemx -mno-sdata
11982 @opindex msdata=none
11983 @opindex mno-sdata
11984 On embedded PowerPC systems, put all initialized global and static data
11985 in the @samp{.data} section, and all uninitialized data in the
11986 @samp{.bss} section.
11987
11988 @item -G @var{num}
11989 @opindex G
11990 @cindex smaller data references (PowerPC)
11991 @cindex .sdata/.sdata2 references (PowerPC)
11992 On embedded PowerPC systems, put global and static items less than or
11993 equal to @var{num} bytes into the small data or bss sections instead of
11994 the normal data or bss section.  By default, @var{num} is 8.  The
11995 @option{-G @var{num}} switch is also passed to the linker.
11996 All modules should be compiled with the same @option{-G @var{num}} value.
11997
11998 @item -mregnames
11999 @itemx -mno-regnames
12000 @opindex mregnames
12001 @opindex mno-regnames
12002 On System V.4 and embedded PowerPC systems do (do not) emit register
12003 names in the assembly language output using symbolic forms.
12004
12005 @item -mlongcall
12006 @itemx -mno-longcall
12007 @opindex mlongcall
12008 @opindex mno-longcall
12009 By default assume that all calls are far away so that a longer more
12010 expensive calling sequence is required.  This is required for calls
12011 further than 32 megabytes (33,554,432 bytes) from the current location.
12012 A short call will be generated if the compiler knows
12013 the call cannot be that far away.  This setting can be overridden by
12014 the @code{shortcall} function attribute, or by @code{#pragma
12015 longcall(0)}.
12016
12017 Some linkers are capable of detecting out-of-range calls and generating
12018 glue code on the fly.  On these systems, long calls are unnecessary and
12019 generate slower code.  As of this writing, the AIX linker can do this,
12020 as can the GNU linker for PowerPC/64.  It is planned to add this feature
12021 to the GNU linker for 32-bit PowerPC systems as well.
12022
12023 On Darwin/PPC systems, @code{#pragma longcall} will generate ``jbsr
12024 callee, L42'', plus a ``branch island'' (glue code).  The two target
12025 addresses represent the callee and the ``branch island''.  The
12026 Darwin/PPC linker will prefer the first address and generate a ``bl
12027 callee'' if the PPC ``bl'' instruction will reach the callee directly;
12028 otherwise, the linker will generate ``bl L42'' to call the ``branch
12029 island''.  The ``branch island'' is appended to the body of the
12030 calling function; it computes the full 32-bit address of the callee
12031 and jumps to it.
12032
12033 On Mach-O (Darwin) systems, this option directs the compiler emit to
12034 the glue for every direct call, and the Darwin linker decides whether
12035 to use or discard it.
12036
12037 In the future, we may cause GCC to ignore all longcall specifications
12038 when the linker is known to generate glue.
12039
12040 @item -pthread
12041 @opindex pthread
12042 Adds support for multithreading with the @dfn{pthreads} library.
12043 This option sets flags for both the preprocessor and linker.
12044
12045 @end table
12046
12047 @node S/390 and zSeries Options
12048 @subsection S/390 and zSeries Options
12049 @cindex S/390 and zSeries Options
12050
12051 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
12052
12053 @table @gcctabopt
12054 @item -mhard-float
12055 @itemx -msoft-float
12056 @opindex mhard-float
12057 @opindex msoft-float
12058 Use (do not use) the hardware floating-point instructions and registers
12059 for floating-point operations.  When @option{-msoft-float} is specified,
12060 functions in @file{libgcc.a} will be used to perform floating-point
12061 operations.  When @option{-mhard-float} is specified, the compiler
12062 generates IEEE floating-point instructions.  This is the default.
12063
12064 @item -mlong-double-64
12065 @itemx -mlong-double-128
12066 @opindex mlong-double-64
12067 @opindex mlong-double-128
12068 These switches control the size of @code{long double} type. A size
12069 of 64bit makes the @code{long double} type equivalent to the @code{double}
12070 type. This is the default.
12071
12072 @item -mbackchain
12073 @itemx -mno-backchain
12074 @opindex mbackchain
12075 @opindex mno-backchain
12076 Store (do not store) the address of the caller's frame as backchain pointer
12077 into the callee's stack frame.
12078 A backchain may be needed to allow debugging using tools that do not understand
12079 DWARF-2 call frame information.
12080 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
12081 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
12082 the backchain is placed into the topmost word of the 96/160 byte register
12083 save area.
12084
12085 In general, code compiled with @option{-mbackchain} is call-compatible with
12086 code compiled with @option{-mmo-backchain}; however, use of the backchain
12087 for debugging purposes usually requires that the whole binary is built with
12088 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
12089 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
12090 to build a linux kernel use @option{-msoft-float}.
12091
12092 The default is to not maintain the backchain.
12093
12094 @item -mpacked-stack
12095 @item -mno-packed-stack
12096 @opindex mpacked-stack
12097 @opindex mno-packed-stack
12098 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
12099 specified, the compiler uses the all fields of the 96/160 byte register save
12100 area only for their default purpose; unused fields still take up stack space.
12101 When @option{-mpacked-stack} is specified, register save slots are densely
12102 packed at the top of the register save area; unused space is reused for other
12103 purposes, allowing for more efficient use of the available stack space.
12104 However, when @option{-mbackchain} is also in effect, the topmost word of
12105 the save area is always used to store the backchain, and the return address
12106 register is always saved two words below the backchain.
12107
12108 As long as the stack frame backchain is not used, code generated with
12109 @option{-mpacked-stack} is call-compatible with code generated with
12110 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
12111 S/390 or zSeries generated code that uses the stack frame backchain at run
12112 time, not just for debugging purposes.  Such code is not call-compatible
12113 with code compiled with @option{-mpacked-stack}.  Also, note that the
12114 combination of @option{-mbackchain},
12115 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
12116 to build a linux kernel use @option{-msoft-float}.
12117
12118 The default is to not use the packed stack layout.
12119
12120 @item -msmall-exec
12121 @itemx -mno-small-exec
12122 @opindex msmall-exec
12123 @opindex mno-small-exec
12124 Generate (or do not generate) code using the @code{bras} instruction
12125 to do subroutine calls.
12126 This only works reliably if the total executable size does not
12127 exceed 64k.  The default is to use the @code{basr} instruction instead,
12128 which does not have this limitation.
12129
12130 @item -m64
12131 @itemx -m31
12132 @opindex m64
12133 @opindex m31
12134 When @option{-m31} is specified, generate code compliant to the
12135 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
12136 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
12137 particular to generate 64-bit instructions.  For the @samp{s390}
12138 targets, the default is @option{-m31}, while the @samp{s390x}
12139 targets default to @option{-m64}.
12140
12141 @item -mzarch
12142 @itemx -mesa
12143 @opindex mzarch
12144 @opindex mesa
12145 When @option{-mzarch} is specified, generate code using the
12146 instructions available on z/Architecture.
12147 When @option{-mesa} is specified, generate code using the
12148 instructions available on ESA/390.  Note that @option{-mesa} is
12149 not possible with @option{-m64}.
12150 When generating code compliant to the GNU/Linux for S/390 ABI,
12151 the default is @option{-mesa}.  When generating code compliant
12152 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
12153
12154 @item -mmvcle
12155 @itemx -mno-mvcle
12156 @opindex mmvcle
12157 @opindex mno-mvcle
12158 Generate (or do not generate) code using the @code{mvcle} instruction
12159 to perform block moves.  When @option{-mno-mvcle} is specified,
12160 use a @code{mvc} loop instead.  This is the default unless optimizing for
12161 size.
12162
12163 @item -mdebug
12164 @itemx -mno-debug
12165 @opindex mdebug
12166 @opindex mno-debug
12167 Print (or do not print) additional debug information when compiling.
12168 The default is to not print debug information.
12169
12170 @item -march=@var{cpu-type}
12171 @opindex march
12172 Generate code that will run on @var{cpu-type}, which is the name of a system
12173 representing a certain processor type.  Possible values for
12174 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, and @samp{z990}.
12175 When generating code using the instructions available on z/Architecture,
12176 the default is @option{-march=z900}.  Otherwise, the default is
12177 @option{-march=g5}.
12178
12179 @item -mtune=@var{cpu-type}
12180 @opindex mtune
12181 Tune to @var{cpu-type} everything applicable about the generated code,
12182 except for the ABI and the set of available instructions.
12183 The list of @var{cpu-type} values is the same as for @option{-march}.
12184 The default is the value used for @option{-march}.
12185
12186 @item -mtpf-trace
12187 @itemx -mno-tpf-trace
12188 @opindex mtpf-trace
12189 @opindex mno-tpf-trace
12190 Generate code that adds (does not add) in TPF OS specific branches to trace
12191 routines in the operating system.  This option is off by default, even
12192 when compiling for the TPF OS@.
12193
12194 @item -mfused-madd
12195 @itemx -mno-fused-madd
12196 @opindex mfused-madd
12197 @opindex mno-fused-madd
12198 Generate code that uses (does not use) the floating point multiply and
12199 accumulate instructions.  These instructions are generated by default if
12200 hardware floating point is used.
12201
12202 @item -mwarn-framesize=@var{framesize}
12203 @opindex mwarn-framesize
12204 Emit a warning if the current function exceeds the given frame size.  Because
12205 this is a compile time check it doesn't need to be a real problem when the program
12206 runs.  It is intended to identify functions which most probably cause
12207 a stack overflow.  It is useful to be used in an environment with limited stack
12208 size e.g.@: the linux kernel.
12209
12210 @item -mwarn-dynamicstack
12211 @opindex mwarn-dynamicstack
12212 Emit a warning if the function calls alloca or uses dynamically
12213 sized arrays.  This is generally a bad idea with a limited stack size.
12214
12215 @item -mstack-guard=@var{stack-guard}
12216 @item -mstack-size=@var{stack-size}
12217 @opindex mstack-guard
12218 @opindex mstack-size
12219 These arguments always have to be used in conjunction.  If they are present the s390
12220 back end emits additional instructions in the function prologue which trigger a trap
12221 if the stack size is @var{stack-guard} bytes above the @var{stack-size}
12222 (remember that the stack on s390 grows downward).  These options are intended to
12223 be used to help debugging stack overflow problems.  The additionally emitted code
12224 causes only little overhead and hence can also be used in production like systems
12225 without greater performance degradation.  The given values have to be exact
12226 powers of 2 and @var{stack-size} has to be greater than @var{stack-guard} without
12227 exceeding 64k.
12228 In order to be efficient the extra code makes the assumption that the stack starts
12229 at an address aligned to the value given by @var{stack-size}.
12230 @end table
12231
12232 @node Score Options
12233 @subsection Score Options
12234 @cindex Score Options
12235
12236 These options are defined for Score implementations:
12237
12238 @table @gcctabopt
12239 @item -mel
12240 @opindex -mel
12241 Compile code for little endian mode. 
12242
12243 @item -meb
12244 @opindex meb
12245 Compile code for big endian mode.  This is the default.
12246
12247 @item -mmac
12248 @opindex mmac
12249 Enable the use of multiply-accumulate instructions. Disabled by default. 
12250
12251 @item -mscore5u
12252 @opindex mscore5u
12253 Specify the SCORE5U of the target architecture.
12254
12255 @item -mscore7
12256 @opindex mscore7
12257 Specify the SCORE7 of the target architecture. This is the default.
12258 @end table
12259
12260 @node SH Options
12261 @subsection SH Options
12262
12263 These @samp{-m} options are defined for the SH implementations:
12264
12265 @table @gcctabopt
12266 @item -m1
12267 @opindex m1
12268 Generate code for the SH1.
12269
12270 @item -m2
12271 @opindex m2
12272 Generate code for the SH2.
12273
12274 @item -m2e
12275 Generate code for the SH2e.
12276
12277 @item -m3
12278 @opindex m3
12279 Generate code for the SH3.
12280
12281 @item -m3e
12282 @opindex m3e
12283 Generate code for the SH3e.
12284
12285 @item -m4-nofpu
12286 @opindex m4-nofpu
12287 Generate code for the SH4 without a floating-point unit.
12288
12289 @item -m4-single-only
12290 @opindex m4-single-only
12291 Generate code for the SH4 with a floating-point unit that only
12292 supports single-precision arithmetic.
12293
12294 @item -m4-single
12295 @opindex m4-single
12296 Generate code for the SH4 assuming the floating-point unit is in
12297 single-precision mode by default.
12298
12299 @item -m4
12300 @opindex m4
12301 Generate code for the SH4.
12302
12303 @item -m4a-nofpu
12304 @opindex m4a-nofpu
12305 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
12306 floating-point unit is not used.
12307
12308 @item -m4a-single-only
12309 @opindex m4a-single-only
12310 Generate code for the SH4a, in such a way that no double-precision
12311 floating point operations are used.
12312
12313 @item -m4a-single
12314 @opindex m4a-single
12315 Generate code for the SH4a assuming the floating-point unit is in
12316 single-precision mode by default.
12317
12318 @item -m4a
12319 @opindex m4a
12320 Generate code for the SH4a.
12321
12322 @item -m4al
12323 @opindex m4al
12324 Same as @option{-m4a-nofpu}, except that it implicitly passes
12325 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
12326 instructions at the moment.
12327
12328 @item -mb
12329 @opindex mb
12330 Compile code for the processor in big endian mode.
12331
12332 @item -ml
12333 @opindex ml
12334 Compile code for the processor in little endian mode.
12335
12336 @item -mdalign
12337 @opindex mdalign
12338 Align doubles at 64-bit boundaries.  Note that this changes the calling
12339 conventions, and thus some functions from the standard C library will
12340 not work unless you recompile it first with @option{-mdalign}.
12341
12342 @item -mrelax
12343 @opindex mrelax
12344 Shorten some address references at link time, when possible; uses the
12345 linker option @option{-relax}.
12346
12347 @item -mbigtable
12348 @opindex mbigtable
12349 Use 32-bit offsets in @code{switch} tables.  The default is to use
12350 16-bit offsets.
12351
12352 @item -mfmovd
12353 @opindex mfmovd
12354 Enable the use of the instruction @code{fmovd}.
12355
12356 @item -mhitachi
12357 @opindex mhitachi
12358 Comply with the calling conventions defined by Renesas.
12359
12360 @item -mrenesas
12361 @opindex mhitachi
12362 Comply with the calling conventions defined by Renesas.
12363
12364 @item -mno-renesas
12365 @opindex mhitachi
12366 Comply with the calling conventions defined for GCC before the Renesas
12367 conventions were available.  This option is the default for all
12368 targets of the SH toolchain except for @samp{sh-symbianelf}.
12369
12370 @item -mnomacsave
12371 @opindex mnomacsave
12372 Mark the @code{MAC} register as call-clobbered, even if
12373 @option{-mhitachi} is given.
12374
12375 @item -mieee
12376 @opindex mieee
12377 Increase IEEE-compliance of floating-point code.
12378 At the moment, this is equivalent to @option{-fno-finite-math-only}.
12379 When generating 16 bit SH opcodes, getting IEEE-conforming results for
12380 comparisons of NANs / infinities incurs extra overhead in every
12381 floating point comparison, therefore the default is set to
12382 @option{-ffinite-math-only}.
12383
12384 @item -misize
12385 @opindex misize
12386 Dump instruction size and location in the assembly code.
12387
12388 @item -mpadstruct
12389 @opindex mpadstruct
12390 This option is deprecated.  It pads structures to multiple of 4 bytes,
12391 which is incompatible with the SH ABI@.
12392
12393 @item -mspace
12394 @opindex mspace
12395 Optimize for space instead of speed.  Implied by @option{-Os}.
12396
12397 @item -mprefergot
12398 @opindex mprefergot
12399 When generating position-independent code, emit function calls using
12400 the Global Offset Table instead of the Procedure Linkage Table.
12401
12402 @item -musermode
12403 @opindex musermode
12404 Generate a library function call to invalidate instruction cache
12405 entries, after fixing up a trampoline.  This library function call
12406 doesn't assume it can write to the whole memory address space.  This
12407 is the default when the target is @code{sh-*-linux*}.
12408
12409 @item -multcost=@var{number}
12410 @opindex multcost=@var{number}
12411 Set the cost to assume for a multiply insn.
12412
12413 @item -mdiv=@var{strategy}
12414 @opindex mdiv=@var{strategy}
12415 Set the division strategy to use for SHmedia code.  @var{strategy} must be
12416 one of: call, call2, fp, inv, inv:minlat, inv20u, inv20l, inv:call,
12417 inv:call2, inv:fp .
12418 "fp" performs the operation in floating point.  This has a very high latency,
12419 but needs only a few instructions, so it might be a good choice if
12420 your code has enough easily exploitable ILP to allow the compiler to
12421 schedule the floating point instructions together with other instructions.
12422 Division by zero causes a floating point exception.
12423 "inv" uses integer operations to calculate the inverse of the divisor,
12424 and then multiplies the dividend with the inverse.  This strategy allows
12425 cse and hoisting of the inverse calculation.  Division by zero calculates
12426 an unspecified result, but does not trap.
12427 "inv:minlat" is a variant of "inv" where if no cse / hoisting opportunities
12428 have been found, or if the entire operation has been hoisted to the same
12429 place, the last stages of the inverse calculation are intertwined with the
12430 final multiply to reduce the overall latency, at the expense of using a few
12431 more instructions, and thus offering fewer scheduling opportunities with
12432 other code.
12433 "call" calls a library function that usually implements the inv:minlat
12434 strategy.
12435 This gives high code density for m5-*media-nofpu compilations.
12436 "call2" uses a different entry point of the same library function, where it
12437 assumes that a pointer to a lookup table has already been set up, which
12438 exposes the pointer load to cse / code hoisting optimizations.
12439 "inv:call", "inv:call2" and "inv:fp" all use the "inv" algorithm for initial
12440 code generation, but if the code stays unoptimized, revert to the "call",
12441 "call2", or "fp" strategies, respectively.  Note that the
12442 potentially-trapping side effect of division by zero is carried by a
12443 separate instruction, so it is possible that all the integer instructions
12444 are hoisted out, but the marker for the side effect stays where it is.
12445 A recombination to fp operations or a call is not possible in that case.
12446 "inv20u" and "inv20l" are variants of the "inv:minlat" strategy.  In the case
12447 that the inverse calculation was nor separated from the multiply, they speed
12448 up division where the dividend fits into 20 bits (plus sign where applicable),
12449 by inserting a test to skip a number of operations in this case; this test
12450 slows down the case of larger dividends.  inv20u assumes the case of a such
12451 a small dividend to be unlikely, and inv20l assumes it to be likely.
12452
12453 @item -mdivsi3_libfunc=@var{name}
12454 @opindex mdivsi3_libfunc=@var{name}
12455 Set the name of the library function used for 32 bit signed division to
12456 @var{name}.  This only affect the name used in the call and inv:call
12457 division strategies, and the compiler will still expect the same
12458 sets of input/output/clobbered registers as if this option was not present.
12459
12460 @item -madjust-unroll
12461 @opindex madjust-unroll
12462 Throttle unrolling to avoid thrashing target registers.
12463 This option only has an effect if the gcc code base supports the
12464 TARGET_ADJUST_UNROLL_MAX target hook.
12465
12466 @item -mindexed-addressing
12467 @opindex mindexed-addressing
12468 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
12469 This is only safe if the hardware and/or OS implement 32 bit wrap-around
12470 semantics for the indexed addressing mode.  The architecture allows the
12471 implementation of processors with 64 bit MMU, which the OS could use to
12472 get 32 bit addressing, but since no current hardware implementation supports
12473 this or any other way to make the indexed addressing mode safe to use in
12474 the 32 bit ABI, the default is -mno-indexed-addressing.
12475
12476 @item -mgettrcost=@var{number}
12477 @opindex mgettrcost=@var{number}
12478 Set the cost assumed for the gettr instruction to @var{number}.
12479 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
12480
12481 @item -mpt-fixed
12482 @opindex mpt-fixed
12483 Assume pt* instructions won't trap.  This will generally generate better
12484 scheduled code, but is unsafe on current hardware.  The current architecture
12485 definition says that ptabs and ptrel trap when the target anded with 3 is 3.
12486 This has the unintentional effect of making it unsafe to schedule ptabs /
12487 ptrel before a branch, or hoist it out of a loop.  For example,
12488 __do_global_ctors, a part of libgcc that runs constructors at program
12489 startup, calls functions in a list which is delimited by -1.  With the
12490 -mpt-fixed option, the ptabs will be done before testing against -1.
12491 That means that all the constructors will be run a bit quicker, but when
12492 the loop comes to the end of the list, the program crashes because ptabs
12493 loads -1 into a target register.  Since this option is unsafe for any
12494 hardware implementing the current architecture specification, the default
12495 is -mno-pt-fixed.  Unless the user specifies a specific cost with
12496 @option{-mgettrcost}, -mno-pt-fixed also implies @option{-mgettrcost=100};
12497 this deters register allocation using target registers for storing
12498 ordinary integers.
12499
12500 @item -minvalid-symbols
12501 @opindex minvalid-symbols
12502 Assume symbols might be invalid.  Ordinary function symbols generated by
12503 the compiler will always be valid to load with movi/shori/ptabs or
12504 movi/shori/ptrel, but with assembler and/or linker tricks it is possible
12505 to generate symbols that will cause ptabs / ptrel to trap.
12506 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
12507 It will then prevent cross-basic-block cse, hoisting and most scheduling
12508 of symbol loads.  The default is @option{-mno-invalid-symbols}.
12509 @end table
12510
12511 @node SPARC Options
12512 @subsection SPARC Options
12513 @cindex SPARC options
12514
12515 These @samp{-m} options are supported on the SPARC:
12516
12517 @table @gcctabopt
12518 @item -mno-app-regs
12519 @itemx -mapp-regs
12520 @opindex mno-app-regs
12521 @opindex mapp-regs
12522 Specify @option{-mapp-regs} to generate output using the global registers
12523 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
12524 is the default.
12525
12526 To be fully SVR4 ABI compliant at the cost of some performance loss,
12527 specify @option{-mno-app-regs}.  You should compile libraries and system
12528 software with this option.
12529
12530 @item -mfpu
12531 @itemx -mhard-float
12532 @opindex mfpu
12533 @opindex mhard-float
12534 Generate output containing floating point instructions.  This is the
12535 default.
12536
12537 @item -mno-fpu
12538 @itemx -msoft-float
12539 @opindex mno-fpu
12540 @opindex msoft-float
12541 Generate output containing library calls for floating point.
12542 @strong{Warning:} the requisite libraries are not available for all SPARC
12543 targets.  Normally the facilities of the machine's usual C compiler are
12544 used, but this cannot be done directly in cross-compilation.  You must make
12545 your own arrangements to provide suitable library functions for
12546 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
12547 @samp{sparclite-*-*} do provide software floating point support.
12548
12549 @option{-msoft-float} changes the calling convention in the output file;
12550 therefore, it is only useful if you compile @emph{all} of a program with
12551 this option.  In particular, you need to compile @file{libgcc.a}, the
12552 library that comes with GCC, with @option{-msoft-float} in order for
12553 this to work.
12554
12555 @item -mhard-quad-float
12556 @opindex mhard-quad-float
12557 Generate output containing quad-word (long double) floating point
12558 instructions.
12559
12560 @item -msoft-quad-float
12561 @opindex msoft-quad-float
12562 Generate output containing library calls for quad-word (long double)
12563 floating point instructions.  The functions called are those specified
12564 in the SPARC ABI@.  This is the default.
12565
12566 As of this writing, there are no SPARC implementations that have hardware
12567 support for the quad-word floating point instructions.  They all invoke
12568 a trap handler for one of these instructions, and then the trap handler
12569 emulates the effect of the instruction.  Because of the trap handler overhead,
12570 this is much slower than calling the ABI library routines.  Thus the
12571 @option{-msoft-quad-float} option is the default.
12572
12573 @item -mno-unaligned-doubles
12574 @itemx -munaligned-doubles
12575 @opindex mno-unaligned-doubles
12576 @opindex munaligned-doubles
12577 Assume that doubles have 8 byte alignment.  This is the default.
12578
12579 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
12580 alignment only if they are contained in another type, or if they have an
12581 absolute address.  Otherwise, it assumes they have 4 byte alignment.
12582 Specifying this option avoids some rare compatibility problems with code
12583 generated by other compilers.  It is not the default because it results
12584 in a performance loss, especially for floating point code.
12585
12586 @item -mno-faster-structs
12587 @itemx -mfaster-structs
12588 @opindex mno-faster-structs
12589 @opindex mfaster-structs
12590 With @option{-mfaster-structs}, the compiler assumes that structures
12591 should have 8 byte alignment.  This enables the use of pairs of
12592 @code{ldd} and @code{std} instructions for copies in structure
12593 assignment, in place of twice as many @code{ld} and @code{st} pairs.
12594 However, the use of this changed alignment directly violates the SPARC
12595 ABI@.  Thus, it's intended only for use on targets where the developer
12596 acknowledges that their resulting code will not be directly in line with
12597 the rules of the ABI@.
12598
12599 @item -mimpure-text
12600 @opindex mimpure-text
12601 @option{-mimpure-text}, used in addition to @option{-shared}, tells
12602 the compiler to not pass @option{-z text} to the linker when linking a
12603 shared object.  Using this option, you can link position-dependent
12604 code into a shared object.
12605
12606 @option{-mimpure-text} suppresses the ``relocations remain against
12607 allocatable but non-writable sections'' linker error message.
12608 However, the necessary relocations will trigger copy-on-write, and the
12609 shared object is not actually shared across processes.  Instead of
12610 using @option{-mimpure-text}, you should compile all source code with
12611 @option{-fpic} or @option{-fPIC}.
12612
12613 This option is only available on SunOS and Solaris.
12614
12615 @item -mcpu=@var{cpu_type}
12616 @opindex mcpu
12617 Set the instruction set, register set, and instruction scheduling parameters
12618 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
12619 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
12620 @samp{f930}, @samp{f934}, @samp{hypersparc}, @samp{sparclite86x},
12621 @samp{sparclet}, @samp{tsc701}, @samp{v9}, @samp{ultrasparc},
12622 @samp{ultrasparc3}, and @samp{niagara}.
12623
12624 Default instruction scheduling parameters are used for values that select
12625 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
12626 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
12627
12628 Here is a list of each supported architecture and their supported
12629 implementations.
12630
12631 @smallexample
12632     v7:             cypress
12633     v8:             supersparc, hypersparc
12634     sparclite:      f930, f934, sparclite86x
12635     sparclet:       tsc701
12636     v9:             ultrasparc, ultrasparc3, niagara
12637 @end smallexample
12638
12639 By default (unless configured otherwise), GCC generates code for the V7
12640 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
12641 additionally optimizes it for the Cypress CY7C602 chip, as used in the
12642 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
12643 SPARCStation 1, 2, IPX etc.
12644
12645 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
12646 architecture.  The only difference from V7 code is that the compiler emits
12647 the integer multiply and integer divide instructions which exist in SPARC-V8
12648 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
12649 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
12650 2000 series.
12651
12652 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
12653 the SPARC architecture.  This adds the integer multiply, integer divide step
12654 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
12655 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
12656 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
12657 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
12658 MB86934 chip, which is the more recent SPARClite with FPU@.
12659
12660 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
12661 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
12662 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
12663 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
12664 optimizes it for the TEMIC SPARClet chip.
12665
12666 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
12667 architecture.  This adds 64-bit integer and floating-point move instructions,
12668 3 additional floating-point condition code registers and conditional move
12669 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
12670 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
12671 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
12672 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
12673 @option{-mcpu=niagara}, the compiler additionally optimizes it for
12674 Sun UltraSPARC T1 chips.
12675
12676 @item -mtune=@var{cpu_type}
12677 @opindex mtune
12678 Set the instruction scheduling parameters for machine type
12679 @var{cpu_type}, but do not set the instruction set or register set that the
12680 option @option{-mcpu=@var{cpu_type}} would.
12681
12682 The same values for @option{-mcpu=@var{cpu_type}} can be used for
12683 @option{-mtune=@var{cpu_type}}, but the only useful values are those
12684 that select a particular cpu implementation.  Those are @samp{cypress},
12685 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
12686 @samp{sparclite86x}, @samp{tsc701}, @samp{ultrasparc},
12687 @samp{ultrasparc3}, and @samp{niagara}.
12688
12689 @item -mv8plus
12690 @itemx -mno-v8plus
12691 @opindex mv8plus
12692 @opindex mno-v8plus
12693 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
12694 difference from the V8 ABI is that the global and out registers are
12695 considered 64-bit wide.  This is enabled by default on Solaris in 32-bit
12696 mode for all SPARC-V9 processors.
12697
12698 @item -mvis
12699 @itemx -mno-vis
12700 @opindex mvis
12701 @opindex mno-vis
12702 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
12703 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
12704 @end table
12705
12706 These @samp{-m} options are supported in addition to the above
12707 on SPARC-V9 processors in 64-bit environments:
12708
12709 @table @gcctabopt
12710 @item -mlittle-endian
12711 @opindex mlittle-endian
12712 Generate code for a processor running in little-endian mode.  It is only
12713 available for a few configurations and most notably not on Solaris and Linux.
12714
12715 @item -m32
12716 @itemx -m64
12717 @opindex m32
12718 @opindex m64
12719 Generate code for a 32-bit or 64-bit environment.
12720 The 32-bit environment sets int, long and pointer to 32 bits.
12721 The 64-bit environment sets int to 32 bits and long and pointer
12722 to 64 bits.
12723
12724 @item -mcmodel=medlow
12725 @opindex mcmodel=medlow
12726 Generate code for the Medium/Low code model: 64-bit addresses, programs
12727 must be linked in the low 32 bits of memory.  Programs can be statically
12728 or dynamically linked.
12729
12730 @item -mcmodel=medmid
12731 @opindex mcmodel=medmid
12732 Generate code for the Medium/Middle code model: 64-bit addresses, programs
12733 must be linked in the low 44 bits of memory, the text and data segments must
12734 be less than 2GB in size and the data segment must be located within 2GB of
12735 the text segment.
12736
12737 @item -mcmodel=medany
12738 @opindex mcmodel=medany
12739 Generate code for the Medium/Anywhere code model: 64-bit addresses, programs
12740 may be linked anywhere in memory, the text and data segments must be less
12741 than 2GB in size and the data segment must be located within 2GB of the
12742 text segment.
12743
12744 @item -mcmodel=embmedany
12745 @opindex mcmodel=embmedany
12746 Generate code for the Medium/Anywhere code model for embedded systems:
12747 64-bit addresses, the text and data segments must be less than 2GB in
12748 size, both starting anywhere in memory (determined at link time).  The
12749 global register %g4 points to the base of the data segment.  Programs
12750 are statically linked and PIC is not supported.
12751
12752 @item -mstack-bias
12753 @itemx -mno-stack-bias
12754 @opindex mstack-bias
12755 @opindex mno-stack-bias
12756 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
12757 frame pointer if present, are offset by @minus{}2047 which must be added back
12758 when making stack frame references.  This is the default in 64-bit mode.
12759 Otherwise, assume no such offset is present.
12760 @end table
12761
12762 These switches are supported in addition to the above on Solaris:
12763
12764 @table @gcctabopt
12765 @item -threads
12766 @opindex threads
12767 Add support for multithreading using the Solaris threads library.  This
12768 option sets flags for both the preprocessor and linker.  This option does
12769 not affect the thread safety of object code produced by the compiler or
12770 that of libraries supplied with it.
12771
12772 @item -pthreads
12773 @opindex pthreads
12774 Add support for multithreading using the POSIX threads library.  This
12775 option sets flags for both the preprocessor and linker.  This option does
12776 not affect the thread safety of object code produced  by the compiler or
12777 that of libraries supplied with it.
12778
12779 @item -pthread
12780 @opindex pthread
12781 This is a synonym for @option{-pthreads}.
12782 @end table
12783
12784 @node System V Options
12785 @subsection Options for System V
12786
12787 These additional options are available on System V Release 4 for
12788 compatibility with other compilers on those systems:
12789
12790 @table @gcctabopt
12791 @item -G
12792 @opindex G
12793 Create a shared object.
12794 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
12795
12796 @item -Qy
12797 @opindex Qy
12798 Identify the versions of each tool used by the compiler, in a
12799 @code{.ident} assembler directive in the output.
12800
12801 @item -Qn
12802 @opindex Qn
12803 Refrain from adding @code{.ident} directives to the output file (this is
12804 the default).
12805
12806 @item -YP,@var{dirs}
12807 @opindex YP
12808 Search the directories @var{dirs}, and no others, for libraries
12809 specified with @option{-l}.
12810
12811 @item -Ym,@var{dir}
12812 @opindex Ym
12813 Look in the directory @var{dir} to find the M4 preprocessor.
12814 The assembler uses this option.
12815 @c This is supposed to go with a -Yd for predefined M4 macro files, but
12816 @c the generic assembler that comes with Solaris takes just -Ym.
12817 @end table
12818
12819 @node TMS320C3x/C4x Options
12820 @subsection TMS320C3x/C4x Options
12821 @cindex TMS320C3x/C4x Options
12822
12823 These @samp{-m} options are defined for TMS320C3x/C4x implementations:
12824
12825 @table @gcctabopt
12826
12827 @item -mcpu=@var{cpu_type}
12828 @opindex mcpu
12829 Set the instruction set, register set, and instruction scheduling
12830 parameters for machine type @var{cpu_type}.  Supported values for
12831 @var{cpu_type} are @samp{c30}, @samp{c31}, @samp{c32}, @samp{c40}, and
12832 @samp{c44}.  The default is @samp{c40} to generate code for the
12833 TMS320C40.
12834
12835 @item -mbig-memory
12836 @itemx -mbig
12837 @itemx -msmall-memory
12838 @itemx -msmall
12839 @opindex mbig-memory
12840 @opindex mbig
12841 @opindex msmall-memory
12842 @opindex msmall
12843 Generates code for the big or small memory model.  The small memory
12844 model assumed that all data fits into one 64K word page.  At run-time
12845 the data page (DP) register must be set to point to the 64K page
12846 containing the .bss and .data program sections.  The big memory model is
12847 the default and requires reloading of the DP register for every direct
12848 memory access.
12849
12850 @item -mbk
12851 @itemx -mno-bk
12852 @opindex mbk
12853 @opindex mno-bk
12854 Allow (disallow) allocation of general integer operands into the block
12855 count register BK@.
12856
12857 @item -mdb
12858 @itemx -mno-db
12859 @opindex mdb
12860 @opindex mno-db
12861 Enable (disable) generation of code using decrement and branch,
12862 DBcond(D), instructions.  This is enabled by default for the C4x.  To be
12863 on the safe side, this is disabled for the C3x, since the maximum
12864 iteration count on the C3x is @math{2^{23} + 1} (but who iterates loops more than
12865 @math{2^{23}} times on the C3x?).  Note that GCC will try to reverse a loop so
12866 that it can utilize the decrement and branch instruction, but will give
12867 up if there is more than one memory reference in the loop.  Thus a loop
12868 where the loop counter is decremented can generate slightly more
12869 efficient code, in cases where the RPTB instruction cannot be utilized.
12870
12871 @item -mdp-isr-reload
12872 @itemx -mparanoid
12873 @opindex mdp-isr-reload
12874 @opindex mparanoid
12875 Force the DP register to be saved on entry to an interrupt service
12876 routine (ISR), reloaded to point to the data section, and restored on
12877 exit from the ISR@.  This should not be required unless someone has
12878 violated the small memory model by modifying the DP register, say within
12879 an object library.
12880
12881 @item -mmpyi
12882 @itemx -mno-mpyi
12883 @opindex mmpyi
12884 @opindex mno-mpyi
12885 For the C3x use the 24-bit MPYI instruction for integer multiplies
12886 instead of a library call to guarantee 32-bit results.  Note that if one
12887 of the operands is a constant, then the multiplication will be performed
12888 using shifts and adds.  If the @option{-mmpyi} option is not specified for the C3x,
12889 then squaring operations are performed inline instead of a library call.
12890
12891 @item -mfast-fix
12892 @itemx -mno-fast-fix
12893 @opindex mfast-fix
12894 @opindex mno-fast-fix
12895 The C3x/C4x FIX instruction to convert a floating point value to an
12896 integer value chooses the nearest integer less than or equal to the
12897 floating point value rather than to the nearest integer.  Thus if the
12898 floating point number is negative, the result will be incorrectly
12899 truncated an additional code is necessary to detect and correct this
12900 case.  This option can be used to disable generation of the additional
12901 code required to correct the result.
12902
12903 @item -mrptb
12904 @itemx -mno-rptb
12905 @opindex mrptb
12906 @opindex mno-rptb
12907 Enable (disable) generation of repeat block sequences using the RPTB
12908 instruction for zero overhead looping.  The RPTB construct is only used
12909 for innermost loops that do not call functions or jump across the loop
12910 boundaries.  There is no advantage having nested RPTB loops due to the
12911 overhead required to save and restore the RC, RS, and RE registers.
12912 This is enabled by default with @option{-O2}.
12913
12914 @item -mrpts=@var{count}
12915 @itemx -mno-rpts
12916 @opindex mrpts
12917 @opindex mno-rpts
12918 Enable (disable) the use of the single instruction repeat instruction
12919 RPTS@.  If a repeat block contains a single instruction, and the loop
12920 count can be guaranteed to be less than the value @var{count}, GCC will
12921 emit a RPTS instruction instead of a RPTB@.  If no value is specified,
12922 then a RPTS will be emitted even if the loop count cannot be determined
12923 at compile time.  Note that the repeated instruction following RPTS does
12924 not have to be reloaded from memory each iteration, thus freeing up the
12925 CPU buses for operands.  However, since interrupts are blocked by this
12926 instruction, it is disabled by default.
12927
12928 @item -mloop-unsigned
12929 @itemx -mno-loop-unsigned
12930 @opindex mloop-unsigned
12931 @opindex mno-loop-unsigned
12932 The maximum iteration count when using RPTS and RPTB (and DB on the C40)
12933 is @math{2^{31} + 1} since these instructions test if the iteration count is
12934 negative to terminate the loop.  If the iteration count is unsigned
12935 there is a possibility than the @math{2^{31} + 1} maximum iteration count may be
12936 exceeded.  This switch allows an unsigned iteration count.
12937
12938 @item -mti
12939 @opindex mti
12940 Try to emit an assembler syntax that the TI assembler (asm30) is happy
12941 with.  This also enforces compatibility with the API employed by the TI
12942 C3x C compiler.  For example, long doubles are passed as structures
12943 rather than in floating point registers.
12944
12945 @item -mregparm
12946 @itemx -mmemparm
12947 @opindex mregparm
12948 @opindex mmemparm
12949 Generate code that uses registers (stack) for passing arguments to functions.
12950 By default, arguments are passed in registers where possible rather
12951 than by pushing arguments on to the stack.
12952
12953 @item -mparallel-insns
12954 @itemx -mno-parallel-insns
12955 @opindex mparallel-insns
12956 @opindex mno-parallel-insns
12957 Allow the generation of parallel instructions.  This is enabled by
12958 default with @option{-O2}.
12959
12960 @item -mparallel-mpy
12961 @itemx -mno-parallel-mpy
12962 @opindex mparallel-mpy
12963 @opindex mno-parallel-mpy
12964 Allow the generation of MPY||ADD and MPY||SUB parallel instructions,
12965 provided @option{-mparallel-insns} is also specified.  These instructions have
12966 tight register constraints which can pessimize the code generation
12967 of large functions.
12968
12969 @end table
12970
12971 @node V850 Options
12972 @subsection V850 Options
12973 @cindex V850 Options
12974
12975 These @samp{-m} options are defined for V850 implementations:
12976
12977 @table @gcctabopt
12978 @item -mlong-calls
12979 @itemx -mno-long-calls
12980 @opindex mlong-calls
12981 @opindex mno-long-calls
12982 Treat all calls as being far away (near).  If calls are assumed to be
12983 far away, the compiler will always load the functions address up into a
12984 register, and call indirect through the pointer.
12985
12986 @item -mno-ep
12987 @itemx -mep
12988 @opindex mno-ep
12989 @opindex mep
12990 Do not optimize (do optimize) basic blocks that use the same index
12991 pointer 4 or more times to copy pointer into the @code{ep} register, and
12992 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
12993 option is on by default if you optimize.
12994
12995 @item -mno-prolog-function
12996 @itemx -mprolog-function
12997 @opindex mno-prolog-function
12998 @opindex mprolog-function
12999 Do not use (do use) external functions to save and restore registers
13000 at the prologue and epilogue of a function.  The external functions
13001 are slower, but use less code space if more than one function saves
13002 the same number of registers.  The @option{-mprolog-function} option
13003 is on by default if you optimize.
13004
13005 @item -mspace
13006 @opindex mspace
13007 Try to make the code as small as possible.  At present, this just turns
13008 on the @option{-mep} and @option{-mprolog-function} options.
13009
13010 @item -mtda=@var{n}
13011 @opindex mtda
13012 Put static or global variables whose size is @var{n} bytes or less into
13013 the tiny data area that register @code{ep} points to.  The tiny data
13014 area can hold up to 256 bytes in total (128 bytes for byte references).
13015
13016 @item -msda=@var{n}
13017 @opindex msda
13018 Put static or global variables whose size is @var{n} bytes or less into
13019 the small data area that register @code{gp} points to.  The small data
13020 area can hold up to 64 kilobytes.
13021
13022 @item -mzda=@var{n}
13023 @opindex mzda
13024 Put static or global variables whose size is @var{n} bytes or less into
13025 the first 32 kilobytes of memory.
13026
13027 @item -mv850
13028 @opindex mv850
13029 Specify that the target processor is the V850.
13030
13031 @item -mbig-switch
13032 @opindex mbig-switch
13033 Generate code suitable for big switch tables.  Use this option only if
13034 the assembler/linker complain about out of range branches within a switch
13035 table.
13036
13037 @item -mapp-regs
13038 @opindex mapp-regs
13039 This option will cause r2 and r5 to be used in the code generated by
13040 the compiler.  This setting is the default.
13041
13042 @item -mno-app-regs
13043 @opindex mno-app-regs
13044 This option will cause r2 and r5 to be treated as fixed registers.
13045
13046 @item -mv850e1
13047 @opindex mv850e1
13048 Specify that the target processor is the V850E1.  The preprocessor
13049 constants @samp{__v850e1__} and @samp{__v850e__} will be defined if
13050 this option is used.
13051
13052 @item -mv850e
13053 @opindex mv850e
13054 Specify that the target processor is the V850E@.  The preprocessor
13055 constant @samp{__v850e__} will be defined if this option is used.
13056
13057 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
13058 are defined then a default target processor will be chosen and the
13059 relevant @samp{__v850*__} preprocessor constant will be defined.
13060
13061 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
13062 defined, regardless of which processor variant is the target.
13063
13064 @item -mdisable-callt
13065 @opindex mdisable-callt
13066 This option will suppress generation of the CALLT instruction for the
13067 v850e and v850e1 flavors of the v850 architecture.  The default is
13068 @option{-mno-disable-callt} which allows the CALLT instruction to be used.
13069
13070 @end table
13071
13072 @node VAX Options
13073 @subsection VAX Options
13074 @cindex VAX options
13075
13076 These @samp{-m} options are defined for the VAX:
13077
13078 @table @gcctabopt
13079 @item -munix
13080 @opindex munix
13081 Do not output certain jump instructions (@code{aobleq} and so on)
13082 that the Unix assembler for the VAX cannot handle across long
13083 ranges.
13084
13085 @item -mgnu
13086 @opindex mgnu
13087 Do output those jump instructions, on the assumption that you
13088 will assemble with the GNU assembler.
13089
13090 @item -mg
13091 @opindex mg
13092 Output code for g-format floating point numbers instead of d-format.
13093 @end table
13094
13095 @node x86-64 Options
13096 @subsection x86-64 Options
13097 @cindex x86-64 options
13098
13099 These are listed under @xref{i386 and x86-64 Options}.
13100
13101 @node Xstormy16 Options
13102 @subsection Xstormy16 Options
13103 @cindex Xstormy16 Options
13104
13105 These options are defined for Xstormy16:
13106
13107 @table @gcctabopt
13108 @item -msim
13109 @opindex msim
13110 Choose startup files and linker script suitable for the simulator.
13111 @end table
13112
13113 @node Xtensa Options
13114 @subsection Xtensa Options
13115 @cindex Xtensa Options
13116
13117 These options are supported for Xtensa targets:
13118
13119 @table @gcctabopt
13120 @item -mconst16
13121 @itemx -mno-const16
13122 @opindex mconst16
13123 @opindex mno-const16
13124 Enable or disable use of @code{CONST16} instructions for loading
13125 constant values.  The @code{CONST16} instruction is currently not a
13126 standard option from Tensilica.  When enabled, @code{CONST16}
13127 instructions are always used in place of the standard @code{L32R}
13128 instructions.  The use of @code{CONST16} is enabled by default only if
13129 the @code{L32R} instruction is not available.
13130
13131 @item -mfused-madd
13132 @itemx -mno-fused-madd
13133 @opindex mfused-madd
13134 @opindex mno-fused-madd
13135 Enable or disable use of fused multiply/add and multiply/subtract
13136 instructions in the floating-point option.  This has no effect if the
13137 floating-point option is not also enabled.  Disabling fused multiply/add
13138 and multiply/subtract instructions forces the compiler to use separate
13139 instructions for the multiply and add/subtract operations.  This may be
13140 desirable in some cases where strict IEEE 754-compliant results are
13141 required: the fused multiply add/subtract instructions do not round the
13142 intermediate result, thereby producing results with @emph{more} bits of
13143 precision than specified by the IEEE standard.  Disabling fused multiply
13144 add/subtract instructions also ensures that the program output is not
13145 sensitive to the compiler's ability to combine multiply and add/subtract
13146 operations.
13147
13148 @item -mtext-section-literals
13149 @itemx -mno-text-section-literals
13150 @opindex mtext-section-literals
13151 @opindex mno-text-section-literals
13152 Control the treatment of literal pools.  The default is
13153 @option{-mno-text-section-literals}, which places literals in a separate
13154 section in the output file.  This allows the literal pool to be placed
13155 in a data RAM/ROM, and it also allows the linker to combine literal
13156 pools from separate object files to remove redundant literals and
13157 improve code size.  With @option{-mtext-section-literals}, the literals
13158 are interspersed in the text section in order to keep them as close as
13159 possible to their references.  This may be necessary for large assembly
13160 files.
13161
13162 @item -mtarget-align
13163 @itemx -mno-target-align
13164 @opindex mtarget-align
13165 @opindex mno-target-align
13166 When this option is enabled, GCC instructs the assembler to
13167 automatically align instructions to reduce branch penalties at the
13168 expense of some code density.  The assembler attempts to widen density
13169 instructions to align branch targets and the instructions following call
13170 instructions.  If there are not enough preceding safe density
13171 instructions to align a target, no widening will be performed.  The
13172 default is @option{-mtarget-align}.  These options do not affect the
13173 treatment of auto-aligned instructions like @code{LOOP}, which the
13174 assembler will always align, either by widening density instructions or
13175 by inserting no-op instructions.
13176
13177 @item -mlongcalls
13178 @itemx -mno-longcalls
13179 @opindex mlongcalls
13180 @opindex mno-longcalls
13181 When this option is enabled, GCC instructs the assembler to translate
13182 direct calls to indirect calls unless it can determine that the target
13183 of a direct call is in the range allowed by the call instruction.  This
13184 translation typically occurs for calls to functions in other source
13185 files.  Specifically, the assembler translates a direct @code{CALL}
13186 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
13187 The default is @option{-mno-longcalls}.  This option should be used in
13188 programs where the call target can potentially be out of range.  This
13189 option is implemented in the assembler, not the compiler, so the
13190 assembly code generated by GCC will still show direct call
13191 instructions---look at the disassembled object code to see the actual
13192 instructions.  Note that the assembler will use an indirect call for
13193 every cross-file call, not just those that really will be out of range.
13194 @end table
13195
13196 @node zSeries Options
13197 @subsection zSeries Options
13198 @cindex zSeries options
13199
13200 These are listed under @xref{S/390 and zSeries Options}.
13201
13202 @node Code Gen Options
13203 @section Options for Code Generation Conventions
13204 @cindex code generation conventions
13205 @cindex options, code generation
13206 @cindex run-time options
13207
13208 These machine-independent options control the interface conventions
13209 used in code generation.
13210
13211 Most of them have both positive and negative forms; the negative form
13212 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
13213 one of the forms is listed---the one which is not the default.  You
13214 can figure out the other form by either removing @samp{no-} or adding
13215 it.
13216
13217 @table @gcctabopt
13218 @item -fbounds-check
13219 @opindex fbounds-check
13220 For front-ends that support it, generate additional code to check that
13221 indices used to access arrays are within the declared range.  This is
13222 currently only supported by the Java and Fortran front-ends, where
13223 this option defaults to true and false respectively.
13224
13225 @item -ftrapv
13226 @opindex ftrapv
13227 This option generates traps for signed overflow on addition, subtraction,
13228 multiplication operations.
13229
13230 @item -fwrapv
13231 @opindex fwrapv
13232 This option instructs the compiler to assume that signed arithmetic
13233 overflow of addition, subtraction and multiplication wraps around
13234 using twos-complement representation.  This flag enables some optimizations
13235 and disables others.  This option is enabled by default for the Java
13236 front-end, as required by the Java language specification.
13237
13238 @item -fexceptions
13239 @opindex fexceptions
13240 Enable exception handling.  Generates extra code needed to propagate
13241 exceptions.  For some targets, this implies GCC will generate frame
13242 unwind information for all functions, which can produce significant data
13243 size overhead, although it does not affect execution.  If you do not
13244 specify this option, GCC will enable it by default for languages like
13245 C++ which normally require exception handling, and disable it for
13246 languages like C that do not normally require it.  However, you may need
13247 to enable this option when compiling C code that needs to interoperate
13248 properly with exception handlers written in C++.  You may also wish to
13249 disable this option if you are compiling older C++ programs that don't
13250 use exception handling.
13251
13252 @item -fnon-call-exceptions
13253 @opindex fnon-call-exceptions
13254 Generate code that allows trapping instructions to throw exceptions.
13255 Note that this requires platform-specific runtime support that does
13256 not exist everywhere.  Moreover, it only allows @emph{trapping}
13257 instructions to throw exceptions, i.e.@: memory references or floating
13258 point instructions.  It does not allow exceptions to be thrown from
13259 arbitrary signal handlers such as @code{SIGALRM}.
13260
13261 @item -funwind-tables
13262 @opindex funwind-tables
13263 Similar to @option{-fexceptions}, except that it will just generate any needed
13264 static data, but will not affect the generated code in any other way.
13265 You will normally not enable this option; instead, a language processor
13266 that needs this handling would enable it on your behalf.
13267
13268 @item -fasynchronous-unwind-tables
13269 @opindex fasynchronous-unwind-tables
13270 Generate unwind table in dwarf2 format, if supported by target machine.  The
13271 table is exact at each instruction boundary, so it can be used for stack
13272 unwinding from asynchronous events (such as debugger or garbage collector).
13273
13274 @item -fpcc-struct-return
13275 @opindex fpcc-struct-return
13276 Return ``short'' @code{struct} and @code{union} values in memory like
13277 longer ones, rather than in registers.  This convention is less
13278 efficient, but it has the advantage of allowing intercallability between
13279 GCC-compiled files and files compiled with other compilers, particularly
13280 the Portable C Compiler (pcc).
13281
13282 The precise convention for returning structures in memory depends
13283 on the target configuration macros.
13284
13285 Short structures and unions are those whose size and alignment match
13286 that of some integer type.
13287
13288 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
13289 switch is not binary compatible with code compiled with the
13290 @option{-freg-struct-return} switch.
13291 Use it to conform to a non-default application binary interface.
13292
13293 @item -freg-struct-return
13294 @opindex freg-struct-return
13295 Return @code{struct} and @code{union} values in registers when possible.
13296 This is more efficient for small structures than
13297 @option{-fpcc-struct-return}.
13298
13299 If you specify neither @option{-fpcc-struct-return} nor
13300 @option{-freg-struct-return}, GCC defaults to whichever convention is
13301 standard for the target.  If there is no standard convention, GCC
13302 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
13303 the principal compiler.  In those cases, we can choose the standard, and
13304 we chose the more efficient register return alternative.
13305
13306 @strong{Warning:} code compiled with the @option{-freg-struct-return}
13307 switch is not binary compatible with code compiled with the
13308 @option{-fpcc-struct-return} switch.
13309 Use it to conform to a non-default application binary interface.
13310
13311 @item -fshort-enums
13312 @opindex fshort-enums
13313 Allocate to an @code{enum} type only as many bytes as it needs for the
13314 declared range of possible values.  Specifically, the @code{enum} type
13315 will be equivalent to the smallest integer type which has enough room.
13316
13317 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
13318 code that is not binary compatible with code generated without that switch.
13319 Use it to conform to a non-default application binary interface.
13320
13321 @item -fshort-double
13322 @opindex fshort-double
13323 Use the same size for @code{double} as for @code{float}.
13324
13325 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
13326 code that is not binary compatible with code generated without that switch.
13327 Use it to conform to a non-default application binary interface.
13328
13329 @item -fshort-wchar
13330 @opindex fshort-wchar
13331 Override the underlying type for @samp{wchar_t} to be @samp{short
13332 unsigned int} instead of the default for the target.  This option is
13333 useful for building programs to run under WINE@.
13334
13335 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
13336 code that is not binary compatible with code generated without that switch.
13337 Use it to conform to a non-default application binary interface.
13338
13339 @item -fno-common
13340 @opindex fno-common
13341 In C, allocate even uninitialized global variables in the data section of the
13342 object file, rather than generating them as common blocks.  This has the
13343 effect that if the same variable is declared (without @code{extern}) in
13344 two different compilations, you will get an error when you link them.
13345 The only reason this might be useful is if you wish to verify that the
13346 program will work on other systems which always work this way.
13347
13348 @item -fno-ident
13349 @opindex fno-ident
13350 Ignore the @samp{#ident} directive.
13351
13352 @item -finhibit-size-directive
13353 @opindex finhibit-size-directive
13354 Don't output a @code{.size} assembler directive, or anything else that
13355 would cause trouble if the function is split in the middle, and the
13356 two halves are placed at locations far apart in memory.  This option is
13357 used when compiling @file{crtstuff.c}; you should not need to use it
13358 for anything else.
13359
13360 @item -fverbose-asm
13361 @opindex fverbose-asm
13362 Put extra commentary information in the generated assembly code to
13363 make it more readable.  This option is generally only of use to those
13364 who actually need to read the generated assembly code (perhaps while
13365 debugging the compiler itself).
13366
13367 @option{-fno-verbose-asm}, the default, causes the
13368 extra information to be omitted and is useful when comparing two assembler
13369 files.
13370
13371 @item -fpic
13372 @opindex fpic
13373 @cindex global offset table
13374 @cindex PIC
13375 Generate position-independent code (PIC) suitable for use in a shared
13376 library, if supported for the target machine.  Such code accesses all
13377 constant addresses through a global offset table (GOT)@.  The dynamic
13378 loader resolves the GOT entries when the program starts (the dynamic
13379 loader is not part of GCC; it is part of the operating system).  If
13380 the GOT size for the linked executable exceeds a machine-specific
13381 maximum size, you get an error message from the linker indicating that
13382 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
13383 instead.  (These maximums are 8k on the SPARC and 32k
13384 on the m68k and RS/6000.  The 386 has no such limit.)
13385
13386 Position-independent code requires special support, and therefore works
13387 only on certain machines.  For the 386, GCC supports PIC for System V
13388 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
13389 position-independent.
13390
13391 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
13392 are defined to 1.
13393
13394 @item -fPIC
13395 @opindex fPIC
13396 If supported for the target machine, emit position-independent code,
13397 suitable for dynamic linking and avoiding any limit on the size of the
13398 global offset table.  This option makes a difference on the m68k,
13399 PowerPC and SPARC@.
13400
13401 Position-independent code requires special support, and therefore works
13402 only on certain machines.
13403
13404 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
13405 are defined to 2.
13406
13407 @item -fpie
13408 @itemx -fPIE
13409 @opindex fpie
13410 @opindex fPIE
13411 These options are similar to @option{-fpic} and @option{-fPIC}, but
13412 generated position independent code can be only linked into executables.
13413 Usually these options are used when @option{-pie} GCC option will be
13414 used during linking.
13415
13416 @item -fno-jump-tables
13417 @opindex fno-jump-tables
13418 Do not use jump tables for switch statements even where it would be
13419 more efficient than other code generation strategies.  This option is
13420 of use in conjunction with @option{-fpic} or @option{-fPIC} for
13421 building code which forms part of a dynamic linker and cannot
13422 reference the address of a jump table.  On some targets, jump tables
13423 do not require a GOT and this option is not needed.
13424
13425 @item -ffixed-@var{reg}
13426 @opindex ffixed
13427 Treat the register named @var{reg} as a fixed register; generated code
13428 should never refer to it (except perhaps as a stack pointer, frame
13429 pointer or in some other fixed role).
13430
13431 @var{reg} must be the name of a register.  The register names accepted
13432 are machine-specific and are defined in the @code{REGISTER_NAMES}
13433 macro in the machine description macro file.
13434
13435 This flag does not have a negative form, because it specifies a
13436 three-way choice.
13437
13438 @item -fcall-used-@var{reg}
13439 @opindex fcall-used
13440 Treat the register named @var{reg} as an allocable register that is
13441 clobbered by function calls.  It may be allocated for temporaries or
13442 variables that do not live across a call.  Functions compiled this way
13443 will not save and restore the register @var{reg}.
13444
13445 It is an error to used this flag with the frame pointer or stack pointer.
13446 Use of this flag for other registers that have fixed pervasive roles in
13447 the machine's execution model will produce disastrous results.
13448
13449 This flag does not have a negative form, because it specifies a
13450 three-way choice.
13451
13452 @item -fcall-saved-@var{reg}
13453 @opindex fcall-saved
13454 Treat the register named @var{reg} as an allocable register saved by
13455 functions.  It may be allocated even for temporaries or variables that
13456 live across a call.  Functions compiled this way will save and restore
13457 the register @var{reg} if they use it.
13458
13459 It is an error to used this flag with the frame pointer or stack pointer.
13460 Use of this flag for other registers that have fixed pervasive roles in
13461 the machine's execution model will produce disastrous results.
13462
13463 A different sort of disaster will result from the use of this flag for
13464 a register in which function values may be returned.
13465
13466 This flag does not have a negative form, because it specifies a
13467 three-way choice.
13468
13469 @item -fpack-struct[=@var{n}]
13470 @opindex fpack-struct
13471 Without a value specified, pack all structure members together without
13472 holes.  When a value is specified (which must be a small power of two), pack
13473 structure members according to this value, representing the maximum
13474 alignment (that is, objects with default alignment requirements larger than
13475 this will be output potentially unaligned at the next fitting location.
13476
13477 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
13478 code that is not binary compatible with code generated without that switch.
13479 Additionally, it makes the code suboptimal.
13480 Use it to conform to a non-default application binary interface.
13481
13482 @item -finstrument-functions
13483 @opindex finstrument-functions
13484 Generate instrumentation calls for entry and exit to functions.  Just
13485 after function entry and just before function exit, the following
13486 profiling functions will be called with the address of the current
13487 function and its call site.  (On some platforms,
13488 @code{__builtin_return_address} does not work beyond the current
13489 function, so the call site information may not be available to the
13490 profiling functions otherwise.)
13491
13492 @smallexample
13493 void __cyg_profile_func_enter (void *this_fn,
13494                                void *call_site);
13495 void __cyg_profile_func_exit  (void *this_fn,
13496                                void *call_site);
13497 @end smallexample
13498
13499 The first argument is the address of the start of the current function,
13500 which may be looked up exactly in the symbol table.
13501
13502 This instrumentation is also done for functions expanded inline in other
13503 functions.  The profiling calls will indicate where, conceptually, the
13504 inline function is entered and exited.  This means that addressable
13505 versions of such functions must be available.  If all your uses of a
13506 function are expanded inline, this may mean an additional expansion of
13507 code size.  If you use @samp{extern inline} in your C code, an
13508 addressable version of such functions must be provided.  (This is
13509 normally the case anyways, but if you get lucky and the optimizer always
13510 expands the functions inline, you might have gotten away without
13511 providing static copies.)
13512
13513 A function may be given the attribute @code{no_instrument_function}, in
13514 which case this instrumentation will not be done.  This can be used, for
13515 example, for the profiling functions listed above, high-priority
13516 interrupt routines, and any functions from which the profiling functions
13517 cannot safely be called (perhaps signal handlers, if the profiling
13518 routines generate output or allocate memory).
13519
13520 @item -fstack-check
13521 @opindex fstack-check
13522 Generate code to verify that you do not go beyond the boundary of the
13523 stack.  You should specify this flag if you are running in an
13524 environment with multiple threads, but only rarely need to specify it in
13525 a single-threaded environment since stack overflow is automatically
13526 detected on nearly all systems if there is only one stack.
13527
13528 Note that this switch does not actually cause checking to be done; the
13529 operating system must do that.  The switch causes generation of code
13530 to ensure that the operating system sees the stack being extended.
13531
13532 @item -fstack-limit-register=@var{reg}
13533 @itemx -fstack-limit-symbol=@var{sym}
13534 @itemx -fno-stack-limit
13535 @opindex fstack-limit-register
13536 @opindex fstack-limit-symbol
13537 @opindex fno-stack-limit
13538 Generate code to ensure that the stack does not grow beyond a certain value,
13539 either the value of a register or the address of a symbol.  If the stack
13540 would grow beyond the value, a signal is raised.  For most targets,
13541 the signal is raised before the stack overruns the boundary, so
13542 it is possible to catch the signal without taking special precautions.
13543
13544 For instance, if the stack starts at absolute address @samp{0x80000000}
13545 and grows downwards, you can use the flags
13546 @option{-fstack-limit-symbol=__stack_limit} and
13547 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
13548 of 128KB@.  Note that this may only work with the GNU linker.
13549
13550 @cindex aliasing of parameters
13551 @cindex parameters, aliased
13552 @item -fargument-alias
13553 @itemx -fargument-noalias
13554 @itemx -fargument-noalias-global
13555 @itemx -fargument-noalias-anything
13556 @opindex fargument-alias
13557 @opindex fargument-noalias
13558 @opindex fargument-noalias-global
13559 @opindex fargument-noalias-anything
13560 Specify the possible relationships among parameters and between
13561 parameters and global data.
13562
13563 @option{-fargument-alias} specifies that arguments (parameters) may
13564 alias each other and may alias global storage.@*
13565 @option{-fargument-noalias} specifies that arguments do not alias
13566 each other, but may alias global storage.@*
13567 @option{-fargument-noalias-global} specifies that arguments do not
13568 alias each other and do not alias global storage.
13569 @option{-fargument-noalias-anything} specifies that arguments do not
13570 alias any other storage.
13571
13572 Each language will automatically use whatever option is required by
13573 the language standard.  You should not need to use these options yourself.
13574
13575 @item -fleading-underscore
13576 @opindex fleading-underscore
13577 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
13578 change the way C symbols are represented in the object file.  One use
13579 is to help link with legacy assembly code.
13580
13581 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
13582 generate code that is not binary compatible with code generated without that
13583 switch.  Use it to conform to a non-default application binary interface.
13584 Not all targets provide complete support for this switch.
13585
13586 @item -ftls-model=@var{model}
13587 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
13588 The @var{model} argument should be one of @code{global-dynamic},
13589 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
13590
13591 The default without @option{-fpic} is @code{initial-exec}; with
13592 @option{-fpic} the default is @code{global-dynamic}.
13593
13594 @item -fvisibility=@var{default|internal|hidden|protected}
13595 @opindex fvisibility
13596 Set the default ELF image symbol visibility to the specified option---all
13597 symbols will be marked with this unless overridden within the code.
13598 Using this feature can very substantially improve linking and
13599 load times of shared object libraries, produce more optimized
13600 code, provide near-perfect API export and prevent symbol clashes.
13601 It is @strong{strongly} recommended that you use this in any shared objects
13602 you distribute.
13603
13604 Despite the nomenclature, @code{default} always means public ie;
13605 available to be linked against from outside the shared object.
13606 @code{protected} and @code{internal} are pretty useless in real-world
13607 usage so the only other commonly used option will be @code{hidden}.
13608 The default if @option{-fvisibility} isn't specified is
13609 @code{default}, i.e., make every
13610 symbol public---this causes the same behavior as previous versions of
13611 GCC@.
13612
13613 A good explanation of the benefits offered by ensuring ELF
13614 symbols have the correct visibility is given by ``How To Write
13615 Shared Libraries'' by Ulrich Drepper (which can be found at
13616 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
13617 solution made possible by this option to marking things hidden when
13618 the default is public is to make the default hidden and mark things
13619 public.  This is the norm with DLL's on Windows and with @option{-fvisibility=hidden}
13620 and @code{__attribute__ ((visibility("default")))} instead of
13621 @code{__declspec(dllexport)} you get almost identical semantics with
13622 identical syntax.  This is a great boon to those working with
13623 cross-platform projects.
13624
13625 For those adding visibility support to existing code, you may find
13626 @samp{#pragma GCC visibility} of use.  This works by you enclosing
13627 the declarations you wish to set visibility for with (for example)
13628 @samp{#pragma GCC visibility push(hidden)} and
13629 @samp{#pragma GCC visibility pop}.
13630 Bear in mind that symbol visibility should be viewed @strong{as
13631 part of the API interface contract} and thus all new code should
13632 always specify visibility when it is not the default ie; declarations
13633 only for use within the local DSO should @strong{always} be marked explicitly
13634 as hidden as so to avoid PLT indirection overheads---making this
13635 abundantly clear also aids readability and self-documentation of the code.
13636 Note that due to ISO C++ specification requirements, operator new and
13637 operator delete must always be of default visibility.
13638
13639 Be aware that headers from outside your project, in particular system
13640 headers and headers from any other library you use, may not be
13641 expecting to be compiled with visibility other than the default.  You
13642 may need to explicitly say @samp{#pragma GCC visibility push(default)}
13643 before including any such headers.
13644
13645 @samp{extern} declarations are not affected by @samp{-fvisibility}, so
13646 a lot of code can be recompiled with @samp{-fvisibility=hidden} with
13647 no modifications.  However, this means that calls to @samp{extern}
13648 functions with no explicit visibility will use the PLT, so it is more
13649 effective to use @samp{__attribute ((visibility))} and/or
13650 @samp{#pragma GCC visibility} to tell the compiler which @samp{extern}
13651 declarations should be treated as hidden.
13652
13653 Note that @samp{-fvisibility} does affect C++ vague linkage
13654 entities. This means that, for instance, an exception class that will
13655 be thrown between DSOs must be explicitly marked with default
13656 visibility so that the @samp{type_info} nodes will be unified between
13657 the DSOs.
13658
13659 An overview of these techniques, their benefits and how to use them
13660 is at @w{@uref{http://gcc.gnu.org/wiki/Visibility}}.
13661
13662 @end table
13663
13664 @c man end
13665
13666 @node Environment Variables
13667 @section Environment Variables Affecting GCC
13668 @cindex environment variables
13669
13670 @c man begin ENVIRONMENT
13671 This section describes several environment variables that affect how GCC
13672 operates.  Some of them work by specifying directories or prefixes to use
13673 when searching for various kinds of files.  Some are used to specify other
13674 aspects of the compilation environment.
13675
13676 Note that you can also specify places to search using options such as
13677 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
13678 take precedence over places specified using environment variables, which
13679 in turn take precedence over those specified by the configuration of GCC@.
13680 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
13681 GNU Compiler Collection (GCC) Internals}.
13682
13683 @table @env
13684 @item LANG
13685 @itemx LC_CTYPE
13686 @c @itemx LC_COLLATE
13687 @itemx LC_MESSAGES
13688 @c @itemx LC_MONETARY
13689 @c @itemx LC_NUMERIC
13690 @c @itemx LC_TIME
13691 @itemx LC_ALL
13692 @findex LANG
13693 @findex LC_CTYPE
13694 @c @findex LC_COLLATE
13695 @findex LC_MESSAGES
13696 @c @findex LC_MONETARY
13697 @c @findex LC_NUMERIC
13698 @c @findex LC_TIME
13699 @findex LC_ALL
13700 @cindex locale
13701 These environment variables control the way that GCC uses
13702 localization information that allow GCC to work with different
13703 national conventions.  GCC inspects the locale categories
13704 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
13705 so.  These locale categories can be set to any value supported by your
13706 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
13707 Kingdom encoded in UTF-8.
13708
13709 The @env{LC_CTYPE} environment variable specifies character
13710 classification.  GCC uses it to determine the character boundaries in
13711 a string; this is needed for some multibyte encodings that contain quote
13712 and escape characters that would otherwise be interpreted as a string
13713 end or escape.
13714
13715 The @env{LC_MESSAGES} environment variable specifies the language to
13716 use in diagnostic messages.
13717
13718 If the @env{LC_ALL} environment variable is set, it overrides the value
13719 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
13720 and @env{LC_MESSAGES} default to the value of the @env{LANG}
13721 environment variable.  If none of these variables are set, GCC
13722 defaults to traditional C English behavior.
13723
13724 @item TMPDIR
13725 @findex TMPDIR
13726 If @env{TMPDIR} is set, it specifies the directory to use for temporary
13727 files.  GCC uses temporary files to hold the output of one stage of
13728 compilation which is to be used as input to the next stage: for example,
13729 the output of the preprocessor, which is the input to the compiler
13730 proper.
13731
13732 @item GCC_EXEC_PREFIX
13733 @findex GCC_EXEC_PREFIX
13734 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
13735 names of the subprograms executed by the compiler.  No slash is added
13736 when this prefix is combined with the name of a subprogram, but you can
13737 specify a prefix that ends with a slash if you wish.
13738
13739 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
13740 an appropriate prefix to use based on the pathname it was invoked with.
13741
13742 If GCC cannot find the subprogram using the specified prefix, it
13743 tries looking in the usual places for the subprogram.
13744
13745 The default value of @env{GCC_EXEC_PREFIX} is
13746 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the value
13747 of @code{prefix} when you ran the @file{configure} script.
13748
13749 Other prefixes specified with @option{-B} take precedence over this prefix.
13750
13751 This prefix is also used for finding files such as @file{crt0.o} that are
13752 used for linking.
13753
13754 In addition, the prefix is used in an unusual way in finding the
13755 directories to search for header files.  For each of the standard
13756 directories whose name normally begins with @samp{/usr/local/lib/gcc}
13757 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
13758 replacing that beginning with the specified prefix to produce an
13759 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
13760 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
13761 These alternate directories are searched first; the standard directories
13762 come next.
13763
13764 @item COMPILER_PATH
13765 @findex COMPILER_PATH
13766 The value of @env{COMPILER_PATH} is a colon-separated list of
13767 directories, much like @env{PATH}.  GCC tries the directories thus
13768 specified when searching for subprograms, if it can't find the
13769 subprograms using @env{GCC_EXEC_PREFIX}.
13770
13771 @item LIBRARY_PATH
13772 @findex LIBRARY_PATH
13773 The value of @env{LIBRARY_PATH} is a colon-separated list of
13774 directories, much like @env{PATH}.  When configured as a native compiler,
13775 GCC tries the directories thus specified when searching for special
13776 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
13777 using GCC also uses these directories when searching for ordinary
13778 libraries for the @option{-l} option (but directories specified with
13779 @option{-L} come first).
13780
13781 @item LANG
13782 @findex LANG
13783 @cindex locale definition
13784 This variable is used to pass locale information to the compiler.  One way in
13785 which this information is used is to determine the character set to be used
13786 when character literals, string literals and comments are parsed in C and C++.
13787 When the compiler is configured to allow multibyte characters,
13788 the following values for @env{LANG} are recognized:
13789
13790 @table @samp
13791 @item C-JIS
13792 Recognize JIS characters.
13793 @item C-SJIS
13794 Recognize SJIS characters.
13795 @item C-EUCJP
13796 Recognize EUCJP characters.
13797 @end table
13798
13799 If @env{LANG} is not defined, or if it has some other value, then the
13800 compiler will use mblen and mbtowc as defined by the default locale to
13801 recognize and translate multibyte characters.
13802 @end table
13803
13804 @noindent
13805 Some additional environments variables affect the behavior of the
13806 preprocessor.
13807
13808 @include cppenv.texi
13809
13810 @c man end
13811
13812 @node Precompiled Headers
13813 @section Using Precompiled Headers
13814 @cindex precompiled headers
13815 @cindex speed of compilation
13816
13817 Often large projects have many header files that are included in every
13818 source file.  The time the compiler takes to process these header files
13819 over and over again can account for nearly all of the time required to
13820 build the project.  To make builds faster, GCC allows users to
13821 `precompile' a header file; then, if builds can use the precompiled
13822 header file they will be much faster.
13823
13824 To create a precompiled header file, simply compile it as you would any
13825 other file, if necessary using the @option{-x} option to make the driver
13826 treat it as a C or C++ header file.  You will probably want to use a
13827 tool like @command{make} to keep the precompiled header up-to-date when
13828 the headers it contains change.
13829
13830 A precompiled header file will be searched for when @code{#include} is
13831 seen in the compilation.  As it searches for the included file
13832 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
13833 compiler looks for a precompiled header in each directory just before it
13834 looks for the include file in that directory.  The name searched for is
13835 the name specified in the @code{#include} with @samp{.gch} appended.  If
13836 the precompiled header file can't be used, it is ignored.
13837
13838 For instance, if you have @code{#include "all.h"}, and you have
13839 @file{all.h.gch} in the same directory as @file{all.h}, then the
13840 precompiled header file will be used if possible, and the original
13841 header will be used otherwise.
13842
13843 Alternatively, you might decide to put the precompiled header file in a
13844 directory and use @option{-I} to ensure that directory is searched
13845 before (or instead of) the directory containing the original header.
13846 Then, if you want to check that the precompiled header file is always
13847 used, you can put a file of the same name as the original header in this
13848 directory containing an @code{#error} command.
13849
13850 This also works with @option{-include}.  So yet another way to use
13851 precompiled headers, good for projects not designed with precompiled
13852 header files in mind, is to simply take most of the header files used by
13853 a project, include them from another header file, precompile that header
13854 file, and @option{-include} the precompiled header.  If the header files
13855 have guards against multiple inclusion, they will be skipped because
13856 they've already been included (in the precompiled header).
13857
13858 If you need to precompile the same header file for different
13859 languages, targets, or compiler options, you can instead make a
13860 @emph{directory} named like @file{all.h.gch}, and put each precompiled
13861 header in the directory, perhaps using @option{-o}.  It doesn't matter
13862 what you call the files in the directory, every precompiled header in
13863 the directory will be considered.  The first precompiled header
13864 encountered in the directory that is valid for this compilation will
13865 be used; they're searched in no particular order.
13866
13867 There are many other possibilities, limited only by your imagination,
13868 good sense, and the constraints of your build system.
13869
13870 A precompiled header file can be used only when these conditions apply:
13871
13872 @itemize
13873 @item
13874 Only one precompiled header can be used in a particular compilation.
13875
13876 @item
13877 A precompiled header can't be used once the first C token is seen.  You
13878 can have preprocessor directives before a precompiled header; you can
13879 even include a precompiled header from inside another header, so long as
13880 there are no C tokens before the @code{#include}.
13881
13882 @item
13883 The precompiled header file must be produced for the same language as
13884 the current compilation.  You can't use a C precompiled header for a C++
13885 compilation.
13886
13887 @item
13888 The precompiled header file must have been produced by the same compiler
13889 binary as the current compilation is using.
13890
13891 @item
13892 Any macros defined before the precompiled header is included must
13893 either be defined in the same way as when the precompiled header was
13894 generated, or must not affect the precompiled header, which usually
13895 means that they don't appear in the precompiled header at all.
13896
13897 The @option{-D} option is one way to define a macro before a
13898 precompiled header is included; using a @code{#define} can also do it.
13899 There are also some options that define macros implicitly, like
13900 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
13901 defined this way.
13902
13903 @item If debugging information is output when using the precompiled
13904 header, using @option{-g} or similar, the same kind of debugging information
13905 must have been output when building the precompiled header.  However,
13906 a precompiled header built using @option{-g} can be used in a compilation
13907 when no debugging information is being output.
13908
13909 @item The same @option{-m} options must generally be used when building
13910 and using the precompiled header.  @xref{Submodel Options},
13911 for any cases where this rule is relaxed.
13912
13913 @item Each of the following options must be the same when building and using
13914 the precompiled header:
13915
13916 @gccoptlist{-fexceptions -funit-at-a-time}
13917
13918 @item
13919 Some other command-line options starting with @option{-f},
13920 @option{-p}, or @option{-O} must be defined in the same way as when
13921 the precompiled header was generated.  At present, it's not clear
13922 which options are safe to change and which are not; the safest choice
13923 is to use exactly the same options when generating and using the
13924 precompiled header.  The following are known to be safe:
13925
13926 @gccoptlist{-fmessage-length= -fpreprocessed
13927 -fsched-interblock -fsched-spec -fsched-spec-load -fsched-spec-load-dangerous
13928 -fsched-verbose=<number> -fschedule-insns -fvisibility=
13929 -pedantic-errors}
13930
13931 @end itemize
13932
13933 For all of these except the last, the compiler will automatically
13934 ignore the precompiled header if the conditions aren't met.  If you
13935 find an option combination that doesn't work and doesn't cause the
13936 precompiled header to be ignored, please consider filing a bug report,
13937 see @ref{Bugs}.
13938
13939 If you do use differing options when generating and using the
13940 precompiled header, the actual behavior will be a mixture of the
13941 behavior for the options.  For instance, if you use @option{-g} to
13942 generate the precompiled header but not when using it, you may or may
13943 not get debugging information for routines in the precompiled header.
13944
13945 @node Running Protoize
13946 @section Running Protoize
13947
13948 The program @code{protoize} is an optional part of GCC@.  You can use
13949 it to add prototypes to a program, thus converting the program to ISO
13950 C in one respect.  The companion program @code{unprotoize} does the
13951 reverse: it removes argument types from any prototypes that are found.
13952
13953 When you run these programs, you must specify a set of source files as
13954 command line arguments.  The conversion programs start out by compiling
13955 these files to see what functions they define.  The information gathered
13956 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
13957
13958 After scanning comes actual conversion.  The specified files are all
13959 eligible to be converted; any files they include (whether sources or
13960 just headers) are eligible as well.
13961
13962 But not all the eligible files are converted.  By default,
13963 @code{protoize} and @code{unprotoize} convert only source and header
13964 files in the current directory.  You can specify additional directories
13965 whose files should be converted with the @option{-d @var{directory}}
13966 option.  You can also specify particular files to exclude with the
13967 @option{-x @var{file}} option.  A file is converted if it is eligible, its
13968 directory name matches one of the specified directory names, and its
13969 name within the directory has not been excluded.
13970
13971 Basic conversion with @code{protoize} consists of rewriting most
13972 function definitions and function declarations to specify the types of
13973 the arguments.  The only ones not rewritten are those for varargs
13974 functions.
13975
13976 @code{protoize} optionally inserts prototype declarations at the
13977 beginning of the source file, to make them available for any calls that
13978 precede the function's definition.  Or it can insert prototype
13979 declarations with block scope in the blocks where undeclared functions
13980 are called.
13981
13982 Basic conversion with @code{unprotoize} consists of rewriting most
13983 function declarations to remove any argument types, and rewriting
13984 function definitions to the old-style pre-ISO form.
13985
13986 Both conversion programs print a warning for any function declaration or
13987 definition that they can't convert.  You can suppress these warnings
13988 with @option{-q}.
13989
13990 The output from @code{protoize} or @code{unprotoize} replaces the
13991 original source file.  The original file is renamed to a name ending
13992 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
13993 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
13994 for DOS) file already exists, then the source file is simply discarded.
13995
13996 @code{protoize} and @code{unprotoize} both depend on GCC itself to
13997 scan the program and collect information about the functions it uses.
13998 So neither of these programs will work until GCC is installed.
13999
14000 Here is a table of the options you can use with @code{protoize} and
14001 @code{unprotoize}.  Each option works with both programs unless
14002 otherwise stated.
14003
14004 @table @code
14005 @item -B @var{directory}
14006 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
14007 usual directory (normally @file{/usr/local/lib}).  This file contains
14008 prototype information about standard system functions.  This option
14009 applies only to @code{protoize}.
14010
14011 @item -c @var{compilation-options}
14012 Use @var{compilation-options} as the options when running @command{gcc} to
14013 produce the @samp{.X} files.  The special option @option{-aux-info} is
14014 always passed in addition, to tell @command{gcc} to write a @samp{.X} file.
14015
14016 Note that the compilation options must be given as a single argument to
14017 @code{protoize} or @code{unprotoize}.  If you want to specify several
14018 @command{gcc} options, you must quote the entire set of compilation options
14019 to make them a single word in the shell.
14020
14021 There are certain @command{gcc} arguments that you cannot use, because they
14022 would produce the wrong kind of output.  These include @option{-g},
14023 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
14024 the @var{compilation-options}, they are ignored.
14025
14026 @item -C
14027 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
14028 systems) instead of @samp{.c}.  This is convenient if you are converting
14029 a C program to C++.  This option applies only to @code{protoize}.
14030
14031 @item -g
14032 Add explicit global declarations.  This means inserting explicit
14033 declarations at the beginning of each source file for each function
14034 that is called in the file and was not declared.  These declarations
14035 precede the first function definition that contains a call to an
14036 undeclared function.  This option applies only to @code{protoize}.
14037
14038 @item -i @var{string}
14039 Indent old-style parameter declarations with the string @var{string}.
14040 This option applies only to @code{protoize}.
14041
14042 @code{unprotoize} converts prototyped function definitions to old-style
14043 function definitions, where the arguments are declared between the
14044 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
14045 uses five spaces as the indentation.  If you want to indent with just
14046 one space instead, use @option{-i " "}.
14047
14048 @item -k
14049 Keep the @samp{.X} files.  Normally, they are deleted after conversion
14050 is finished.
14051
14052 @item -l
14053 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
14054 a prototype declaration for each function in each block which calls the
14055 function without any declaration.  This option applies only to
14056 @code{protoize}.
14057
14058 @item -n
14059 Make no real changes.  This mode just prints information about the conversions
14060 that would have been done without @option{-n}.
14061
14062 @item -N
14063 Make no @samp{.save} files.  The original files are simply deleted.
14064 Use this option with caution.
14065
14066 @item -p @var{program}
14067 Use the program @var{program} as the compiler.  Normally, the name
14068 @file{gcc} is used.
14069
14070 @item -q
14071 Work quietly.  Most warnings are suppressed.
14072
14073 @item -v
14074 Print the version number, just like @option{-v} for @command{gcc}.
14075 @end table
14076
14077 If you need special compiler options to compile one of your program's
14078 source files, then you should generate that file's @samp{.X} file
14079 specially, by running @command{gcc} on that source file with the
14080 appropriate options and the option @option{-aux-info}.  Then run
14081 @code{protoize} on the entire set of files.  @code{protoize} will use
14082 the existing @samp{.X} file because it is newer than the source file.
14083 For example:
14084
14085 @smallexample
14086 gcc -Dfoo=bar file1.c -aux-info file1.X
14087 protoize *.c
14088 @end smallexample
14089
14090 @noindent
14091 You need to include the special files along with the rest in the
14092 @code{protoize} command, even though their @samp{.X} files already
14093 exist, because otherwise they won't get converted.
14094
14095 @xref{Protoize Caveats}, for more information on how to use
14096 @code{protoize} successfully.