66a0ddf6efa9e346ee3790e533073f9f479a260e
[platform/upstream/gcc.git] / gcc / doc / invoke.texi
1 @c Copyright (C) 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
2 @c 2000, 2001 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 COPYRIGHT
8 Copyright @copyright{} 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
9 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
10
11 Permission is granted to copy, distribute and/or modify this document
12 under the terms of the GNU Free Documentation License, Version 1.1 or
13 any later version published by the Free Software Foundation; with the
14 Invariant Sections being ``GNU General Public License'' and ``Funding
15 Free Software'', the Front-Cover texts being (a) (see below), and with
16 the Back-Cover Texts being (b) (see below).  A copy of the license is
17 included in the gfdl(7) man page.
18
19 (a) The FSF's Front-Cover Text is:
20
21      A GNU Manual
22
23 (b) The FSF's Back-Cover Text is:
24
25      You have freedom to copy and modify this GNU Manual, like GNU
26      software.  Copies published by the Free Software Foundation raise
27      funds for GNU development.
28 @c man end
29 @c Set file name and title for the man page.
30 @setfilename gcc
31 @settitle GNU project C and C++ compiler
32 @c man begin SYNOPSIS
33 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
34     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
35     [@option{-W}@var{warn}@dots{}] [@option{-pedantic}]
36     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
37     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
38     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
39     [@option{-o} @var{outfile}] @var{infile}@dots{}
40
41 Only the most useful options are listed here; see below for the
42 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
43 @c man end
44 @c man begin SEEALSO
45 gpl(7), gfdl(7), fsf-funding(7),
46 cpp(1), gcov(1), g77(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
47 and the Info entries for @file{gcc}, @file{cpp}, @file{g77}, @file{as},
48 @file{ld}, @file{binutils} and @file{gdb}.
49 @c man end
50 @c man begin BUGS
51 For instructions on reporting bugs, see
52 @w{@uref{http://gcc.gnu.org/bugs.html}}.  Use of the @command{gccbug}
53 script to report bugs is recommended.
54 @c man end
55 @c man begin AUTHOR
56 See the Info entry for @file{gcc}, or
57 @w{@uref{http://gcc.gnu.org/thanks.html}}, for contributors to GCC@.
58 @c man end
59 @end ignore
60
61 @node Invoking GCC
62 @chapter GCC Command Options
63 @cindex GCC command options
64 @cindex command options
65 @cindex options, GCC command
66
67 @c man begin DESCRIPTION
68
69 When you invoke GCC, it normally does preprocessing, compilation,
70 assembly and linking.  The ``overall options'' allow you to stop this
71 process at an intermediate stage.  For example, the @option{-c} option
72 says not to run the linker.  Then the output consists of object files
73 output by the assembler.
74
75 Other options are passed on to one stage of processing.  Some options
76 control the preprocessor and others the compiler itself.  Yet other
77 options control the assembler and linker; most of these are not
78 documented here, since you rarely need to use any of them.
79
80 @cindex C compilation options
81 Most of the command line options that you can use with GCC are useful
82 for C programs; when an option is only useful with another language
83 (usually C++), the explanation says so explicitly.  If the description
84 for a particular option does not mention a source language, you can use
85 that option with all supported languages.
86
87 @cindex C++ compilation options
88 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
89 options for compiling C++ programs.
90
91 @cindex grouping options
92 @cindex options, grouping
93 The @command{gcc} program accepts options and file names as operands.  Many
94 options have multi-letter names; therefore multiple single-letter options
95 may @emph{not} be grouped: @option{-dr} is very different from @w{@samp{-d
96 -r}}.
97
98 @cindex order of options
99 @cindex options, order
100 You can mix options and other arguments.  For the most part, the order
101 you use doesn't matter.  Order does matter when you use several options
102 of the same kind; for example, if you specify @option{-L} more than once,
103 the directories are searched in the order specified.
104
105 Many options have long names starting with @samp{-f} or with
106 @samp{-W}---for example, @option{-fforce-mem},
107 @option{-fstrength-reduce}, @option{-Wformat} and so on.  Most of
108 these have both positive and negative forms; the negative form of
109 @option{-ffoo} would be @option{-fno-foo}.  This manual documents
110 only one of these two forms, whichever one is not the default.
111
112 @c man end
113
114 @xref{Option Index}, for an index to GCC's options.
115
116 @menu
117 * Option Summary::      Brief list of all options, without explanations.
118 * Overall Options::     Controlling the kind of output:
119                         an executable, object files, assembler files,
120                         or preprocessed source.
121 * Invoking G++::        Compiling C++ programs.
122 * C Dialect Options::   Controlling the variant of C language compiled.
123 * C++ Dialect Options:: Variations on C++.
124 * Objective-C Dialect Options:: Variations on Objective-C.
125 * Language Independent Options:: Controlling how diagnostics should be
126                         formatted.
127 * Warning Options::     How picky should the compiler be?
128 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
129 * Optimize Options::    How much optimization?
130 * Preprocessor Options:: Controlling header files and macro definitions.
131                          Also, getting dependency information for Make.
132 * Assembler Options::   Passing options to the assembler.
133 * Link Options::        Specifying libraries and so on.
134 * Directory Options::   Where to find header files and libraries.
135                         Where to find the compiler executable files.
136 * Spec Files::          How to pass switches to sub-processes.
137 * Target Options::      Running a cross-compiler, or an old version of GCC.
138 * Submodel Options::    Specifying minor hardware or convention variations,
139                         such as 68010 vs 68020.
140 * Code Gen Options::    Specifying conventions for function calls, data layout
141                         and register usage.
142 * Environment Variables:: Env vars that affect GCC.
143 * Running Protoize::    Automatically adding or removing function prototypes.
144 @end menu
145
146 @c man begin OPTIONS
147
148 @node Option Summary
149 @section Option Summary
150
151 Here is a summary of all the options, grouped by type.  Explanations are
152 in the following sections.
153
154 @table @emph
155 @item Overall Options
156 @xref{Overall Options,,Options Controlling the Kind of Output}.
157 @gccoptlist{
158 -c  -S  -E  -o @var{file}  -pipe  -pass-exit-codes  -x @var{language} @gol
159 -v  --target-help  --help}
160
161 @item C Language Options
162 @xref{C Dialect Options,,Options Controlling C Dialect}.
163 @gccoptlist{
164 -ansi  -std=@var{standard}  -aux-info @var{filename} @gol
165 -fno-asm  -fno-builtin -fno-builtin-@var{function} @gol
166 -fhosted  -ffreestanding @gol
167 -trigraphs  -traditional  -traditional-cpp @gol
168 -fallow-single-precision  -fcond-mismatch @gol
169 -fsigned-bitfields  -fsigned-char @gol
170 -funsigned-bitfields  -funsigned-char @gol
171 -fwritable-strings  -fshort-wchar}
172
173 @item C++ Language Options
174 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
175 @gccoptlist{
176 -fno-access-control  -fcheck-new  -fconserve-space @gol
177 -fno-const-strings  -fdollars-in-identifiers @gol
178 -fno-elide-constructors @gol
179 -fno-enforce-eh-specs  -fexternal-templates @gol
180 -falt-external-templates @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 -fuse-cxa-atexit  -fvtable-gc  -fno-weak  -nostdinc++ @gol
189 -fno-default-inline  -Wctor-dtor-privacy @gol
190 -Wnon-virtual-dtor  -Wreorder @gol
191 -Weffc++  -Wno-deprecated @gol
192 -Wno-non-template-friend  -Wold-style-cast @gol
193 -Woverloaded-virtual  -Wno-pmf-conversions @gol
194 -Wsign-promo  -Wsynth}
195
196 @item Objective-C Language Options
197 @xref{Objective-C Dialect Options,,Options Controlling Objective-C Dialect}.
198 @gccoptlist{
199 -fconstant-string-class=@var{class-name} @gol
200 -fgnu-runtime  -fnext-runtime  -gen-decls @gol
201 -Wno-protocol  -Wselector}
202
203 @item Language Independent Options
204 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
205 @gccoptlist{
206 -fmessage-length=@var{n}  @gol
207 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}}
208
209 @item Warning Options
210 @xref{Warning Options,,Options to Request or Suppress Warnings}.
211 @gccoptlist{
212 -fsyntax-only  -pedantic  -pedantic-errors @gol
213 -w  -W  -Wall  -Waggregate-return @gol
214 -Wcast-align  -Wcast-qual  -Wchar-subscripts  -Wcomment @gol
215 -Wconversion  -Wdisabled-optimization  -Wdiv-by-zero  -Werror @gol
216 -Wfloat-equal  -Wformat  -Wformat=2 @gol
217 -Wformat-nonliteral  -Wformat-security @gol
218 -Wimplicit  -Wimplicit-int  @gol
219 -Wimplicit-function-declaration @gol
220 -Werror-implicit-function-declaration @gol
221 -Wimport  -Winline @gol
222 -Wlarger-than-@var{len}  -Wlong-long @gol
223 -Wmain  -Wmissing-braces  -Wmissing-declarations @gol
224 -Wmissing-format-attribute  -Wmissing-noreturn @gol
225 -Wmultichar  -Wno-format-extra-args  -Wno-format-y2k @gol
226 -Wno-import  -Wpacked  -Wpadded @gol
227 -Wparentheses  -Wpointer-arith  -Wredundant-decls @gol
228 -Wreturn-type  -Wsequence-point  -Wshadow @gol
229 -Wsign-compare  -Wswitch  -Wsystem-headers @gol
230 -Wtrigraphs  -Wundef  -Wuninitialized @gol
231 -Wunknown-pragmas  -Wunreachable-code @gol
232 -Wunused  -Wunused-function  -Wunused-label  -Wunused-parameter @gol
233 -Wunused-value  -Wunused-variable  -Wwrite-strings}
234
235 @item C-only Warning Options
236 @gccoptlist{
237 -Wbad-function-cast  -Wmissing-prototypes  -Wnested-externs @gol
238 -Wstrict-prototypes  -Wtraditional}
239
240 @item Debugging Options
241 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
242 @gccoptlist{
243 -d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
244 -fdump-unnumbered 
245 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
246 -fdump-tree-original@r{[}-@var{n}@r{]} -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
247 -fdump-tree-inlined@r{[}-@var{n}@r{]} @gol
248 -fmem-report  -fpretend-float @gol
249 -fprofile-arcs  -ftest-coverage  -ftime-report @gol
250 -g  -g@var{level}  -gcoff  -gdwarf  -gdwarf-1  -gdwarf-1+  -gdwarf-2 @gol
251 -ggdb  -gstabs  -gstabs+  -gvms  -gxcoff  -gxcoff+ @gol
252 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
253 -print-multi-directory  -print-multi-lib @gol
254 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
255 -save-temps  -time}
256
257 @item Optimization Options
258 @xref{Optimize Options,,Options that Control Optimization}.
259 @gccoptlist{
260 -falign-functions=@var{n}  -falign-jumps=@var{n} @gol
261 -falign-labels=@var{n}  -falign-loops=@var{n}  @gol
262 -fbranch-probabilities  -fcaller-saves @gol
263 -fcse-follow-jumps  -fcse-skip-blocks  -fdata-sections @gol
264 -fdelayed-branch  -fdelete-null-pointer-checks @gol
265 -fexpensive-optimizations  -ffast-math  -ffloat-store @gol
266 -fforce-addr  -fforce-mem  -ffunction-sections @gol
267 -fgcse  -fgcse-lm  -fgcse-sm @gol
268 -finline-functions  -finline-limit=@var{n}  -fkeep-inline-functions @gol
269 -fkeep-static-consts  -fmerge-constants  -fmerge-all-constants @gol
270 -fmove-all-movables  -fno-default-inline  -fno-defer-pop @gol
271 -fno-function-cse  -fno-guess-branch-probability @gol
272 -fno-inline  -fno-math-errno  -fno-peephole  -fno-peephole2 @gol
273 -funsafe-math-optimizations -fno-trapping-math @gol
274 -fomit-frame-pointer  -foptimize-register-move @gol
275 -foptimize-sibling-calls  -freduce-all-givs @gol
276 -fregmove  -frename-registers @gol
277 -frerun-cse-after-loop  -frerun-loop-opt @gol
278 -fschedule-insns  -fschedule-insns2 @gol
279 -fsingle-precision-constant  -fssa -fssa-ccp -fssa-dce @gol
280 -fstrength-reduce  -fstrict-aliasing  -fthread-jumps  -ftrapv @gol
281 -funroll-all-loops  -funroll-loops  @gol
282 --param @var{name}=@var{value}
283 -O  -O0  -O1  -O2  -O3  -Os}
284
285 @item Preprocessor Options
286 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
287 @gccoptlist{
288 -$  -A@var{question}=@var{answer}  -A-@var{question}@r{[}=@var{answer}@r{]} @gol
289 -C  -dD  -dI  -dM  -dN @gol
290 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
291 -idirafter @var{dir} @gol
292 -include @var{file}  -imacros @var{file} @gol
293 -iprefix @var{file}  -iwithprefix @var{dir} @gol
294 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
295 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  -P  -remap @gol
296 -trigraphs  -undef  -U@var{macro}  -Wp,@var{option}}
297
298 @item Assembler Option
299 @xref{Assembler Options,,Passing Options to the Assembler}.
300 @gccoptlist{
301 -Wa,@var{option}}
302
303 @item Linker Options
304 @xref{Link Options,,Options for Linking}.
305 @gccoptlist{
306 @var{object-file-name}  -l@var{library} @gol
307 -nostartfiles  -nodefaultlibs  -nostdlib @gol
308 -s  -static  -static-libgcc  -shared  -shared-libgcc  -symbolic @gol
309 -Wl,@var{option}  -Xlinker @var{option} @gol
310 -u @var{symbol}}
311
312 @item Directory Options
313 @xref{Directory Options,,Options for Directory Search}.
314 @gccoptlist{
315 -B@var{prefix}  -I@var{dir}  -I-  -L@var{dir}  -specs=@var{file}}
316
317 @item Target Options
318 @c I wrote this xref this way to avoid overfull hbox. -- rms
319 @xref{Target Options}.
320 @gccoptlist{
321 -b @var{machine}  -V @var{version}}
322
323 @item Machine Dependent Options
324 @xref{Submodel Options,,Hardware Models and Configurations}.
325 @emph{M680x0 Options}
326 @gccoptlist{
327 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
328 -m68060  -mcpu32  -m5200  -m68881  -mbitfield  -mc68000  -mc68020   @gol
329 -mfpa  -mnobitfield  -mrtd  -mshort  -msoft-float  -mpcrel @gol
330 -malign-int  -mstrict-align}
331
332 @emph{M68hc1x Options}
333 @gccoptlist{
334 -m6811  -m6812  -m68hc11  -m68hc12 @gol
335 -mauto-incdec  -mshort  -msoft-reg-count=@var{count}}
336
337 @emph{VAX Options}
338 @gccoptlist{
339 -mg  -mgnu  -munix}
340
341 @emph{SPARC Options}
342 @gccoptlist{
343 -mcpu=@var{cpu-type} @gol
344 -mtune=@var{cpu-type} @gol
345 -mcmodel=@var{code-model} @gol
346 -m32  -m64 @gol
347 -mapp-regs  -mbroken-saverestore  -mcypress @gol
348 -mepilogue  -mfaster-structs  -mflat @gol
349 -mfpu  -mhard-float  -mhard-quad-float @gol
350 -mimpure-text  -mlive-g0  -mno-app-regs @gol
351 -mno-epilogue  -mno-faster-structs  -mno-flat  -mno-fpu @gol
352 -mno-impure-text  -mno-stack-bias  -mno-unaligned-doubles @gol
353 -msoft-float  -msoft-quad-float  -msparclite  -mstack-bias @gol
354 -msupersparc  -munaligned-doubles  -mv8}
355
356 @emph{Convex Options}
357 @gccoptlist{
358 -mc1  -mc2  -mc32  -mc34  -mc38 @gol
359 -margcount  -mnoargcount @gol
360 -mlong32  -mlong64 @gol
361 -mvolatile-cache  -mvolatile-nocache}
362
363 @emph{AMD29K Options}
364 @gccoptlist{
365 -m29000  -m29050  -mbw  -mnbw  -mdw  -mndw @gol
366 -mlarge  -mnormal  -msmall @gol
367 -mkernel-registers  -mno-reuse-arg-regs @gol
368 -mno-stack-check  -mno-storem-bug @gol
369 -mreuse-arg-regs  -msoft-float  -mstack-check @gol
370 -mstorem-bug  -muser-registers}
371
372 @emph{ARM Options}
373 @gccoptlist{
374 -mapcs-frame  -mno-apcs-frame @gol
375 -mapcs-26  -mapcs-32 @gol
376 -mapcs-stack-check  -mno-apcs-stack-check @gol
377 -mapcs-float  -mno-apcs-float @gol
378 -mapcs-reentrant  -mno-apcs-reentrant @gol
379 -msched-prolog  -mno-sched-prolog @gol
380 -mlittle-endian  -mbig-endian  -mwords-little-endian @gol
381 -malignment-traps  -mno-alignment-traps @gol
382 -msoft-float  -mhard-float  -mfpe @gol
383 -mthumb-interwork  -mno-thumb-interwork @gol
384 -mcpu=@var{name}  -march=@var{name}  -mfpe=@var{name}  @gol
385 -mstructure-size-boundary=@var{n} @gol
386 -mbsd -mxopen  -mno-symrename @gol
387 -mabort-on-noreturn @gol
388 -mlong-calls  -mno-long-calls @gol
389 -msingle-pic-base  -mno-single-pic-base @gol
390 -mpic-register=@var{reg} @gol
391 -mnop-fun-dllimport @gol
392 -mpoke-function-name @gol
393 -mthumb  -marm @gol
394 -mtpcs-frame  -mtpcs-leaf-frame @gol
395 -mcaller-super-interworking  -mcallee-super-interworking }
396
397 @emph{MN10200 Options}
398 @gccoptlist{
399 -mrelax}
400
401 @emph{MN10300 Options}
402 @gccoptlist{
403 -mmult-bug  -mno-mult-bug @gol
404 -mam33  -mno-am33 @gol
405 -mno-crt0  -mrelax}
406
407 @emph{M32R/D Options}
408 @gccoptlist{
409 -m32rx -m32r -mcode-model=@var{model-type}  -msdata=@var{sdata-type} @gol
410 -G @var{num}}
411
412 @emph{M88K Options}
413 @gccoptlist{
414 -m88000  -m88100  -m88110  -mbig-pic @gol
415 -mcheck-zero-division  -mhandle-large-shift @gol
416 -midentify-revision  -mno-check-zero-division @gol
417 -mno-ocs-debug-info  -mno-ocs-frame-position @gol
418 -mno-optimize-arg-area  -mno-serialize-volatile @gol
419 -mno-underscores  -mocs-debug-info @gol
420 -mocs-frame-position  -moptimize-arg-area @gol
421 -mserialize-volatile  -mshort-data-@var{num}  -msvr3 @gol
422 -msvr4  -mtrap-large-shift  -muse-div-instruction @gol
423 -mversion-03.00  -mwarn-passed-structs}
424
425 @emph{RS/6000 and PowerPC Options}
426 @gccoptlist{
427 -mcpu=@var{cpu-type} @gol
428 -mtune=@var{cpu-type} @gol
429 -mpower  -mno-power  -mpower2  -mno-power2 @gol
430 -mpowerpc  -mpowerpc64  -mno-powerpc @gol
431 -maltivec -mno-altivec @gol
432 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
433 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
434 -mnew-mnemonics  -mold-mnemonics @gol
435 -mfull-toc   -mminimal-toc  -mno-fop-in-toc  -mno-sum-in-toc @gol
436 -m64  -m32  -mxl-call  -mno-xl-call  -mthreads  -mpe @gol
437 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
438 -mstring  -mno-string  -mupdate  -mno-update @gol
439 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
440 -mstrict-align  -mno-strict-align  -mrelocatable @gol
441 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
442 -mtoc  -mno-toc -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
443 -mcall-aix -mcall-sysv -mcall-netbsd @gol
444 -maix-struct-return -msvr4-struct-return
445 -mabi=altivec @gol
446 -mprototype  -mno-prototype @gol
447 -msim  -mmvme  -mads  -myellowknife  -memb -msdata @gol
448 -msdata=@var{opt}  -mvxworks -G @var{num}}
449
450 @emph{RT Options}
451 @gccoptlist{
452 -mcall-lib-mul  -mfp-arg-in-fpregs  -mfp-arg-in-gregs @gol
453 -mfull-fp-blocks  -mhc-struct-return  -min-line-mul @gol
454 -mminimum-fp-blocks  -mnohc-struct-return}
455
456 @emph{MIPS Options}
457 @gccoptlist{
458 -mabicalls -march=@var{cpu-type} -mtune=@var{cpu=type} @gol
459 -mcpu=@var{cpu-type} -membedded-data  -muninit-const-in-rodata @gol
460 -membedded-pic  -mfp32  -mfp64  -mfused-madd  -mno-fused-madd @gol
461 -mgas  -mgp32  -mgp64 @gol
462 -mgpopt  -mhalf-pic  -mhard-float  -mint64  -mips1 @gol
463 -mips2  -mips3  -mips4  -mlong64  -mlong32  -mlong-calls  -mmemcpy @gol
464 -mmips-as  -mmips-tfile  -mno-abicalls @gol
465 -mno-embedded-data  -mno-uninit-const-in-rodata @gol
466 -mno-embedded-pic  -mno-gpopt  -mno-long-calls @gol
467 -mno-memcpy  -mno-mips-tfile  -mno-rnames  -mno-stats @gol
468 -mrnames  -msoft-float @gol
469 -m4650  -msingle-float  -mmad @gol
470 -mstats  -EL  -EB  -G @var{num}  -nocpp @gol
471 -mabi=32  -mabi=n32  -mabi=64  -mabi=eabi @gol
472 -mfix7000  -mno-crt0 -mflush-func=@var{func} -mno-flush-func}
473
474 @emph{i386 and x86-64 Options}
475 @gccoptlist{
476 -mcpu=@var{cpu-type}  -march=@var{cpu-type} @gol
477 -mintel-syntax -mieee-fp  -mno-fancy-math-387 @gol
478 -mno-fp-ret-in-387  -msoft-float  -msvr3-shlib @gol
479 -mno-wide-multiply  -mrtd  -malign-double @gol
480 -mpreferred-stack-boundary=@var{num} @gol
481 -mmmx  -msse  -m3dnow @gol
482 -mthreads  -mno-align-stringops  -minline-all-stringops @gol
483 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
484 -m96bit-long-double  -mregparm=@var{num}  -momit-leaf-frame-pointer @gol
485 -mno-red-zone@gol
486 -m32 -m64}
487
488 @emph{HPPA Options}
489 @gccoptlist{
490 -march=@var{architecture-type} @gol
491 -mbig-switch  -mdisable-fpregs  -mdisable-indexing @gol
492 -mfast-indirect-calls  -mgas  -mjump-in-delay @gol
493 -mlong-load-store  -mno-big-switch  -mno-disable-fpregs @gol
494 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
495 -mno-jump-in-delay  -mno-long-load-store @gol
496 -mno-portable-runtime  -mno-soft-float @gol
497 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
498 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
499 -mschedule=@var{cpu-type}  -mspace-regs}
500
501 @emph{Intel 960 Options}
502 @gccoptlist{
503 -m@var{cpu-type}  -masm-compat  -mclean-linkage @gol
504 -mcode-align  -mcomplex-addr  -mleaf-procedures @gol
505 -mic-compat  -mic2.0-compat  -mic3.0-compat @gol
506 -mintel-asm  -mno-clean-linkage  -mno-code-align @gol
507 -mno-complex-addr  -mno-leaf-procedures @gol
508 -mno-old-align  -mno-strict-align  -mno-tail-call @gol
509 -mnumerics  -mold-align  -msoft-float  -mstrict-align @gol
510 -mtail-call}
511
512 @emph{DEC Alpha Options}
513 @gccoptlist{
514 -mfp-regs  -mno-fp-regs  -mno-soft-float  -msoft-float @gol
515 -malpha-as  -mgas @gol
516 -mieee  -mieee-with-inexact  -mieee-conformant @gol
517 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
518 -mtrap-precision=@var{mode}  -mbuild-constants @gol
519 -mcpu=@var{cpu-type} @gol
520 -mbwx  -mno-bwx  -mcix  -mno-cix  -mmax  -mno-max @gol
521 -mmemory-latency=@var{time}}
522
523 @emph{DEC Alpha/VMS Options}
524 @gccoptlist{
525 -mvms-return-codes}
526
527 @emph{Clipper Options}
528 @gccoptlist{
529 -mc300  -mc400}
530
531 @emph{H8/300 Options}
532 @gccoptlist{
533 -mrelax  -mh  -ms  -mint32  -malign-300}
534
535 @emph{SH Options}
536 @gccoptlist{
537 -m1  -m2  -m3  -m3e @gol
538 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
539 -mb  -ml  -mdalign  -mrelax @gol
540 -mbigtable  -mfmovd  -mhitachi  -mnomacsave @gol
541 -mieee  -misize  -mpadstruct  -mspace @gol
542 -mprefergot  -musermode}
543
544 @emph{System V Options}
545 @gccoptlist{
546 -Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
547
548 @emph{ARC Options}
549 @gccoptlist{
550 -EB  -EL @gol
551 -mmangle-cpu  -mcpu=@var{cpu}  -mtext=@var{text-section} @gol
552 -mdata=@var{data-section}  -mrodata=@var{readonly-data-section}}
553
554 @emph{TMS320C3x/C4x Options}
555 @gccoptlist{
556 -mcpu=@var{cpu}  -mbig  -msmall  -mregparm  -mmemparm @gol
557 -mfast-fix  -mmpyi  -mbk  -mti  -mdp-isr-reload @gol
558 -mrpts=@var{count}  -mrptb  -mdb  -mloop-unsigned @gol
559 -mparallel-insns  -mparallel-mpy  -mpreserve-float}
560
561 @emph{V850 Options}
562 @gccoptlist{
563 -mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
564 -mprolog-function  -mno-prolog-function  -mspace @gol
565 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
566 -mv850  -mbig-switch}
567
568 @emph{NS32K Options}
569 @gccoptlist{
570 -m32032  -m32332  -m32532  -m32081  -m32381 @gol
571 -mmult-add  -mnomult-add  -msoft-float  -mrtd  -mnortd @gol
572 -mregparam  -mnoregparam  -msb  -mnosb @gol
573 -mbitfield  -mnobitfield  -mhimem  -mnohimem}
574
575 @emph{AVR Options}
576 @gccoptlist{
577 -mmcu=@var{mcu}  -msize  -minit-stack=@var{n}  -mno-interrupts @gol
578 -mcall-prologues  -mno-tablejump  -mtiny-stack}
579
580 @emph{MCore Options}
581 @gccoptlist{
582 -mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
583 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
584 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
585 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
586 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
587
588 @emph{MMIX Options}
589 @gccoptlist{
590 -mlibfuncs -mno-libfuncs -mepsilon -mno-epsilon -mabi=gnu @gol
591 -mabi=mmixware -mzero-extend -mknuthdiv -mtoplevel-symbols @gol
592 -melf}
593
594 @emph{IA-64 Options}
595 @gccoptlist{
596 -mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
597 -mvolatile-asm-stop  -mb-step  -mregister-names  -mno-sdata @gol
598 -mconstant-gp  -mauto-pic  -minline-divide-min-latency @gol
599 -minline-divide-max-throughput  -mno-dwarf2-asm @gol
600 -mfixed-range=@var{register-range}}
601
602 @emph{S/390 and zSeries Options}
603 @gccoptlist{
604 -mhard-float  -msoft-float  -mbackchain  -mno-backchain @gol
605 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
606 -m64 -m31 -mdebug -mno-debug}
607
608 @emph{CRIS Options}
609 @gccoptlist{
610 -mcpu=@var{cpu} -march=@var{cpu} -mtune=@var{cpu} @gol
611 -mmax-stack-frame=@var{n} -melinux-stacksize=@var{n} @gol
612 -metrax4 -metrax100 -mpdebug -mcc-init -mno-side-effects @gol
613 -mstack-align -mdata-align -mconst-align @gol
614 -m32-bit -m16-bit -m8-bit -mno-prologue-epilogue -mno-gotplt @gol
615 -melf -maout -melinux -mlinux -sim -sim2}
616
617 @item Code Generation Options
618 @xref{Code Gen Options,,Options for Code Generation Conventions}.
619 @gccoptlist{
620 -fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
621 -ffixed-@var{reg} -fexceptions @gol
622 -fnon-call-exceptions  -funwind-tables -fasynchronous-unwind-tables @gol
623 -finhibit-size-directive  -finstrument-functions @gol
624 -fno-common  -fno-ident  -fno-gnu-linker @gol
625 -fpcc-struct-return  -fpic  -fPIC @gol
626 -freg-struct-return  -fshared-data  -fshort-enums @gol
627 -fshort-double  -fvolatile @gol
628 -fvolatile-global  -fvolatile-static @gol
629 -fverbose-asm  -fpack-struct  -fstack-check @gol
630 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
631 -fargument-alias  -fargument-noalias @gol
632 -fargument-noalias-global  -fleading-underscore}
633 @end table
634
635 @menu
636 * Overall Options::     Controlling the kind of output:
637                         an executable, object files, assembler files,
638                         or preprocessed source.
639 * C Dialect Options::   Controlling the variant of C language compiled.
640 * C++ Dialect Options:: Variations on C++.
641 * Objective-C Dialect Options:: Variations on Objective-C.
642 * Language Independent Options:: Controlling how diagnostics should be
643                         formatted.
644 * Warning Options::     How picky should the compiler be?
645 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
646 * Optimize Options::    How much optimization?
647 * Preprocessor Options:: Controlling header files and macro definitions.
648                          Also, getting dependency information for Make.
649 * Assembler Options::   Passing options to the assembler.
650 * Link Options::        Specifying libraries and so on.
651 * Directory Options::   Where to find header files and libraries.
652                         Where to find the compiler executable files.
653 * Spec Files::          How to pass switches to sub-processes.
654 * Target Options::      Running a cross-compiler, or an old version of GCC.
655 @end menu
656
657 @node Overall Options
658 @section Options Controlling the Kind of Output
659
660 Compilation can involve up to four stages: preprocessing, compilation
661 proper, assembly and linking, always in that order.  The first three
662 stages apply to an individual source file, and end by producing an
663 object file; linking combines all the object files (those newly
664 compiled, and those specified as input) into an executable file.
665
666 @cindex file name suffix
667 For any given input file, the file name suffix determines what kind of
668 compilation is done:
669
670 @table @gcctabopt
671 @item @var{file}.c
672 C source code which must be preprocessed.
673
674 @item @var{file}.i
675 C source code which should not be preprocessed.
676
677 @item @var{file}.ii
678 C++ source code which should not be preprocessed.
679
680 @item @var{file}.m
681 Objective-C source code.  Note that you must link with the library
682 @file{libobjc.a} to make an Objective-C program work.
683
684 @item @var{file}.mi
685 Objective-C source code which should not be preprocessed.
686
687 @item @var{file}.h
688 C header file (not to be compiled or linked).
689
690 @item @var{file}.cc
691 @itemx @var{file}.cp
692 @itemx @var{file}.cxx
693 @itemx @var{file}.cpp
694 @itemx @var{file}.c++
695 @itemx @var{file}.C
696 C++ source code which must be preprocessed.  Note that in @samp{.cxx},
697 the last two letters must both be literally @samp{x}.  Likewise,
698 @samp{.C} refers to a literal capital C@.
699
700 @item @var{file}.f
701 @itemx @var{file}.for
702 @itemx @var{file}.FOR
703 Fortran source code which should not be preprocessed.
704
705 @item @var{file}.F
706 @itemx @var{file}.fpp
707 @itemx @var{file}.FPP
708 Fortran source code which must be preprocessed (with the traditional
709 preprocessor).
710
711 @item @var{file}.r
712 Fortran source code which must be preprocessed with a RATFOR
713 preprocessor (not included with GCC)@.
714
715 @xref{Overall Options,,Options Controlling the Kind of Output, g77,
716 Using and Porting GNU Fortran}, for more details of the handling of
717 Fortran input files.
718
719 @c FIXME: Descriptions of Java file types.
720 @c @var{file}.java
721 @c @var{file}.class
722 @c @var{file}.zip
723 @c @var{file}.jar
724
725 @item @var{file}.ads
726 Ada source code file which contains a library unit declaration (a
727 declaration of a package, subprogram, or generic, or a generic
728 instantiation), or a library unit renaming declaration (a package,
729 generic, or subprogram renaming declaration).  Such files are also
730 called @dfn{specs}.
731
732 @itemx @var{file}.adb
733 Ada source code file containing a library unit body (a subprogram or
734 package body).  Such files are also called @dfn{bodies}.
735
736 @c GCC also knows about some suffixes for languages not yet included:
737 @c Pascal:
738 @c @var{file}.p
739 @c @var{file}.pas
740
741 @item @var{file}.ch
742 @itemx @var{file}.chi
743 CHILL source code (preprocessed with the traditional preprocessor).
744
745 @item @var{file}.s
746 Assembler code.
747
748 @item @var{file}.S
749 Assembler code which must be preprocessed.
750
751 @item @var{other}
752 An object file to be fed straight into linking.
753 Any file name with no recognized suffix is treated this way.
754 @end table
755
756 @opindex x
757 You can specify the input language explicitly with the @option{-x} option:
758
759 @table @gcctabopt
760 @item -x @var{language}
761 Specify explicitly the @var{language} for the following input files
762 (rather than letting the compiler choose a default based on the file
763 name suffix).  This option applies to all following input files until
764 the next @option{-x} option.  Possible values for @var{language} are:
765 @example
766 c  c-header  cpp-output
767 c++  c++-cpp-output
768 objective-c  objc-cpp-output
769 assembler  assembler-with-cpp
770 ada
771 chill
772 f77  f77-cpp-input  ratfor
773 java
774 @end example
775
776 @item -x none
777 Turn off any specification of a language, so that subsequent files are
778 handled according to their file name suffixes (as they are if @option{-x}
779 has not been used at all).
780
781 @item -pass-exit-codes
782 @opindex pass-exit-codes
783 Normally the @command{gcc} program will exit with the code of 1 if any
784 phase of the compiler returns a non-success return code.  If you specify
785 @option{-pass-exit-codes}, the @command{gcc} program will instead return with
786 numerically highest error produced by any phase that returned an error
787 indication.
788 @end table
789
790 If you only want some of the stages of compilation, you can use
791 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
792 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
793 @command{gcc} is to stop.  Note that some combinations (for example,
794 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
795
796 @table @gcctabopt
797 @item -c
798 @opindex c
799 Compile or assemble the source files, but do not link.  The linking
800 stage simply is not done.  The ultimate output is in the form of an
801 object file for each source file.
802
803 By default, the object file name for a source file is made by replacing
804 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
805
806 Unrecognized input files, not requiring compilation or assembly, are
807 ignored.
808
809 @item -S
810 @opindex S
811 Stop after the stage of compilation proper; do not assemble.  The output
812 is in the form of an assembler code file for each non-assembler input
813 file specified.
814
815 By default, the assembler file name for a source file is made by
816 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
817
818 Input files that don't require compilation are ignored.
819
820 @item -E
821 @opindex E
822 Stop after the preprocessing stage; do not run the compiler proper.  The
823 output is in the form of preprocessed source code, which is sent to the
824 standard output.
825
826 Input files which don't require preprocessing are ignored.
827
828 @cindex output file option
829 @item -o @var{file}
830 @opindex o
831 Place output in file @var{file}.  This applies regardless to whatever
832 sort of output is being produced, whether it be an executable file,
833 an object file, an assembler file or preprocessed C code.
834
835 Since only one output file can be specified, it does not make sense to
836 use @option{-o} when compiling more than one input file, unless you are
837 producing an executable file as output.
838
839 If @option{-o} is not specified, the default is to put an executable file
840 in @file{a.out}, the object file for @file{@var{source}.@var{suffix}} in
841 @file{@var{source}.o}, its assembler file in @file{@var{source}.s}, and
842 all preprocessed C source on standard output.
843
844 @item -v
845 @opindex v
846 Print (on standard error output) the commands executed to run the stages
847 of compilation.  Also print the version number of the compiler driver
848 program and of the preprocessor and the compiler proper.
849
850 @item -pipe
851 @opindex pipe
852 Use pipes rather than temporary files for communication between the
853 various stages of compilation.  This fails to work on some systems where
854 the assembler is unable to read from a pipe; but the GNU assembler has
855 no trouble.
856
857 @item --help
858 @opindex help
859 Print (on the standard output) a description of the command line options
860 understood by @command{gcc}.  If the @option{-v} option is also specified
861 then @option{--help} will also be passed on to the various processes
862 invoked by @command{gcc}, so that they can display the command line options
863 they accept.  If the @option{-W} option is also specified then command
864 line options which have no documentation associated with them will also
865 be displayed.
866
867 @item --target-help
868 @opindex target-help
869 Print (on the standard output) a description of target specific command
870 line options for each tool.
871 @end table
872
873 @node Invoking G++
874 @section Compiling C++ Programs
875
876 @cindex suffixes for C++ source
877 @cindex C++ source file suffixes
878 C++ source files conventionally use one of the suffixes @samp{.C},
879 @samp{.cc}, @samp{.cpp}, @samp{.c++}, @samp{.cp}, or @samp{.cxx};
880 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
881 files with these names and compiles them as C++ programs even if you
882 call the compiler the same way as for compiling C programs (usually with
883 the name @command{gcc}).
884
885 @findex g++
886 @findex c++
887 However, C++ programs often require class libraries as well as a
888 compiler that understands the C++ language---and under some
889 circumstances, you might want to compile programs from standard input,
890 or otherwise without a suffix that flags them as C++ programs.
891 @command{g++} is a program that calls GCC with the default language
892 set to C++, and automatically specifies linking against the C++
893 library.  On many systems, @command{g++} is also
894 installed with the name @command{c++}.
895
896 @cindex invoking @command{g++}
897 When you compile C++ programs, you may specify many of the same
898 command-line options that you use for compiling programs in any
899 language; or command-line options meaningful for C and related
900 languages; or options that are meaningful only for C++ programs.
901 @xref{C Dialect Options,,Options Controlling C Dialect}, for
902 explanations of options for languages related to C@.
903 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
904 explanations of options that are meaningful only for C++ programs.
905
906 @node C Dialect Options
907 @section Options Controlling C Dialect
908 @cindex dialect options
909 @cindex language dialect options
910 @cindex options, dialect
911
912 The following options control the dialect of C (or languages derived
913 from C, such as C++ and Objective-C) that the compiler accepts:
914
915 @table @gcctabopt
916 @cindex ANSI support
917 @cindex ISO support
918 @item -ansi
919 @opindex ansi
920 In C mode, support all ISO C89 programs.  In C++ mode,
921 remove GNU extensions that conflict with ISO C++.
922
923 This turns off certain features of GCC that are incompatible with ISO
924 C89 (when compiling C code), or of standard C++ (when compiling C++ code),
925 such as the @code{asm} and @code{typeof} keywords, and
926 predefined macros such as @code{unix} and @code{vax} that identify the
927 type of system you are using.  It also enables the undesirable and
928 rarely used ISO trigraph feature.  For the C compiler,
929 it disables recognition of C++ style @samp{//} comments as well as
930 the @code{inline} keyword.
931
932 The alternate keywords @code{__asm__}, @code{__extension__},
933 @code{__inline__} and @code{__typeof__} continue to work despite
934 @option{-ansi}.  You would not want to use them in an ISO C program, of
935 course, but it is useful to put them in header files that might be included
936 in compilations done with @option{-ansi}.  Alternate predefined macros
937 such as @code{__unix__} and @code{__vax__} are also available, with or
938 without @option{-ansi}.
939
940 The @option{-ansi} option does not cause non-ISO programs to be
941 rejected gratuitously.  For that, @option{-pedantic} is required in
942 addition to @option{-ansi}.  @xref{Warning Options}.
943
944 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
945 option is used.  Some header files may notice this macro and refrain
946 from declaring certain functions or defining certain macros that the
947 ISO standard doesn't call for; this is to avoid interfering with any
948 programs that might use these names for other things.
949
950 Functions which would normally be built in but do not have semantics
951 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
952 functions with @option{-ansi} is used.  @xref{Other Builtins,,Other
953 built-in functions provided by GCC}, for details of the functions
954 affected.
955
956 @item -std=
957 @opindex std
958 Determine the language standard.  This option is currently only
959 supported when compiling C@.  A value for this option must be provided;
960 possible values are
961
962 @table @samp
963 @item c89
964 @itemx iso9899:1990
965 ISO C89 (same as @option{-ansi}).
966
967 @item iso9899:199409
968 ISO C89 as modified in amendment 1.
969
970 @item c99
971 @itemx c9x
972 @itemx iso9899:1999
973 @itemx iso9899:199x
974 ISO C99.  Note that this standard is not yet fully supported; see
975 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
976 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
977
978 @item gnu89
979 Default, ISO C89 plus GNU extensions (including some C99 features).
980
981 @item gnu99
982 @item gnu9x
983 ISO C99 plus GNU extensions.  When ISO C99 is fully implemented in GCC,
984 this will become the default.  The name @samp{gnu9x} is deprecated.
985
986 @end table
987
988 Even when this option is not specified, you can still use some of the
989 features of newer standards in so far as they do not conflict with
990 previous C standards.  For example, you may use @code{__restrict__} even
991 when @option{-std=c99} is not specified.
992
993 The @option{-std} options specifying some version of ISO C have the same
994 effects as @option{-ansi}, except that features that were not in ISO C89
995 but are in the specified version (for example, @samp{//} comments and
996 the @code{inline} keyword in ISO C99) are not disabled.
997
998 @xref{Standards,,Language Standards Supported by GCC}, for details of
999 these standard versions.
1000
1001 @item -aux-info @var{filename}
1002 @opindex aux-info
1003 Output to the given filename prototyped declarations for all functions
1004 declared and/or defined in a translation unit, including those in header
1005 files.  This option is silently ignored in any language other than C@.
1006
1007 Besides declarations, the file indicates, in comments, the origin of
1008 each declaration (source file and line), whether the declaration was
1009 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1010 @samp{O} for old, respectively, in the first character after the line
1011 number and the colon), and whether it came from a declaration or a
1012 definition (@samp{C} or @samp{F}, respectively, in the following
1013 character).  In the case of function definitions, a K&R-style list of
1014 arguments followed by their declarations is also provided, inside
1015 comments, after the declaration.
1016
1017 @item -fno-asm
1018 @opindex fno-asm
1019 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1020 keyword, so that code can use these words as identifiers.  You can use
1021 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1022 instead.  @option{-ansi} implies @option{-fno-asm}.
1023
1024 In C++, this switch only affects the @code{typeof} keyword, since
1025 @code{asm} and @code{inline} are standard keywords.  You may want to
1026 use the @option{-fno-gnu-keywords} flag instead, which has the same
1027 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1028 switch only affects the @code{asm} and @code{typeof} keywords, since
1029 @code{inline} is a standard keyword in ISO C99.
1030
1031 @item -fno-builtin
1032 @itemx -fno-builtin-@var{function} @r{(C and Objective-C only)}
1033 @opindex fno-builtin
1034 @cindex built-in functions
1035 Don't recognize built-in functions that do not begin with
1036 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1037 functions provided by GCC}, for details of the functions affected,
1038 including those which are not built-in functions when @option{-ansi} or
1039 @option{-std} options for strict ISO C conformance are used because they
1040 do not have an ISO standard meaning.
1041
1042 GCC normally generates special code to handle certain built-in functions
1043 more efficiently; for instance, calls to @code{alloca} may become single
1044 instructions that adjust the stack directly, and calls to @code{memcpy}
1045 may become inline copy loops.  The resulting code is often both smaller
1046 and faster, but since the function calls no longer appear as such, you
1047 cannot set a breakpoint on those calls, nor can you change the behavior
1048 of the functions by linking with a different library.
1049
1050 In C++, @option{-fno-builtin} is always in effect.  The @option{-fbuiltin}
1051 option has no effect.  Therefore, in C++, the only way to get the
1052 optimization benefits of built-in functions is to call the function
1053 using the @samp{__builtin_} prefix.  The GNU C++ Standard Library uses
1054 built-in functions to implement many functions (like
1055 @code{std::strchr}), so that you automatically get efficient code.
1056
1057 With the @option{-fno-builtin-@var{function}} option, not available
1058 when compiling C++, only the built-in function @var{function} is
1059 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1060 function is named this is not built-in in this version of GCC, this
1061 option is ignored.  There is no corresponding
1062 @option{-fbuiltin-@var{function}} option; if you wish to enable
1063 built-in functions selectively when using @option{-fno-builtin} or
1064 @option{-ffreestanding}, you may define macros such as:
1065
1066 @smallexample
1067 #define abs(n)          __builtin_abs ((n))
1068 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1069 @end smallexample
1070
1071 @item -fhosted
1072 @opindex fhosted
1073 @cindex hosted environment
1074
1075 Assert that compilation takes place in a hosted environment.  This implies
1076 @option{-fbuiltin}.  A hosted environment is one in which the
1077 entire standard library is available, and in which @code{main} has a return
1078 type of @code{int}.  Examples are nearly everything except a kernel.
1079 This is equivalent to @option{-fno-freestanding}.
1080
1081 @item -ffreestanding
1082 @opindex ffreestanding
1083 @cindex hosted environment
1084
1085 Assert that compilation takes place in a freestanding environment.  This
1086 implies @option{-fno-builtin}.  A freestanding environment
1087 is one in which the standard library may not exist, and program startup may
1088 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1089 This is equivalent to @option{-fno-hosted}.
1090
1091 @xref{Standards,,Language Standards Supported by GCC}, for details of
1092 freestanding and hosted environments.
1093
1094 @item -trigraphs
1095 @opindex trigraphs
1096 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1097 options for strict ISO C conformance) implies @option{-trigraphs}.
1098
1099 @cindex traditional C language
1100 @cindex C language, traditional
1101 @item -traditional
1102 @opindex traditional
1103 Attempt to support some aspects of traditional C compilers.
1104 Specifically:
1105
1106 @itemize @bullet
1107 @item
1108 All @code{extern} declarations take effect globally even if they
1109 are written inside of a function definition.  This includes implicit
1110 declarations of functions.
1111
1112 @item
1113 The newer keywords @code{typeof}, @code{inline}, @code{signed}, @code{const}
1114 and @code{volatile} are not recognized.  (You can still use the
1115 alternative keywords such as @code{__typeof__}, @code{__inline__}, and
1116 so on.)
1117
1118 @item
1119 Comparisons between pointers and integers are always allowed.
1120
1121 @item
1122 Integer types @code{unsigned short} and @code{unsigned char} promote
1123 to @code{unsigned int}.
1124
1125 @item
1126 Out-of-range floating point literals are not an error.
1127
1128 @item
1129 Certain constructs which ISO regards as a single invalid preprocessing
1130 number, such as @samp{0xe-0xd}, are treated as expressions instead.
1131
1132 @item
1133 String ``constants'' are not necessarily constant; they are stored in
1134 writable space, and identical looking constants are allocated
1135 separately.  (This is the same as the effect of
1136 @option{-fwritable-strings}.)
1137
1138 @cindex @code{longjmp} and automatic variables
1139 @item
1140 All automatic variables not declared @code{register} are preserved by
1141 @code{longjmp}.  Ordinarily, GNU C follows ISO C: automatic variables
1142 not declared @code{volatile} may be clobbered.
1143
1144 @item
1145 @cindex @samp{\x}
1146 @cindex @samp{\a}
1147 @cindex escape sequences, traditional
1148 The character escape sequences @samp{\x} and @samp{\a} evaluate as the
1149 literal characters @samp{x} and @samp{a} respectively.  Without
1150 @w{@option{-traditional}}, @samp{\x} is a prefix for the hexadecimal
1151 representation of a character, and @samp{\a} produces a bell.
1152 @end itemize
1153
1154 This option is deprecated and may be removed.
1155
1156 You may wish to use @option{-fno-builtin} as well as @option{-traditional}
1157 if your program uses names that are normally GNU C built-in functions for
1158 other purposes of its own.
1159
1160 You cannot use @option{-traditional} if you include any header files that
1161 rely on ISO C features.  Some vendors are starting to ship systems with
1162 ISO C header files and you cannot use @option{-traditional} on such
1163 systems to compile files that include any system headers.
1164
1165 The @option{-traditional} option also enables @option{-traditional-cpp}.
1166
1167 @item -traditional-cpp
1168 @opindex traditional-cpp
1169 Attempt to support some aspects of traditional C preprocessors.
1170 See the GNU CPP manual for details.
1171
1172 @item -fcond-mismatch
1173 @opindex fcond-mismatch
1174 Allow conditional expressions with mismatched types in the second and
1175 third arguments.  The value of such an expression is void.  This option
1176 is not supported for C++.
1177
1178 @item -funsigned-char
1179 @opindex funsigned-char
1180 Let the type @code{char} be unsigned, like @code{unsigned char}.
1181
1182 Each kind of machine has a default for what @code{char} should
1183 be.  It is either like @code{unsigned char} by default or like
1184 @code{signed char} by default.
1185
1186 Ideally, a portable program should always use @code{signed char} or
1187 @code{unsigned char} when it depends on the signedness of an object.
1188 But many programs have been written to use plain @code{char} and
1189 expect it to be signed, or expect it to be unsigned, depending on the
1190 machines they were written for.  This option, and its inverse, let you
1191 make such a program work with the opposite default.
1192
1193 The type @code{char} is always a distinct type from each of
1194 @code{signed char} or @code{unsigned char}, even though its behavior
1195 is always just like one of those two.
1196
1197 @item -fsigned-char
1198 @opindex fsigned-char
1199 Let the type @code{char} be signed, like @code{signed char}.
1200
1201 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1202 the negative form of @option{-funsigned-char}.  Likewise, the option
1203 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
1204
1205 @item -fsigned-bitfields
1206 @itemx -funsigned-bitfields
1207 @itemx -fno-signed-bitfields
1208 @itemx -fno-unsigned-bitfields
1209 @opindex fsigned-bitfields
1210 @opindex funsigned-bitfields
1211 @opindex fno-signed-bitfields
1212 @opindex fno-unsigned-bitfields
1213 These options control whether a bit-field is signed or unsigned, when the
1214 declaration does not use either @code{signed} or @code{unsigned}.  By
1215 default, such a bit-field is signed, because this is consistent: the
1216 basic integer types such as @code{int} are signed types.
1217
1218 However, when @option{-traditional} is used, bit-fields are all unsigned
1219 no matter what.
1220
1221 @item -fwritable-strings
1222 @opindex fwritable-strings
1223 Store string constants in the writable data segment and don't uniquize
1224 them.  This is for compatibility with old programs which assume they can
1225 write into string constants.  The option @option{-traditional} also has
1226 this effect.
1227
1228 Writing into string constants is a very bad idea; ``constants'' should
1229 be constant.
1230
1231 @item -fallow-single-precision
1232 @opindex fallow-single-precision
1233 Do not promote single precision math operations to double precision,
1234 even when compiling with @option{-traditional}.
1235
1236 Traditional K&R C promotes all floating point operations to double
1237 precision, regardless of the sizes of the operands.   On the
1238 architecture for which you are compiling, single precision may be faster
1239 than double precision.   If you must use @option{-traditional}, but want
1240 to use single precision operations when the operands are single
1241 precision, use this option.   This option has no effect when compiling
1242 with ISO or GNU C conventions (the default).
1243
1244 @item -fshort-wchar
1245 @opindex fshort-wchar
1246 Override the underlying type for @samp{wchar_t} to be @samp{short
1247 unsigned int} instead of the default for the target.  This option is
1248 useful for building programs to run under WINE@.
1249 @end table
1250
1251 @node C++ Dialect Options
1252 @section Options Controlling C++ Dialect
1253
1254 @cindex compiler options, C++
1255 @cindex C++ options, command line
1256 @cindex options, C++
1257 This section describes the command-line options that are only meaningful
1258 for C++ programs; but you can also use most of the GNU compiler options
1259 regardless of what language your program is in.  For example, you
1260 might compile a file @code{firstClass.C} like this:
1261
1262 @example
1263 g++ -g -frepo -O -c firstClass.C
1264 @end example
1265
1266 @noindent
1267 In this example, only @option{-frepo} is an option meant
1268 only for C++ programs; you can use the other options with any
1269 language supported by GCC@.
1270
1271 Here is a list of options that are @emph{only} for compiling C++ programs:
1272
1273 @table @gcctabopt
1274 @item -fno-access-control
1275 @opindex fno-access-control
1276 Turn off all access checking.  This switch is mainly useful for working
1277 around bugs in the access control code.
1278
1279 @item -fcheck-new
1280 @opindex fcheck-new
1281 Check that the pointer returned by @code{operator new} is non-null
1282 before attempting to modify the storage allocated.  The current Working
1283 Paper requires that @code{operator new} never return a null pointer, so
1284 this check is normally unnecessary.
1285
1286 An alternative to using this option is to specify that your
1287 @code{operator new} does not throw any exceptions; if you declare it
1288 @samp{throw()}, G++ will check the return value.  See also @samp{new
1289 (nothrow)}.
1290
1291 @item -fconserve-space
1292 @opindex fconserve-space
1293 Put uninitialized or runtime-initialized global variables into the
1294 common segment, as C does.  This saves space in the executable at the
1295 cost of not diagnosing duplicate definitions.  If you compile with this
1296 flag and your program mysteriously crashes after @code{main()} has
1297 completed, you may have an object that is being destroyed twice because
1298 two definitions were merged.
1299
1300 This option is no longer useful on most targets, now that support has
1301 been added for putting variables into BSS without making them common.
1302
1303 @item -fno-const-strings
1304 @opindex fno-const-strings
1305 Give string constants type @code{char *} instead of type @code{const
1306 char *}.  By default, G++ uses type @code{const char *} as required by
1307 the standard.  Even if you use @option{-fno-const-strings}, you cannot
1308 actually modify the value of a string constant, unless you also use
1309 @option{-fwritable-strings}.
1310
1311 This option might be removed in a future release of G++.  For maximum
1312 portability, you should structure your code so that it works with
1313 string constants that have type @code{const char *}.
1314
1315 @item -fdollars-in-identifiers
1316 @opindex fdollars-in-identifiers
1317 Accept @samp{$} in identifiers.  You can also explicitly prohibit use of
1318 @samp{$} with the option @option{-fno-dollars-in-identifiers}.  (GNU C allows
1319 @samp{$} by default on most target systems, but there are a few exceptions.)
1320 Traditional C allowed the character @samp{$} to form part of
1321 identifiers.  However, ISO C and C++ forbid @samp{$} in identifiers.
1322
1323 @item -fno-elide-constructors
1324 @opindex fno-elide-constructors
1325 The C++ standard allows an implementation to omit creating a temporary
1326 which is only used to initialize another object of the same type.
1327 Specifying this option disables that optimization, and forces G++ to
1328 call the copy constructor in all cases.
1329
1330 @item -fno-enforce-eh-specs
1331 @opindex fno-enforce-eh-specs
1332 Don't check for violation of exception specifications at runtime.  This
1333 option violates the C++ standard, but may be useful for reducing code
1334 size in production builds, much like defining @samp{NDEBUG}.  The compiler
1335 will still optimize based on the exception specifications.
1336
1337 @item -fexternal-templates
1338 @opindex fexternal-templates
1339
1340 Cause @samp{#pragma interface} and @samp{implementation} to apply to
1341 template instantiation; template instances are emitted or not according
1342 to the location of the template definition.  @xref{Template
1343 Instantiation}, for more information.
1344
1345 This option is deprecated.
1346
1347 @item -falt-external-templates
1348 @opindex falt-external-templates
1349 Similar to @option{-fexternal-templates}, but template instances are
1350 emitted or not according to the place where they are first instantiated.
1351 @xref{Template Instantiation}, for more information.
1352
1353 This option is deprecated.
1354
1355 @item -ffor-scope
1356 @itemx -fno-for-scope
1357 @opindex ffor-scope
1358 @opindex fno-for-scope
1359 If @option{-ffor-scope} is specified, the scope of variables declared in
1360 a @i{for-init-statement} is limited to the @samp{for} loop itself,
1361 as specified by the C++ standard.
1362 If @option{-fno-for-scope} is specified, the scope of variables declared in
1363 a @i{for-init-statement} extends to the end of the enclosing scope,
1364 as was the case in old versions of G++, and other (traditional)
1365 implementations of C++.
1366
1367 The default if neither flag is given to follow the standard,
1368 but to allow and give a warning for old-style code that would
1369 otherwise be invalid, or have different behavior.
1370
1371 @item -fno-gnu-keywords
1372 @opindex fno-gnu-keywords
1373 Do not recognize @code{typeof} as a keyword, so that code can use this
1374 word as an identifier.  You can use the keyword @code{__typeof__} instead.
1375 @option{-ansi} implies @option{-fno-gnu-keywords}.
1376
1377 @item -fno-implicit-templates
1378 @opindex fno-implicit-templates
1379 Never emit code for non-inline templates which are instantiated
1380 implicitly (i.e.@: by use); only emit code for explicit instantiations.
1381 @xref{Template Instantiation}, for more information.
1382
1383 @item -fno-implicit-inline-templates
1384 @opindex fno-implicit-inline-templates
1385 Don't emit code for implicit instantiations of inline templates, either.
1386 The default is to handle inlines differently so that compiles with and
1387 without optimization will need the same set of explicit instantiations.
1388
1389 @item -fno-implement-inlines
1390 @opindex fno-implement-inlines
1391 To save space, do not emit out-of-line copies of inline functions
1392 controlled by @samp{#pragma implementation}.  This will cause linker
1393 errors if these functions are not inlined everywhere they are called.
1394
1395 @item -fms-extensions
1396 @opindex fms-extensions
1397 Disable pedantic warnings about constructs used in MFC, such as implicit
1398 int and getting a pointer to member function via non-standard syntax.
1399
1400 @item -fno-nonansi-builtins
1401 @opindex fno-nonansi-builtins
1402 Disable built-in declarations of functions that are not mandated by
1403 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
1404 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
1405
1406 @item -fno-operator-names
1407 @opindex fno-operator-names
1408 Do not treat the operator name keywords @code{and}, @code{bitand},
1409 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
1410 synonyms as keywords.
1411
1412 @item -fno-optional-diags
1413 @opindex fno-optional-diags
1414 Disable diagnostics that the standard says a compiler does not need to
1415 issue.  Currently, the only such diagnostic issued by G++ is the one for
1416 a name having multiple meanings within a class.
1417
1418 @item -fpermissive
1419 @opindex fpermissive
1420 Downgrade messages about nonconformant code from errors to warnings.  By
1421 default, G++ effectively sets @option{-pedantic-errors} without
1422 @option{-pedantic}; this option reverses that.  This behavior and this
1423 option are superseded by @option{-pedantic}, which works as it does for GNU C@.
1424
1425 @item -frepo
1426 @opindex frepo
1427 Enable automatic template instantiation at link time.  This option also
1428 implies @option{-fno-implicit-templates}.  @xref{Template
1429 Instantiation}, for more information.
1430
1431 @item -fno-rtti
1432 @opindex fno-rtti
1433 Disable generation of information about every class with virtual
1434 functions for use by the C++ runtime type identification features
1435 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
1436 of the language, you can save some space by using this flag.  Note that
1437 exception handling uses the same information, but it will generate it as
1438 needed.
1439
1440 @item -fstats
1441 @opindex fstats
1442 Emit statistics about front-end processing at the end of the compilation.
1443 This information is generally only useful to the G++ development team.
1444
1445 @item -ftemplate-depth-@var{n}
1446 @opindex ftemplate-depth
1447 Set the maximum instantiation depth for template classes to @var{n}.
1448 A limit on the template instantiation depth is needed to detect
1449 endless recursions during template class instantiation.  ANSI/ISO C++
1450 conforming programs must not rely on a maximum depth greater than 17.
1451
1452 @item -fuse-cxa-atexit
1453 @opindex fuse-cxa-atexit
1454 Register destructors for objects with static storage duration with the
1455 @code{__cxa_atexit} function rather than the @code{atexit} function.
1456 This option is required for fully standards-compliant handling of static
1457 destructors, but will only work if your C library supports
1458 @code{__cxa_atexit}.
1459
1460 @item -fvtable-gc
1461 @opindex fvtable-gc
1462 Emit special relocations for vtables and virtual function references
1463 so that the linker can identify unused virtual functions and zero out
1464 vtable slots that refer to them.  This is most useful with
1465 @option{-ffunction-sections} and @option{-Wl,--gc-sections}, in order to
1466 also discard the functions themselves.
1467
1468 This optimization requires GNU as and GNU ld.  Not all systems support
1469 this option.  @option{-Wl,--gc-sections} is ignored without @option{-static}.
1470
1471 @item -fno-weak
1472 @opindex fno-weak
1473 Do not use weak symbol support, even if it is provided by the linker.
1474 By default, G++ will use weak symbols if they are available.  This
1475 option exists only for testing, and should not be used by end-users;
1476 it will result in inferior code and has no benefits.  This option may
1477 be removed in a future release of G++.
1478
1479 @item -nostdinc++
1480 @opindex nostdinc++
1481 Do not search for header files in the standard directories specific to
1482 C++, but do still search the other standard directories.  (This option
1483 is used when building the C++ library.)
1484 @end table
1485
1486 In addition, these optimization, warning, and code generation options
1487 have meanings only for C++ programs:
1488
1489 @table @gcctabopt
1490 @item -fno-default-inline
1491 @opindex fno-default-inline
1492 Do not assume @samp{inline} for functions defined inside a class scope.
1493 @xref{Optimize Options,,Options That Control Optimization}.  Note that these
1494 functions will have linkage like inline functions; they just won't be
1495 inlined by default.
1496
1497 @item -Wctor-dtor-privacy @r{(C++ only)}
1498 @opindex Wctor-dtor-privacy
1499 Warn when a class seems unusable, because all the constructors or
1500 destructors in a class are private and the class has no friends or
1501 public static member functions.
1502
1503 @item -Wnon-virtual-dtor @r{(C++ only)}
1504 @opindex Wnon-virtual-dtor
1505 Warn when a class declares a non-virtual destructor that should probably
1506 be virtual, because it looks like the class will be used polymorphically.
1507
1508 @item -Wreorder @r{(C++ only)}
1509 @opindex Wreorder
1510 @cindex reordering, warning
1511 @cindex warning for reordering of member initializers
1512 Warn when the order of member initializers given in the code does not
1513 match the order in which they must be executed.  For instance:
1514
1515 @smallexample
1516 struct A @{
1517   int i;
1518   int j;
1519   A(): j (0), i (1) @{ @}
1520 @};
1521 @end smallexample
1522
1523 Here the compiler will warn that the member initializers for @samp{i}
1524 and @samp{j} will be rearranged to match the declaration order of the
1525 members.
1526 @end table
1527
1528 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
1529
1530 @table @gcctabopt
1531 @item -Weffc++ @r{(C++ only)}
1532 @opindex Weffc++
1533 Warn about violations of various style guidelines from Scott Meyers'
1534 @cite{Effective C++} books.  If you use this option, you should be aware
1535 that the standard library headers do not obey all of these guidelines;
1536 you can use @samp{grep -v} to filter out those warnings.
1537
1538 @item -Wno-deprecated @r{(C++ only)}
1539 @opindex Wno-deprecated
1540 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
1541
1542 @item -Wno-non-template-friend @r{(C++ only)}
1543 @opindex Wno-non-template-friend
1544 Disable warnings when non-templatized friend functions are declared
1545 within a template.  With the advent of explicit template specification
1546 support in G++, if the name of the friend is an unqualified-id (i.e.,
1547 @samp{friend foo(int)}), the C++ language specification demands that the
1548 friend declare or define an ordinary, nontemplate function.  (Section
1549 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
1550 could be interpreted as a particular specialization of a templatized
1551 function.  Because this non-conforming behavior is no longer the default
1552 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
1553 check existing code for potential trouble spots, and is on by default.
1554 This new compiler behavior can be turned off with
1555 @option{-Wno-non-template-friend} which keeps the conformant compiler code
1556 but disables the helpful warning.
1557
1558 @item -Wold-style-cast @r{(C++ only)}
1559 @opindex Wold-style-cast
1560 Warn if an old-style (C-style) cast is used within a C++ program.  The
1561 new-style casts (@samp{static_cast}, @samp{reinterpret_cast}, and
1562 @samp{const_cast}) are less vulnerable to unintended effects, and much
1563 easier to grep for.
1564
1565 @item -Woverloaded-virtual @r{(C++ only)}
1566 @opindex Woverloaded-virtual
1567 @cindex overloaded virtual fn, warning
1568 @cindex warning for overloaded virtual fn
1569 Warn when a function declaration hides virtual functions from a
1570 base class.  For example, in:
1571
1572 @smallexample
1573 struct A @{
1574   virtual void f();
1575 @};
1576
1577 struct B: public A @{
1578   void f(int);
1579 @};
1580 @end smallexample
1581
1582 the @code{A} class version of @code{f} is hidden in @code{B}, and code
1583 like this:
1584
1585 @smallexample
1586 B* b;
1587 b->f();
1588 @end smallexample
1589
1590 will fail to compile.
1591
1592 @item -Wno-pmf-conversions @r{(C++ only)}
1593 @opindex Wno-pmf-conversions
1594 Disable the diagnostic for converting a bound pointer to member function
1595 to a plain pointer.
1596
1597 @item -Wsign-promo @r{(C++ only)}
1598 @opindex Wsign-promo
1599 Warn when overload resolution chooses a promotion from unsigned or
1600 enumeral type to a signed type over a conversion to an unsigned type of
1601 the same size.  Previous versions of G++ would try to preserve
1602 unsignedness, but the standard mandates the current behavior.
1603
1604 @item -Wsynth @r{(C++ only)}
1605 @opindex Wsynth
1606 @cindex warning for synthesized methods
1607 @cindex synthesized methods, warning
1608 Warn when G++'s synthesis behavior does not match that of cfront.  For
1609 instance:
1610
1611 @smallexample
1612 struct A @{
1613   operator int ();
1614   A& operator = (int);
1615 @};
1616
1617 main ()
1618 @{
1619   A a,b;
1620   a = b;
1621 @}
1622 @end smallexample
1623
1624 In this example, G++ will synthesize a default @samp{A& operator =
1625 (const A&);}, while cfront will use the user-defined @samp{operator =}.
1626 @end table
1627
1628 @node Objective-C Dialect Options
1629 @section Options Controlling Objective-C Dialect
1630
1631 @cindex compiler options, Objective-C
1632 @cindex Objective-C options, command line
1633 @cindex options, Objective-C
1634 This section describes the command-line options that are only meaningful
1635 for Objective-C programs; but you can also use most of the GNU compiler
1636 options regardless of what language your program is in.  For example,
1637 you might compile a file @code{some_class.m} like this:
1638
1639 @example
1640 gcc -g -fgnu-runtime -O -c some_class.m
1641 @end example
1642
1643 @noindent
1644 In this example, only @option{-fgnu-runtime} is an option meant only for
1645 Objective-C programs; you can use the other options with any language
1646 supported by GCC@.
1647
1648 Here is a list of options that are @emph{only} for compiling Objective-C
1649 programs:
1650
1651 @table @gcctabopt
1652 @item -fconstant-string-class=@var{class-name}
1653 @opindex fconstant-string-class
1654 Use @var{class-name} as the name of the class to instantiate for each
1655 literal string specified with the syntax @code{@@"@dots{}"}.  The default
1656 class name is @code{NXConstantString}.
1657
1658 @item -fgnu-runtime
1659 @opindex fgnu-runtime
1660 Generate object code compatible with the standard GNU Objective-C
1661 runtime.  This is the default for most types of systems.
1662
1663 @item -fnext-runtime
1664 @opindex fnext-runtime
1665 Generate output compatible with the NeXT runtime.  This is the default
1666 for NeXT-based systems, including Darwin and Mac OS X@.
1667
1668 @item -gen-decls
1669 @opindex gen-decls
1670 Dump interface declarations for all classes seen in the source file to a
1671 file named @file{@var{sourcename}.decl}.
1672
1673 @item -Wno-protocol
1674 @opindex Wno-protocol
1675 Do not warn if methods required by a protocol are not implemented
1676 in the class adopting it.
1677
1678 @item -Wselector
1679 @opindex Wselector
1680 Warn if a selector has multiple methods of different types defined.
1681
1682 @c not documented because only avail via -Wp
1683 @c @item -print-objc-runtime-info
1684
1685 @end table
1686
1687 @node Language Independent Options
1688 @section Options to Control Diagnostic Messages Formatting
1689 @cindex options to control diagnostics formatting
1690 @cindex diagnostic messages
1691 @cindex message formatting
1692
1693 Traditionally, diagnostic messages have been formatted irrespective of
1694 the output device's aspect (e.g.@: its width, @dots{}).  The options described
1695 below can be used to control the diagnostic messages formatting
1696 algorithm, e.g.@: how many characters per line, how often source location
1697 information should be reported.  Right now, only the C++ front end can
1698 honor these options.  However it is expected, in the near future, that
1699 the remaining front ends would be able to digest them correctly.
1700
1701 @table @gcctabopt
1702 @item -fmessage-length=@var{n}
1703 @opindex fmessage-length
1704 Try to format error messages so that they fit on lines of about @var{n}
1705 characters.  The default is 72 characters for @command{g++} and 0 for the rest of
1706 the front ends supported by GCC@.  If @var{n} is zero, then no
1707 line-wrapping will be done; each error message will appear on a single
1708 line.
1709
1710 @opindex fdiagnostics-show-location
1711 @item -fdiagnostics-show-location=once
1712 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
1713 reporter to emit @emph{once} source location information; that is, in
1714 case the message is too long to fit on a single physical line and has to
1715 be wrapped, the source location won't be emitted (as prefix) again,
1716 over and over, in subsequent continuation lines.  This is the default
1717 behavior.
1718
1719 @item -fdiagnostics-show-location=every-line
1720 Only meaningful in line-wrapping mode.  Instructs the diagnostic
1721 messages reporter to emit the same source location information (as
1722 prefix) for physical lines that result from the process of breaking
1723 a message which is too long to fit on a single line.
1724
1725 @end table
1726
1727 @node Warning Options
1728 @section Options to Request or Suppress Warnings
1729 @cindex options to control warnings
1730 @cindex warning messages
1731 @cindex messages, warning
1732 @cindex suppressing warnings
1733
1734 Warnings are diagnostic messages that report constructions which
1735 are not inherently erroneous but which are risky or suggest there
1736 may have been an error.
1737
1738 You can request many specific warnings with options beginning @samp{-W},
1739 for example @option{-Wimplicit} to request warnings on implicit
1740 declarations.  Each of these specific warning options also has a
1741 negative form beginning @samp{-Wno-} to turn off warnings;
1742 for example, @option{-Wno-implicit}.  This manual lists only one of the
1743 two forms, whichever is not the default.
1744
1745 These options control the amount and kinds of warnings produced by GCC:
1746
1747 @table @gcctabopt
1748 @cindex syntax checking
1749 @item -fsyntax-only
1750 @opindex fsyntax-only
1751 Check the code for syntax errors, but don't do anything beyond that.
1752
1753 @item -pedantic
1754 @opindex pedantic
1755 Issue all the warnings demanded by strict ISO C and ISO C++;
1756 reject all programs that use forbidden extensions, and some other
1757 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
1758 version of the ISO C standard specified by any @option{-std} option used.
1759
1760 Valid ISO C and ISO C++ programs should compile properly with or without
1761 this option (though a rare few will require @option{-ansi} or a
1762 @option{-std} option specifying the required version of ISO C)@.  However,
1763 without this option, certain GNU extensions and traditional C and C++
1764 features are supported as well.  With this option, they are rejected.
1765
1766 @option{-pedantic} does not cause warning messages for use of the
1767 alternate keywords whose names begin and end with @samp{__}.  Pedantic
1768 warnings are also disabled in the expression that follows
1769 @code{__extension__}.  However, only system header files should use
1770 these escape routes; application programs should avoid them.
1771 @xref{Alternate Keywords}.
1772
1773 Some users try to use @option{-pedantic} to check programs for strict ISO
1774 C conformance.  They soon find that it does not do quite what they want:
1775 it finds some non-ISO practices, but not all---only those for which
1776 ISO C @emph{requires} a diagnostic, and some others for which
1777 diagnostics have been added.
1778
1779 A feature to report any failure to conform to ISO C might be useful in
1780 some instances, but would require considerable additional work and would
1781 be quite different from @option{-pedantic}.  We don't have plans to
1782 support such a feature in the near future.
1783
1784 Where the standard specified with @option{-std} represents a GNU
1785 extended dialect of C, such as @samp{gnu89} or @samp{gnu99}, there is a
1786 corresponding @dfn{base standard}, the version of ISO C on which the GNU
1787 extended dialect is based.  Warnings from @option{-pedantic} are given
1788 where they are required by the base standard.  (It would not make sense
1789 for such warnings to be given only for features not in the specified GNU
1790 C dialect, since by definition the GNU dialects of C include all
1791 features the compiler supports with the given option, and there would be
1792 nothing to warn about.)
1793
1794 @item -pedantic-errors
1795 @opindex pedantic-errors
1796 Like @option{-pedantic}, except that errors are produced rather than
1797 warnings.
1798
1799 @item -w
1800 @opindex w
1801 Inhibit all warning messages.
1802
1803 @item -Wno-import
1804 @opindex Wno-import
1805 Inhibit warning messages about the use of @samp{#import}.
1806
1807 @item -Wchar-subscripts
1808 @opindex Wchar-subscripts
1809 Warn if an array subscript has type @code{char}.  This is a common cause
1810 of error, as programmers often forget that this type is signed on some
1811 machines.
1812
1813 @item -Wcomment
1814 @opindex Wcomment
1815 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
1816 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
1817
1818 @item -Wformat
1819 @opindex Wformat
1820 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
1821 the arguments supplied have types appropriate to the format string
1822 specified, and that the conversions specified in the format string make
1823 sense.  This includes standard functions, and others specified by format
1824 attributes (@pxref{Function Attributes}), in the @code{printf},
1825 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
1826 not in the C standard) families.
1827
1828 The formats are checked against the format features supported by GNU
1829 libc version 2.2.  These include all ISO C89 and C99 features, as well
1830 as features from the Single Unix Specification and some BSD and GNU
1831 extensions.  Other library implementations may not support all these
1832 features; GCC does not support warning about features that go beyond a
1833 particular library's limitations.  However, if @option{-pedantic} is used
1834 with @option{-Wformat}, warnings will be given about format features not
1835 in the selected standard version (but not for @code{strfmon} formats,
1836 since those are not in any version of the C standard).  @xref{C Dialect
1837 Options,,Options Controlling C Dialect}.
1838
1839 @option{-Wformat} is included in @option{-Wall}.  For more control over some
1840 aspects of format checking, the options @option{-Wno-format-y2k},
1841 @option{-Wno-format-extra-args}, @option{-Wformat-nonliteral},
1842 @option{-Wformat-security} and @option{-Wformat=2} are available, but are
1843 not included in @option{-Wall}.
1844
1845 @item -Wno-format-y2k
1846 @opindex Wno-format-y2k
1847 If @option{-Wformat} is specified, do not warn about @code{strftime}
1848 formats which may yield only a two-digit year.
1849
1850 @item -Wno-format-extra-args
1851 @opindex Wno-format-extra-args
1852 If @option{-Wformat} is specified, do not warn about excess arguments to a
1853 @code{printf} or @code{scanf} format function.  The C standard specifies
1854 that such arguments are ignored.
1855
1856 Where the unused arguments lie between used arguments that are
1857 specified with @samp{$} operand number specifications, normally
1858 warnings are still given, since the implementation could not know what
1859 type to pass to @code{va_arg} to skip the unused arguments.  However,
1860 in the case of @code{scanf} formats, this option will suppress the
1861 warning if the unused arguments are all pointers, since the Single
1862 Unix Specification says that such unused arguments are allowed.
1863
1864 @item -Wformat-nonliteral
1865 @opindex Wformat-nonliteral
1866 If @option{-Wformat} is specified, also warn if the format string is not a
1867 string literal and so cannot be checked, unless the format function
1868 takes its format arguments as a @code{va_list}.
1869
1870 @item -Wformat-security
1871 @opindex Wformat-security
1872 If @option{-Wformat} is specified, also warn about uses of format
1873 functions that represent possible security problems.  At present, this
1874 warns about calls to @code{printf} and @code{scanf} functions where the
1875 format string is not a string literal and there are no format arguments,
1876 as in @code{printf (foo);}.  This may be a security hole if the format
1877 string came from untrusted input and contains @samp{%n}.  (This is
1878 currently a subset of what @option{-Wformat-nonliteral} warns about, but
1879 in future warnings may be added to @option{-Wformat-security} that are not
1880 included in @option{-Wformat-nonliteral}.)
1881
1882 @item -Wformat=2
1883 @opindex Wformat=2
1884 Enable @option{-Wformat} plus format checks not included in
1885 @option{-Wformat}.  Currently equivalent to @samp{-Wformat
1886 -Wformat-nonliteral -Wformat-security}.
1887
1888 @item -Wimplicit-int
1889 @opindex Wimplicit-int
1890 Warn when a declaration does not specify a type.
1891
1892 @item -Wimplicit-function-declaration
1893 @itemx -Werror-implicit-function-declaration
1894 @opindex Wimplicit-function-declaration
1895 @opindex Werror-implicit-function-declaration
1896 Give a warning (or error) whenever a function is used before being
1897 declared.
1898
1899 @item -Wimplicit
1900 @opindex Wimplicit
1901 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
1902
1903 @item -Wmain
1904 @opindex Wmain
1905 Warn if the type of @samp{main} is suspicious.  @samp{main} should be a
1906 function with external linkage, returning int, taking either zero
1907 arguments, two, or three arguments of appropriate types.
1908
1909 @item -Wmissing-braces
1910 @opindex Wmissing-braces
1911 Warn if an aggregate or union initializer is not fully bracketed.  In
1912 the following example, the initializer for @samp{a} is not fully
1913 bracketed, but that for @samp{b} is fully bracketed.
1914
1915 @smallexample
1916 int a[2][2] = @{ 0, 1, 2, 3 @};
1917 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
1918 @end smallexample
1919
1920 @item -Wparentheses
1921 @opindex Wparentheses
1922 Warn if parentheses are omitted in certain contexts, such
1923 as when there is an assignment in a context where a truth value
1924 is expected, or when operators are nested whose precedence people
1925 often get confused about.
1926
1927 Also warn about constructions where there may be confusion to which
1928 @code{if} statement an @code{else} branch belongs.  Here is an example of
1929 such a case:
1930
1931 @smallexample
1932 @group
1933 @{
1934   if (a)
1935     if (b)
1936       foo ();
1937   else
1938     bar ();
1939 @}
1940 @end group
1941 @end smallexample
1942
1943 In C, every @code{else} branch belongs to the innermost possible @code{if}
1944 statement, which in this example is @code{if (b)}.  This is often not
1945 what the programmer expected, as illustrated in the above example by
1946 indentation the programmer chose.  When there is the potential for this
1947 confusion, GCC will issue a warning when this flag is specified.
1948 To eliminate the warning, add explicit braces around the innermost
1949 @code{if} statement so there is no way the @code{else} could belong to
1950 the enclosing @code{if}.  The resulting code would look like this:
1951
1952 @smallexample
1953 @group
1954 @{
1955   if (a)
1956     @{
1957       if (b)
1958         foo ();
1959       else
1960         bar ();
1961     @}
1962 @}
1963 @end group
1964 @end smallexample
1965
1966 @item -Wsequence-point
1967 @opindex Wsequence-point
1968 Warn about code that may have undefined semantics because of violations
1969 of sequence point rules in the C standard.
1970
1971 The C standard defines the order in which expressions in a C program are
1972 evaluated in terms of @dfn{sequence points}, which represent a partial
1973 ordering between the execution of parts of the program: those executed
1974 before the sequence point, and those executed after it.  These occur
1975 after the evaluation of a full expression (one which is not part of a
1976 larger expression), after the evaluation of the first operand of a
1977 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
1978 function is called (but after the evaluation of its arguments and the
1979 expression denoting the called function), and in certain other places.
1980 Other than as expressed by the sequence point rules, the order of
1981 evaluation of subexpressions of an expression is not specified.  All
1982 these rules describe only a partial order rather than a total order,
1983 since, for example, if two functions are called within one expression
1984 with no sequence point between them, the order in which the functions
1985 are called is not specified.  However, the standards committee have
1986 ruled that function calls do not overlap.
1987
1988 It is not specified when between sequence points modifications to the
1989 values of objects take effect.  Programs whose behavior depends on this
1990 have undefined behavior; the C standard specifies that ``Between the
1991 previous and next sequence point an object shall have its stored value
1992 modified at most once by the evaluation of an expression.  Furthermore,
1993 the prior value shall be read only to determine the value to be
1994 stored.''.  If a program breaks these rules, the results on any
1995 particular implementation are entirely unpredictable.
1996
1997 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
1998 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
1999 diagnosed by this option, and it may give an occasional false positive
2000 result, but in general it has been found fairly effective at detecting
2001 this sort of problem in programs.
2002
2003 The present implementation of this option only works for C programs.  A
2004 future implementation may also work for C++ programs.
2005
2006 The C standard is worded confusingly, therefore there is some debate
2007 over the precise meaning of the sequence point rules in subtle cases.
2008 Links to discussions of the problem, including proposed formal
2009 definitions, may be found on our readings page, at
2010 @w{@uref{http://gcc.gnu.org/readings.html}}.
2011
2012 @item -Wreturn-type
2013 @opindex Wreturn-type
2014 Warn whenever a function is defined with a return-type that defaults to
2015 @code{int}.  Also warn about any @code{return} statement with no
2016 return-value in a function whose return-type is not @code{void}.
2017
2018 For C++, a function without return type always produces a diagnostic
2019 message, even when @option{-Wno-return-type} is specified.  The only
2020 exceptions are @samp{main} and functions defined in system headers.
2021
2022 @item -Wswitch
2023 @opindex Wswitch
2024 Warn whenever a @code{switch} statement has an index of enumeral type
2025 and lacks a @code{case} for one or more of the named codes of that
2026 enumeration.  (The presence of a @code{default} label prevents this
2027 warning.)  @code{case} labels outside the enumeration range also
2028 provoke warnings when this option is used.
2029
2030 @item -Wtrigraphs
2031 @opindex Wtrigraphs
2032 Warn if any trigraphs are encountered that might change the meaning of
2033 the program (trigraphs within comments are not warned about).
2034
2035 @item -Wunused-function
2036 @opindex Wunused-function
2037 Warn whenever a static function is declared but not defined or a
2038 non\-inline static function is unused.
2039
2040 @item -Wunused-label
2041 @opindex Wunused-label
2042 Warn whenever a label is declared but not used.
2043
2044 To suppress this warning use the @samp{unused} attribute
2045 (@pxref{Variable Attributes}).
2046
2047 @item -Wunused-parameter
2048 @opindex Wunused-parameter
2049 Warn whenever a function parameter is unused aside from its declaration.
2050
2051 To suppress this warning use the @samp{unused} attribute
2052 (@pxref{Variable Attributes}).
2053
2054 @item -Wunused-variable
2055 @opindex Wunused-variable
2056 Warn whenever a local variable or non-constant static variable is unused
2057 aside from its declaration
2058
2059 To suppress this warning use the @samp{unused} attribute
2060 (@pxref{Variable Attributes}).
2061
2062 @item -Wunused-value
2063 @opindex Wunused-value
2064 Warn whenever a statement computes a result that is explicitly not used.
2065
2066 To suppress this warning cast the expression to @samp{void}.
2067
2068 @item -Wunused
2069 @opindex Wunused
2070 All all the above @option{-Wunused} options combined.
2071
2072 In order to get a warning about an unused function parameter, you must
2073 either specify @samp{-W -Wunused} or separately specify
2074 @option{-Wunused-parameter}.
2075
2076 @item -Wuninitialized
2077 @opindex Wuninitialized
2078 Warn if an automatic variable is used without first being initialized or
2079 if a variable may be clobbered by a @code{setjmp} call.
2080
2081 These warnings are possible only in optimizing compilation,
2082 because they require data flow information that is computed only
2083 when optimizing.  If you don't specify @option{-O}, you simply won't
2084 get these warnings.
2085
2086 These warnings occur only for variables that are candidates for
2087 register allocation.  Therefore, they do not occur for a variable that
2088 is declared @code{volatile}, or whose address is taken, or whose size
2089 is other than 1, 2, 4 or 8 bytes.  Also, they do not occur for
2090 structures, unions or arrays, even when they are in registers.
2091
2092 Note that there may be no warning about a variable that is used only
2093 to compute a value that itself is never used, because such
2094 computations may be deleted by data flow analysis before the warnings
2095 are printed.
2096
2097 These warnings are made optional because GCC is not smart
2098 enough to see all the reasons why the code might be correct
2099 despite appearing to have an error.  Here is one example of how
2100 this can happen:
2101
2102 @smallexample
2103 @group
2104 @{
2105   int x;
2106   switch (y)
2107     @{
2108     case 1: x = 1;
2109       break;
2110     case 2: x = 4;
2111       break;
2112     case 3: x = 5;
2113     @}
2114   foo (x);
2115 @}
2116 @end group
2117 @end smallexample
2118
2119 @noindent
2120 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
2121 always initialized, but GCC doesn't know this.  Here is
2122 another common case:
2123
2124 @smallexample
2125 @{
2126   int save_y;
2127   if (change_y) save_y = y, y = new_y;
2128   @dots{}
2129   if (change_y) y = save_y;
2130 @}
2131 @end smallexample
2132
2133 @noindent
2134 This has no bug because @code{save_y} is used only if it is set.
2135
2136 @cindex @code{longjmp} warnings
2137 This option also warns when a non-volatile automatic variable might be
2138 changed by a call to @code{longjmp}.  These warnings as well are possible
2139 only in optimizing compilation.
2140
2141 The compiler sees only the calls to @code{setjmp}.  It cannot know
2142 where @code{longjmp} will be called; in fact, a signal handler could
2143 call it at any point in the code.  As a result, you may get a warning
2144 even when there is in fact no problem because @code{longjmp} cannot
2145 in fact be called at the place which would cause a problem.
2146
2147 Some spurious warnings can be avoided if you declare all the functions
2148 you use that never return as @code{noreturn}.  @xref{Function
2149 Attributes}.
2150
2151 @item -Wreorder @r{(C++ only)}
2152 @opindex Wreorder
2153 @cindex reordering, warning
2154 @cindex warning for reordering of member initializers
2155 Warn when the order of member initializers given in the code does not
2156 match the order in which they must be executed.  For instance:
2157
2158 @item -Wunknown-pragmas
2159 @opindex Wunknown-pragmas
2160 @cindex warning for unknown pragmas
2161 @cindex unknown pragmas, warning
2162 @cindex pragmas, warning of unknown
2163 Warn when a #pragma directive is encountered which is not understood by
2164 GCC@.  If this command line option is used, warnings will even be issued
2165 for unknown pragmas in system header files.  This is not the case if
2166 the warnings were only enabled by the @option{-Wall} command line option.
2167
2168 @item -Wall
2169 @opindex Wall
2170 All of the above @samp{-W} options combined.  This enables all the
2171 warnings about constructions that some users consider questionable, and
2172 that are easy to avoid (or modify to prevent the warning), even in
2173 conjunction with macros.
2174
2175 @item -Wdiv-by-zero
2176 @opindex Wno-div-by-zero
2177 @opindex Wdiv-by-zero
2178 Warn about compile-time integer division by zero.  This is default.  To
2179 inhibit the warning messages, use @option{-Wno-div-by-zero}.  Floating
2180 point division by zero is not warned about, as it can be a legitimate
2181 way of obtaining infinities and NaNs.
2182
2183 @item -Wmultichar
2184 @opindex Wno-multichar
2185 @opindex Wmultichar
2186 Warn if a multicharacter constant (@samp{'FOOF'}) is used.  This is
2187 default.  To inhibit the warning messages, use @option{-Wno-multichar}.
2188 Usually they indicate a typo in the user's code, as they have
2189 implementation-defined values, and should not be used in portable code.
2190
2191 @item -Wsystem-headers
2192 @opindex Wsystem-headers
2193 @cindex warnings from system headers
2194 @cindex system headers, warnings from
2195 Print warning messages for constructs found in system header files.
2196 Warnings from system headers are normally suppressed, on the assumption
2197 that they usually do not indicate real problems and would only make the
2198 compiler output harder to read.  Using this command line option tells
2199 GCC to emit warnings from system headers as if they occurred in user
2200 code.  However, note that using @option{-Wall} in conjunction with this
2201 option will @emph{not} warn about unknown pragmas in system
2202 headers---for that, @option{-Wunknown-pragmas} must also be used.
2203 @end table
2204
2205 The following @option{-W@dots{}} options are not implied by @option{-Wall}.
2206 Some of them warn about constructions that users generally do not
2207 consider questionable, but which occasionally you might wish to check
2208 for; others warn about constructions that are necessary or hard to avoid
2209 in some cases, and there is no simple way to modify the code to suppress
2210 the warning.
2211
2212 @table @gcctabopt
2213 @item -W
2214 @opindex W
2215 Print extra warning messages for these events:
2216
2217 @itemize @bullet
2218 @item
2219 A function can return either with or without a value.  (Falling
2220 off the end of the function body is considered returning without
2221 a value.)  For example, this function would evoke such a
2222 warning:
2223
2224 @smallexample
2225 @group
2226 foo (a)
2227 @{
2228   if (a > 0)
2229     return a;
2230 @}
2231 @end group
2232 @end smallexample
2233
2234 @item
2235 An expression-statement or the left-hand side of a comma expression
2236 contains no side effects.
2237 To suppress the warning, cast the unused expression to void.
2238 For example, an expression such as @samp{x[i,j]} will cause a warning,
2239 but @samp{x[(void)i,j]} will not.
2240
2241 @item
2242 An unsigned value is compared against zero with @samp{<} or @samp{<=}.
2243
2244 @item
2245 A comparison like @samp{x<=y<=z} appears; this is equivalent to
2246 @samp{(x<=y ? 1 : 0) <= z}, which is a different interpretation from
2247 that of ordinary mathematical notation.
2248
2249 @item
2250 Storage-class specifiers like @code{static} are not the first things in
2251 a declaration.  According to the C Standard, this usage is obsolescent.
2252
2253 @item
2254 The return type of a function has a type qualifier such as @code{const}.
2255 Such a type qualifier has no effect, since the value returned by a
2256 function is not an lvalue.  (But don't warn about the GNU extension of
2257 @code{volatile void} return types.  That extension will be warned about
2258 if @option{-pedantic} is specified.)
2259
2260 @item
2261 If @option{-Wall} or @option{-Wunused} is also specified, warn about unused
2262 arguments.
2263
2264 @item
2265 A comparison between signed and unsigned values could produce an
2266 incorrect result when the signed value is converted to unsigned.
2267 (But don't warn if @option{-Wno-sign-compare} is also specified.)
2268
2269 @item
2270 An aggregate has a partly bracketed initializer.
2271 For example, the following code would evoke such a warning,
2272 because braces are missing around the initializer for @code{x.h}:
2273
2274 @smallexample
2275 struct s @{ int f, g; @};
2276 struct t @{ struct s h; int i; @};
2277 struct t x = @{ 1, 2, 3 @};
2278 @end smallexample
2279
2280 @item
2281 An aggregate has an initializer which does not initialize all members.
2282 For example, the following code would cause such a warning, because
2283 @code{x.h} would be implicitly initialized to zero:
2284
2285 @smallexample
2286 struct s @{ int f, g, h; @};
2287 struct s x = @{ 3, 4 @};
2288 @end smallexample
2289 @end itemize
2290
2291 @item -Wfloat-equal
2292 @opindex Wfloat-equal
2293 Warn if floating point values are used in equality comparisons.
2294
2295 The idea behind this is that sometimes it is convenient (for the
2296 programmer) to consider floating-point values as approximations to
2297 infinitely precise real numbers.  If you are doing this, then you need
2298 to compute (by analysing the code, or in some other way) the maximum or
2299 likely maximum error that the computation introduces, and allow for it
2300 when performing comparisons (and when producing output, but that's a
2301 different problem).  In particular, instead of testing for equality, you
2302 would check to see whether the two values have ranges that overlap; and
2303 this is done with the relational operators, so equality comparisons are
2304 probably mistaken.
2305
2306 @item -Wtraditional @r{(C only)}
2307 @opindex Wtraditional
2308 Warn about certain constructs that behave differently in traditional and
2309 ISO C@.  Also warn about ISO C constructs that have no traditional C
2310 equivalent, and/or problematic constructs which should be avoided.
2311
2312 @itemize @bullet
2313 @item
2314 Macro parameters that appear within string literals in the macro body.
2315 In traditional C macro replacement takes place within string literals,
2316 but does not in ISO C@.
2317
2318 @item
2319 In traditional C, some preprocessor directives did not exist.
2320 Traditional preprocessors would only consider a line to be a directive
2321 if the @samp{#} appeared in column 1 on the line.  Therefore
2322 @option{-Wtraditional} warns about directives that traditional C
2323 understands but would ignore because the @samp{#} does not appear as the
2324 first character on the line.  It also suggests you hide directives like
2325 @samp{#pragma} not understood by traditional C by indenting them.  Some
2326 traditional implementations would not recognize @samp{#elif}, so it
2327 suggests avoiding it altogether.
2328
2329 @item
2330 A function-like macro that appears without arguments.
2331
2332 @item
2333 The unary plus operator.
2334
2335 @item
2336 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating point
2337 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
2338 constants.)  Note, these suffixes appear in macros defined in the system
2339 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
2340 Use of these macros in user code might normally lead to spurious
2341 warnings, however gcc's integrated preprocessor has enough context to
2342 avoid warning in these cases.
2343
2344 @item
2345 A function declared external in one block and then used after the end of
2346 the block.
2347
2348 @item
2349 A @code{switch} statement has an operand of type @code{long}.
2350
2351 @item
2352 A non-@code{static} function declaration follows a @code{static} one.
2353 This construct is not accepted by some traditional C compilers.
2354
2355 @item
2356 The ISO type of an integer constant has a different width or
2357 signedness from its traditional type.  This warning is only issued if
2358 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
2359 typically represent bit patterns, are not warned about.
2360
2361 @item
2362 Usage of ISO string concatenation is detected.
2363
2364 @item
2365 Initialization of automatic aggregates.
2366
2367 @item
2368 Identifier conflicts with labels.  Traditional C lacks a separate
2369 namespace for labels.
2370
2371 @item
2372 Initialization of unions.  If the initializer is zero, the warning is
2373 omitted.  This is done under the assumption that the zero initializer in
2374 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
2375 initializer warnings and relies on default initialization to zero in the
2376 traditional C case.
2377
2378 @item
2379 Conversions by prototypes between fixed/floating point values and vice
2380 versa.  The absence of these prototypes when compiling with traditional
2381 C would cause serious problems.  This is a subset of the possible
2382 conversion warnings, for the full set use @option{-Wconversion}.
2383 @end itemize
2384
2385 @item -Wundef
2386 @opindex Wundef
2387 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
2388
2389 @item -Wshadow
2390 @opindex Wshadow
2391 Warn whenever a local variable shadows another local variable, parameter or
2392 global variable or whenever a built-in function is shadowed.
2393
2394 @item -Wlarger-than-@var{len}
2395 @opindex Wlarger-than
2396 Warn whenever an object of larger than @var{len} bytes is defined.
2397
2398 @item -Wpointer-arith
2399 @opindex Wpointer-arith
2400 Warn about anything that depends on the ``size of'' a function type or
2401 of @code{void}.  GNU C assigns these types a size of 1, for
2402 convenience in calculations with @code{void *} pointers and pointers
2403 to functions.
2404
2405 @item -Wbad-function-cast @r{(C only)}
2406 @opindex Wbad-function-cast
2407 Warn whenever a function call is cast to a non-matching type.
2408 For example, warn if @code{int malloc()} is cast to @code{anything *}.
2409
2410 @item -Wcast-qual
2411 @opindex Wcast-qual
2412 Warn whenever a pointer is cast so as to remove a type qualifier from
2413 the target type.  For example, warn if a @code{const char *} is cast
2414 to an ordinary @code{char *}.
2415
2416 @item -Wcast-align
2417 @opindex Wcast-align
2418 Warn whenever a pointer is cast such that the required alignment of the
2419 target is increased.  For example, warn if a @code{char *} is cast to
2420 an @code{int *} on machines where integers can only be accessed at
2421 two- or four-byte boundaries.
2422
2423 @item -Wwrite-strings
2424 @opindex Wwrite-strings
2425 When compiling C, give string constants the type @code{const
2426 char[@var{length}]} so that
2427 copying the address of one into a non-@code{const} @code{char *}
2428 pointer will get a warning; when compiling C++, warn about the
2429 deprecated conversion from string constants to @code{char *}.
2430 These warnings will help you find at
2431 compile time code that can try to write into a string constant, but
2432 only if you have been very careful about using @code{const} in
2433 declarations and prototypes.  Otherwise, it will just be a nuisance;
2434 this is why we did not make @option{-Wall} request these warnings.
2435
2436 @item -Wconversion
2437 @opindex Wconversion
2438 Warn if a prototype causes a type conversion that is different from what
2439 would happen to the same argument in the absence of a prototype.  This
2440 includes conversions of fixed point to floating and vice versa, and
2441 conversions changing the width or signedness of a fixed point argument
2442 except when the same as the default promotion.
2443
2444 Also, warn if a negative integer constant expression is implicitly
2445 converted to an unsigned type.  For example, warn about the assignment
2446 @code{x = -1} if @code{x} is unsigned.  But do not warn about explicit
2447 casts like @code{(unsigned) -1}.
2448
2449 @item -Wsign-compare
2450 @opindex Wsign-compare
2451 @cindex warning for comparison of signed and unsigned values
2452 @cindex comparison of signed and unsigned values, warning
2453 @cindex signed and unsigned values, comparison warning
2454 Warn when a comparison between signed and unsigned values could produce
2455 an incorrect result when the signed value is converted to unsigned.
2456 This warning is also enabled by @option{-W}; to get the other warnings
2457 of @option{-W} without this warning, use @samp{-W -Wno-sign-compare}.
2458
2459 @item -Waggregate-return
2460 @opindex Waggregate-return
2461 Warn if any functions that return structures or unions are defined or
2462 called.  (In languages where you can return an array, this also elicits
2463 a warning.)
2464
2465 @item -Wstrict-prototypes @r{(C only)}
2466 @opindex Wstrict-prototypes
2467 Warn if a function is declared or defined without specifying the
2468 argument types.  (An old-style function definition is permitted without
2469 a warning if preceded by a declaration which specifies the argument
2470 types.)
2471
2472 @item -Wmissing-prototypes @r{(C only)}
2473 @opindex Wmissing-prototypes
2474 Warn if a global function is defined without a previous prototype
2475 declaration.  This warning is issued even if the definition itself
2476 provides a prototype.  The aim is to detect global functions that fail
2477 to be declared in header files.
2478
2479 @item -Wmissing-declarations
2480 @opindex Wmissing-declarations
2481 Warn if a global function is defined without a previous declaration.
2482 Do so even if the definition itself provides a prototype.
2483 Use this option to detect global functions that are not declared in
2484 header files.
2485
2486 @item -Wmissing-noreturn
2487 @opindex Wmissing-noreturn
2488 Warn about functions which might be candidates for attribute @code{noreturn}.
2489 Note these are only possible candidates, not absolute ones.  Care should
2490 be taken to manually verify functions actually do not ever return before
2491 adding the @code{noreturn} attribute, otherwise subtle code generation
2492 bugs could be introduced.  You will not get a warning for @code{main} in
2493 hosted C environments.
2494
2495 @item -Wmissing-format-attribute
2496 @opindex Wmissing-format-attribute
2497 @opindex Wformat
2498 If @option{-Wformat} is enabled, also warn about functions which might be
2499 candidates for @code{format} attributes.  Note these are only possible
2500 candidates, not absolute ones.  GCC will guess that @code{format}
2501 attributes might be appropriate for any function that calls a function
2502 like @code{vprintf} or @code{vscanf}, but this might not always be the
2503 case, and some functions for which @code{format} attributes are
2504 appropriate may not be detected.  This option has no effect unless
2505 @option{-Wformat} is enabled (possibly by @option{-Wall}).
2506
2507 @item -Wpacked
2508 @opindex Wpacked
2509 Warn if a structure is given the packed attribute, but the packed
2510 attribute has no effect on the layout or size of the structure.
2511 Such structures may be mis-aligned for little benefit.  For
2512 instance, in this code, the variable @code{f.x} in @code{struct bar}
2513 will be misaligned even though @code{struct bar} does not itself
2514 have the packed attribute:
2515
2516 @smallexample
2517 @group
2518 struct foo @{
2519   int x;
2520   char a, b, c, d;
2521 @} __attribute__((packed));
2522 struct bar @{
2523   char z;
2524   struct foo f;
2525 @};
2526 @end group
2527 @end smallexample
2528
2529 @item -Wpadded
2530 @opindex Wpadded
2531 Warn if padding is included in a structure, either to align an element
2532 of the structure or to align the whole structure.  Sometimes when this
2533 happens it is possible to rearrange the fields of the structure to
2534 reduce the padding and so make the structure smaller.
2535
2536 @item -Wredundant-decls
2537 @opindex Wredundant-decls
2538 Warn if anything is declared more than once in the same scope, even in
2539 cases where multiple declaration is valid and changes nothing.
2540
2541 @item -Wnested-externs @r{(C only)}
2542 @opindex Wnested-externs
2543 Warn if an @code{extern} declaration is encountered within a function.
2544
2545 @item -Wunreachable-code
2546 @opindex Wunreachable-code
2547 Warn if the compiler detects that code will never be executed.
2548
2549 This option is intended to warn when the compiler detects that at
2550 least a whole line of source code will never be executed, because
2551 some condition is never satisfied or because it is after a
2552 procedure that never returns.
2553
2554 It is possible for this option to produce a warning even though there
2555 are circumstances under which part of the affected line can be executed,
2556 so care should be taken when removing apparently-unreachable code.
2557
2558 For instance, when a function is inlined, a warning may mean that the
2559 line is unreachable in only one inlined copy of the function.
2560
2561 This option is not made part of @option{-Wall} because in a debugging
2562 version of a program there is often substantial code which checks
2563 correct functioning of the program and is, hopefully, unreachable
2564 because the program does work.  Another common use of unreachable
2565 code is to provide behavior which is selectable at compile-time.
2566
2567 @item -Winline
2568 @opindex Winline
2569 Warn if a function can not be inlined and it was declared as inline.
2570
2571 @item -Wlong-long
2572 @opindex Wlong-long
2573 @opindex Wno-long-long
2574 Warn if @samp{long long} type is used.  This is default.  To inhibit
2575 the warning messages, use @option{-Wno-long-long}.  Flags
2576 @option{-Wlong-long} and @option{-Wno-long-long} are taken into account
2577 only when @option{-pedantic} flag is used.
2578
2579 @item -Wdisabled-optimization
2580 @opindex Wdisabled-optimization
2581 Warn if a requested optimization pass is disabled.  This warning does
2582 not generally indicate that there is anything wrong with your code; it
2583 merely indicates that GCC's optimizers were unable to handle the code
2584 effectively.  Often, the problem is that your code is too big or too
2585 complex; GCC will refuse to optimize programs when the optimization
2586 itself is likely to take inordinate amounts of time.
2587
2588 @item -Werror
2589 @opindex Werror
2590 Make all warnings into errors.
2591 @end table
2592
2593 @node Debugging Options
2594 @section Options for Debugging Your Program or GCC
2595 @cindex options, debugging
2596 @cindex debugging information options
2597
2598 GCC has various special options that are used for debugging
2599 either your program or GCC:
2600
2601 @table @gcctabopt
2602 @item -g
2603 @opindex g
2604 Produce debugging information in the operating system's native format
2605 (stabs, COFF, XCOFF, or DWARF)@.  GDB can work with this debugging
2606 information.
2607
2608 On most systems that use stabs format, @option{-g} enables use of extra
2609 debugging information that only GDB can use; this extra information
2610 makes debugging work better in GDB but will probably make other debuggers
2611 crash or
2612 refuse to read the program.  If you want to control for certain whether
2613 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
2614 @option{-gxcoff+}, @option{-gxcoff}, @option{-gdwarf-1+}, @option{-gdwarf-1},
2615 or @option{-gvms} (see below).
2616
2617 Unlike most other C compilers, GCC allows you to use @option{-g} with
2618 @option{-O}.  The shortcuts taken by optimized code may occasionally
2619 produce surprising results: some variables you declared may not exist
2620 at all; flow of control may briefly move where you did not expect it;
2621 some statements may not be executed because they compute constant
2622 results or their values were already at hand; some statements may
2623 execute in different places because they were moved out of loops.
2624
2625 Nevertheless it proves possible to debug optimized output.  This makes
2626 it reasonable to use the optimizer for programs that might have bugs.
2627
2628 The following options are useful when GCC is generated with the
2629 capability for more than one debugging format.
2630
2631 @item -ggdb
2632 @opindex ggdb
2633 Produce debugging information for use by GDB@.  This means to use the
2634 most expressive format available (DWARF 2, stabs, or the native format
2635 if neither of those are supported), including GDB extensions if at all
2636 possible.
2637
2638 @item -gstabs
2639 @opindex gstabs
2640 Produce debugging information in stabs format (if that is supported),
2641 without GDB extensions.  This is the format used by DBX on most BSD
2642 systems.  On MIPS, Alpha and System V Release 4 systems this option
2643 produces stabs debugging output which is not understood by DBX or SDB@.
2644 On System V Release 4 systems this option requires the GNU assembler.
2645
2646 @item -gstabs+
2647 @opindex gstabs+
2648 Produce debugging information in stabs format (if that is supported),
2649 using GNU extensions understood only by the GNU debugger (GDB)@.  The
2650 use of these extensions is likely to make other debuggers crash or
2651 refuse to read the program.
2652
2653 @item -gcoff
2654 @opindex gcoff
2655 Produce debugging information in COFF format (if that is supported).
2656 This is the format used by SDB on most System V systems prior to
2657 System V Release 4.
2658
2659 @item -gxcoff
2660 @opindex gxcoff
2661 Produce debugging information in XCOFF format (if that is supported).
2662 This is the format used by the DBX debugger on IBM RS/6000 systems.
2663
2664 @item -gxcoff+
2665 @opindex gxcoff+
2666 Produce debugging information in XCOFF format (if that is supported),
2667 using GNU extensions understood only by the GNU debugger (GDB)@.  The
2668 use of these extensions is likely to make other debuggers crash or
2669 refuse to read the program, and may cause assemblers other than the GNU
2670 assembler (GAS) to fail with an error.
2671
2672 @item -gdwarf
2673 @opindex gdwarf
2674 Produce debugging information in DWARF version 1 format (if that is
2675 supported).  This is the format used by SDB on most System V Release 4
2676 systems.
2677
2678 @item -gdwarf+
2679 @opindex gdwarf+
2680 Produce debugging information in DWARF version 1 format (if that is
2681 supported), using GNU extensions understood only by the GNU debugger
2682 (GDB)@.  The use of these extensions is likely to make other debuggers
2683 crash or refuse to read the program.
2684
2685 @item -gdwarf-2
2686 @opindex gdwarf-2
2687 Produce debugging information in DWARF version 2 format (if that is
2688 supported).  This is the format used by DBX on IRIX 6.
2689
2690 @item -gvms
2691 @opindex gvms
2692 Produce debugging information in VMS debug format (if that is
2693 supported).  This is the format used by DEBUG on VMS systems.
2694
2695 @item -g@var{level}
2696 @itemx -ggdb@var{level}
2697 @itemx -gstabs@var{level}
2698 @itemx -gcoff@var{level}
2699 @itemx -gxcoff@var{level}
2700 @itemx -gdwarf@var{level}
2701 @itemx -gdwarf-2@var{level}
2702 @itemx -gvms@var{level}
2703 Request debugging information and also use @var{level} to specify how
2704 much information.  The default level is 2.
2705
2706 Level 1 produces minimal information, enough for making backtraces in
2707 parts of the program that you don't plan to debug.  This includes
2708 descriptions of functions and external variables, but no information
2709 about local variables and no line numbers.
2710
2711 Level 3 includes extra information, such as all the macro definitions
2712 present in the program.  Some debuggers support macro expansion when
2713 you use @option{-g3}.
2714
2715 @cindex @code{prof}
2716 @item -p
2717 @opindex p
2718 Generate extra code to write profile information suitable for the
2719 analysis program @code{prof}.  You must use this option when compiling
2720 the source files you want data about, and you must also use it when
2721 linking.
2722
2723 @cindex @code{gprof}
2724 @item -pg
2725 @opindex pg
2726 Generate extra code to write profile information suitable for the
2727 analysis program @code{gprof}.  You must use this option when compiling
2728 the source files you want data about, and you must also use it when
2729 linking.
2730
2731 @cindex @code{tcov}
2732 @item -a
2733 @opindex a
2734 Generate extra code to write profile information for basic blocks, which will
2735 record the number of times each basic block is executed, the basic block start
2736 address, and the function name containing the basic block.  If @option{-g} is
2737 used, the line number and filename of the start of the basic block will also be
2738 recorded.  If not overridden by the machine description, the default action is
2739 to append to the text file @file{bb.out}.
2740
2741 This data could be analyzed by a program like @code{tcov}.  Note,
2742 however, that the format of the data is not what @code{tcov} expects.
2743 Eventually GNU @code{gprof} should be extended to process this data.
2744
2745 @item -Q
2746 @opindex Q
2747 Makes the compiler print out each function name as it is compiled, and
2748 print some statistics about each pass when it finishes.
2749
2750 @item -ftime-report
2751 @opindex ftime-report
2752 Makes the compiler print some statistics about the time consumed by each
2753 pass when it finishes.
2754
2755 @item -fmem-report
2756 @opindex fmem-report
2757 Makes the compiler print some statistics about permanent memory
2758 allocation when it finishes.
2759
2760 @item -fprofile-arcs
2761 @opindex fprofile-arcs
2762 Instrument @dfn{arcs} during compilation to generate coverage data
2763 or for profile-directed block ordering.  During execution the program
2764 records how many times each branch is executed and how many times it is
2765 taken.  When the compiled program exits it saves this data to a file
2766 called @file{@var{sourcename}.da} for each source file.
2767
2768 For profile-directed block ordering, compile the program with
2769 @option{-fprofile-arcs} plus optimization and code generation options,
2770 generate the arc profile information by running the program on a
2771 selected workload, and then compile the program again with the same
2772 optimization and code generation options plus
2773 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
2774 Control Optimization}).
2775
2776 The other use of @option{-fprofile-arcs} is for use with @code{gcov},
2777 when it is used with the @option{-ftest-coverage} option.  GCC
2778 supports two methods of determining code coverage: the options that
2779 support @code{gcov}, and options @option{-a} and @option{-ax}, which
2780 write information to text files.  The options that support @code{gcov}
2781 do not need to instrument every arc in the program, so a program compiled
2782 with them runs faster than a program compiled with @option{-a}, which
2783 adds instrumentation code to every basic block in the program.  The
2784 tradeoff: since @code{gcov} does not have execution counts for all
2785 branches, it must start with the execution counts for the instrumented
2786 branches, and then iterate over the program flow graph until the entire
2787 graph has been solved.  Hence, @code{gcov} runs a little more slowly than
2788 a program which uses information from @option{-a} and @option{-ax}.
2789
2790 With @option{-fprofile-arcs}, for each function of your program GCC
2791 creates a program flow graph, then finds a spanning tree for the graph.
2792 Only arcs that are not on the spanning tree have to be instrumented: the
2793 compiler adds code to count the number of times that these arcs are
2794 executed.  When an arc is the only exit or only entrance to a block, the
2795 instrumentation code can be added to the block; otherwise, a new basic
2796 block must be created to hold the instrumentation code.
2797
2798 This option makes it possible to estimate branch probabilities and to
2799 calculate basic block execution counts.  In general, basic block
2800 execution counts as provided by @option{-a} do not give enough
2801 information to estimate all branch probabilities.
2802
2803 @need 2000
2804 @item -ftest-coverage
2805 @opindex ftest-coverage
2806 Create data files for the @code{gcov} code-coverage utility
2807 (@pxref{Gcov,, @code{gcov}: a GCC Test Coverage Program}).
2808 The data file names begin with the name of your source file:
2809
2810 @table @gcctabopt
2811 @item @var{sourcename}.bb
2812 A mapping from basic blocks to line numbers, which @code{gcov} uses to
2813 associate basic block execution counts with line numbers.
2814
2815 @item @var{sourcename}.bbg
2816 A list of all arcs in the program flow graph.  This allows @code{gcov}
2817 to reconstruct the program flow graph, so that it can compute all basic
2818 block and arc execution counts from the information in the
2819 @code{@var{sourcename}.da} file.
2820 @end table
2821
2822 Use @option{-ftest-coverage} with @option{-fprofile-arcs}; the latter
2823 option adds instrumentation to the program, which then writes
2824 execution counts to another data file:
2825
2826 @table @gcctabopt
2827 @item @var{sourcename}.da
2828 Runtime arc execution counts, used in conjunction with the arc
2829 information in the file @code{@var{sourcename}.bbg}.
2830 @end table
2831
2832 Coverage data will map better to the source files if
2833 @option{-ftest-coverage} is used without optimization.
2834
2835 @item -d@var{letters}
2836 @opindex d
2837 Says to make debugging dumps during compilation at times specified by
2838 @var{letters}.  This is used for debugging the compiler.  The file names
2839 for most of the dumps are made by appending a pass number and a word to
2840 the source file name (e.g.  @file{foo.c.00.rtl} or @file{foo.c.01.sibling}).
2841 Here are the possible letters for use in @var{letters}, and their meanings:
2842
2843 @table @samp
2844 @item A
2845 @opindex dA
2846 Annotate the assembler output with miscellaneous debugging information.
2847 @item b
2848 @opindex db
2849 Dump after computing branch probabilities, to @file{@var{file}.14.bp}.
2850 @item B
2851 @opindex dB
2852 Dump after block reordering, to @file{@var{file}.28.bbro}.
2853 @item c
2854 @opindex dc
2855 Dump after instruction combination, to the file @file{@var{file}.16.combine}.
2856 @item C
2857 @opindex dC
2858 Dump after the first if conversion, to the file @file{@var{file}.17.ce}.
2859 @item d
2860 @opindex dd
2861 Dump after delayed branch scheduling, to @file{@var{file}.31.dbr}.
2862 @item D
2863 @opindex dD
2864 Dump all macro definitions, at the end of preprocessing, in addition to
2865 normal output.
2866 @item e
2867 @opindex de
2868 Dump after SSA optimizations, to @file{@var{file}.04.ssa} and
2869 @file{@var{file}.07.ussa}.
2870 @item E
2871 @opindex dE
2872 Dump after the second if conversion, to @file{@var{file}.26.ce2}.
2873 @item f
2874 @opindex df
2875 Dump after life analysis, to @file{@var{file}.15.life}.
2876 @item F
2877 @opindex dF
2878 Dump after purging @code{ADDRESSOF} codes, to @file{@var{file}.09.addressof}.
2879 @item g
2880 @opindex dg
2881 Dump after global register allocation, to @file{@var{file}.21.greg}.
2882 @item h
2883 @opindex dh
2884 Dump after finalization of EH handling code, to @file{@var{file}.02.eh}.
2885 @item o
2886 @opindex do
2887 Dump after post-reload optimizations, to @file{@var{file}.22.postreload}.
2888 @item G
2889 @opindex dG
2890 Dump after GCSE, to @file{@var{file}.10.gcse}.
2891 @item i
2892 @opindex di
2893 Dump after sibling call optimizations, to @file{@var{file}.01.sibling}.
2894 @item j
2895 @opindex dj
2896 Dump after the first jump optimization, to @file{@var{file}.03.jump}.
2897 @item k
2898 @opindex dk
2899 Dump after conversion from registers to stack, to @file{@var{file}.32.stack}.
2900 @item l
2901 @opindex dl
2902 Dump after local register allocation, to @file{@var{file}.20.lreg}.
2903 @item L
2904 @opindex dL
2905 Dump after loop optimization, to @file{@var{file}.11.loop}.
2906 @item M
2907 @opindex dM
2908 Dump after performing the machine dependent reorganisation pass, to
2909 @file{@var{file}.30.mach}.
2910 @item n
2911 @opindex dn
2912 Dump after register renumbering, to @file{@var{file}.25.rnreg}.
2913 @item N
2914 @opindex dN
2915 Dump after the register move pass, to @file{@var{file}.18.regmove}.
2916 @item r
2917 @opindex dr
2918 Dump after RTL generation, to @file{@var{file}.00.rtl}.
2919 @item R
2920 @opindex dR
2921 Dump after the second scheduling pass, to @file{@var{file}.27.sched2}.
2922 @item s
2923 @opindex ds
2924 Dump after CSE (including the jump optimization that sometimes follows
2925 CSE), to @file{@var{file}.08.cse}.
2926 @item S
2927 @opindex dS
2928 Dump after the first scheduling pass, to @file{@var{file}.19.sched}.
2929 @item t
2930 @opindex dt
2931 Dump after the second CSE pass (including the jump optimization that
2932 sometimes follows CSE), to @file{@var{file}.12.cse2}.
2933 @item w
2934 @opindex dw
2935 Dump after the second flow pass, to @file{@var{file}.23.flow2}.
2936 @item X
2937 @opindex dX
2938 Dump after SSA dead code elimination, to @file{@var{file}.06.ssadce}.
2939 @item z
2940 @opindex dz
2941 Dump after the peephole pass, to @file{@var{file}.24.peephole2}.
2942 @item a
2943 @opindex da
2944 Produce all the dumps listed above.
2945 @item m
2946 @opindex dm
2947 Print statistics on memory usage, at the end of the run, to
2948 standard error.
2949 @item p
2950 @opindex dp
2951 Annotate the assembler output with a comment indicating which
2952 pattern and alternative was used.  The length of each instruction is
2953 also printed.
2954 @item P
2955 @opindex dP
2956 Dump the RTL in the assembler output as a comment before each instruction.
2957 Also turns on @option{-dp} annotation.
2958 @item v
2959 @opindex dv
2960 For each of the other indicated dump files (except for
2961 @file{@var{file}.00.rtl}), dump a representation of the control flow graph
2962 suitable for viewing with VCG to @file{@var{file}.@var{pass}.vcg}.
2963 @item x
2964 @opindex dx
2965 Just generate RTL for a function instead of compiling it.  Usually used
2966 with @samp{r}.
2967 @item y
2968 @opindex dy
2969 Dump debugging information during parsing, to standard error.
2970 @end table
2971
2972 @item -fdump-unnumbered
2973 @opindex fdump-unnumbered
2974 When doing debugging dumps (see @option{-d} option above), suppress instruction
2975 numbers and line number note output.  This makes it more feasible to
2976 use diff on debugging dumps for compiler invocations with different
2977 options, in particular with and without @option{-g}.
2978
2979 @item -fdump-class-hierarchy @r{(C++ only)}
2980 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
2981 @opindex fdump-class-hierarchy
2982 Dump a representation of each class's hierarchy and virtual function
2983 table layout to a file.  The file name is made by appending @file{.class}
2984 to the source file name.  If the @samp{-@var{options}} form is used,
2985 @var{options} controls the details of the dump as described for the
2986 @option{-fdump-tree} options.
2987
2988 @item -fdump-tree-@var{switch} @r{(C++ only)}
2989 @itemx -fdump-tree-@var{switch}-@var{options} @r{(C++ only)}
2990 @opindex fdump-tree
2991 Control the dumping at various stages of processing the intermediate
2992 language tree to a file.  The file name is generated by appending a switch
2993 specific suffix to the source file name.  If the @samp{-@var{options}}
2994 form is used, @var{options} is a list of @samp{-} separated options that
2995 control the details of the dump. Not all options are applicable to all
2996 dumps, those which are not meaningful will be ignored. The following
2997 options are available
2998
2999 @table @samp
3000 @item address
3001 Print the address of each node.  Usually this is not meaningful as it
3002 changes according to the environment and source file. Its primary use
3003 is for tying up a dump file with a debug environment.
3004 @item slim
3005 Inhibit dumping of members of a scope or body of a function merely
3006 because that scope has been reached. Only dump such items when they
3007 are directly reachable by some other path.
3008 @item all
3009 Turn on all options.
3010 @end table
3011
3012 The following tree dumps are possible:
3013 @table @samp
3014 @item original
3015 Dump before any tree based optimization, to @file{@var{file}.original}.
3016 @item optimized
3017 Dump after all tree based optimization, to @file{@var{file}.optimized}.
3018 @item inlined
3019 Dump after function inlining, to @file{@var{file}.inlined}.
3020 @end table
3021
3022 @item -fpretend-float
3023 @opindex fpretend-float
3024 When running a cross-compiler, pretend that the target machine uses the
3025 same floating point format as the host machine.  This causes incorrect
3026 output of the actual floating constants, but the actual instruction
3027 sequence will probably be the same as GCC would make when running on
3028 the target machine.
3029
3030 @item -save-temps
3031 @opindex save-temps
3032 Store the usual ``temporary'' intermediate files permanently; place them
3033 in the current directory and name them based on the source file.  Thus,
3034 compiling @file{foo.c} with @samp{-c -save-temps} would produce files
3035 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
3036 preprocessed @file{foo.i} output file even though the compiler now
3037 normally uses an integrated preprocessor.
3038
3039 @item -time
3040 @opindex time
3041 Report the CPU time taken by each subprocess in the compilation
3042 sequence.  For C source files, this is the compiler proper and assembler
3043 (plus the linker if linking is done).  The output looks like this:
3044
3045 @smallexample
3046 # cc1 0.12 0.01
3047 # as 0.00 0.01
3048 @end smallexample
3049
3050 The first number on each line is the ``user time,'' that is time spent
3051 executing the program itself.  The second number is ``system time,''
3052 time spent executing operating system routines on behalf of the program.
3053 Both numbers are in seconds.
3054
3055 @item -print-file-name=@var{library}
3056 @opindex print-file-name
3057 Print the full absolute name of the library file @var{library} that
3058 would be used when linking---and don't do anything else.  With this
3059 option, GCC does not compile or link anything; it just prints the
3060 file name.
3061
3062 @item -print-multi-directory
3063 @opindex print-multi-directory
3064 Print the directory name corresponding to the multilib selected by any
3065 other switches present in the command line.  This directory is supposed
3066 to exist in @env{GCC_EXEC_PREFIX}.
3067
3068 @item -print-multi-lib
3069 @opindex print-multi-lib
3070 Print the mapping from multilib directory names to compiler switches
3071 that enable them.  The directory name is separated from the switches by
3072 @samp{;}, and each switch starts with an @samp{@@} instead of the
3073 @samp{-}, without spaces between multiple switches.  This is supposed to
3074 ease shell-processing.
3075
3076 @item -print-prog-name=@var{program}
3077 @opindex print-prog-name
3078 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
3079
3080 @item -print-libgcc-file-name
3081 @opindex print-libgcc-file-name
3082 Same as @option{-print-file-name=libgcc.a}.
3083
3084 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
3085 but you do want to link with @file{libgcc.a}.  You can do
3086
3087 @example
3088 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
3089 @end example
3090
3091 @item -print-search-dirs
3092 @opindex print-search-dirs
3093 Print the name of the configured installation directory and a list of
3094 program and library directories gcc will search---and don't do anything else.
3095
3096 This is useful when gcc prints the error message
3097 @samp{installation problem, cannot exec cpp0: No such file or directory}.
3098 To resolve this you either need to put @file{cpp0} and the other compiler
3099 components where gcc expects to find them, or you can set the environment
3100 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
3101 Don't forget the trailing '/'.
3102 @xref{Environment Variables}.
3103
3104 @item -dumpmachine
3105 @opindex dumpmachine
3106 Print the compiler's target machine (for example,
3107 @samp{i686-pc-linux-gnu})---and don't do anything else.
3108
3109 @item -dumpversion
3110 @opindex dumpversion
3111 Print the compiler version (for example, @samp{3.0})---and don't do
3112 anything else.
3113
3114 @item -dumpspecs
3115 @opindex dumpspecs
3116 Print the compiler's built-in specs---and don't do anything else.  (This
3117 is used when GCC itself is being built.)  @xref{Spec Files}.
3118 @end table
3119
3120 @node Optimize Options
3121 @section Options That Control Optimization
3122 @cindex optimize options
3123 @cindex options, optimization
3124
3125 These options control various sorts of optimizations:
3126
3127 @table @gcctabopt
3128 @item -O
3129 @itemx -O1
3130 @opindex O
3131 @opindex O1
3132 Optimize.  Optimizing compilation takes somewhat more time, and a lot
3133 more memory for a large function.
3134
3135 Without @option{-O}, the compiler's goal is to reduce the cost of
3136 compilation and to make debugging produce the expected results.
3137 Statements are independent: if you stop the program with a breakpoint
3138 between statements, you can then assign a new value to any variable or
3139 change the program counter to any other statement in the function and
3140 get exactly the results you would expect from the source code.
3141
3142 With @option{-O}, the compiler tries to reduce code size and execution
3143 time, without performing any optimizations that take a great deal of
3144 compilation time.
3145
3146 @item -O2
3147 @opindex O2
3148 Optimize even more.  GCC performs nearly all supported optimizations
3149 that do not involve a space-speed tradeoff.  The compiler does not
3150 perform loop unrolling or function inlining when you specify @option{-O2}.
3151 As compared to @option{-O}, this option increases both compilation time
3152 and the performance of the generated code.
3153
3154 @option{-O2} turns on all optional optimizations except for loop unrolling,
3155 function inlining, and register renaming.  It also turns on the
3156 @option{-fforce-mem} option on all machines and frame pointer elimination
3157 on machines where doing so does not interfere with debugging.
3158
3159 Please note the warning under @option{-fgcse} about
3160 invoking @option{-O2} on programs that use computed gotos.
3161
3162 @item -O3
3163 @opindex O3
3164 Optimize yet more.  @option{-O3} turns on all optimizations specified by
3165 @option{-O2} and also turns on the @option{-finline-functions} and
3166 @option{-frename-registers} options.
3167
3168 @item -O0
3169 @opindex O0
3170 Do not optimize.
3171
3172 @item -Os
3173 @opindex Os
3174 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
3175 do not typically increase code size.  It also performs further
3176 optimizations designed to reduce code size.
3177
3178 If you use multiple @option{-O} options, with or without level numbers,
3179 the last such option is the one that is effective.
3180 @end table
3181
3182 Options of the form @option{-f@var{flag}} specify machine-independent
3183 flags.  Most flags have both positive and negative forms; the negative
3184 form of @option{-ffoo} would be @option{-fno-foo}.  In the table below,
3185 only one of the forms is listed---the one which is not the default.
3186 You can figure out the other form by either removing @samp{no-} or
3187 adding it.
3188
3189 @table @gcctabopt
3190 @item -ffloat-store
3191 @opindex ffloat-store
3192 Do not store floating point variables in registers, and inhibit other
3193 options that might change whether a floating point value is taken from a
3194 register or memory.
3195
3196 @cindex floating point precision
3197 This option prevents undesirable excess precision on machines such as
3198 the 68000 where the floating registers (of the 68881) keep more
3199 precision than a @code{double} is supposed to have.  Similarly for the
3200 x86 architecture.  For most programs, the excess precision does only
3201 good, but a few programs rely on the precise definition of IEEE floating
3202 point.  Use @option{-ffloat-store} for such programs, after modifying
3203 them to store all pertinent intermediate computations into variables.
3204
3205 @item -fno-default-inline
3206 @opindex fno-default-inline
3207 Do not make member functions inline by default merely because they are
3208 defined inside the class scope (C++ only).  Otherwise, when you specify
3209 @w{@option{-O}}, member functions defined inside class scope are compiled
3210 inline by default; i.e., you don't need to add @samp{inline} in front of
3211 the member function name.
3212
3213 @item -fno-defer-pop
3214 @opindex fno-defer-pop
3215 Always pop the arguments to each function call as soon as that function
3216 returns.  For machines which must pop arguments after a function call,
3217 the compiler normally lets arguments accumulate on the stack for several
3218 function calls and pops them all at once.
3219
3220 @item -fforce-mem
3221 @opindex fforce-mem
3222 Force memory operands to be copied into registers before doing
3223 arithmetic on them.  This produces better code by making all memory
3224 references potential common subexpressions.  When they are not common
3225 subexpressions, instruction combination should eliminate the separate
3226 register-load.  The @option{-O2} option turns on this option.
3227
3228 @item -fforce-addr
3229 @opindex fforce-addr
3230 Force memory address constants to be copied into registers before
3231 doing arithmetic on them.  This may produce better code just as
3232 @option{-fforce-mem} may.
3233
3234 @item -fomit-frame-pointer
3235 @opindex fomit-frame-pointer
3236 Don't keep the frame pointer in a register for functions that
3237 don't need one.  This avoids the instructions to save, set up and
3238 restore frame pointers; it also makes an extra register available
3239 in many functions.  @strong{It also makes debugging impossible on
3240 some machines.}
3241
3242 @ifset INTERNALS
3243 On some machines, such as the VAX, this flag has no effect, because
3244 the standard calling sequence automatically handles the frame pointer
3245 and nothing is saved by pretending it doesn't exist.  The
3246 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
3247 whether a target machine supports this flag.  @xref{Registers}.
3248 @end ifset
3249 @ifclear INTERNALS
3250 On some machines, such as the VAX, this flag has no effect, because
3251 the standard calling sequence automatically handles the frame pointer
3252 and nothing is saved by pretending it doesn't exist.  The
3253 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
3254 whether a target machine supports this flag.  @xref{Registers,,Register
3255 Usage, gcc.info, Using and Porting GCC}.
3256 @end ifclear
3257
3258 @item -foptimize-sibling-calls
3259 @opindex foptimize-sibling-calls
3260 Optimize sibling and tail recursive calls.
3261
3262 @item -ftrapv
3263 @opindex ftrapv
3264 This option generates traps for signed overflow on addition, subtraction,
3265 multiplication operations.
3266
3267 @item -fno-inline
3268 @opindex fno-inline
3269 Don't pay attention to the @code{inline} keyword.  Normally this option
3270 is used to keep the compiler from expanding any functions inline.
3271 Note that if you are not optimizing, no functions can be expanded inline.
3272
3273 @item -finline-functions
3274 @opindex finline-functions
3275 Integrate all simple functions into their callers.  The compiler
3276 heuristically decides which functions are simple enough to be worth
3277 integrating in this way.
3278
3279 If all calls to a given function are integrated, and the function is
3280 declared @code{static}, then the function is normally not output as
3281 assembler code in its own right.
3282
3283 @item -finline-limit=@var{n}
3284 @opindex finline-limit
3285 By default, gcc limits the size of functions that can be inlined.  This flag
3286 allows the control of this limit for functions that are explicitly marked as
3287 inline (ie marked with the inline keyword or defined within the class
3288 definition in c++).  @var{n} is the size of functions that can be inlined in
3289 number of pseudo instructions (not counting parameter handling).  The default
3290 value of @var{n} is 600.
3291 Increasing this value can result in more inlined code at
3292 the cost of compilation time and memory consumption.  Decreasing usually makes
3293 the compilation faster and less code will be inlined (which presumably
3294 means slower programs).  This option is particularly useful for programs that
3295 use inlining heavily such as those based on recursive templates with C++.
3296
3297 @emph{Note:} pseudo instruction represents, in this particular context, an
3298 abstract measurement of function's size.  In no way, it represents a count
3299 of assembly instructions and as such its exact meaning might change from one
3300 release to an another.
3301
3302 @item -fkeep-inline-functions
3303 @opindex fkeep-inline-functions
3304 Even if all calls to a given function are integrated, and the function
3305 is declared @code{static}, nevertheless output a separate run-time
3306 callable version of the function.  This switch does not affect
3307 @code{extern inline} functions.
3308
3309 @item -fkeep-static-consts
3310 @opindex fkeep-static-consts
3311 Emit variables declared @code{static const} when optimization isn't turned
3312 on, even if the variables aren't referenced.
3313
3314 GCC enables this option by default.  If you want to force the compiler to
3315 check if the variable was referenced, regardless of whether or not
3316 optimization is turned on, use the @option{-fno-keep-static-consts} option.
3317
3318 @item -fmerge-constants
3319 Attempt to merge identical constants (string constants and floating point
3320 constants) accross compilation units.
3321
3322 This option is default for optimized compilation if assembler and linker
3323 support it.  Use @option{-fno-merge-constants} to inhibit this behavior.
3324
3325 @item -fmerge-all-constants
3326 Attempt to merge identical constants and identical variables.
3327
3328 This option implies @option{-fmerge-constants}.  In addition to
3329 @option{-fmerge-constants} this considers e.g. even constant initialized
3330 arrays or initialized constant variables with integral or floating point
3331 types.  Languages like C or C++ require each non-automatic variable to
3332 have distinct location, so using this option will result in non-conforming
3333 behavior.
3334
3335 @item -fno-function-cse
3336 @opindex fno-function-cse
3337 Do not put function addresses in registers; make each instruction that
3338 calls a constant function contain the function's address explicitly.
3339
3340 This option results in less efficient code, but some strange hacks
3341 that alter the assembler output may be confused by the optimizations
3342 performed when this option is not used.
3343
3344 @item -ffast-math
3345 @opindex ffast-math
3346 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations}, and @*
3347 @option{-fno-trapping-math}.
3348
3349 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
3350
3351 This option should never be turned on by any @option{-O} option since
3352 it can result in incorrect output for programs which depend on
3353 an exact implementation of IEEE or ISO rules/specifications for
3354 math functions.
3355
3356 @item -fno-math-errno
3357 @opindex fno-math-errno
3358 Do not set ERRNO after calling math functions that are executed
3359 with a single instruction, e.g., sqrt.  A program that relies on
3360 IEEE exceptions for math error handling may want to use this flag
3361 for speed while maintaining IEEE arithmetic compatibility.
3362
3363 This option should never be turned on by any @option{-O} option since
3364 it can result in incorrect output for programs which depend on
3365 an exact implementation of IEEE or ISO rules/specifications for
3366 math functions.
3367
3368 The default is @option{-fmath-errno}.
3369
3370 @item -funsafe-math-optimizations
3371 @opindex funsafe-math-optimizations
3372 Allow optimizations for floating-point arithmetic that (a) assume
3373 that arguments and results are valid and (b) may violate IEEE or
3374 ANSI standards.  When used at link-time, it may include libraries
3375 or startup files that change the default FPU control word or other
3376 similar optimizations.
3377
3378 This option should never be turned on by any @option{-O} option since
3379 it can result in incorrect output for programs which depend on
3380 an exact implementation of IEEE or ISO rules/specifications for
3381 math functions.
3382
3383 The default is @option{-fno-unsafe-math-optimizations}.
3384
3385 @item -fno-trapping-math
3386 @opindex fno-trapping-math
3387 Compile code assuming that floating-point operations cannot generate
3388 user-visible traps.  Setting this option may allow faster code
3389 if one relies on ``non-stop'' IEEE arithmetic, for example.
3390
3391 This option should never be turned on by any @option{-O} option since
3392 it can result in incorrect output for programs which depend on
3393 an exact implementation of IEEE or ISO rules/specifications for
3394 math functions.
3395
3396 The default is @option{-ftrapping-math}.
3397 @end table
3398
3399 The following options control specific optimizations.  The @option{-O2}
3400 option turns on all of these optimizations except @option{-funroll-loops}
3401 and @option{-funroll-all-loops}.  On most machines, the @option{-O} option
3402 turns on the @option{-fthread-jumps} and @option{-fdelayed-branch} options,
3403 but specific machines may handle it differently.
3404
3405 You can use the following flags in the rare cases when ``fine-tuning''
3406 of optimizations to be performed is desired.
3407
3408 Not all of the optimizations performed by GCC have @option{-f} options
3409 to control them.
3410
3411 @table @gcctabopt
3412 @item -fstrength-reduce
3413 @opindex fstrength-reduce
3414 Perform the optimizations of loop strength reduction and
3415 elimination of iteration variables.
3416
3417 @item -fthread-jumps
3418 @opindex fthread-jumps
3419 Perform optimizations where we check to see if a jump branches to a
3420 location where another comparison subsumed by the first is found.  If
3421 so, the first branch is redirected to either the destination of the
3422 second branch or a point immediately following it, depending on whether
3423 the condition is known to be true or false.
3424
3425 @item -fcse-follow-jumps
3426 @opindex fcse-follow-jumps
3427 In common subexpression elimination, scan through jump instructions
3428 when the target of the jump is not reached by any other path.  For
3429 example, when CSE encounters an @code{if} statement with an
3430 @code{else} clause, CSE will follow the jump when the condition
3431 tested is false.
3432
3433 @item -fcse-skip-blocks
3434 @opindex fcse-skip-blocks
3435 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
3436 follow jumps which conditionally skip over blocks.  When CSE
3437 encounters a simple @code{if} statement with no else clause,
3438 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
3439 body of the @code{if}.
3440
3441 @item -frerun-cse-after-loop
3442 @opindex frerun-cse-after-loop
3443 Re-run common subexpression elimination after loop optimizations has been
3444 performed.
3445
3446 @item -frerun-loop-opt
3447 @opindex frerun-loop-opt
3448 Run the loop optimizer twice.
3449
3450 @item -fgcse
3451 @opindex fgcse
3452 Perform a global common subexpression elimination pass.
3453 This pass also performs global constant and copy propagation.
3454
3455 @emph{Note:} When compiling a program using computed gotos, a GCC
3456 extension, you may get better runtime performance if you disable
3457 the global common subexpression elmination pass by adding
3458 @option{-fno-gcse} to the command line.
3459
3460 @item -fgcse-lm
3461 @opindex fgcse-lm
3462 When @option{-fgcse-lm} is enabled, global common subexpression elimination will
3463 attempt to move loads which are only killed by stores into themselves.  This
3464 allows a loop containing a load/store sequence to be changed to a load outside
3465 the loop, and a copy/store within the loop.
3466
3467 @item -fgcse-sm
3468 @opindex fgcse-sm
3469 When @option{-fgcse-sm} is enabled, A store motion pass is run after global common
3470 subexpression elimination.  This pass will attempt to move stores out of loops.
3471 When used in conjunction with @option{-fgcse-lm}, loops containing a load/store sequence
3472 can be changed to a load before the loop and a store after the loop.
3473
3474 @item -fdelete-null-pointer-checks
3475 @opindex fdelete-null-pointer-checks
3476 Use global dataflow analysis to identify and eliminate useless checks
3477 for null pointers.  The compiler assumes that dereferencing a null
3478 pointer would have halted the program.  If a pointer is checked after
3479 it has already been dereferenced, it cannot be null.
3480
3481 In some environments, this assumption is not true, and programs can
3482 safely dereference null pointers.  Use
3483 @option{-fno-delete-null-pointer-checks} to disable this optimization
3484 for programs which depend on that behavior.
3485
3486 @item -fexpensive-optimizations
3487 @opindex fexpensive-optimizations
3488 Perform a number of minor optimizations that are relatively expensive.
3489
3490 @item -foptimize-register-move
3491 @itemx -fregmove
3492 @opindex foptimize-register-move
3493 @opindex fregmove
3494 Attempt to reassign register numbers in move instructions and as
3495 operands of other simple instructions in order to maximize the amount of
3496 register tying.  This is especially helpful on machines with two-operand
3497 instructions.  GCC enables this optimization by default with @option{-O2}
3498 or higher.
3499
3500 Note @option{-fregmove} and @option{-foptimize-register-move} are the same
3501 optimization.
3502
3503 @item -fdelayed-branch
3504 @opindex fdelayed-branch
3505 If supported for the target machine, attempt to reorder instructions
3506 to exploit instruction slots available after delayed branch
3507 instructions.
3508
3509 @item -fschedule-insns
3510 @opindex fschedule-insns
3511 If supported for the target machine, attempt to reorder instructions to
3512 eliminate execution stalls due to required data being unavailable.  This
3513 helps machines that have slow floating point or memory load instructions
3514 by allowing other instructions to be issued until the result of the load
3515 or floating point instruction is required.
3516
3517 @item -fschedule-insns2
3518 @opindex fschedule-insns2
3519 Similar to @option{-fschedule-insns}, but requests an additional pass of
3520 instruction scheduling after register allocation has been done.  This is
3521 especially useful on machines with a relatively small number of
3522 registers and where memory load instructions take more than one cycle.
3523
3524 @item -ffunction-sections
3525 @itemx -fdata-sections
3526 @opindex ffunction-sections
3527 @opindex fdata-sections
3528 Place each function or data item into its own section in the output
3529 file if the target supports arbitrary sections.  The name of the
3530 function or the name of the data item determines the section's name
3531 in the output file.
3532
3533 Use these options on systems where the linker can perform optimizations
3534 to improve locality of reference in the instruction space.  HPPA
3535 processors running HP-UX and Sparc processors running Solaris 2 have
3536 linkers with such optimizations.  Other systems using the ELF object format
3537 as well as AIX may have these optimizations in the future.
3538
3539 Only use these options when there are significant benefits from doing
3540 so.  When you specify these options, the assembler and linker will
3541 create larger object and executable files and will also be slower.
3542 You will not be able to use @code{gprof} on all systems if you
3543 specify this option and you may have problems with debugging if
3544 you specify both this option and @option{-g}.
3545
3546 @item -fcaller-saves
3547 @opindex fcaller-saves
3548 Enable values to be allocated in registers that will be clobbered by
3549 function calls, by emitting extra instructions to save and restore the
3550 registers around such calls.  Such allocation is done only when it
3551 seems to result in better code than would otherwise be produced.
3552
3553 This option is always enabled by default on certain machines, usually
3554 those which have no call-preserved registers to use instead.
3555
3556 For all machines, optimization level 2 and higher enables this flag by
3557 default.
3558
3559 @item -funroll-loops
3560 @opindex funroll-loops
3561 Unroll loops whose number of iterations can be determined at compile
3562 time or upon entry to the loop.  @option{-funroll-loops} implies both
3563 @option{-fstrength-reduce} and @option{-frerun-cse-after-loop}.  This
3564 option makes code larger, and may or may not make it run faster.
3565
3566 @item -funroll-all-loops
3567 @opindex funroll-all-loops
3568 Unroll all loops, even if their number of iterations is uncertain when
3569 the loop is entered.  This usually makes programs run more slowly.
3570 @option{-funroll-all-loops} implies the same options as
3571 @option{-funroll-loops},
3572
3573
3574 @item -fmove-all-movables
3575 @opindex fmove-all-movables
3576 Forces all invariant computations in loops to be moved
3577 outside the loop.
3578
3579 @item -freduce-all-givs
3580 @opindex freduce-all-givs
3581 Forces all general-induction variables in loops to be
3582 strength-reduced.
3583
3584 @emph{Note:} When compiling programs written in Fortran,
3585 @option{-fmove-all-movables} and @option{-freduce-all-givs} are enabled
3586 by default when you use the optimizer.
3587
3588 These options may generate better or worse code; results are highly
3589 dependent on the structure of loops within the source code.
3590
3591 These two options are intended to be removed someday, once
3592 they have helped determine the efficacy of various
3593 approaches to improving loop optimizations.
3594
3595 Please let us (@w{@email{gcc@@gcc.gnu.org}} and @w{@email{fortran@@gnu.org}})
3596 know how use of these options affects
3597 the performance of your production code.
3598 We're very interested in code that runs @emph{slower}
3599 when these options are @emph{enabled}.
3600
3601 @item -fno-peephole
3602 @itemx -fno-peephole2
3603 @opindex fno-peephole
3604 @opindex fno-peephole2
3605 Disable any machine-specific peephole optimizations.  The difference
3606 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
3607 are implemented in the compiler; some targets use one, some use the
3608 other, a few use both.
3609
3610 @item -fbranch-probabilities
3611 @opindex fbranch-probabilities
3612 After running a program compiled with @option{-fprofile-arcs}
3613 (@pxref{Debugging Options,, Options for Debugging Your Program or
3614 @command{gcc}}), you can compile it a second time using
3615 @option{-fbranch-probabilities}, to improve optimizations based on
3616 the number of times each branch was taken.  When the program
3617 compiled with @option{-fprofile-arcs} exits it saves arc execution
3618 counts to a file called @file{@var{sourcename}.da} for each source
3619 file  The information in this data file is very dependent on the
3620 structure of the generated code, so you must use the same source code
3621 and the same optimization options for both compilations.
3622
3623 @ifset INTERNALS
3624 With @option{-fbranch-probabilities}, GCC puts a @samp{REG_EXEC_COUNT}
3625 note on the first instruction of each basic block, and a
3626 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
3627 These can be used to improve optimization.  Currently, they are only
3628 used in one place: in @file{reorg.c}, instead of guessing which path a
3629 branch is mostly to take, the @samp{REG_BR_PROB} values are used to
3630 exactly determine which path is taken more often.
3631 @end ifset
3632
3633 @item -fno-guess-branch-probability
3634 @opindex fno-guess-branch-probability
3635 Do not guess branch probabilities using a randomized model.
3636
3637 Sometimes gcc will opt to use a randomized model to guess branch
3638 probabilities, when none are available from either profiling feedback
3639 (@option{-fprofile-arcs}) or @samp{__builtin_expect}.  This means that
3640 different runs of the compiler on the same program may produce different
3641 object code.
3642
3643 In a hard real-time system, people don't want different runs of the
3644 compiler to produce code that has different behavior; minimizing
3645 non-determinism is of paramount import.  This switch allows users to
3646 reduce non-determinism, possibly at the expense of inferior
3647 optimization.
3648
3649 @item -fstrict-aliasing
3650 @opindex fstrict-aliasing
3651 Allows the compiler to assume the strictest aliasing rules applicable to
3652 the language being compiled.  For C (and C++), this activates
3653 optimizations based on the type of expressions.  In particular, an
3654 object of one type is assumed never to reside at the same address as an
3655 object of a different type, unless the types are almost the same.  For
3656 example, an @code{unsigned int} can alias an @code{int}, but not a
3657 @code{void*} or a @code{double}.  A character type may alias any other
3658 type.
3659
3660 Pay special attention to code like this:
3661 @example
3662 union a_union @{
3663   int i;
3664   double d;
3665 @};
3666
3667 int f() @{
3668   a_union t;
3669   t.d = 3.0;
3670   return t.i;
3671 @}
3672 @end example
3673 The practice of reading from a different union member than the one most
3674 recently written to (called ``type-punning'') is common.  Even with
3675 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
3676 is accessed through the union type.  So, the code above will work as
3677 expected.  However, this code might not:
3678 @example
3679 int f() @{
3680   a_union t;
3681   int* ip;
3682   t.d = 3.0;
3683   ip = &t.i;
3684   return *ip;
3685 @}
3686 @end example
3687
3688 @ifset INTERNALS
3689 Every language that wishes to perform language-specific alias analysis
3690 should define a function that computes, given an @code{tree}
3691 node, an alias set for the node.  Nodes in different alias sets are not
3692 allowed to alias.  For an example, see the C front-end function
3693 @code{c_get_alias_set}.
3694 @end ifset
3695
3696 @item -falign-functions
3697 @itemx -falign-functions=@var{n}
3698 @opindex falign-functions
3699 Align the start of functions to the next power-of-two greater than
3700 @var{n}, skipping up to @var{n} bytes.  For instance,
3701 @option{-falign-functions=32} aligns functions to the next 32-byte
3702 boundary, but @option{-falign-functions=24} would align to the next
3703 32-byte boundary only if this can be done by skipping 23 bytes or less.
3704
3705 @option{-fno-align-functions} and @option{-falign-functions=1} are
3706 equivalent and mean that functions will not be aligned.
3707
3708 Some assemblers only support this flag when @var{n} is a power of two;
3709 in that case, it is rounded up.
3710
3711 If @var{n} is not specified, use a machine-dependent default.
3712
3713 @item -falign-labels
3714 @itemx -falign-labels=@var{n}
3715 @opindex falign-labels
3716 Align all branch targets to a power-of-two boundary, skipping up to
3717 @var{n} bytes like @option{-falign-functions}.  This option can easily
3718 make code slower, because it must insert dummy operations for when the
3719 branch target is reached in the usual flow of the code.
3720
3721 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
3722 are greater than this value, then their values are used instead.
3723
3724 If @var{n} is not specified, use a machine-dependent default which is
3725 very likely to be @samp{1}, meaning no alignment.
3726
3727 @item -falign-loops
3728 @itemx -falign-loops=@var{n}
3729 @opindex falign-loops
3730 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
3731 like @option{-falign-functions}.  The hope is that the loop will be
3732 executed many times, which will make up for any execution of the dummy
3733 operations.
3734
3735 If @var{n} is not specified, use a machine-dependent default.
3736
3737 @item -falign-jumps
3738 @itemx -falign-jumps=@var{n}
3739 @opindex falign-jumps
3740 Align branch targets to a power-of-two boundary, for branch targets
3741 where the targets can only be reached by jumping, skipping up to @var{n}
3742 bytes like @option{-falign-functions}.  In this case, no dummy operations
3743 need be executed.
3744
3745 If @var{n} is not specified, use a machine-dependent default.
3746
3747 @item -fssa
3748 @opindex fssa
3749 Perform optimizations in static single assignment form.  Each function's
3750 flow graph is translated into SSA form, optimizations are performed, and
3751 the flow graph is translated back from SSA form.  Users should not
3752 specify this option, since it is not yet ready for production use.
3753
3754 @item -fssa-ccp
3755 @opindex fssa-ccp
3756 Perform Sparse Conditional Constant Propagation in SSA form.  Requires
3757 @option{-fssa}.  Like @option{-fssa}, this is an experimental feature.
3758
3759 @item -fssa-dce
3760 @opindex fssa-dce
3761 Perform aggressive dead-code elimination in SSA form.  Requires @option{-fssa}.
3762 Like @option{-fssa}, this is an experimental feature.
3763
3764 @item -fsingle-precision-constant
3765 @opindex fsingle-precision-constant
3766 Treat floating point constant as single precision constant instead of
3767 implicitly converting it to double precision constant.
3768
3769 @item -frename-registers
3770 @opindex frename-registers
3771 Attempt to avoid false dependencies in scheduled code by making use
3772 of registers left over after register allocation.  This optimization
3773 will most benefit processors with lots of registers.  It can, however,
3774 make debugging impossible, since variables will no longer stay in
3775 a ``home register''.
3776
3777 @item --param @var{name}=@var{value}
3778 @opindex param
3779 In some places, GCC uses various constants to control the amount of
3780 optimization that is done.  For example, GCC will not inline functions
3781 that contain more that a certain number of instructions.  You can
3782 control some of these constants on the command-line using the
3783 @option{--param} option.
3784
3785 In each case, the @var{value} is an integer.  The allowable choices for
3786 @var{name} are given in the following table:
3787
3788 @table @gcctabopt
3789 @item max-delay-slot-insn-search
3790 The maximum number of instructions to consider when looking for an
3791 instruction to fill a delay slot.  If more than this arbitrary number of
3792 instructions is searched, the time savings from filling the delay slot
3793 will be minimal so stop searching.  Increasing values mean more
3794 aggressive optimization, making the compile time increase with probably
3795 small improvement in executable run time.
3796
3797 @item max-delay-slot-live-search
3798 When trying to fill delay slots, the maximum number of instructions to
3799 consider when searching for a block with valid live register
3800 information.  Increasing this arbitrarily chosen value means more
3801 aggressive optimization, increasing the compile time.  This parameter
3802 should be removed when the delay slot code is rewritten to maintain the
3803 control-flow graph.
3804
3805 @item max-gcse-memory
3806 The approximate maximum amount of memory that will be allocated in
3807 order to perform the global common subexpression elimination
3808 optimization.  If more memory than specified is required, the
3809 optimization will not be done.
3810
3811 @item max-gcse-passes
3812 The maximum number of passes of GCSE to run.
3813
3814 @item max-pending-list-length
3815 The maximum number of pending dependencies scheduling will allow
3816 before flushing the current state and starting over.  Large functions
3817 with few branches or calls can create excessively large lists which
3818 needlessly consume memory and resources.
3819
3820 @item max-inline-insns
3821 If an function contains more than this many instructions, it
3822 will not be inlined.  This option is precisely equivalent to
3823 @option{-finline-limit}.
3824
3825 @end table
3826 @end table
3827
3828 @node Preprocessor Options
3829 @section Options Controlling the Preprocessor
3830 @cindex preprocessor options
3831 @cindex options, preprocessor
3832
3833 These options control the C preprocessor, which is run on each C source
3834 file before actual compilation.
3835
3836 If you use the @option{-E} option, nothing is done except preprocessing.
3837 Some of these options make sense only together with @option{-E} because
3838 they cause the preprocessor output to be unsuitable for actual
3839 compilation.
3840
3841 @table @gcctabopt
3842 @item -include @var{file}
3843 @opindex include
3844 Process @var{file} as input before processing the regular input file.
3845 In effect, the contents of @var{file} are compiled first.  Any @option{-D}
3846 and @option{-U} options on the command line are always processed before
3847 @option{-include @var{file}}, regardless of the order in which they are
3848 written.  All the @option{-include} and @option{-imacros} options are
3849 processed in the order in which they are written.
3850
3851 @item -imacros @var{file}
3852 @opindex imacros
3853 Process @var{file} as input, discarding the resulting output, before
3854 processing the regular input file.  Because the output generated from
3855 @var{file} is discarded, the only effect of @option{-imacros @var{file}}
3856 is to make the macros defined in @var{file} available for use in the
3857 main input.  All the @option{-include} and @option{-imacros} options are
3858 processed in the order in which they are written.
3859
3860 @item -idirafter @var{dir}
3861 @opindex idirafter
3862 @cindex second include path
3863 Add the directory @var{dir} to the second include path.  The directories
3864 on the second include path are searched when a header file is not found
3865 in any of the directories in the main include path (the one that
3866 @option{-I} adds to).
3867
3868 @item -iprefix @var{prefix}
3869 @opindex iprefix
3870 Specify @var{prefix} as the prefix for subsequent @option{-iwithprefix}
3871 options.
3872
3873 @item -iwithprefix @var{dir}
3874 @opindex iwithprefix
3875 Add a directory to the second include path.  The directory's name is
3876 made by concatenating @var{prefix} and @var{dir}, where @var{prefix} was
3877 specified previously with @option{-iprefix}.  If you have not specified a
3878 prefix yet, the directory containing the installed passes of the
3879 compiler is used as the default.
3880
3881 @item -iwithprefixbefore @var{dir}
3882 @opindex iwithprefixbefore
3883 Add a directory to the main include path.  The directory's name is made
3884 by concatenating @var{prefix} and @var{dir}, as in the case of
3885 @option{-iwithprefix}.
3886
3887 @item -isystem @var{dir}
3888 @opindex isystem
3889 Add a directory to the beginning of the second include path, marking it
3890 as a system directory, so that it gets the same special treatment as
3891 is applied to the standard system directories.
3892
3893 @item -nostdinc
3894 @opindex nostdinc
3895 Do not search the standard system directories for header files.  Only
3896 the directories you have specified with @option{-I} options (and the
3897 current directory, if appropriate) are searched.  @xref{Directory
3898 Options}, for information on @option{-I}.
3899
3900 By using both @option{-nostdinc} and @option{-I-}, you can limit the include-file
3901 search path to only those directories you specify explicitly.
3902
3903 @item -remap
3904 @opindex remap
3905 When searching for a header file in a directory, remap file names if a
3906 file named @file{header.gcc} exists in that directory.  This can be used
3907 to work around limitations of file systems with file name restrictions.
3908 The @file{header.gcc} file should contain a series of lines with two
3909 tokens on each line: the first token is the name to map, and the second
3910 token is the actual name to use.
3911
3912 @item -undef
3913 @opindex undef
3914 Do not predefine any nonstandard macros.  (Including architecture flags).
3915
3916 @item -E
3917 @opindex E
3918 Run only the C preprocessor.  Preprocess all the C source files
3919 specified and output the results to standard output or to the
3920 specified output file.
3921
3922 @item -C
3923 @opindex C
3924 Tell the preprocessor not to discard comments.  Used with the
3925 @option{-E} option.
3926
3927 @item -P
3928 @opindex P
3929 Tell the preprocessor not to generate @samp{#line} directives.
3930 Used with the @option{-E} option.
3931
3932 @cindex make
3933 @cindex dependencies, make
3934 @item -M
3935 @opindex M
3936 Instead of outputting the result of preprocessing, output a rule
3937 suitable for @code{make} describing the dependencies of the main source
3938 file.  The preprocessor outputs one @code{make} rule containing the
3939 object file name for that source file, a colon, and the names of all the
3940 included files.  Unless overridden explicitly, the object file name
3941 consists of the basename of the source file with any suffix replaced with
3942 object file suffix.  If there are many included files then the
3943 rule is split into several lines using @samp{\}-newline.
3944
3945 @option{-M} implies @option{-E}.
3946
3947 @item -MM
3948 @opindex MM
3949 Like @option{-M}, but mention only the files included with @samp{#include
3950 "@var{file}"}.  System header files included with @samp{#include
3951 <@var{file}>} are omitted.
3952
3953 @item -MD
3954 @opindex MD
3955 Like @option{-M} but the dependency information is written to a file
3956 rather than stdout.  @code{gcc} will use the same file name and
3957 directory as the object file, but with the suffix @file{.d} instead.
3958
3959 This is in addition to compiling the main file as specified---@option{-MD}
3960 does not inhibit ordinary compilation the way @option{-M} does,
3961 unless you also specify @option{-MG}.
3962
3963 With Mach, you can use the utility @code{md} to merge multiple
3964 dependency files into a single dependency file suitable for using with
3965 the @samp{make} command.
3966
3967 @item -MMD
3968 @opindex MMD
3969 Like @option{-MD} except mention only user header files, not system
3970 -header files.
3971
3972 @item -MF @var{file}
3973 @opindex MF
3974 When used with @option{-M} or @option{-MM}, specifies a file to write the
3975 dependencies to.  This allows the preprocessor to write the preprocessed
3976 file to stdout normally.  If no @option{-MF} switch is given, CPP sends
3977 the rules to stdout and suppresses normal preprocessed output.
3978
3979 Another way to specify output of a @code{make} rule is by setting
3980 the environment variable @env{DEPENDENCIES_OUTPUT} (@pxref{Environment
3981 Variables}).
3982
3983 @item -MG
3984 @opindex MG
3985 When used with @option{-M} or @option{-MM}, @option{-MG} says to treat missing
3986 header files as generated files and assume they live in the same
3987 directory as the source file.  It suppresses preprocessed output, as a
3988 missing header file is ordinarily an error.
3989
3990 This feature is used in automatic updating of makefiles.
3991
3992 @item -MP
3993 @opindex MP
3994 This option instructs CPP to add a phony target for each dependency
3995 other than the main file, causing each to depend on nothing.  These
3996 dummy rules work around errors @code{make} gives if you remove header
3997 files without updating the @code{Makefile} to match.
3998
3999 This is typical output:-
4000
4001 @smallexample
4002 /tmp/test.o: /tmp/test.c /tmp/test.h
4003
4004 /tmp/test.h:
4005 @end smallexample
4006
4007 @item -MQ @var{target}
4008 @item -MT @var{target}
4009 @opindex MQ
4010 @opindex MT
4011 By default CPP uses the main file name, including any path, and appends
4012 the object suffix, normally ``.o'', to it to obtain the name of the
4013 target for dependency generation.  With @option{-MT} you can specify a
4014 target yourself, overriding the default one.
4015
4016 If you want multiple targets, you can specify them as a single argument
4017 to @option{-MT}, or use multiple @option{-MT} options.
4018
4019 The targets you specify are output in the order they appear on the
4020 command line.  @option{-MQ} is identical to @option{-MT}, except that the
4021 target name is quoted for Make, but with @option{-MT} it isn't.  For
4022 example, @option{-MT '$(objpfx)foo.o'} gives
4023
4024 @smallexample
4025 $(objpfx)foo.o: /tmp/foo.c
4026 @end smallexample
4027
4028 but @option{-MQ '$(objpfx)foo.o'} gives
4029
4030 @smallexample
4031 $$(objpfx)foo.o: /tmp/foo.c
4032 @end smallexample
4033
4034 The default target is automatically quoted, as if it were given with
4035 @option{-MQ}.
4036
4037 @item -H
4038 @opindex H
4039 Print the name of each header file used, in addition to other normal
4040 activities.
4041
4042 @item -A@var{question}(@var{answer})
4043 @opindex A
4044 Assert the answer @var{answer} for @var{question}, in case it is tested
4045 with a preprocessing conditional such as @samp{#if
4046 #@var{question}(@var{answer})}.  @option{-A-} disables the standard
4047 assertions that normally describe the target machine.
4048
4049 @item -D@var{macro}
4050 @opindex D
4051 Define macro @var{macro} with the string @samp{1} as its definition.
4052
4053 @item -D@var{macro}=@var{defn}
4054 Define macro @var{macro} as @var{defn}.  All instances of @option{-D} on
4055 the command line are processed before any @option{-U} options.
4056
4057 Any @option{-D} and @option{-U} options on the command line are processed in
4058 order, and always before @option{-imacros @var{file}}, regardless of the
4059 order in which they are written.
4060
4061 @item -U@var{macro}
4062 @opindex U
4063 Undefine macro @var{macro}.  @option{-U} options are evaluated after all
4064 @option{-D} options, but before any @option{-include} and @option{-imacros}
4065 options.
4066
4067 Any @option{-D} and @option{-U} options on the command line are processed in
4068 order, and always before @option{-imacros @var{file}}, regardless of the
4069 order in which they are written.
4070
4071 @item -dM
4072 @opindex dM
4073 Tell the preprocessor to output only a list of the macro definitions
4074 that are in effect at the end of preprocessing.  Used with the @option{-E}
4075 option.
4076
4077 @item -dD
4078 @opindex dD
4079 Tell the preprocessing to pass all macro definitions into the output, in
4080 their proper sequence in the rest of the output.
4081
4082 @item -dN
4083 @opindex dN
4084 Like @option{-dD} except that the macro arguments and contents are omitted.
4085 Only @samp{#define @var{name}} is included in the output.
4086
4087 @item -dI
4088 @opindex dI
4089 Output @samp{#include} directives in addition to the result of
4090 preprocessing.
4091
4092 @item -fpreprocessed
4093 @opindex fpreprocessed
4094 Indicate to the preprocessor that the input file has already been
4095 preprocessed.  This suppresses things like macro expansion, trigraph
4096 conversion, escaped newline splicing, and processing of most directives.
4097 The preprocessor still recognizes and removes comments, so that you can
4098 pass a file preprocessed with @option{-C} to the compiler without
4099 problems.  In this mode the integrated preprocessor is little more than
4100 a tokenizer for the front ends.
4101
4102 @option{-fpreprocessed} is implicit if the input file has one of the
4103 extensions @samp{i}, @samp{ii} or @samp{mi}.  These are the extensions
4104 that GCC uses for preprocessed files created by @option{-save-temps}.
4105
4106 @item -trigraphs
4107 @opindex trigraphs
4108 Process ISO standard trigraph sequences.  These are three-character
4109 sequences, all starting with @samp{??}, that are defined by ISO C to
4110 stand for single characters.  For example, @samp{??/} stands for
4111 @samp{\}, so @samp{'??/n'} is a character constant for a newline.  By
4112 default, GCC ignores trigraphs, but in standard-conforming modes it
4113 converts them.  See the @option{-std} and @option{-ansi} options.
4114
4115 The nine trigraph sequences are
4116 @table @samp
4117 @item ??(
4118 @expansion{} @samp{[}
4119
4120 @item ??)
4121 @expansion{} @samp{]}
4122
4123 @item ??<
4124 @expansion{} @samp{@{}
4125
4126 @item ??>
4127 @expansion{} @samp{@}}
4128
4129 @item ??=
4130 @expansion{} @samp{#}
4131
4132 @item ??/
4133 @expansion{} @samp{\}
4134
4135 @item ??'
4136 @expansion{} @samp{^}
4137
4138 @item ??!
4139 @expansion{} @samp{|}
4140
4141 @item ??-
4142 @expansion{} @samp{~}
4143
4144 @end table
4145
4146 Trigraph support is not popular, so many compilers do not implement it
4147 properly.  Portable code should not rely on trigraphs being either
4148 converted or ignored.
4149
4150 @item -Wp,@var{option}
4151 @opindex Wp
4152 Pass @var{option} as an option to the preprocessor.  If @var{option}
4153 contains commas, it is split into multiple options at the commas.
4154 @end table
4155
4156 @node Assembler Options
4157 @section Passing Options to the Assembler
4158
4159 @c prevent bad page break with this line
4160 You can pass options to the assembler.
4161
4162 @table @gcctabopt
4163 @item -Wa,@var{option}
4164 @opindex Wa
4165 Pass @var{option} as an option to the assembler.  If @var{option}
4166 contains commas, it is split into multiple options at the commas.
4167 @end table
4168
4169 @node Link Options
4170 @section Options for Linking
4171 @cindex link options
4172 @cindex options, linking
4173
4174 These options come into play when the compiler links object files into
4175 an executable output file.  They are meaningless if the compiler is
4176 not doing a link step.
4177
4178 @table @gcctabopt
4179 @cindex file names
4180 @item @var{object-file-name}
4181 A file name that does not end in a special recognized suffix is
4182 considered to name an object file or library.  (Object files are
4183 distinguished from libraries by the linker according to the file
4184 contents.)  If linking is done, these object files are used as input
4185 to the linker.
4186
4187 @item -c
4188 @itemx -S
4189 @itemx -E
4190 @opindex c
4191 @opindex S
4192 @opindex E
4193 If any of these options is used, then the linker is not run, and
4194 object file names should not be used as arguments.  @xref{Overall
4195 Options}.
4196
4197 @cindex Libraries
4198 @item -l@var{library}
4199 @itemx -l @var{library}
4200 @opindex l
4201 Search the library named @var{library} when linking.  (The second
4202 alternative with the library as a separate argument is only for
4203 POSIX compliance and is not recommended.)
4204
4205 It makes a difference where in the command you write this option; the
4206 linker searches and processes libraries and object files in the order they
4207 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
4208 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
4209 to functions in @samp{z}, those functions may not be loaded.
4210
4211 The linker searches a standard list of directories for the library,
4212 which is actually a file named @file{lib@var{library}.a}.  The linker
4213 then uses this file as if it had been specified precisely by name.
4214
4215 The directories searched include several standard system directories
4216 plus any that you specify with @option{-L}.
4217
4218 Normally the files found this way are library files---archive files
4219 whose members are object files.  The linker handles an archive file by
4220 scanning through it for members which define symbols that have so far
4221 been referenced but not defined.  But if the file that is found is an
4222 ordinary object file, it is linked in the usual fashion.  The only
4223 difference between using an @option{-l} option and specifying a file name
4224 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
4225 and searches several directories.
4226
4227 @item -lobjc
4228 @opindex lobjc
4229 You need this special case of the @option{-l} option in order to
4230 link an Objective-C program.
4231
4232 @item -nostartfiles
4233 @opindex nostartfiles
4234 Do not use the standard system startup files when linking.
4235 The standard system libraries are used normally, unless @option{-nostdlib}
4236 or @option{-nodefaultlibs} is used.
4237
4238 @item -nodefaultlibs
4239 @opindex nodefaultlibs
4240 Do not use the standard system libraries when linking.
4241 Only the libraries you specify will be passed to the linker.
4242 The standard startup files are used normally, unless @option{-nostartfiles}
4243 is used.  The compiler may generate calls to memcmp, memset, and memcpy
4244 for System V (and ISO C) environments or to bcopy and bzero for
4245 BSD environments.  These entries are usually resolved by entries in
4246 libc.  These entry points should be supplied through some other
4247 mechanism when this option is specified.
4248
4249 @item -nostdlib
4250 @opindex nostdlib
4251 Do not use the standard system startup files or libraries when linking.
4252 No startup files and only the libraries you specify will be passed to
4253 the linker.  The compiler may generate calls to memcmp, memset, and memcpy
4254 for System V (and ISO C) environments or to bcopy and bzero for
4255 BSD environments.  These entries are usually resolved by entries in
4256 libc.  These entry points should be supplied through some other
4257 mechanism when this option is specified.
4258
4259 @cindex @option{-lgcc}, use with @option{-nostdlib}
4260 @cindex @option{-nostdlib} and unresolved references
4261 @cindex unresolved references and @option{-nostdlib}
4262 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
4263 @cindex @option{-nodefaultlibs} and unresolved references
4264 @cindex unresolved references and @option{-nodefaultlibs}
4265 One of the standard libraries bypassed by @option{-nostdlib} and
4266 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
4267 that GCC uses to overcome shortcomings of particular machines, or special
4268 needs for some languages.
4269 @ifset INTERNALS
4270 (@xref{Interface,,Interfacing to GCC Output}, for more discussion of
4271 @file{libgcc.a}.)
4272 @end ifset
4273 @ifclear INTERNALS
4274 (@xref{Interface,,Interfacing to GCC Output,gcc.info,Porting GCC},
4275 for more discussion of @file{libgcc.a}.)
4276 @end ifclear
4277 In most cases, you need @file{libgcc.a} even when you want to avoid
4278 other standard libraries.  In other words, when you specify @option{-nostdlib}
4279 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
4280 This ensures that you have no unresolved references to internal GCC
4281 library subroutines.  (For example, @samp{__main}, used to ensure C++
4282 constructors will be called; @pxref{Collect2,,@command{collect2}}.)
4283
4284 @item -s
4285 @opindex s
4286 Remove all symbol table and relocation information from the executable.
4287
4288 @item -static
4289 @opindex static
4290 On systems that support dynamic linking, this prevents linking with the shared
4291 libraries.  On other systems, this option has no effect.
4292
4293 @item -shared
4294 @opindex shared
4295 Produce a shared object which can then be linked with other objects to
4296 form an executable.  Not all systems support this option.  For predictable
4297 results, you must also specify the same set of options that were used to
4298 generate code (@option{-fpic}, @option{-fPIC}, or model suboptions)
4299 when you specify this option.@footnote{On some systems, @samp{gcc -shared}
4300 needs to build supplementary stub code for constructors to work.  On
4301 multi-libbed systems, @samp{gcc -shared} must select the correct support
4302 libraries to link against.  Failing to supply the correct flags may lead
4303 to subtle defects.  Supplying them in cases where they are not necessary
4304 is innocuous.}
4305
4306 @item -shared-libgcc
4307 @itemx -static-libgcc
4308 @opindex shared-libgcc
4309 @opindex static-libgcc
4310 On systems that provide @file{libgcc} as a shared library, these options
4311 force the use of either the shared or static version respectively.
4312 If no shared version of @file{libgcc} was built when the compiler was
4313 configured, these options have no effect.
4314
4315 There are several situations in which an application should use the
4316 shared @file{libgcc} instead of the static version.  The most common
4317 of these is when the application wishes to throw and catch exceptions
4318 across different shared libraries.  In that case, each of the libraries
4319 as well as the application itself should use the shared @file{libgcc}.
4320
4321 Therefore, whenever you specify the @option{-shared} option, the GCC
4322 driver automatically adds @option{-shared-libgcc}, unless you explicitly
4323 specify @option{-static-libgcc}.  The G++ driver automatically adds
4324 @option{-shared-libgcc} when you build a main executable as well because
4325 for C++ programs that is typically the right thing to do.
4326 (Exception-handling will not work reliably otherwise.)
4327
4328 However, when linking a main executable written in C, you must
4329 explicitly say @option{-shared-libgcc} if you want to use the shared
4330 @file{libgcc}.
4331
4332 @item -symbolic
4333 @opindex symbolic
4334 Bind references to global symbols when building a shared object.  Warn
4335 about any unresolved references (unless overridden by the link editor
4336 option @samp{-Xlinker -z -Xlinker defs}).  Only a few systems support
4337 this option.
4338
4339 @item -Xlinker @var{option}
4340 @opindex Xlinker
4341 Pass @var{option} as an option to the linker.  You can use this to
4342 supply system-specific linker options which GCC does not know how to
4343 recognize.
4344
4345 If you want to pass an option that takes an argument, you must use
4346 @option{-Xlinker} twice, once for the option and once for the argument.
4347 For example, to pass @option{-assert definitions}, you must write
4348 @samp{-Xlinker -assert -Xlinker definitions}.  It does not work to write
4349 @option{-Xlinker "-assert definitions"}, because this passes the entire
4350 string as a single argument, which is not what the linker expects.
4351
4352 @item -Wl,@var{option}
4353 @opindex Wl
4354 Pass @var{option} as an option to the linker.  If @var{option} contains
4355 commas, it is split into multiple options at the commas.
4356
4357 @item -u @var{symbol}
4358 @opindex u
4359 Pretend the symbol @var{symbol} is undefined, to force linking of
4360 library modules to define it.  You can use @option{-u} multiple times with
4361 different symbols to force loading of additional library modules.
4362 @end table
4363
4364 @node Directory Options
4365 @section Options for Directory Search
4366 @cindex directory options
4367 @cindex options, directory search
4368 @cindex search path
4369
4370 These options specify directories to search for header files, for
4371 libraries and for parts of the compiler:
4372
4373 @table @gcctabopt
4374 @item -I@var{dir}
4375 @opindex I
4376 Add the directory @var{dir} to the head of the list of directories to be
4377 searched for header files.  This can be used to override a system header
4378 file, substituting your own version, since these directories are
4379 searched before the system header file directories.  However, you should
4380 not use this option to add directories that contain vendor-supplied
4381 system header files (use @option{-isystem} for that).  If you use more than
4382 one @option{-I} option, the directories are scanned in left-to-right
4383 order; the standard system directories come after.
4384
4385 If a standard system include directory, or a directory specified with
4386 @option{-isystem}, is also specified with @option{-I}, it will be
4387 searched only in the position requested by @option{-I}.  Also, it will
4388 not be considered a system include directory.  If that directory really
4389 does contain system headers, there is a good chance that they will
4390 break.  For instance, if GCC's installation procedure edited the headers
4391 in @file{/usr/include} to fix bugs, @samp{-I/usr/include} will cause the
4392 original, buggy headers to be found instead of the corrected ones.  GCC
4393 will issue a warning when a system include directory is hidden in this
4394 way.
4395
4396 @item -I-
4397 @opindex I-
4398 Any directories you specify with @option{-I} options before the @option{-I-}
4399 option are searched only for the case of @samp{#include "@var{file}"};
4400 they are not searched for @samp{#include <@var{file}>}.
4401
4402 If additional directories are specified with @option{-I} options after
4403 the @option{-I-}, these directories are searched for all @samp{#include}
4404 directives.  (Ordinarily @emph{all} @option{-I} directories are used
4405 this way.)
4406
4407 In addition, the @option{-I-} option inhibits the use of the current
4408 directory (where the current input file came from) as the first search
4409 directory for @samp{#include "@var{file}"}.  There is no way to
4410 override this effect of @option{-I-}.  With @option{-I.} you can specify
4411 searching the directory which was current when the compiler was
4412 invoked.  That is not exactly the same as what the preprocessor does
4413 by default, but it is often satisfactory.
4414
4415 @option{-I-} does not inhibit the use of the standard system directories
4416 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
4417 independent.
4418
4419 @item -L@var{dir}
4420 @opindex L
4421 Add directory @var{dir} to the list of directories to be searched
4422 for @option{-l}.
4423
4424 @item -B@var{prefix}
4425 @opindex B
4426 This option specifies where to find the executables, libraries,
4427 include files, and data files of the compiler itself.
4428
4429 The compiler driver program runs one or more of the subprograms
4430 @file{cpp}, @file{cc1}, @file{as} and @file{ld}.  It tries
4431 @var{prefix} as a prefix for each program it tries to run, both with and
4432 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
4433
4434 For each subprogram to be run, the compiler driver first tries the
4435 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
4436 was not specified, the driver tries two standard prefixes, which are
4437 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc-lib/}.  If neither of
4438 those results in a file name that is found, the unmodified program
4439 name is searched for using the directories specified in your
4440 @env{PATH} environment variable.
4441
4442 The compiler will check to see if the path provided by the @option{-B}
4443 refers to a directory, and if necessary it will add a directory
4444 separator character at the end of the path.
4445
4446 @option{-B} prefixes that effectively specify directory names also apply
4447 to libraries in the linker, because the compiler translates these
4448 options into @option{-L} options for the linker.  They also apply to
4449 includes files in the preprocessor, because the compiler translates these
4450 options into @option{-isystem} options for the preprocessor.  In this case,
4451 the compiler appends @samp{include} to the prefix.
4452
4453 The run-time support file @file{libgcc.a} can also be searched for using
4454 the @option{-B} prefix, if needed.  If it is not found there, the two
4455 standard prefixes above are tried, and that is all.  The file is left
4456 out of the link if it is not found by those means.
4457
4458 Another way to specify a prefix much like the @option{-B} prefix is to use
4459 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
4460 Variables}.
4461
4462 As a special kludge, if the path provided by @option{-B} is
4463 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
4464 9, then it will be replaced by @file{[dir/]include}.  This is to help
4465 with boot-strapping the compiler.
4466
4467 @item -specs=@var{file}
4468 @opindex specs
4469 Process @var{file} after the compiler reads in the standard @file{specs}
4470 file, in order to override the defaults that the @file{gcc} driver
4471 program uses when determining what switches to pass to @file{cc1},
4472 @file{cc1plus}, @file{as}, @file{ld}, etc.  More than one
4473 @option{-specs=@var{file}} can be specified on the command line, and they
4474 are processed in order, from left to right.
4475 @end table
4476
4477 @c man end
4478
4479 @node Spec Files
4480 @section Specifying subprocesses and the switches to pass to them
4481 @cindex Spec Files
4482 @command{gcc} is a driver program.  It performs its job by invoking a
4483 sequence of other programs to do the work of compiling, assembling and
4484 linking.  GCC interprets its command-line parameters and uses these to
4485 deduce which programs it should invoke, and which command-line options
4486 it ought to place on their command lines.  This behavior is controlled
4487 by @dfn{spec strings}.  In most cases there is one spec string for each
4488 program that GCC can invoke, but a few programs have multiple spec
4489 strings to control their behavior.  The spec strings built into GCC can
4490 be overridden by using the @option{-specs=} command-line switch to specify
4491 a spec file.
4492
4493 @dfn{Spec files} are plaintext files that are used to construct spec
4494 strings.  They consist of a sequence of directives separated by blank
4495 lines.  The type of directive is determined by the first non-whitespace
4496 character on the line and it can be one of the following:
4497
4498 @table @code
4499 @item %@var{command}
4500 Issues a @var{command} to the spec file processor.  The commands that can
4501 appear here are:
4502
4503 @table @code
4504 @item %include <@var{file}>
4505 @cindex %include
4506 Search for @var{file} and insert its text at the current point in the
4507 specs file.
4508
4509 @item %include_noerr <@var{file}>
4510 @cindex %include_noerr
4511 Just like @samp{%include}, but do not generate an error message if the include
4512 file cannot be found.
4513
4514 @item %rename @var{old_name} @var{new_name}
4515 @cindex %rename
4516 Rename the spec string @var{old_name} to @var{new_name}.
4517
4518 @end table
4519
4520 @item *[@var{spec_name}]:
4521 This tells the compiler to create, override or delete the named spec
4522 string.  All lines after this directive up to the next directive or
4523 blank line are considered to be the text for the spec string.  If this
4524 results in an empty string then the spec will be deleted.  (Or, if the
4525 spec did not exist, then nothing will happened.)  Otherwise, if the spec
4526 does not currently exist a new spec will be created.  If the spec does
4527 exist then its contents will be overridden by the text of this
4528 directive, unless the first character of that text is the @samp{+}
4529 character, in which case the text will be appended to the spec.
4530
4531 @item [@var{suffix}]:
4532 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
4533 and up to the next directive or blank line are considered to make up the
4534 spec string for the indicated suffix.  When the compiler encounters an
4535 input file with the named suffix, it will processes the spec string in
4536 order to work out how to compile that file.  For example:
4537
4538 @smallexample
4539 .ZZ:
4540 z-compile -input %i
4541 @end smallexample
4542
4543 This says that any input file whose name ends in @samp{.ZZ} should be
4544 passed to the program @samp{z-compile}, which should be invoked with the
4545 command-line switch @option{-input} and with the result of performing the
4546 @samp{%i} substitution.  (See below.)
4547
4548 As an alternative to providing a spec string, the text that follows a
4549 suffix directive can be one of the following:
4550
4551 @table @code
4552 @item @@@var{language}
4553 This says that the suffix is an alias for a known @var{language}.  This is
4554 similar to using the @option{-x} command-line switch to GCC to specify a
4555 language explicitly.  For example:
4556
4557 @smallexample
4558 .ZZ:
4559 @@c++
4560 @end smallexample
4561
4562 Says that .ZZ files are, in fact, C++ source files.
4563
4564 @item #@var{name}
4565 This causes an error messages saying:
4566
4567 @smallexample
4568 @var{name} compiler not installed on this system.
4569 @end smallexample
4570 @end table
4571
4572 GCC already has an extensive list of suffixes built into it.
4573 This directive will add an entry to the end of the list of suffixes, but
4574 since the list is searched from the end backwards, it is effectively
4575 possible to override earlier entries using this technique.
4576
4577 @end table
4578
4579 GCC has the following spec strings built into it.  Spec files can
4580 override these strings or create their own.  Note that individual
4581 targets can also add their own spec strings to this list.
4582
4583 @smallexample
4584 asm          Options to pass to the assembler
4585 asm_final    Options to pass to the assembler post-processor
4586 cpp          Options to pass to the C preprocessor
4587 cc1          Options to pass to the C compiler
4588 cc1plus      Options to pass to the C++ compiler
4589 endfile      Object files to include at the end of the link
4590 link         Options to pass to the linker
4591 lib          Libraries to include on the command line to the linker
4592 libgcc       Decides which GCC support library to pass to the linker
4593 linker       Sets the name of the linker
4594 predefines   Defines to be passed to the C preprocessor
4595 signed_char  Defines to pass to CPP to say whether @code{char} is signed
4596              by default
4597 startfile    Object files to include at the start of the link
4598 @end smallexample
4599
4600 Here is a small example of a spec file:
4601
4602 @smallexample
4603 %rename lib                 old_lib
4604
4605 *lib:
4606 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
4607 @end smallexample
4608
4609 This example renames the spec called @samp{lib} to @samp{old_lib} and
4610 then overrides the previous definition of @samp{lib} with a new one.
4611 The new definition adds in some extra command-line options before
4612 including the text of the old definition.
4613
4614 @dfn{Spec strings} are a list of command-line options to be passed to their
4615 corresponding program.  In addition, the spec strings can contain
4616 @samp{%}-prefixed sequences to substitute variable text or to
4617 conditionally insert text into the command line.  Using these constructs
4618 it is possible to generate quite complex command lines.
4619
4620 Here is a table of all defined @samp{%}-sequences for spec
4621 strings.  Note that spaces are not generated automatically around the
4622 results of expanding these sequences.  Therefore you can concatenate them
4623 together or combine them with constant text in a single argument.
4624
4625 @table @code
4626 @item %%
4627 Substitute one @samp{%} into the program name or argument.
4628
4629 @item %i
4630 Substitute the name of the input file being processed.
4631
4632 @item %b
4633 Substitute the basename of the input file being processed.
4634 This is the substring up to (and not including) the last period
4635 and not including the directory.
4636
4637 @item %B
4638 This is the same as @samp{%b}, but include the file suffix (text after
4639 the last period).
4640
4641 @item %d
4642 Marks the argument containing or following the @samp{%d} as a
4643 temporary file name, so that that file will be deleted if GCC exits
4644 successfully.  Unlike @samp{%g}, this contributes no text to the
4645 argument.
4646
4647 @item %g@var{suffix}
4648 Substitute a file name that has suffix @var{suffix} and is chosen
4649 once per compilation, and mark the argument in the same way as
4650 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
4651 name is now chosen in a way that is hard to predict even when previously
4652 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
4653 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
4654 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
4655 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
4656 was simply substituted with a file name chosen once per compilation,
4657 without regard to any appended suffix (which was therefore treated
4658 just like ordinary text), making such attacks more likely to succeed.
4659
4660 @item %u@var{suffix}
4661 Like @samp{%g}, but generates a new temporary file name even if
4662 @samp{%u@var{suffix}} was already seen.
4663
4664 @item %U@var{suffix}
4665 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
4666 new one if there is no such last file name.  In the absence of any
4667 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
4668 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
4669 would involve the generation of two distinct file names, one
4670 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
4671 simply substituted with a file name chosen for the previous @samp{%u},
4672 without regard to any appended suffix.
4673
4674 @item %j@var{SUFFIX}
4675 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
4676 writable, and if save-temps is off; otherwise, substitute the name
4677 of a temporary file, just like @samp{%u}.  This temporary file is not
4678 meant for communication between processes, but rather as a junk
4679 disposal mechanism.
4680
4681 @item %.@var{SUFFIX}
4682 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
4683 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
4684 terminated by the next space or %.
4685
4686 @item %w
4687 Marks the argument containing or following the @samp{%w} as the
4688 designated output file of this compilation.  This puts the argument
4689 into the sequence of arguments that @samp{%o} will substitute later.
4690
4691 @item %o
4692 Substitutes the names of all the output files, with spaces
4693 automatically placed around them.  You should write spaces
4694 around the @samp{%o} as well or the results are undefined.
4695 @samp{%o} is for use in the specs for running the linker.
4696 Input files whose names have no recognized suffix are not compiled
4697 at all, but they are included among the output files, so they will
4698 be linked.
4699
4700 @item %O
4701 Substitutes the suffix for object files.  Note that this is
4702 handled specially when it immediately follows @samp{%g, %u, or %U},
4703 because of the need for those to form complete file names.  The
4704 handling is such that @samp{%O} is treated exactly as if it had already
4705 been substituted, except that @samp{%g, %u, and %U} do not currently
4706 support additional @var{suffix} characters following @samp{%O} as they would
4707 following, for example, @samp{.o}.
4708
4709 @item %p
4710 Substitutes the standard macro predefinitions for the
4711 current target machine.  Use this when running @code{cpp}.
4712
4713 @item %P
4714 Like @samp{%p}, but puts @samp{__} before and after the name of each
4715 predefined macro, except for macros that start with @samp{__} or with
4716 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
4717 C@.
4718
4719 @item %I
4720 Substitute a @option{-iprefix} option made from @env{GCC_EXEC_PREFIX}.
4721
4722 @item %s
4723 Current argument is the name of a library or startup file of some sort.
4724 Search for that file in a standard list of directories and substitute
4725 the full name found.
4726
4727 @item %e@var{str}
4728 Print @var{str} as an error message.  @var{str} is terminated by a newline.
4729 Use this when inconsistent options are detected.
4730
4731 @item %|
4732 Output @samp{-} if the input for the current command is coming from a pipe.
4733
4734 @item %(@var{name})
4735 Substitute the contents of spec string @var{name} at this point.
4736
4737 @item %[@var{name}]
4738 Like @samp{%(@dots{})} but put @samp{__} around @option{-D} arguments.
4739
4740 @item %x@{@var{option}@}
4741 Accumulate an option for @samp{%X}.
4742
4743 @item %X
4744 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
4745 spec string.
4746
4747 @item %Y
4748 Output the accumulated assembler options specified by @option{-Wa}.
4749
4750 @item %Z
4751 Output the accumulated preprocessor options specified by @option{-Wp}.
4752
4753 @item %v1
4754 Substitute the major version number of GCC@.
4755 (For version 2.9.5, this is 2.)
4756
4757 @item %v2
4758 Substitute the minor version number of GCC@.
4759 (For version 2.9.5, this is 9.)
4760
4761 @item %v3
4762 Substitute the patch level number of GCC@.
4763 (For version 2.9.5, this is 5.)
4764
4765 @item %a
4766 Process the @code{asm} spec.  This is used to compute the
4767 switches to be passed to the assembler.
4768
4769 @item %A
4770 Process the @code{asm_final} spec.  This is a spec string for
4771 passing switches to an assembler post-processor, if such a program is
4772 needed.
4773
4774 @item %l
4775 Process the @code{link} spec.  This is the spec for computing the
4776 command line passed to the linker.  Typically it will make use of the
4777 @samp{%L %G %S %D and %E} sequences.
4778
4779 @item %D
4780 Dump out a @option{-L} option for each directory that GCC believes might
4781 contain startup files.  If the target supports multilibs then the
4782 current multilib directory will be prepended to each of these paths.
4783
4784 @item %M
4785 Output the multilib directory with directory separators replaced with
4786 @samp{_}.  If multilib directories are not set, or the multilib directory is
4787 @file{.} then this option emits nothing.
4788
4789 @item %L
4790 Process the @code{lib} spec.  This is a spec string for deciding which
4791 libraries should be included on the command line to the linker.
4792
4793 @item %G
4794 Process the @code{libgcc} spec.  This is a spec string for deciding
4795 which GCC support library should be included on the command line to the linker.
4796
4797 @item %S
4798 Process the @code{startfile} spec.  This is a spec for deciding which
4799 object files should be the first ones passed to the linker.  Typically
4800 this might be a file named @file{crt0.o}.
4801
4802 @item %E
4803 Process the @code{endfile} spec.  This is a spec string that specifies
4804 the last object files that will be passed to the linker.
4805
4806 @item %C
4807 Process the @code{cpp} spec.  This is used to construct the arguments
4808 to be passed to the C preprocessor.
4809
4810 @item %c
4811 Process the @code{signed_char} spec.  This is intended to be used
4812 to tell cpp whether a char is signed.  It typically has the definition:
4813 @smallexample
4814 %@{funsigned-char:-D__CHAR_UNSIGNED__@}
4815 @end smallexample
4816
4817 @item %1
4818 Process the @code{cc1} spec.  This is used to construct the options to be
4819 passed to the actual C compiler (@samp{cc1}).
4820
4821 @item %2
4822 Process the @code{cc1plus} spec.  This is used to construct the options to be
4823 passed to the actual C++ compiler (@samp{cc1plus}).
4824
4825 @item %*
4826 Substitute the variable part of a matched option.  See below.
4827 Note that each comma in the substituted string is replaced by
4828 a single space.
4829
4830 @item %@{@code{S}@}
4831 Substitutes the @code{-S} switch, if that switch was given to GCC@.
4832 If that switch was not specified, this substitutes nothing.  Note that
4833 the leading dash is omitted when specifying this option, and it is
4834 automatically inserted if the substitution is performed.  Thus the spec
4835 string @samp{%@{foo@}} would match the command-line option @option{-foo}
4836 and would output the command line option @option{-foo}.
4837
4838 @item %W@{@code{S}@}
4839 Like %@{@code{S}@} but mark last argument supplied within as a file to be
4840 deleted on failure.
4841
4842 @item %@{@code{S}*@}
4843 Substitutes all the switches specified to GCC whose names start
4844 with @code{-S}, but which also take an argument.  This is used for
4845 switches like @option{-o}, @option{-D}, @option{-I}, etc.
4846 GCC considers @option{-o foo} as being
4847 one switch whose names starts with @samp{o}.  %@{o*@} would substitute this
4848 text, including the space.  Thus two arguments would be generated.
4849
4850 @item %@{^@code{S}*@}
4851 Like %@{@code{S}*@}, but don't put a blank between a switch and its
4852 argument.  Thus %@{^o*@} would only generate one argument, not two.
4853
4854 @item %@{@code{S}*&@code{T}*@}
4855 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
4856 (the order of @code{S} and @code{T} in the spec is not significant).
4857 There can be any number of ampersand-separated variables; for each the
4858 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
4859
4860 @item %@{<@code{S}@}
4861 Remove all occurrences of @code{-S} from the command line.  Note---this
4862 command is position dependent.  @samp{%} commands in the spec string
4863 before this option will see @code{-S}, @samp{%} commands in the spec
4864 string after this option will not.
4865
4866 @item %@{@code{S}*:@code{X}@}
4867 Substitutes @code{X} if one or more switches whose names start with
4868 @code{-S} are specified to GCC@.  Note that the tail part of the
4869 @code{-S} option (i.e.@: the part matched by the @samp{*}) will be substituted
4870 for each occurrence of @samp{%*} within @code{X}.
4871
4872 @item %@{@code{S}:@code{X}@}
4873 Substitutes @code{X}, but only if the @samp{-S} switch was given to GCC@.
4874
4875 @item %@{!@code{S}:@code{X}@}
4876 Substitutes @code{X}, but only if the @samp{-S} switch was @emph{not} given to GCC@.
4877
4878 @item %@{|@code{S}:@code{X}@}
4879 Like %@{@code{S}:@code{X}@}, but if no @code{S} switch, substitute @samp{-}.
4880
4881 @item %@{|!@code{S}:@code{X}@}
4882 Like %@{!@code{S}:@code{X}@}, but if there is an @code{S} switch, substitute @samp{-}.
4883
4884 @item %@{.@code{S}:@code{X}@}
4885 Substitutes @code{X}, but only if processing a file with suffix @code{S}.
4886
4887 @item %@{!.@code{S}:@code{X}@}
4888 Substitutes @code{X}, but only if @emph{not} processing a file with suffix @code{S}.
4889
4890 @item %@{@code{S}|@code{P}:@code{X}@}
4891 Substitutes @code{X} if either @code{-S} or @code{-P} was given to GCC@.  This may be
4892 combined with @samp{!} and @samp{.} sequences as well, although they
4893 have a stronger binding than the @samp{|}.  For example a spec string
4894 like this:
4895
4896 @smallexample
4897 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
4898 @end smallexample
4899
4900 will output the following command-line options from the following input
4901 command-line options:
4902
4903 @smallexample
4904 fred.c        -foo -baz
4905 jim.d         -bar -boggle
4906 -d fred.c     -foo -baz -boggle
4907 -d jim.d      -bar -baz -boggle
4908 @end smallexample
4909
4910 @end table
4911
4912 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or
4913 %@{!@code{S}:@code{X}@} construct may contain other nested @samp{%} constructs
4914 or spaces, or even newlines.  They are processed as usual, as described
4915 above.
4916
4917 The @option{-O}, @option{-f}, @option{-m}, and @option{-W}
4918 switches are handled specifically in these
4919 constructs.  If another value of @option{-O} or the negated form of a @option{-f}, @option{-m}, or
4920 @option{-W} switch is found later in the command line, the earlier switch
4921 value is ignored, except with @{@code{S}*@} where @code{S} is just one
4922 letter, which passes all matching options.
4923
4924 The character @samp{|} at the beginning of the predicate text is used to indicate
4925 that a command should be piped to the following command, but only if @option{-pipe}
4926 is specified.
4927
4928 It is built into GCC which switches take arguments and which do not.
4929 (You might think it would be useful to generalize this to allow each
4930 compiler's spec to say which switches take arguments.  But this cannot
4931 be done in a consistent fashion.  GCC cannot even decide which input
4932 files have been specified without knowing which switches take arguments,
4933 and it must know which input files to compile in order to tell which
4934 compilers to run).
4935
4936 GCC also knows implicitly that arguments starting in @option{-l} are to be
4937 treated as compiler output files, and passed to the linker in their
4938 proper position among the other output files.
4939
4940 @c man begin OPTIONS
4941
4942 @node Target Options
4943 @section Specifying Target Machine and Compiler Version
4944 @cindex target options
4945 @cindex cross compiling
4946 @cindex specifying machine version
4947 @cindex specifying compiler version and target machine
4948 @cindex compiler version, specifying
4949 @cindex target machine, specifying
4950
4951 By default, GCC compiles code for the same type of machine that you
4952 are using.  However, it can also be installed as a cross-compiler, to
4953 compile for some other type of machine.  In fact, several different
4954 configurations of GCC, for different target machines, can be
4955 installed side by side.  Then you specify which one to use with the
4956 @option{-b} option.
4957
4958 In addition, older and newer versions of GCC can be installed side
4959 by side.  One of them (probably the newest) will be the default, but
4960 you may sometimes wish to use another.
4961
4962 @table @gcctabopt
4963 @item -b @var{machine}
4964 @opindex b
4965 The argument @var{machine} specifies the target machine for compilation.
4966 This is useful when you have installed GCC as a cross-compiler.
4967
4968 The value to use for @var{machine} is the same as was specified as the
4969 machine type when configuring GCC as a cross-compiler.  For
4970 example, if a cross-compiler was configured with @samp{configure
4971 i386v}, meaning to compile for an 80386 running System V, then you
4972 would specify @option{-b i386v} to run that cross compiler.
4973
4974 When you do not specify @option{-b}, it normally means to compile for
4975 the same type of machine that you are using.
4976
4977 @item -V @var{version}
4978 @opindex V
4979 The argument @var{version} specifies which version of GCC to run.
4980 This is useful when multiple versions are installed.  For example,
4981 @var{version} might be @samp{2.0}, meaning to run GCC version 2.0.
4982
4983 The default version, when you do not specify @option{-V}, is the last
4984 version of GCC that you installed.
4985 @end table
4986
4987 The @option{-b} and @option{-V} options actually work by controlling part of
4988 the file name used for the executable files and libraries used for
4989 compilation.  A given version of GCC, for a given target machine, is
4990 normally kept in the directory @file{/usr/local/lib/gcc-lib/@var{machine}/@var{version}}.
4991
4992 Thus, sites can customize the effect of @option{-b} or @option{-V} either by
4993 changing the names of these directories or adding alternate names (or
4994 symbolic links).  If in directory @file{/usr/local/lib/gcc-lib/} the
4995 file @file{80386} is a link to the file @file{i386v}, then @option{-b
4996 80386} becomes an alias for @option{-b i386v}.
4997
4998 In one respect, the @option{-b} or @option{-V} do not completely change
4999 to a different compiler: the top-level driver program @command{gcc}
5000 that you originally invoked continues to run and invoke the other
5001 executables (preprocessor, compiler per se, assembler and linker)
5002 that do the real work.  However, since no real work is done in the
5003 driver program, it usually does not matter that the driver program
5004 in use is not the one for the specified target.  It is common for the
5005 interface to the other executables to change incompatibly between
5006 compiler versions, so unless the version specified is very close to that
5007 of the driver (for example, @option{-V 3.0} with a driver program from GCC
5008 version 3.0.1), use of @option{-V} may not work; for example, using
5009 @option{-V 2.95.2} will not work with a driver program from GCC 3.0.
5010
5011 The only way that the driver program depends on the target machine is
5012 in the parsing and handling of special machine-specific options.
5013 However, this is controlled by a file which is found, along with the
5014 other executables, in the directory for the specified version and
5015 target machine.  As a result, a single installed driver program adapts
5016 to any specified target machine, and sufficiently similar compiler
5017 versions.
5018
5019 The driver program executable does control one significant thing,
5020 however: the default version and target machine.  Therefore, you can
5021 install different instances of the driver program, compiled for
5022 different targets or versions, under different names.
5023
5024 For example, if the driver for version 2.0 is installed as @command{ogcc}
5025 and that for version 2.1 is installed as @command{gcc}, then the command
5026 @command{gcc} will use version 2.1 by default, while @command{ogcc} will use
5027 2.0 by default.  However, you can choose either version with either
5028 command with the @option{-V} option.
5029
5030 @node Submodel Options
5031 @section Hardware Models and Configurations
5032 @cindex submodel options
5033 @cindex specifying hardware config
5034 @cindex hardware models and configurations, specifying
5035 @cindex machine dependent options
5036
5037 Earlier we discussed the standard option @option{-b} which chooses among
5038 different installed compilers for completely different target
5039 machines, such as VAX vs.@: 68000 vs.@: 80386.
5040
5041 In addition, each of these target machine types can have its own
5042 special options, starting with @samp{-m}, to choose among various
5043 hardware models or configurations---for example, 68010 vs 68020,
5044 floating coprocessor or none.  A single installed version of the
5045 compiler can compile for any model or configuration, according to the
5046 options specified.
5047
5048 Some configurations of the compiler also support additional special
5049 options, usually for compatibility with other compilers on the same
5050 platform.
5051
5052 @ifset INTERNALS
5053 These options are defined by the macro @code{TARGET_SWITCHES} in the
5054 machine description.  The default for the options is also defined by
5055 that macro, which enables you to change the defaults.
5056 @end ifset
5057
5058 @menu
5059 * M680x0 Options::
5060 * M68hc1x Options::
5061 * VAX Options::
5062 * SPARC Options::
5063 * Convex Options::
5064 * AMD29K Options::
5065 * ARM Options::
5066 * MN10200 Options::
5067 * MN10300 Options::
5068 * M32R/D Options::
5069 * M88K Options::
5070 * RS/6000 and PowerPC Options::
5071 * RT Options::
5072 * MIPS Options::
5073 * i386 and x86-64 Options::
5074 * HPPA Options::
5075 * Intel 960 Options::
5076 * DEC Alpha Options::
5077 * DEC Alpha/VMS Options::
5078 * Clipper Options::
5079 * H8/300 Options::
5080 * SH Options::
5081 * System V Options::
5082 * TMS320C3x/C4x Options::
5083 * V850 Options::
5084 * ARC Options::
5085 * NS32K Options::
5086 * AVR Options::
5087 * MCore Options::
5088 * IA-64 Options::
5089 * D30V Options::
5090 * S/390 and zSeries Options::
5091 * CRIS Options::
5092 * MMIX Options::
5093 @end menu
5094
5095 @node M680x0 Options
5096 @subsection M680x0 Options
5097 @cindex M680x0 options
5098
5099 These are the @samp{-m} options defined for the 68000 series.  The default
5100 values for these options depends on which style of 68000 was selected when
5101 the compiler was configured; the defaults for the most common choices are
5102 given below.
5103
5104 @table @gcctabopt
5105 @item -m68000
5106 @itemx -mc68000
5107 @opindex m68000
5108 @opindex mc68000
5109 Generate output for a 68000.  This is the default
5110 when the compiler is configured for 68000-based systems.
5111
5112 Use this option for microcontrollers with a 68000 or EC000 core,
5113 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
5114
5115 @item -m68020
5116 @itemx -mc68020
5117 @opindex m68020
5118 @opindex mc68020
5119 Generate output for a 68020.  This is the default
5120 when the compiler is configured for 68020-based systems.
5121
5122 @item -m68881
5123 @opindex m68881
5124 Generate output containing 68881 instructions for floating point.
5125 This is the default for most 68020 systems unless @option{--nfp} was
5126 specified when the compiler was configured.
5127
5128 @item -m68030
5129 @opindex m68030
5130 Generate output for a 68030.  This is the default when the compiler is
5131 configured for 68030-based systems.
5132
5133 @item -m68040
5134 @opindex m68040
5135 Generate output for a 68040.  This is the default when the compiler is
5136 configured for 68040-based systems.
5137
5138 This option inhibits the use of 68881/68882 instructions that have to be
5139 emulated by software on the 68040.  Use this option if your 68040 does not
5140 have code to emulate those instructions.
5141
5142 @item -m68060
5143 @opindex m68060
5144 Generate output for a 68060.  This is the default when the compiler is
5145 configured for 68060-based systems.
5146
5147 This option inhibits the use of 68020 and 68881/68882 instructions that
5148 have to be emulated by software on the 68060.  Use this option if your 68060
5149 does not have code to emulate those instructions.
5150
5151 @item -mcpu32
5152 @opindex mcpu32
5153 Generate output for a CPU32.  This is the default
5154 when the compiler is configured for CPU32-based systems.
5155
5156 Use this option for microcontrollers with a
5157 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
5158 68336, 68340, 68341, 68349 and 68360.
5159
5160 @item -m5200
5161 @opindex m5200
5162 Generate output for a 520X ``coldfire'' family cpu.  This is the default
5163 when the compiler is configured for 520X-based systems.
5164
5165 Use this option for microcontroller with a 5200 core, including
5166 the MCF5202, MCF5203, MCF5204 and MCF5202.
5167
5168
5169 @item -m68020-40
5170 @opindex m68020-40
5171 Generate output for a 68040, without using any of the new instructions.
5172 This results in code which can run relatively efficiently on either a
5173 68020/68881 or a 68030 or a 68040.  The generated code does use the
5174 68881 instructions that are emulated on the 68040.
5175
5176 @item -m68020-60
5177 @opindex m68020-60
5178 Generate output for a 68060, without using any of the new instructions.
5179 This results in code which can run relatively efficiently on either a
5180 68020/68881 or a 68030 or a 68040.  The generated code does use the
5181 68881 instructions that are emulated on the 68060.
5182
5183 @item -mfpa
5184 @opindex mfpa
5185 Generate output containing Sun FPA instructions for floating point.
5186
5187 @item -msoft-float
5188 @opindex msoft-float
5189 Generate output containing library calls for floating point.
5190 @strong{Warning:} the requisite libraries are not available for all m68k
5191 targets.  Normally the facilities of the machine's usual C compiler are
5192 used, but this can't be done directly in cross-compilation.  You must
5193 make your own arrangements to provide suitable library functions for
5194 cross-compilation.  The embedded targets @samp{m68k-*-aout} and
5195 @samp{m68k-*-coff} do provide software floating point support.
5196
5197 @item -mshort
5198 @opindex mshort
5199 Consider type @code{int} to be 16 bits wide, like @code{short int}.
5200
5201 @item -mnobitfield
5202 @opindex mnobitfield
5203 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
5204 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
5205
5206 @item -mbitfield
5207 @opindex mbitfield
5208 Do use the bit-field instructions.  The @option{-m68020} option implies
5209 @option{-mbitfield}.  This is the default if you use a configuration
5210 designed for a 68020.
5211
5212 @item -mrtd
5213 @opindex mrtd
5214 Use a different function-calling convention, in which functions
5215 that take a fixed number of arguments return with the @code{rtd}
5216 instruction, which pops their arguments while returning.  This
5217 saves one instruction in the caller since there is no need to pop
5218 the arguments there.
5219
5220 This calling convention is incompatible with the one normally
5221 used on Unix, so you cannot use it if you need to call libraries
5222 compiled with the Unix compiler.
5223
5224 Also, you must provide function prototypes for all functions that
5225 take variable numbers of arguments (including @code{printf});
5226 otherwise incorrect code will be generated for calls to those
5227 functions.
5228
5229 In addition, seriously incorrect code will result if you call a
5230 function with too many arguments.  (Normally, extra arguments are
5231 harmlessly ignored.)
5232
5233 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
5234 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
5235
5236 @item -malign-int
5237 @itemx -mno-align-int
5238 @opindex malign-int
5239 @opindex mno-align-int
5240 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
5241 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
5242 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
5243 Aligning variables on 32-bit boundaries produces code that runs somewhat
5244 faster on processors with 32-bit busses at the expense of more memory.
5245
5246 @strong{Warning:} if you use the @option{-malign-int} switch, GCC will
5247 align structures containing the above types  differently than
5248 most published application binary interface specifications for the m68k.
5249
5250 @item -mpcrel
5251 @opindex mpcrel
5252 Use the pc-relative addressing mode of the 68000 directly, instead of
5253 using a global offset table.  At present, this option implies @option{-fpic},
5254 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
5255 not presently supported with @option{-mpcrel}, though this could be supported for
5256 68020 and higher processors.
5257
5258 @item -mno-strict-align
5259 @itemx -mstrict-align
5260 @opindex mno-strict-align
5261 @opindex mstrict-align
5262 Do not (do) assume that unaligned memory references will be handled by
5263 the system.
5264
5265 @end table
5266
5267 @node M68hc1x Options
5268 @subsection M68hc1x Options
5269 @cindex M68hc1x options
5270
5271 These are the @samp{-m} options defined for the 68hc11 and 68hc12
5272 microcontrollers.  The default values for these options depends on
5273 which style of microcontroller was selected when the compiler was configured;
5274 the defaults for the most common choices are given below.
5275
5276 @table @gcctabopt
5277 @item -m6811
5278 @itemx -m68hc11
5279 @opindex m6811
5280 @opindex m68hc11
5281 Generate output for a 68HC11.  This is the default
5282 when the compiler is configured for 68HC11-based systems.
5283
5284 @item -m6812
5285 @itemx -m68hc12
5286 @opindex m6812
5287 @opindex m68hc12
5288 Generate output for a 68HC12.  This is the default
5289 when the compiler is configured for 68HC12-based systems.
5290
5291 @item -mauto-incdec
5292 @opindex mauto-incdec
5293 Enable the use of 68HC12 pre and post auto-increment and auto-decrement
5294 addressing modes.
5295
5296 @item -mshort
5297 @opindex mshort
5298 Consider type @code{int} to be 16 bits wide, like @code{short int}.
5299
5300 @item -msoft-reg-count=@var{count}
5301 @opindex msoft-reg-count
5302 Specify the number of pseudo-soft registers which are used for the
5303 code generation.  The maximum number is 32.  Using more pseudo-soft
5304 register may or may not result in better code depending on the program.
5305 The default is 4 for 68HC11 and 2 for 68HC12.
5306
5307 @end table
5308
5309 @node VAX Options
5310 @subsection VAX Options
5311 @cindex VAX options
5312
5313 These @samp{-m} options are defined for the VAX:
5314
5315 @table @gcctabopt
5316 @item -munix
5317 @opindex munix
5318 Do not output certain jump instructions (@code{aobleq} and so on)
5319 that the Unix assembler for the VAX cannot handle across long
5320 ranges.
5321
5322 @item -mgnu
5323 @opindex mgnu
5324 Do output those jump instructions, on the assumption that you
5325 will assemble with the GNU assembler.
5326
5327 @item -mg
5328 @opindex mg
5329 Output code for g-format floating point numbers instead of d-format.
5330 @end table
5331
5332 @node SPARC Options
5333 @subsection SPARC Options
5334 @cindex SPARC options
5335
5336 These @samp{-m} switches are supported on the SPARC:
5337
5338 @table @gcctabopt
5339 @item -mno-app-regs
5340 @itemx -mapp-regs
5341 @opindex mno-app-regs
5342 @opindex mapp-regs
5343 Specify @option{-mapp-regs} to generate output using the global registers
5344 2 through 4, which the SPARC SVR4 ABI reserves for applications.  This
5345 is the default.
5346
5347 To be fully SVR4 ABI compliant at the cost of some performance loss,
5348 specify @option{-mno-app-regs}.  You should compile libraries and system
5349 software with this option.
5350
5351 @item -mfpu
5352 @itemx -mhard-float
5353 @opindex mfpu
5354 @opindex mhard-float
5355 Generate output containing floating point instructions.  This is the
5356 default.
5357
5358 @item -mno-fpu
5359 @itemx -msoft-float
5360 @opindex mno-fpu
5361 @opindex msoft-float
5362 Generate output containing library calls for floating point.
5363 @strong{Warning:} the requisite libraries are not available for all SPARC
5364 targets.  Normally the facilities of the machine's usual C compiler are
5365 used, but this cannot be done directly in cross-compilation.  You must make
5366 your own arrangements to provide suitable library functions for
5367 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
5368 @samp{sparclite-*-*} do provide software floating point support.
5369
5370 @option{-msoft-float} changes the calling convention in the output file;
5371 therefore, it is only useful if you compile @emph{all} of a program with
5372 this option.  In particular, you need to compile @file{libgcc.a}, the
5373 library that comes with GCC, with @option{-msoft-float} in order for
5374 this to work.
5375
5376 @item -mhard-quad-float
5377 @opindex mhard-quad-float
5378 Generate output containing quad-word (long double) floating point
5379 instructions.
5380
5381 @item -msoft-quad-float
5382 @opindex msoft-quad-float
5383 Generate output containing library calls for quad-word (long double)
5384 floating point instructions.  The functions called are those specified
5385 in the SPARC ABI@.  This is the default.
5386
5387 As of this writing, there are no sparc implementations that have hardware
5388 support for the quad-word floating point instructions.  They all invoke
5389 a trap handler for one of these instructions, and then the trap handler
5390 emulates the effect of the instruction.  Because of the trap handler overhead,
5391 this is much slower than calling the ABI library routines.  Thus the
5392 @option{-msoft-quad-float} option is the default.
5393
5394 @item -mno-epilogue
5395 @itemx -mepilogue
5396 @opindex mno-epilogue
5397 @opindex mepilogue
5398 With @option{-mepilogue} (the default), the compiler always emits code for
5399 function exit at the end of each function.  Any function exit in
5400 the middle of the function (such as a return statement in C) will
5401 generate a jump to the exit code at the end of the function.
5402
5403 With @option{-mno-epilogue}, the compiler tries to emit exit code inline
5404 at every function exit.
5405
5406 @item -mno-flat
5407 @itemx -mflat
5408 @opindex mno-flat
5409 @opindex mflat
5410 With @option{-mflat}, the compiler does not generate save/restore instructions
5411 and will use a ``flat'' or single register window calling convention.
5412 This model uses %i7 as the frame pointer and is compatible with the normal
5413 register window model.  Code from either may be intermixed.
5414 The local registers and the input registers (0--5) are still treated as
5415 ``call saved'' registers and will be saved on the stack as necessary.
5416
5417 With @option{-mno-flat} (the default), the compiler emits save/restore
5418 instructions (except for leaf functions) and is the normal mode of operation.
5419
5420 @item -mno-unaligned-doubles
5421 @itemx -munaligned-doubles
5422 @opindex mno-unaligned-doubles
5423 @opindex munaligned-doubles
5424 Assume that doubles have 8 byte alignment.  This is the default.
5425
5426 With @option{-munaligned-doubles}, GCC assumes that doubles have 8 byte
5427 alignment only if they are contained in another type, or if they have an
5428 absolute address.  Otherwise, it assumes they have 4 byte alignment.
5429 Specifying this option avoids some rare compatibility problems with code
5430 generated by other compilers.  It is not the default because it results
5431 in a performance loss, especially for floating point code.
5432
5433 @item -mno-faster-structs
5434 @itemx -mfaster-structs
5435 @opindex mno-faster-structs
5436 @opindex mfaster-structs
5437 With @option{-mfaster-structs}, the compiler assumes that structures
5438 should have 8 byte alignment.  This enables the use of pairs of
5439 @code{ldd} and @code{std} instructions for copies in structure
5440 assignment, in place of twice as many @code{ld} and @code{st} pairs.
5441 However, the use of this changed alignment directly violates the Sparc
5442 ABI@.  Thus, it's intended only for use on targets where the developer
5443 acknowledges that their resulting code will not be directly in line with
5444 the rules of the ABI@.
5445
5446 @item -mv8
5447 @itemx -msparclite
5448 @opindex mv8
5449 @opindex msparclite
5450 These two options select variations on the SPARC architecture.
5451
5452 By default (unless specifically configured for the Fujitsu SPARClite),
5453 GCC generates code for the v7 variant of the SPARC architecture.
5454
5455 @option{-mv8} will give you SPARC v8 code.  The only difference from v7
5456 code is that the compiler emits the integer multiply and integer
5457 divide instructions which exist in SPARC v8 but not in SPARC v7.
5458
5459 @option{-msparclite} will give you SPARClite code.  This adds the integer
5460 multiply, integer divide step and scan (@code{ffs}) instructions which
5461 exist in SPARClite but not in SPARC v7.
5462
5463 These options are deprecated and will be deleted in a future GCC release.
5464 They have been replaced with @option{-mcpu=xxx}.
5465
5466 @item -mcypress
5467 @itemx -msupersparc
5468 @opindex mcypress
5469 @opindex msupersparc
5470 These two options select the processor for which the code is optimized.
5471
5472 With @option{-mcypress} (the default), the compiler optimizes code for the
5473 Cypress CY7C602 chip, as used in the SparcStation/SparcServer 3xx series.
5474 This is also appropriate for the older SparcStation 1, 2, IPX etc.
5475
5476 With @option{-msupersparc} the compiler optimizes code for the SuperSparc cpu, as
5477 used in the SparcStation 10, 1000 and 2000 series.  This flag also enables use
5478 of the full SPARC v8 instruction set.
5479
5480 These options are deprecated and will be deleted in a future GCC release.
5481 They have been replaced with @option{-mcpu=xxx}.
5482
5483 @item -mcpu=@var{cpu_type}
5484 @opindex mcpu
5485 Set the instruction set, register set, and instruction scheduling parameters
5486 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
5487 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{sparclite},
5488 @samp{hypersparc}, @samp{sparclite86x}, @samp{f930}, @samp{f934},
5489 @samp{sparclet}, @samp{tsc701}, @samp{v9}, and @samp{ultrasparc}.
5490
5491 Default instruction scheduling parameters are used for values that select
5492 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
5493 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
5494
5495 Here is a list of each supported architecture and their supported
5496 implementations.
5497
5498 @smallexample
5499     v7:             cypress
5500     v8:             supersparc, hypersparc
5501     sparclite:      f930, f934, sparclite86x
5502     sparclet:       tsc701
5503     v9:             ultrasparc
5504 @end smallexample
5505
5506 @item -mtune=@var{cpu_type}
5507 @opindex mtune
5508 Set the instruction scheduling parameters for machine type
5509 @var{cpu_type}, but do not set the instruction set or register set that the
5510 option @option{-mcpu=@var{cpu_type}} would.
5511
5512 The same values for @option{-mcpu=@var{cpu_type}} can be used for
5513 @option{-mtune=@var{cpu_type}}, but the only useful values are those
5514 that select a particular cpu implementation.  Those are @samp{cypress},
5515 @samp{supersparc}, @samp{hypersparc}, @samp{f930}, @samp{f934},
5516 @samp{sparclite86x}, @samp{tsc701}, and @samp{ultrasparc}.
5517
5518 @end table
5519
5520 These @samp{-m} switches are supported in addition to the above
5521 on the SPARCLET processor.
5522
5523 @table @gcctabopt
5524 @item -mlittle-endian
5525 @opindex mlittle-endian
5526 Generate code for a processor running in little-endian mode.
5527
5528 @item -mlive-g0
5529 @opindex mlive-g0
5530 Treat register @code{%g0} as a normal register.
5531 GCC will continue to clobber it as necessary but will not assume
5532 it always reads as 0.
5533
5534 @item -mbroken-saverestore
5535 @opindex mbroken-saverestore
5536 Generate code that does not use non-trivial forms of the @code{save} and
5537 @code{restore} instructions.  Early versions of the SPARCLET processor do
5538 not correctly handle @code{save} and @code{restore} instructions used with
5539 arguments.  They correctly handle them used without arguments.  A @code{save}
5540 instruction used without arguments increments the current window pointer
5541 but does not allocate a new stack frame.  It is assumed that the window
5542 overflow trap handler will properly handle this case as will interrupt
5543 handlers.
5544 @end table
5545
5546 These @samp{-m} switches are supported in addition to the above
5547 on SPARC V9 processors in 64-bit environments.
5548
5549 @table @gcctabopt
5550 @item -mlittle-endian
5551 @opindex mlittle-endian
5552 Generate code for a processor running in little-endian mode.
5553
5554 @item -m32
5555 @itemx -m64
5556 @opindex m32
5557 @opindex m64
5558 Generate code for a 32-bit or 64-bit environment.
5559 The 32-bit environment sets int, long and pointer to 32 bits.
5560 The 64-bit environment sets int to 32 bits and long and pointer
5561 to 64 bits.
5562
5563 @item -mcmodel=medlow
5564 @opindex mcmodel=medlow
5565 Generate code for the Medium/Low code model: the program must be linked
5566 in the low 32 bits of the address space.  Pointers are 64 bits.
5567 Programs can be statically or dynamically linked.
5568
5569 @item -mcmodel=medmid
5570 @opindex mcmodel=medmid
5571 Generate code for the Medium/Middle code model: the program must be linked
5572 in the low 44 bits of the address space, the text segment must be less than
5573 2G bytes, and data segment must be within 2G of the text segment.
5574 Pointers are 64 bits.
5575
5576 @item -mcmodel=medany
5577 @opindex mcmodel=medany
5578 Generate code for the Medium/Anywhere code model: the program may be linked
5579 anywhere in the address space, the text segment must be less than
5580 2G bytes, and data segment must be within 2G of the text segment.
5581 Pointers are 64 bits.
5582
5583 @item -mcmodel=embmedany
5584 @opindex mcmodel=embmedany
5585 Generate code for the Medium/Anywhere code model for embedded systems:
5586 assume a 32-bit text and a 32-bit data segment, both starting anywhere
5587 (determined at link time).  Register %g4 points to the base of the
5588 data segment.  Pointers are still 64 bits.
5589 Programs are statically linked, PIC is not supported.
5590
5591 @item -mstack-bias
5592 @itemx -mno-stack-bias
5593 @opindex mstack-bias
5594 @opindex mno-stack-bias
5595 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
5596 frame pointer if present, are offset by @minus{}2047 which must be added back
5597 when making stack frame references.
5598 Otherwise, assume no such offset is present.
5599 @end table
5600
5601 @node Convex Options
5602 @subsection Convex Options
5603 @cindex Convex options
5604
5605 These @samp{-m} options are defined for Convex:
5606
5607 @table @gcctabopt
5608 @item -mc1
5609 @opindex mc1
5610 Generate output for C1.  The code will run on any Convex machine.
5611 The preprocessor symbol @code{__convex__c1__} is defined.
5612
5613 @item -mc2
5614 @opindex mc2
5615 Generate output for C2.  Uses instructions not available on C1.
5616 Scheduling and other optimizations are chosen for max performance on C2.
5617 The preprocessor symbol @code{__convex_c2__} is defined.
5618
5619 @item -mc32
5620 @opindex mc32
5621 Generate output for C32xx.  Uses instructions not available on C1.
5622 Scheduling and other optimizations are chosen for max performance on C32.
5623 The preprocessor symbol @code{__convex_c32__} is defined.
5624
5625 @item -mc34
5626 @opindex mc34
5627 Generate output for C34xx.  Uses instructions not available on C1.
5628 Scheduling and other optimizations are chosen for max performance on C34.
5629 The preprocessor symbol @code{__convex_c34__} is defined.
5630
5631 @item -mc38
5632 @opindex mc38
5633 Generate output for C38xx.  Uses instructions not available on C1.
5634 Scheduling and other optimizations are chosen for max performance on C38.
5635 The preprocessor symbol @code{__convex_c38__} is defined.
5636
5637 @item -margcount
5638 @opindex margcount
5639 Generate code which puts an argument count in the word preceding each
5640 argument list.  This is compatible with regular CC, and a few programs
5641 may need the argument count word.  GDB and other source-level debuggers
5642 do not need it; this info is in the symbol table.
5643
5644 @item -mnoargcount
5645 @opindex mnoargcount
5646 Omit the argument count word.  This is the default.
5647
5648 @item -mvolatile-cache
5649 @opindex mvolatile-cache
5650 Allow volatile references to be cached.  This is the default.
5651
5652 @item -mvolatile-nocache
5653 @opindex mvolatile-nocache
5654 Volatile references bypass the data cache, going all the way to memory.
5655 This is only needed for multi-processor code that does not use standard
5656 synchronization instructions.  Making non-volatile references to volatile
5657 locations will not necessarily work.
5658
5659 @item -mlong32
5660 @opindex mlong32
5661 Type long is 32 bits, the same as type int.  This is the default.
5662
5663 @item -mlong64
5664 @opindex mlong64
5665 Type long is 64 bits, the same as type long long.  This option is useless,
5666 because no library support exists for it.
5667 @end table
5668
5669 @node AMD29K Options
5670 @subsection AMD29K Options
5671 @cindex AMD29K options
5672
5673 These @samp{-m} options are defined for the AMD Am29000:
5674
5675 @table @gcctabopt
5676 @item -mdw
5677 @opindex mdw
5678 @cindex DW bit (29k)
5679 Generate code that assumes the @code{DW} bit is set, i.e., that byte and
5680 halfword operations are directly supported by the hardware.  This is the
5681 default.
5682
5683 @item -mndw
5684 @opindex mndw
5685 Generate code that assumes the @code{DW} bit is not set.
5686
5687 @item -mbw
5688 @opindex mbw
5689 @cindex byte writes (29k)
5690 Generate code that assumes the system supports byte and halfword write
5691 operations.  This is the default.
5692
5693 @item -mnbw
5694 @opindex mnbw
5695 Generate code that assumes the systems does not support byte and
5696 halfword write operations.  @option{-mnbw} implies @option{-mndw}.
5697
5698 @item -msmall
5699 @opindex msmall
5700 @cindex memory model (29k)
5701 Use a small memory model that assumes that all function addresses are
5702 either within a single 256 KB segment or at an absolute address of less
5703 than 256k.  This allows the @code{call} instruction to be used instead
5704 of a @code{const}, @code{consth}, @code{calli} sequence.
5705
5706 @item -mnormal
5707 @opindex mnormal
5708 Use the normal memory model: Generate @code{call} instructions only when
5709 calling functions in the same file and @code{calli} instructions
5710 otherwise.  This works if each file occupies less than 256 KB but allows
5711 the entire executable to be larger than 256 KB@.  This is the default.
5712
5713 @item -mlarge
5714 @opindex mlarge
5715 Always use @code{calli} instructions.  Specify this option if you expect
5716 a single file to compile into more than 256 KB of code.
5717
5718 @item -m29050
5719 @opindex m29050
5720 @cindex processor selection (29k)
5721 Generate code for the Am29050.
5722
5723 @item -m29000
5724 @opindex m29000
5725 Generate code for the Am29000.  This is the default.
5726
5727 @item -mkernel-registers
5728 @opindex mkernel-registers
5729 @cindex kernel and user registers (29k)
5730 Generate references to registers @code{gr64-gr95} instead of to
5731 registers @code{gr96-gr127}.  This option can be used when compiling
5732 kernel code that wants a set of global registers disjoint from that used
5733 by user-mode code.
5734
5735 Note that when this option is used, register names in @samp{-f} flags
5736 must use the normal, user-mode, names.
5737
5738 @item -muser-registers
5739 @opindex muser-registers
5740 Use the normal set of global registers, @code{gr96-gr127}.  This is the
5741 default.
5742
5743 @item -mstack-check
5744 @itemx -mno-stack-check
5745 @opindex mstack-check
5746 @opindex mno-stack-check
5747 @cindex stack checks (29k)
5748 Insert (or do not insert) a call to @code{__msp_check} after each stack
5749 adjustment.  This is often used for kernel code.
5750
5751 @item -mstorem-bug
5752 @itemx -mno-storem-bug
5753 @opindex mstorem-bug
5754 @opindex mno-storem-bug
5755 @cindex storem bug (29k)
5756 @option{-mstorem-bug} handles 29k processors which cannot handle the
5757 separation of a mtsrim insn and a storem instruction (most 29000 chips
5758 to date, but not the 29050).
5759
5760 @item -mno-reuse-arg-regs
5761 @itemx -mreuse-arg-regs
5762 @opindex mno-reuse-arg-regs
5763 @opindex mreuse-arg-regs
5764 @option{-mno-reuse-arg-regs} tells the compiler to only use incoming argument
5765 registers for copying out arguments.  This helps detect calling a function
5766 with fewer arguments than it was declared with.
5767
5768 @item -mno-impure-text
5769 @itemx -mimpure-text
5770 @opindex mno-impure-text
5771 @opindex mimpure-text
5772 @option{-mimpure-text}, used in addition to @option{-shared}, tells the compiler to
5773 not pass @option{-assert pure-text} to the linker when linking a shared object.
5774
5775 @item -msoft-float
5776 @opindex msoft-float
5777 Generate output containing library calls for floating point.
5778 @strong{Warning:} the requisite libraries are not part of GCC@.
5779 Normally the facilities of the machine's usual C compiler are used, but
5780 this can't be done directly in cross-compilation.  You must make your
5781 own arrangements to provide suitable library functions for
5782 cross-compilation.
5783
5784 @item -mno-multm
5785 @opindex mno-multm
5786 Do not generate multm or multmu instructions.  This is useful for some embedded
5787 systems which do not have trap handlers for these instructions.
5788 @end table
5789
5790 @node ARM Options
5791 @subsection ARM Options
5792 @cindex ARM options
5793
5794 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
5795 architectures:
5796
5797 @table @gcctabopt
5798 @item -mapcs-frame
5799 @opindex mapcs-frame
5800 Generate a stack frame that is compliant with the ARM Procedure Call
5801 Standard for all functions, even if this is not strictly necessary for
5802 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
5803 with this option will cause the stack frames not to be generated for
5804 leaf functions.  The default is @option{-mno-apcs-frame}.
5805
5806 @item -mapcs
5807 @opindex mapcs
5808 This is a synonym for @option{-mapcs-frame}.
5809
5810 @item -mapcs-26
5811 @opindex mapcs-26
5812 Generate code for a processor running with a 26-bit program counter,
5813 and conforming to the function calling standards for the APCS 26-bit
5814 option.  This option replaces the @option{-m2} and @option{-m3} options
5815 of previous releases of the compiler.
5816
5817 @item -mapcs-32
5818 @opindex mapcs-32
5819 Generate code for a processor running with a 32-bit program counter,
5820 and conforming to the function calling standards for the APCS 32-bit
5821 option.  This option replaces the @option{-m6} option of previous releases
5822 of the compiler.
5823
5824 @ignore
5825 @c not currently implemented
5826 @item -mapcs-stack-check
5827 @opindex mapcs-stack-check
5828 Generate code to check the amount of stack space available upon entry to
5829 every function (that actually uses some stack space).  If there is
5830 insufficient space available then either the function
5831 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} will be
5832 called, depending upon the amount of stack space required.  The run time
5833 system is required to provide these functions.  The default is
5834 @option{-mno-apcs-stack-check}, since this produces smaller code.
5835
5836 @c not currently implemented
5837 @item -mapcs-float
5838 @opindex mapcs-float
5839 Pass floating point arguments using the float point registers.  This is
5840 one of the variants of the APCS@.  This option is recommended if the
5841 target hardware has a floating point unit or if a lot of floating point
5842 arithmetic is going to be performed by the code.  The default is
5843 @option{-mno-apcs-float}, since integer only code is slightly increased in
5844 size if @option{-mapcs-float} is used.
5845
5846 @c not currently implemented
5847 @item -mapcs-reentrant
5848 @opindex mapcs-reentrant
5849 Generate reentrant, position independent code.  The default is
5850 @option{-mno-apcs-reentrant}.
5851 @end ignore
5852
5853 @item -mthumb-interwork
5854 @opindex mthumb-interwork
5855 Generate code which supports calling between the ARM and Thumb
5856 instruction sets.  Without this option the two instruction sets cannot
5857 be reliably used inside one program.  The default is
5858 @option{-mno-thumb-interwork}, since slightly larger code is generated
5859 when @option{-mthumb-interwork} is specified.
5860
5861 @item -mno-sched-prolog
5862 @opindex mno-sched-prolog
5863 Prevent the reordering of instructions in the function prolog, or the
5864 merging of those instruction with the instructions in the function's
5865 body.  This means that all functions will start with a recognizable set
5866 of instructions (or in fact one of a choice from a small set of
5867 different function prologues), and this information can be used to
5868 locate the start if functions inside an executable piece of code.  The
5869 default is @option{-msched-prolog}.
5870
5871 @item -mhard-float
5872 @opindex mhard-float
5873 Generate output containing floating point instructions.  This is the
5874 default.
5875
5876 @item -msoft-float
5877 @opindex msoft-float
5878 Generate output containing library calls for floating point.
5879 @strong{Warning:} the requisite libraries are not available for all ARM
5880 targets.  Normally the facilities of the machine's usual C compiler are
5881 used, but this cannot be done directly in cross-compilation.  You must make
5882 your own arrangements to provide suitable library functions for
5883 cross-compilation.
5884
5885 @option{-msoft-float} changes the calling convention in the output file;
5886 therefore, it is only useful if you compile @emph{all} of a program with
5887 this option.  In particular, you need to compile @file{libgcc.a}, the
5888 library that comes with GCC, with @option{-msoft-float} in order for
5889 this to work.
5890
5891 @item -mlittle-endian
5892 @opindex mlittle-endian
5893 Generate code for a processor running in little-endian mode.  This is
5894 the default for all standard configurations.
5895
5896 @item -mbig-endian
5897 @opindex mbig-endian
5898 Generate code for a processor running in big-endian mode; the default is
5899 to compile code for a little-endian processor.
5900
5901 @item -mwords-little-endian
5902 @opindex mwords-little-endian
5903 This option only applies when generating code for big-endian processors.
5904 Generate code for a little-endian word order but a big-endian byte
5905 order.  That is, a byte order of the form @samp{32107654}.  Note: this
5906 option should only be used if you require compatibility with code for
5907 big-endian ARM processors generated by versions of the compiler prior to
5908 2.8.
5909
5910 @item -malignment-traps
5911 @opindex malignment-traps
5912 Generate code that will not trap if the MMU has alignment traps enabled.
5913 On ARM architectures prior to ARMv4, there were no instructions to
5914 access half-word objects stored in memory.  However, when reading from
5915 memory a feature of the ARM architecture allows a word load to be used,
5916 even if the address is unaligned, and the processor core will rotate the
5917 data as it is being loaded.  This option tells the compiler that such
5918 misaligned accesses will cause a MMU trap and that it should instead
5919 synthesise the access as a series of byte accesses.  The compiler can
5920 still use word accesses to load half-word data if it knows that the
5921 address is aligned to a word boundary.
5922
5923 This option is ignored when compiling for ARM architecture 4 or later,
5924 since these processors have instructions to directly access half-word
5925 objects in memory.
5926
5927 @item -mno-alignment-traps
5928 @opindex mno-alignment-traps
5929 Generate code that assumes that the MMU will not trap unaligned
5930 accesses.  This produces better code when the target instruction set
5931 does not have half-word memory operations (i.e.@: implementations prior to
5932 ARMv4).
5933
5934 Note that you cannot use this option to access unaligned word objects,
5935 since the processor will only fetch one 32-bit aligned object from
5936 memory.
5937
5938 The default setting for most targets is @option{-mno-alignment-traps}, since
5939 this produces better code when there are no half-word memory
5940 instructions available.
5941
5942 @item -mshort-load-bytes
5943 @itemx -mno-short-load-words
5944 @opindex mshort-load-bytes
5945 @opindex mno-short-load-words
5946 These are deprecated aliases for @option{-malignment-traps}.
5947
5948 @item -mno-short-load-bytes
5949 @itemx -mshort-load-words
5950 @opindex mno-short-load-bytes
5951 @opindex mshort-load-words
5952 This are deprecated aliases for @option{-mno-alignment-traps}.
5953
5954 @item -mbsd
5955 @opindex mbsd
5956 This option only applies to RISC iX@.  Emulate the native BSD-mode
5957 compiler.  This is the default if @option{-ansi} is not specified.
5958
5959 @item -mxopen
5960 @opindex mxopen
5961 This option only applies to RISC iX@.  Emulate the native X/Open-mode
5962 compiler.
5963
5964 @item -mno-symrename
5965 @opindex mno-symrename
5966 This option only applies to RISC iX@.  Do not run the assembler
5967 post-processor, @samp{symrename}, after code has been assembled.
5968 Normally it is necessary to modify some of the standard symbols in
5969 preparation for linking with the RISC iX C library; this option
5970 suppresses this pass.  The post-processor is never run when the
5971 compiler is built for cross-compilation.
5972
5973 @item -mcpu=@var{name}
5974 @opindex mcpu
5975 This specifies the name of the target ARM processor.  GCC uses this name
5976 to determine what kind of instructions it can emit when generating
5977 assembly code.  Permissible names are: @samp{arm2}, @samp{arm250},
5978 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
5979 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
5980 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
5981 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
5982 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm8},
5983 @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
5984 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
5985 @samp{arm920t}, @samp{arm940t}, @samp{arm9tdmi}, @samp{arm10tdmi},
5986 @samp{arm1020t}, @samp{xscale}.
5987
5988 @itemx -mtune=@var{name}
5989 @opindex mtune
5990 This option is very similar to the @option{-mcpu=} option, except that
5991 instead of specifying the actual target processor type, and hence
5992 restricting which instructions can be used, it specifies that GCC should
5993 tune the performance of the code as if the target were of the type
5994 specified in this option, but still choosing the instructions that it
5995 will generate based on the cpu specified by a @option{-mcpu=} option.
5996 For some ARM implementations better performance can be obtained by using
5997 this option.
5998
5999 @item -march=@var{name}
6000 @opindex march
6001 This specifies the name of the target ARM architecture.  GCC uses this
6002 name to determine what kind of instructions it can emit when generating
6003 assembly code.  This option can be used in conjunction with or instead
6004 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
6005 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
6006 @samp{armv5}, @samp{armv5t}, @samp{armv5te}.
6007
6008 @item -mfpe=@var{number}
6009 @itemx -mfp=@var{number}
6010 @opindex mfpe
6011 @opindex mfp
6012 This specifies the version of the floating point emulation available on
6013 the target.  Permissible values are 2 and 3.  @option{-mfp=} is a synonym
6014 for @option{-mfpe=}, for compatibility with older versions of GCC@.
6015
6016 @item -mstructure-size-boundary=@var{n}
6017 @opindex mstructure-size-boundary
6018 The size of all structures and unions will be rounded up to a multiple
6019 of the number of bits set by this option.  Permissible values are 8 and
6020 32.  The default value varies for different toolchains.  For the COFF
6021 targeted toolchain the default value is 8.  Specifying the larger number
6022 can produce faster, more efficient code, but can also increase the size
6023 of the program.  The two values are potentially incompatible.  Code
6024 compiled with one value cannot necessarily expect to work with code or
6025 libraries compiled with the other value, if they exchange information
6026 using structures or unions.
6027
6028 @item -mabort-on-noreturn
6029 @opindex mabort-on-noreturn
6030 Generate a call to the function @code{abort} at the end of a
6031 @code{noreturn} function.  It will be executed if the function tries to
6032 return.
6033
6034 @item -mlong-calls
6035 @itemx -mno-long-calls
6036 @opindex mlong-calls
6037 @opindex mno-long-calls
6038 Tells the compiler to perform function calls by first loading the
6039 address of the function into a register and then performing a subroutine
6040 call on this register.  This switch is needed if the target function
6041 will lie outside of the 64 megabyte addressing range of the offset based
6042 version of subroutine call instruction.
6043
6044 Even if this switch is enabled, not all function calls will be turned
6045 into long calls.  The heuristic is that static functions, functions
6046 which have the @samp{short-call} attribute, functions that are inside
6047 the scope of a @samp{#pragma no_long_calls} directive and functions whose
6048 definitions have already been compiled within the current compilation
6049 unit, will not be turned into long calls.  The exception to this rule is
6050 that weak function definitions, functions with the @samp{long-call}
6051 attribute or the @samp{section} attribute, and functions that are within
6052 the scope of a @samp{#pragma long_calls} directive, will always be
6053 turned into long calls.
6054
6055 This feature is not enabled by default.  Specifying
6056 @option{-mno-long-calls} will restore the default behavior, as will
6057 placing the function calls within the scope of a @samp{#pragma
6058 long_calls_off} directive.  Note these switches have no effect on how
6059 the compiler generates code to handle function calls via function
6060 pointers.
6061
6062 @item -mnop-fun-dllimport
6063 @opindex mnop-fun-dllimport
6064 Disable support for the @code{dllimport} attribute.
6065
6066 @item -msingle-pic-base
6067 @opindex msingle-pic-base
6068 Treat the register used for PIC addressing as read-only, rather than
6069 loading it in the prologue for each function.  The run-time system is
6070 responsible for initializing this register with an appropriate value
6071 before execution begins.
6072
6073 @item -mpic-register=@var{reg}
6074 @opindex mpic-register
6075 Specify the register to be used for PIC addressing.  The default is R10
6076 unless stack-checking is enabled, when R9 is used.
6077
6078 @item -mpoke-function-name
6079 @opindex mpoke-function-name
6080 Write the name of each function into the text section, directly
6081 preceding the function prologue.  The generated code is similar to this:
6082
6083 @smallexample
6084      t0
6085          .ascii "arm_poke_function_name", 0
6086          .align
6087      t1
6088          .word 0xff000000 + (t1 - t0)
6089      arm_poke_function_name
6090          mov     ip, sp
6091          stmfd   sp!, @{fp, ip, lr, pc@}
6092          sub     fp, ip, #4
6093 @end smallexample
6094
6095 When performing a stack backtrace, code can inspect the value of
6096 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
6097 location @code{pc - 12} and the top 8 bits are set, then we know that
6098 there is a function name embedded immediately preceding this location
6099 and has length @code{((pc[-3]) & 0xff000000)}.
6100
6101 @item -mthumb
6102 @opindex mthumb
6103 Generate code for the 16-bit Thumb instruction set.  The default is to
6104 use the 32-bit ARM instruction set.
6105
6106 @item -mtpcs-frame
6107 @opindex mtpcs-frame
6108 Generate a stack frame that is compliant with the Thumb Procedure Call
6109 Standard for all non-leaf functions.  (A leaf function is one that does
6110 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
6111
6112 @item -mtpcs-leaf-frame
6113 @opindex mtpcs-leaf-frame
6114 Generate a stack frame that is compliant with the Thumb Procedure Call
6115 Standard for all leaf functions.  (A leaf function is one that does
6116 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
6117
6118 @item -mcallee-super-interworking
6119 @opindex mcallee-super-interworking
6120 Gives all externally visible functions in the file being compiled an ARM
6121 instruction set header which switches to Thumb mode before executing the
6122 rest of the function.  This allows these functions to be called from
6123 non-interworking code.
6124
6125 @item -mcaller-super-interworking
6126 @opindex mcaller-super-interworking
6127 Allows calls via function pointers (including virtual functions) to
6128 execute correctly regardless of whether the target code has been
6129 compiled for interworking or not.  There is a small overhead in the cost
6130 of executing a function pointer if this option is enabled.
6131
6132 @end table
6133
6134 @node MN10200 Options
6135 @subsection MN10200 Options
6136 @cindex MN10200 options
6137 These @option{-m} options are defined for Matsushita MN10200 architectures:
6138 @table @gcctabopt
6139
6140 @item -mrelax
6141 @opindex mrelax
6142 Indicate to the linker that it should perform a relaxation optimization pass
6143 to shorten branches, calls and absolute memory addresses.  This option only
6144 has an effect when used on the command line for the final link step.
6145
6146 This option makes symbolic debugging impossible.
6147 @end table
6148
6149 @node MN10300 Options
6150 @subsection MN10300 Options
6151 @cindex MN10300 options
6152 These @option{-m} options are defined for Matsushita MN10300 architectures:
6153
6154 @table @gcctabopt
6155 @item -mmult-bug
6156 @opindex mmult-bug
6157 Generate code to avoid bugs in the multiply instructions for the MN10300
6158 processors.  This is the default.
6159
6160 @item -mno-mult-bug
6161 @opindex mno-mult-bug
6162 Do not generate code to avoid bugs in the multiply instructions for the
6163 MN10300 processors.
6164
6165 @item -mam33
6166 @opindex mam33
6167 Generate code which uses features specific to the AM33 processor.
6168
6169 @item -mno-am33
6170 @opindex mno-am33
6171 Do not generate code which uses features specific to the AM33 processor.  This
6172 is the default.
6173
6174 @item -mno-crt0
6175 @opindex mno-crt0
6176 Do not link in the C run-time initialization object file.
6177
6178 @item -mrelax
6179 @opindex mrelax
6180 Indicate to the linker that it should perform a relaxation optimization pass
6181 to shorten branches, calls and absolute memory addresses.  This option only
6182 has an effect when used on the command line for the final link step.
6183
6184 This option makes symbolic debugging impossible.
6185 @end table
6186
6187
6188 @node M32R/D Options
6189 @subsection M32R/D Options
6190 @cindex M32R/D options
6191
6192 These @option{-m} options are defined for Mitsubishi M32R/D architectures:
6193
6194 @table @gcctabopt
6195 @item -m32rx
6196 @opindex m32rx
6197 Generate code for the M32R/X@.
6198
6199 @item -m32r
6200 @opindex m32r
6201 Generate code for the M32R@.  This is the default.
6202
6203 @item -mcode-model=small
6204 @opindex mcode-model=small
6205 Assume all objects live in the lower 16MB of memory (so that their addresses
6206 can be loaded with the @code{ld24} instruction), and assume all subroutines
6207 are reachable with the @code{bl} instruction.
6208 This is the default.
6209
6210 The addressability of a particular object can be set with the
6211 @code{model} attribute.
6212
6213 @item -mcode-model=medium
6214 @opindex mcode-model=medium
6215 Assume objects may be anywhere in the 32-bit address space (the compiler
6216 will generate @code{seth/add3} instructions to load their addresses), and
6217 assume all subroutines are reachable with the @code{bl} instruction.
6218
6219 @item -mcode-model=large
6220 @opindex mcode-model=large
6221 Assume objects may be anywhere in the 32-bit address space (the compiler
6222 will generate @code{seth/add3} instructions to load their addresses), and
6223 assume subroutines may not be reachable with the @code{bl} instruction
6224 (the compiler will generate the much slower @code{seth/add3/jl}
6225 instruction sequence).
6226
6227 @item -msdata=none
6228 @opindex msdata=none
6229 Disable use of the small data area.  Variables will be put into
6230 one of @samp{.data}, @samp{bss}, or @samp{.rodata} (unless the
6231 @code{section} attribute has been specified).
6232 This is the default.
6233
6234 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
6235 Objects may be explicitly put in the small data area with the
6236 @code{section} attribute using one of these sections.
6237
6238 @item -msdata=sdata
6239 @opindex msdata=sdata
6240 Put small global and static data in the small data area, but do not
6241 generate special code to reference them.
6242
6243 @item -msdata=use
6244 @opindex msdata=use
6245 Put small global and static data in the small data area, and generate
6246 special instructions to reference them.
6247
6248 @item -G @var{num}
6249 @opindex G
6250 @cindex smaller data references
6251 Put global and static objects less than or equal to @var{num} bytes
6252 into the small data or bss sections instead of the normal data or bss
6253 sections.  The default value of @var{num} is 8.
6254 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
6255 for this option to have any effect.
6256
6257 All modules should be compiled with the same @option{-G @var{num}} value.
6258 Compiling with different values of @var{num} may or may not work; if it
6259 doesn't the linker will give an error message---incorrect code will not be
6260 generated.
6261
6262 @end table
6263
6264 @node M88K Options
6265 @subsection M88K Options
6266 @cindex M88k options
6267
6268 These @samp{-m} options are defined for Motorola 88k architectures:
6269
6270 @table @gcctabopt
6271 @item -m88000
6272 @opindex m88000
6273 Generate code that works well on both the m88100 and the
6274 m88110.
6275
6276 @item -m88100
6277 @opindex m88100
6278 Generate code that works best for the m88100, but that also
6279 runs on the m88110.
6280
6281 @item -m88110
6282 @opindex m88110
6283 Generate code that works best for the m88110, and may not run
6284 on the m88100.
6285
6286 @item -mbig-pic
6287 @opindex mbig-pic
6288 Obsolete option to be removed from the next revision.
6289 Use @option{-fPIC}.
6290
6291 @item -midentify-revision
6292 @opindex midentify-revision
6293 @cindex identifying source, compiler (88k)
6294 Include an @code{ident} directive in the assembler output recording the
6295 source file name, compiler name and version, timestamp, and compilation
6296 flags used.
6297
6298 @item -mno-underscores
6299 @opindex mno-underscores
6300 @cindex underscores, avoiding (88k)
6301 In assembler output, emit symbol names without adding an underscore
6302 character at the beginning of each name.  The default is to use an
6303 underscore as prefix on each name.
6304
6305 @item -mocs-debug-info
6306 @itemx -mno-ocs-debug-info
6307 @opindex mocs-debug-info
6308 @opindex mno-ocs-debug-info
6309 @cindex OCS (88k)
6310 @cindex debugging, 88k OCS
6311 Include (or omit) additional debugging information (about registers used
6312 in each stack frame) as specified in the 88open Object Compatibility
6313 Standard, ``OCS''@.  This extra information allows debugging of code that
6314 has had the frame pointer eliminated.  The default for DG/UX, SVr4, and
6315 Delta 88 SVr3.2 is to include this information; other 88k configurations
6316 omit this information by default.
6317
6318 @item -mocs-frame-position
6319 @opindex mocs-frame-position
6320 @cindex register positions in frame (88k)
6321 When emitting COFF debugging information for automatic variables and
6322 parameters stored on the stack, use the offset from the canonical frame
6323 address, which is the stack pointer (register 31) on entry to the
6324 function.  The DG/UX, SVr4, Delta88 SVr3.2, and BCS configurations use
6325 @option{-mocs-frame-position}; other 88k configurations have the default
6326 @option{-mno-ocs-frame-position}.
6327
6328 @item -mno-ocs-frame-position
6329 @opindex mno-ocs-frame-position
6330 @cindex register positions in frame (88k)
6331 When emitting COFF debugging information for automatic variables and
6332 parameters stored on the stack, use the offset from the frame pointer
6333 register (register 30).  When this option is in effect, the frame
6334 pointer is not eliminated when debugging information is selected by the
6335 -g switch.
6336
6337 @item -moptimize-arg-area
6338 @opindex moptimize-arg-area
6339 @cindex arguments in frame (88k)
6340 Save space by reorganizing the stack frame.  This option generates code
6341 that does not agree with the 88open specifications, but uses less
6342 memory.
6343
6344 @itemx -mno-optimize-arg-area
6345 @opindex mno-optimize-arg-area
6346 Do not reorganize the stack frame to save space.  This is the default.
6347 The generated conforms to the specification, but uses more memory.
6348
6349 @item -mshort-data-@var{num}
6350 @opindex mshort-data
6351 @cindex smaller data references (88k)
6352 @cindex r0-relative references (88k)
6353 Generate smaller data references by making them relative to @code{r0},
6354 which allows loading a value using a single instruction (rather than the
6355 usual two).  You control which data references are affected by
6356 specifying @var{num} with this option.  For example, if you specify
6357 @option{-mshort-data-512}, then the data references affected are those
6358 involving displacements of less than 512 bytes.
6359 @option{-mshort-data-@var{num}} is not effective for @var{num} greater
6360 than 64k.
6361
6362 @item -mserialize-volatile
6363 @opindex mserialize-volatile
6364 @itemx -mno-serialize-volatile
6365 @opindex mno-serialize-volatile
6366 @cindex sequential consistency on 88k
6367 Do, or don't, generate code to guarantee sequential consistency
6368 of volatile memory references.  By default, consistency is
6369 guaranteed.
6370
6371 The order of memory references made by the MC88110 processor does
6372 not always match the order of the instructions requesting those
6373 references.  In particular, a load instruction may execute before
6374 a preceding store instruction.  Such reordering violates
6375 sequential consistency of volatile memory references, when there
6376 are multiple processors.   When consistency must be guaranteed,
6377 GCC generates special instructions, as needed, to force
6378 execution in the proper order.
6379
6380 The MC88100 processor does not reorder memory references and so
6381 always provides sequential consistency.  However, by default, GCC
6382 generates the special instructions to guarantee consistency
6383 even when you use @option{-m88100}, so that the code may be run on an
6384 MC88110 processor.  If you intend to run your code only on the
6385 MC88100 processor, you may use @option{-mno-serialize-volatile}.
6386
6387 The extra code generated to guarantee consistency may affect the
6388 performance of your application.  If you know that you can safely
6389 forgo this guarantee, you may use @option{-mno-serialize-volatile}.
6390
6391 @item -msvr4
6392 @itemx -msvr3
6393 @opindex msvr4
6394 @opindex msvr3
6395 @cindex assembler syntax, 88k
6396 @cindex SVr4
6397 Turn on (@option{-msvr4}) or off (@option{-msvr3}) compiler extensions
6398 related to System V release 4 (SVr4).  This controls the following:
6399
6400 @enumerate
6401 @item
6402 Which variant of the assembler syntax to emit.
6403 @item
6404 @option{-msvr4} makes the C preprocessor recognize @samp{#pragma weak}
6405 that is used on System V release 4.
6406 @item
6407 @option{-msvr4} makes GCC issue additional declaration directives used in
6408 SVr4.
6409 @end enumerate
6410
6411 @option{-msvr4} is the default for the m88k-motorola-sysv4 and
6412 m88k-dg-dgux m88k configurations.  @option{-msvr3} is the default for all
6413 other m88k configurations.
6414
6415 @item -mversion-03.00
6416 @opindex mversion-03.00
6417 This option is obsolete, and is ignored.
6418 @c ??? which asm syntax better for GAS?  option there too?
6419
6420 @item -mno-check-zero-division
6421 @itemx -mcheck-zero-division
6422 @opindex mno-check-zero-division
6423 @opindex mcheck-zero-division
6424 @cindex zero division on 88k
6425 Do, or don't, generate code to guarantee that integer division by
6426 zero will be detected.  By default, detection is guaranteed.
6427
6428 Some models of the MC88100 processor fail to trap upon integer
6429 division by zero under certain conditions.  By default, when
6430 compiling code that might be run on such a processor, GCC
6431 generates code that explicitly checks for zero-valued divisors
6432 and traps with exception number 503 when one is detected.  Use of
6433 @option{-mno-check-zero-division} suppresses such checking for code
6434 generated to run on an MC88100 processor.
6435
6436 GCC assumes that the MC88110 processor correctly detects all instances
6437 of integer division by zero.  When @option{-m88110} is specified, no
6438 explicit checks for zero-valued divisors are generated, and both
6439 @option{-mcheck-zero-division} and @option{-mno-check-zero-division} are
6440 ignored.
6441
6442 @item -muse-div-instruction
6443 @opindex muse-div-instruction
6444 @cindex divide instruction, 88k
6445 Use the div instruction for signed integer division on the
6446 MC88100 processor.  By default, the div instruction is not used.
6447
6448 On the MC88100 processor the signed integer division instruction
6449 div) traps to the operating system on a negative operand.  The
6450 operating system transparently completes the operation, but at a
6451 large cost in execution time.  By default, when compiling code
6452 that might be run on an MC88100 processor, GCC emulates signed
6453 integer division using the unsigned integer division instruction
6454 divu), thereby avoiding the large penalty of a trap to the
6455 operating system.  Such emulation has its own, smaller, execution
6456 cost in both time and space.  To the extent that your code's
6457 important signed integer division operations are performed on two
6458 nonnegative operands, it may be desirable to use the div
6459 instruction directly.
6460
6461 On the MC88110 processor the div instruction (also known as the
6462 divs instruction) processes negative operands without trapping to
6463 the operating system.  When @option{-m88110} is specified,
6464 @option{-muse-div-instruction} is ignored, and the div instruction is used
6465 for signed integer division.
6466
6467 Note that the result of dividing @code{INT_MIN} by @minus{}1 is undefined.  In
6468 particular, the behavior of such a division with and without
6469 @option{-muse-div-instruction} may differ.
6470
6471 @item -mtrap-large-shift
6472 @itemx -mhandle-large-shift
6473 @opindex mtrap-large-shift
6474 @opindex mhandle-large-shift
6475 @cindex bit shift overflow (88k)
6476 @cindex large bit shifts (88k)
6477 Include code to detect bit-shifts of more than 31 bits; respectively,
6478 trap such shifts or emit code to handle them properly.  By default GCC
6479 makes no special provision for large bit shifts.
6480
6481 @item -mwarn-passed-structs
6482 @opindex mwarn-passed-structs
6483 @cindex structure passing (88k)
6484 Warn when a function passes a struct as an argument or result.
6485 Structure-passing conventions have changed during the evolution of the C
6486 language, and are often the source of portability problems.  By default,
6487 GCC issues no such warning.
6488 @end table
6489
6490 @c break page here to avoid unsightly interparagraph stretch.
6491 @c -zw, 2001-8-17
6492 @page
6493
6494 @node RS/6000 and PowerPC Options
6495 @subsection IBM RS/6000 and PowerPC Options
6496 @cindex RS/6000 and PowerPC Options
6497 @cindex IBM RS/6000 and PowerPC Options
6498
6499 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
6500 @table @gcctabopt
6501 @item -mpower
6502 @itemx -mno-power
6503 @itemx -mpower2
6504 @itemx -mno-power2
6505 @itemx -mpowerpc
6506 @itemx -mno-powerpc
6507 @itemx -mpowerpc-gpopt
6508 @itemx -mno-powerpc-gpopt
6509 @itemx -mpowerpc-gfxopt
6510 @itemx -mno-powerpc-gfxopt
6511 @itemx -mpowerpc64
6512 @itemx -mno-powerpc64
6513 @opindex mpower
6514 @opindex mno-power
6515 @opindex mpower2
6516 @opindex mno-power2
6517 @opindex mpowerpc
6518 @opindex mno-powerpc
6519 @opindex mpowerpc-gpopt
6520 @opindex mno-powerpc-gpopt
6521 @opindex mpowerpc-gfxopt
6522 @opindex mno-powerpc-gfxopt
6523 @opindex mpowerpc64
6524 @opindex mno-powerpc64
6525 GCC supports two related instruction set architectures for the
6526 RS/6000 and PowerPC@.  The @dfn{POWER} instruction set are those
6527 instructions supported by the @samp{rios} chip set used in the original
6528 RS/6000 systems and the @dfn{PowerPC} instruction set is the
6529 architecture of the Motorola MPC5xx, MPC6xx, MPC8xx microprocessors, and
6530 the IBM 4xx microprocessors.
6531
6532 Neither architecture is a subset of the other.  However there is a
6533 large common subset of instructions supported by both.  An MQ
6534 register is included in processors supporting the POWER architecture.
6535
6536 You use these options to specify which instructions are available on the
6537 processor you are using.  The default value of these options is
6538 determined when configuring GCC@.  Specifying the
6539 @option{-mcpu=@var{cpu_type}} overrides the specification of these
6540 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
6541 rather than the options listed above.
6542
6543 The @option{-mpower} option allows GCC to generate instructions that
6544 are found only in the POWER architecture and to use the MQ register.
6545 Specifying @option{-mpower2} implies @option{-power} and also allows GCC
6546 to generate instructions that are present in the POWER2 architecture but
6547 not the original POWER architecture.
6548
6549 The @option{-mpowerpc} option allows GCC to generate instructions that
6550 are found only in the 32-bit subset of the PowerPC architecture.
6551 Specifying @option{-mpowerpc-gpopt} implies @option{-mpowerpc} and also allows
6552 GCC to use the optional PowerPC architecture instructions in the
6553 General Purpose group, including floating-point square root.  Specifying
6554 @option{-mpowerpc-gfxopt} implies @option{-mpowerpc} and also allows GCC to
6555 use the optional PowerPC architecture instructions in the Graphics
6556 group, including floating-point select.
6557
6558 The @option{-mpowerpc64} option allows GCC to generate the additional
6559 64-bit instructions that are found in the full PowerPC64 architecture
6560 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
6561 @option{-mno-powerpc64}.
6562
6563 If you specify both @option{-mno-power} and @option{-mno-powerpc}, GCC
6564 will use only the instructions in the common subset of both
6565 architectures plus some special AIX common-mode calls, and will not use
6566 the MQ register.  Specifying both @option{-mpower} and @option{-mpowerpc}
6567 permits GCC to use any instruction from either architecture and to
6568 allow use of the MQ register; specify this for the Motorola MPC601.
6569
6570 @item -mnew-mnemonics
6571 @itemx -mold-mnemonics
6572 @opindex mnew-mnemonics
6573 @opindex mold-mnemonics
6574 Select which mnemonics to use in the generated assembler code.  With
6575 @option{-mnew-mnemonics}, GCC uses the assembler mnemonics defined for
6576 the PowerPC architecture.  With @option{-mold-mnemonics} it uses the
6577 assembler mnemonics defined for the POWER architecture.  Instructions
6578 defined in only one architecture have only one mnemonic; GCC uses that
6579 mnemonic irrespective of which of these options is specified.
6580
6581 GCC defaults to the mnemonics appropriate for the architecture in
6582 use.  Specifying @option{-mcpu=@var{cpu_type}} sometimes overrides the
6583 value of these option.  Unless you are building a cross-compiler, you
6584 should normally not specify either @option{-mnew-mnemonics} or
6585 @option{-mold-mnemonics}, but should instead accept the default.
6586
6587 @item -mcpu=@var{cpu_type}
6588 @opindex mcpu
6589 Set architecture type, register usage, choice of mnemonics, and
6590 instruction scheduling parameters for machine type @var{cpu_type}.
6591 Supported values for @var{cpu_type} are @samp{rios}, @samp{rios1},
6592 @samp{rsc}, @samp{rios2}, @samp{rs64a}, @samp{601}, @samp{602},
6593 @samp{603}, @samp{603e}, @samp{604}, @samp{604e}, @samp{620},
6594 @samp{630}, @samp{740}, @samp{7400}, @samp{7450}, @samp{750},
6595 @samp{power}, @samp{power2}, @samp{powerpc}, @samp{403}, @samp{505},
6596 @samp{801}, @samp{821}, @samp{823}, and @samp{860} and @samp{common}.
6597
6598 @option{-mcpu=common} selects a completely generic processor.  Code
6599 generated under this option will run on any POWER or PowerPC processor.
6600 GCC will use only the instructions in the common subset of both
6601 architectures, and will not use the MQ register.  GCC assumes a generic
6602 processor model for scheduling purposes.
6603
6604 @option{-mcpu=power}, @option{-mcpu=power2}, @option{-mcpu=powerpc}, and
6605 @option{-mcpu=powerpc64} specify generic POWER, POWER2, pure 32-bit
6606 PowerPC (i.e., not MPC601), and 64-bit PowerPC architecture machine
6607 types, with an appropriate, generic processor model assumed for
6608 scheduling purposes.
6609
6610 The other options specify a specific processor.  Code generated under
6611 those options will run best on that processor, and may not run at all on
6612 others.
6613
6614 The @option{-mcpu} options automatically enable or disable other
6615 @option{-m} options as follows:
6616
6617 @table @samp
6618 @item common
6619 @option{-mno-power}, @option{-mno-powerc}
6620
6621 @item power
6622 @itemx power2
6623 @itemx rios1
6624 @itemx rios2
6625 @itemx rsc
6626 @option{-mpower}, @option{-mno-powerpc}, @option{-mno-new-mnemonics}
6627
6628 @item powerpc
6629 @itemx rs64a
6630 @itemx 602
6631 @itemx 603
6632 @itemx 603e
6633 @itemx 604
6634 @itemx 620
6635 @itemx 630
6636 @itemx 740
6637 @itemx 7400
6638 @itemx 7450
6639 @itemx 750
6640 @itemx 505
6641 @option{-mno-power}, @option{-mpowerpc}, @option{-mnew-mnemonics}
6642
6643 @item 601
6644 @option{-mpower}, @option{-mpowerpc}, @option{-mnew-mnemonics}
6645
6646 @item 403
6647 @itemx 821
6648 @itemx 860
6649 @option{-mno-power}, @option{-mpowerpc}, @option{-mnew-mnemonics}, @option{-msoft-float}
6650 @end table
6651
6652 @item -mtune=@var{cpu_type}
6653 @opindex mtune
6654 Set the instruction scheduling parameters for machine type
6655 @var{cpu_type}, but do not set the architecture type, register usage, or
6656 choice of mnemonics, as @option{-mcpu=@var{cpu_type}} would.  The same
6657 values for @var{cpu_type} are used for @option{-mtune} as for
6658 @option{-mcpu}.  If both are specified, the code generated will use the
6659 architecture, registers, and mnemonics set by @option{-mcpu}, but the
6660 scheduling parameters set by @option{-mtune}.
6661
6662 @item -maltivec
6663 @itemx -mno-altivec
6664 @opindex maltivec
6665 @opindex mno-altivec
6666 These switches enable or disable the use of built-in functions that
6667 allow access to the AltiVec instruction set.  You may also need to set
6668 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
6669 enhancements.
6670
6671 @item -mfull-toc
6672 @itemx -mno-fp-in-toc
6673 @itemx -mno-sum-in-toc
6674 @itemx -mminimal-toc
6675 @opindex mfull-toc
6676 @opindex mno-fp-in-toc
6677 @opindex mno-sum-in-toc
6678 @opindex mminimal-toc
6679 Modify generation of the TOC (Table Of Contents), which is created for
6680 every executable file.  The @option{-mfull-toc} option is selected by
6681 default.  In that case, GCC will allocate at least one TOC entry for
6682 each unique non-automatic variable reference in your program.  GCC
6683 will also place floating-point constants in the TOC@.  However, only
6684 16,384 entries are available in the TOC@.
6685
6686 If you receive a linker error message that saying you have overflowed
6687 the available TOC space, you can reduce the amount of TOC space used
6688 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
6689 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
6690 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
6691 generate code to calculate the sum of an address and a constant at
6692 run-time instead of putting that sum into the TOC@.  You may specify one
6693 or both of these options.  Each causes GCC to produce very slightly
6694 slower and larger code at the expense of conserving TOC space.
6695
6696 If you still run out of space in the TOC even when you specify both of
6697 these options, specify @option{-mminimal-toc} instead.  This option causes
6698 GCC to make only one TOC entry for every file.  When you specify this
6699 option, GCC will produce code that is slower and larger but which
6700 uses extremely little TOC space.  You may wish to use this option
6701 only on files that contain less frequently executed code.
6702
6703 @item -maix64
6704 @itemx -maix32
6705 @opindex maix64
6706 @opindex maix32
6707 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
6708 @code{long} type, and the infrastructure needed to support them.
6709 Specifying @option{-maix64} implies @option{-mpowerpc64} and
6710 @option{-mpowerpc}, while @option{-maix32} disables the 64-bit ABI and
6711 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
6712
6713 @item -mxl-call
6714 @itemx -mno-xl-call
6715 @opindex mxl-call
6716 @opindex mno-xl-call
6717 On AIX, pass floating-point arguments to prototyped functions beyond the
6718 register save area (RSA) on the stack in addition to argument FPRs.  The
6719 AIX calling convention was extended but not initially documented to
6720 handle an obscure K&R C case of calling a function that takes the
6721 address of its arguments with fewer arguments than declared.  AIX XL
6722 compilers access floating point arguments which do not fit in the
6723 RSA from the stack when a subroutine is compiled without
6724 optimization.  Because always storing floating-point arguments on the
6725 stack is inefficient and rarely needed, this option is not enabled by
6726 default and only is necessary when calling subroutines compiled by AIX
6727 XL compilers without optimization.
6728
6729 @item -mthreads
6730 @opindex mthreads
6731 Support @dfn{AIX Threads}.  Link an application written to use
6732 @dfn{pthreads} with special libraries and startup code to enable the
6733 application to run.
6734
6735 @item -mpe
6736 @opindex mpe
6737 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
6738 application written to use message passing with special startup code to
6739 enable the application to run.  The system must have PE installed in the
6740 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
6741 must be overridden with the @option{-specs=} option to specify the
6742 appropriate directory location.  The Parallel Environment does not
6743 support threads, so the @option{-mpe} option and the @option{-mthreads}
6744 option are incompatible.
6745
6746 @item -msoft-float
6747 @itemx -mhard-float
6748 @opindex msoft-float
6749 @opindex mhard-float
6750 Generate code that does not use (uses) the floating-point register set.
6751 Software floating point emulation is provided if you use the
6752 @option{-msoft-float} option, and pass the option to GCC when linking.
6753
6754 @item -mmultiple
6755 @itemx -mno-multiple
6756 @opindex mmultiple
6757 @opindex mno-multiple
6758 Generate code that uses (does not use) the load multiple word
6759 instructions and the store multiple word instructions.  These
6760 instructions are generated by default on POWER systems, and not
6761 generated on PowerPC systems.  Do not use @option{-mmultiple} on little
6762 endian PowerPC systems, since those instructions do not work when the
6763 processor is in little endian mode.  The exceptions are PPC740 and
6764 PPC750 which permit the instructions usage in little endian mode.
6765
6766 @item -mstring
6767 @itemx -mno-string
6768 @opindex mstring
6769 @opindex mno-string
6770 Generate code that uses (does not use) the load string instructions
6771 and the store string word instructions to save multiple registers and
6772 do small block moves.  These instructions are generated by default on
6773 POWER systems, and not generated on PowerPC systems.  Do not use
6774 @option{-mstring} on little endian PowerPC systems, since those
6775 instructions do not work when the processor is in little endian mode.
6776 The exceptions are PPC740 and PPC750 which permit the instructions
6777 usage in little endian mode.
6778
6779 @item -mupdate
6780 @itemx -mno-update
6781 @opindex mupdate
6782 @opindex mno-update
6783 Generate code that uses (does not use) the load or store instructions
6784 that update the base register to the address of the calculated memory
6785 location.  These instructions are generated by default.  If you use
6786 @option{-mno-update}, there is a small window between the time that the
6787 stack pointer is updated and the address of the previous frame is
6788 stored, which means code that walks the stack frame across interrupts or
6789 signals may get corrupted data.
6790
6791 @item -mfused-madd
6792 @itemx -mno-fused-madd
6793 @opindex mfused-madd
6794 @opindex mno-fused-madd
6795 Generate code that uses (does not use) the floating point multiply and
6796 accumulate instructions.  These instructions are generated by default if
6797 hardware floating is used.
6798
6799 @item -mno-bit-align
6800 @itemx -mbit-align
6801 @opindex mno-bit-align
6802 @opindex mbit-align
6803 On System V.4 and embedded PowerPC systems do not (do) force structures
6804 and unions that contain bit-fields to be aligned to the base type of the
6805 bit-field.
6806
6807 For example, by default a structure containing nothing but 8
6808 @code{unsigned} bit-fields of length 1 would be aligned to a 4 byte
6809 boundary and have a size of 4 bytes.  By using @option{-mno-bit-align},
6810 the structure would be aligned to a 1 byte boundary and be one byte in
6811 size.
6812
6813 @item -mno-strict-align
6814 @itemx -mstrict-align
6815 @opindex mno-strict-align
6816 @opindex mstrict-align
6817 On System V.4 and embedded PowerPC systems do not (do) assume that
6818 unaligned memory references will be handled by the system.
6819
6820 @item -mrelocatable
6821 @itemx -mno-relocatable
6822 @opindex mrelocatable
6823 @opindex mno-relocatable
6824 On embedded PowerPC systems generate code that allows (does not allow)
6825 the program to be relocated to a different address at runtime.  If you
6826 use @option{-mrelocatable} on any module, all objects linked together must
6827 be compiled with @option{-mrelocatable} or @option{-mrelocatable-lib}.
6828
6829 @item -mrelocatable-lib
6830 @itemx -mno-relocatable-lib
6831 @opindex mrelocatable-lib
6832 @opindex mno-relocatable-lib
6833 On embedded PowerPC systems generate code that allows (does not allow)
6834 the program to be relocated to a different address at runtime.  Modules
6835 compiled with @option{-mrelocatable-lib} can be linked with either modules
6836 compiled without @option{-mrelocatable} and @option{-mrelocatable-lib} or
6837 with modules compiled with the @option{-mrelocatable} options.
6838
6839 @item -mno-toc
6840 @itemx -mtoc
6841 @opindex mno-toc
6842 @opindex mtoc
6843 On System V.4 and embedded PowerPC systems do not (do) assume that
6844 register 2 contains a pointer to a global area pointing to the addresses
6845 used in the program.
6846
6847 @item -mlittle
6848 @itemx -mlittle-endian
6849 @opindex mlittle
6850 @opindex mlittle-endian
6851 On System V.4 and embedded PowerPC systems compile code for the
6852 processor in little endian mode.  The @option{-mlittle-endian} option is
6853 the same as @option{-mlittle}.
6854
6855 @item -mbig
6856 @itemx -mbig-endian
6857 @opindex mbig
6858 @opindex mbig-endian
6859 On System V.4 and embedded PowerPC systems compile code for the
6860 processor in big endian mode.  The @option{-mbig-endian} option is
6861 the same as @option{-mbig}.
6862
6863 @item -mcall-sysv
6864 @opindex mcall-sysv
6865 On System V.4 and embedded PowerPC systems compile code using calling
6866 conventions that adheres to the March 1995 draft of the System V
6867 Application Binary Interface, PowerPC processor supplement.  This is the
6868 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
6869
6870 @item -mcall-sysv-eabi
6871 @opindex mcall-sysv-eabi
6872 Specify both @option{-mcall-sysv} and @option{-meabi} options.
6873
6874 @item -mcall-sysv-noeabi
6875 @opindex mcall-sysv-noeabi
6876 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
6877
6878 @item -mcall-aix
6879 @opindex mcall-aix
6880 On System V.4 and embedded PowerPC systems compile code using calling
6881 conventions that are similar to those used on AIX@.  This is the
6882 default if you configured GCC using @samp{powerpc-*-eabiaix}.
6883
6884 @item -mcall-solaris
6885 @opindex mcall-solaris
6886 On System V.4 and embedded PowerPC systems compile code for the Solaris
6887 operating system.
6888
6889 @item -mcall-linux
6890 @opindex mcall-linux
6891 On System V.4 and embedded PowerPC systems compile code for the
6892 Linux-based GNU system.
6893
6894 @item -mcall-netbsd
6895 @opindex mcall-netbsd
6896 On System V.4 and embedded PowerPC systems compile code for the
6897 NetBSD operating system.
6898
6899 @item -maix-struct-return
6900 @opindex maix-struct-return
6901 Return all structures in memory (as specified by the AIX ABI)@.
6902
6903 @item -msvr4-struct-return
6904 @opindex msvr4-struct-return
6905 Return structures smaller than 8 bytes in registers (as specified by the
6906 SVR4 ABI)@.
6907
6908 @item -mabi=altivec
6909 @opindex mabi=altivec
6910 Extend the current ABI with AltiVec ABI extensions.  This does not
6911 change the default ABI, instead it adds the AltiVec ABI extensions to
6912 the current ABI@.
6913
6914 @item -mprototype
6915 @itemx -mno-prototype
6916 @opindex mprototype
6917 @opindex mno-prototype
6918 On System V.4 and embedded PowerPC systems assume that all calls to
6919 variable argument functions are properly prototyped.  Otherwise, the
6920 compiler must insert an instruction before every non prototyped call to
6921 set or clear bit 6 of the condition code register (@var{CR}) to
6922 indicate whether floating point values were passed in the floating point
6923 registers in case the function takes a variable arguments.  With
6924 @option{-mprototype}, only calls to prototyped variable argument functions
6925 will set or clear the bit.
6926
6927 @item -msim
6928 @opindex msim
6929 On embedded PowerPC systems, assume that the startup module is called
6930 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
6931 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}.
6932 configurations.
6933
6934 @item -mmvme
6935 @opindex mmvme
6936 On embedded PowerPC systems, assume that the startup module is called
6937 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
6938 @file{libc.a}.
6939
6940 @item -mads
6941 @opindex mads
6942 On embedded PowerPC systems, assume that the startup module is called
6943 @file{crt0.o} and the standard C libraries are @file{libads.a} and
6944 @file{libc.a}.
6945
6946 @item -myellowknife
6947 @opindex myellowknife
6948 On embedded PowerPC systems, assume that the startup module is called
6949 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
6950 @file{libc.a}.
6951
6952 @item -mvxworks
6953 @opindex mvxworks
6954 On System V.4 and embedded PowerPC systems, specify that you are
6955 compiling for a VxWorks system.
6956
6957 @item -memb
6958 @opindex memb
6959 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
6960 header to indicate that @samp{eabi} extended relocations are used.
6961
6962 @item -meabi
6963 @itemx -mno-eabi
6964 @opindex meabi
6965 @opindex mno-eabi
6966 On System V.4 and embedded PowerPC systems do (do not) adhere to the
6967 Embedded Applications Binary Interface (eabi) which is a set of
6968 modifications to the System V.4 specifications.  Selecting @option{-meabi}
6969 means that the stack is aligned to an 8 byte boundary, a function
6970 @code{__eabi} is called to from @code{main} to set up the eabi
6971 environment, and the @option{-msdata} option can use both @code{r2} and
6972 @code{r13} to point to two separate small data areas.  Selecting
6973 @option{-mno-eabi} means that the stack is aligned to a 16 byte boundary,
6974 do not call an initialization function from @code{main}, and the
6975 @option{-msdata} option will only use @code{r13} to point to a single
6976 small data area.  The @option{-meabi} option is on by default if you
6977 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
6978
6979 @item -msdata=eabi
6980 @opindex msdata=eabi
6981 On System V.4 and embedded PowerPC systems, put small initialized
6982 @code{const} global and static data in the @samp{.sdata2} section, which
6983 is pointed to by register @code{r2}.  Put small initialized
6984 non-@code{const} global and static data in the @samp{.sdata} section,
6985 which is pointed to by register @code{r13}.  Put small uninitialized
6986 global and static data in the @samp{.sbss} section, which is adjacent to
6987 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
6988 incompatible with the @option{-mrelocatable} option.  The
6989 @option{-msdata=eabi} option also sets the @option{-memb} option.
6990
6991 @item -msdata=sysv
6992 @opindex msdata=sysv
6993 On System V.4 and embedded PowerPC systems, put small global and static
6994 data in the @samp{.sdata} section, which is pointed to by register
6995 @code{r13}.  Put small uninitialized global and static data in the
6996 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
6997 The @option{-msdata=sysv} option is incompatible with the
6998 @option{-mrelocatable} option.
6999
7000 @item -msdata=default
7001 @itemx -msdata
7002 @opindex msdata=default
7003 @opindex msdata
7004 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
7005 compile code the same as @option{-msdata=eabi}, otherwise compile code the
7006 same as @option{-msdata=sysv}.
7007
7008 @item -msdata-data
7009 @opindex msdata-data
7010 On System V.4 and embedded PowerPC systems, put small global and static
7011 data in the @samp{.sdata} section.  Put small uninitialized global and
7012 static data in the @samp{.sbss} section.  Do not use register @code{r13}
7013 to address small data however.  This is the default behavior unless
7014 other @option{-msdata} options are used.
7015
7016 @item -msdata=none
7017 @itemx -mno-sdata
7018 @opindex msdata=none
7019 @opindex mno-sdata
7020 On embedded PowerPC systems, put all initialized global and static data
7021 in the @samp{.data} section, and all uninitialized data in the
7022 @samp{.bss} section.
7023
7024 @item -G @var{num}
7025 @opindex G
7026 @cindex smaller data references (PowerPC)
7027 @cindex .sdata/.sdata2 references (PowerPC)
7028 On embedded PowerPC systems, put global and static items less than or
7029 equal to @var{num} bytes into the small data or bss sections instead of
7030 the normal data or bss section.  By default, @var{num} is 8.  The
7031 @option{-G @var{num}} switch is also passed to the linker.
7032 All modules should be compiled with the same @option{-G @var{num}} value.
7033
7034 @item -mregnames
7035 @itemx -mno-regnames
7036 @opindex mregnames
7037 @opindex mno-regnames
7038 On System V.4 and embedded PowerPC systems do (do not) emit register
7039 names in the assembly language output using symbolic forms.
7040
7041 @end table
7042
7043 @node RT Options
7044 @subsection IBM RT Options
7045 @cindex RT options
7046 @cindex IBM RT options
7047
7048 These @samp{-m} options are defined for the IBM RT PC:
7049
7050 @table @gcctabopt
7051 @item -min-line-mul
7052 @opindex min-line-mul
7053 Use an in-line code sequence for integer multiplies.  This is the
7054 default.
7055
7056 @item -mcall-lib-mul
7057 @opindex mcall-lib-mul
7058 Call @code{lmul$$} for integer multiples.
7059
7060 @item -mfull-fp-blocks
7061 @opindex mfull-fp-blocks
7062 Generate full-size floating point data blocks, including the minimum
7063 amount of scratch space recommended by IBM@.  This is the default.
7064
7065 @item -mminimum-fp-blocks
7066 @opindex mminimum-fp-blocks
7067 Do not include extra scratch space in floating point data blocks.  This
7068 results in smaller code, but slower execution, since scratch space must
7069 be allocated dynamically.
7070
7071 @cindex @file{varargs.h} and RT PC
7072 @cindex @file{stdarg.h} and RT PC
7073 @item -mfp-arg-in-fpregs
7074 @opindex mfp-arg-in-fpregs
7075 Use a calling sequence incompatible with the IBM calling convention in
7076 which floating point arguments are passed in floating point registers.
7077 Note that @code{varargs.h} and @code{stdarg.h} will not work with
7078 floating point operands if this option is specified.
7079
7080 @item -mfp-arg-in-gregs
7081 @opindex mfp-arg-in-gregs
7082 Use the normal calling convention for floating point arguments.  This is
7083 the default.
7084
7085 @item -mhc-struct-return
7086 @opindex mhc-struct-return
7087 Return structures of more than one word in memory, rather than in a
7088 register.  This provides compatibility with the MetaWare HighC (hc)
7089 compiler.  Use the option @option{-fpcc-struct-return} for compatibility
7090 with the Portable C Compiler (pcc).
7091
7092 @item -mnohc-struct-return
7093 @opindex mnohc-struct-return
7094 Return some structures of more than one word in registers, when
7095 convenient.  This is the default.  For compatibility with the
7096 IBM-supplied compilers, use the option @option{-fpcc-struct-return} or the
7097 option @option{-mhc-struct-return}.
7098 @end table
7099
7100 @node MIPS Options
7101 @subsection MIPS Options
7102 @cindex MIPS options
7103
7104 These @samp{-m} options are defined for the MIPS family of computers:
7105
7106 @table @gcctabopt
7107
7108 @item -march=@var{cpu-type}
7109 @opindex march
7110 Assume the defaults for the machine type @var{cpu-type} when generating
7111 instructions.  The choices for @var{cpu-type} are  @samp{r2000}, @samp{r3000},
7112 @samp{r3900}, @samp{r4000}, @samp{r4100}, @samp{r4300}, @samp{r4400},
7113 @samp{r4600}, @samp{r4650}, @samp{r5000}, @samp{r6000}, @samp{r8000},
7114 and @samp{orion}.  Additionally, the @samp{r2000}, @samp{r3000},
7115 @samp{r4000}, @samp{r5000}, and @samp{r6000} can be abbreviated as
7116 @samp{r2k} (or @samp{r2K}), @samp{r3k}, etc.
7117
7118 @item -mtune=@var{cpu-type}
7119 @opindex mtune
7120 Assume the defaults for the machine type @var{cpu-type} when scheduling
7121 instructions.  The choices for @var{cpu-type} are @samp{r2000}, @samp{r3000},
7122 @samp{r3900}, @samp{r4000}, @samp{r4100}, @samp{r4300}, @samp{r4400},
7123 @samp{r4600}, @samp{r4650}, @samp{r5000}, @samp{r6000}, @samp{r8000},
7124 and @samp{orion}.  Additionally, the @samp{r2000}, @samp{r3000},
7125 @samp{r4000}, @samp{r5000}, and @samp{r6000} can be abbreviated as
7126 @samp{r2k} (or @samp{r2K}), @samp{r3k}, etc.  While picking a specific
7127 @var{cpu-type} will schedule things appropriately for that particular
7128 chip, the compiler will not generate any code that does not meet level 1
7129 of the MIPS ISA (instruction set architecture) without a @option{-mipsX}
7130 or @option{-mabi} switch being used.
7131
7132 @item -mcpu=@var{cpu-type}
7133 @opindex mcpu
7134 This is identical to specifying both @option{-march} and @option{-mtune}.
7135
7136 @item -mips1
7137 @opindex mips1
7138 Issue instructions from level 1 of the MIPS ISA@.  This is the default.
7139 @samp{r3000} is the default @var{cpu-type} at this ISA level.
7140
7141 @item -mips2
7142 @opindex mips2
7143 Issue instructions from level 2 of the MIPS ISA (branch likely, square
7144 root instructions).  @samp{r6000} is the default @var{cpu-type} at this
7145 ISA level.
7146
7147 @item -mips3
7148 @opindex mips3
7149 Issue instructions from level 3 of the MIPS ISA (64-bit instructions).
7150 @samp{r4000} is the default @var{cpu-type} at this ISA level.
7151
7152 @item -mips4
7153 @opindex mips4
7154 Issue instructions from level 4 of the MIPS ISA (conditional move,
7155 prefetch, enhanced FPU instructions).  @samp{r8000} is the default
7156 @var{cpu-type} at this ISA level.
7157
7158 @item -mfp32
7159 @opindex mfp32
7160 Assume that 32 32-bit floating point registers are available.  This is
7161 the default.
7162
7163 @item -mfp64
7164 @opindex mfp64
7165 Assume that 32 64-bit floating point registers are available.  This is
7166 the default when the @option{-mips3} option is used.
7167
7168 @item -mfused-madd
7169 @itemx -mno-fused-madd
7170 @opindex mfused-madd
7171 @opindex mno-fused-madd
7172 Generate code that uses (does not use) the floating point multiply and
7173 accumulate instructions, when they are available.  These instructions
7174 are generated by default if they are available, but this may be
7175 undesirable if the extra precision causes problems or on certain chips
7176 in the mode where denormals are rounded to zero where denormals
7177 generated by multiply and accumulate instructions cause exceptions
7178 anyway.
7179
7180 @item -mgp32
7181 @opindex mgp32
7182 Assume that 32 32-bit general purpose registers are available.  This is
7183 the default.
7184
7185 @item -mgp64
7186 @opindex mgp64
7187 Assume that 32 64-bit general purpose registers are available.  This is
7188 the default when the @option{-mips3} option is used.
7189
7190 @item -mint64
7191 @opindex mint64
7192 Force int and long types to be 64 bits wide.  See @option{-mlong32} for an
7193 explanation of the default, and the width of pointers.
7194
7195 @item -mlong64
7196 @opindex mlong64
7197 Force long types to be 64 bits wide.  See @option{-mlong32} for an
7198 explanation of the default, and the width of pointers.
7199
7200 @item -mlong32
7201 @opindex mlong32
7202 Force long, int, and pointer types to be 32 bits wide.
7203
7204 If none of @option{-mlong32}, @option{-mlong64}, or @option{-mint64} are set,
7205 the size of ints, longs, and pointers depends on the ABI and ISA chosen.
7206 For @option{-mabi=32}, and @option{-mabi=n32}, ints and longs are 32 bits
7207 wide.  For @option{-mabi=64}, ints are 32 bits, and longs are 64 bits wide.
7208 For @option{-mabi=eabi} and either @option{-mips1} or @option{-mips2}, ints
7209 and longs are 32 bits wide.  For @option{-mabi=eabi} and higher ISAs, ints
7210 are 32 bits, and longs are 64 bits wide.  The width of pointer types is
7211 the smaller of the width of longs or the width of general purpose
7212 registers (which in turn depends on the ISA)@.
7213
7214 @item -mabi=32
7215 @itemx -mabi=o64
7216 @itemx -mabi=n32
7217 @itemx -mabi=64
7218 @itemx -mabi=eabi
7219 @opindex mabi=32
7220 @opindex mabi=o64
7221 @opindex mabi=n32
7222 @opindex mabi=64
7223 @opindex mabi=eabi
7224 Generate code for the indicated ABI@.  The default instruction level is
7225 @option{-mips1} for @samp{32}, @option{-mips3} for @samp{n32}, and
7226 @option{-mips4} otherwise.  Conversely, with @option{-mips1} or
7227 @option{-mips2}, the default ABI is @samp{32}; otherwise, the default ABI
7228 is @samp{64}.
7229
7230 @item -mmips-as
7231 @opindex mmips-as
7232 Generate code for the MIPS assembler, and invoke @file{mips-tfile} to
7233 add normal debug information.  This is the default for all
7234 platforms except for the OSF/1 reference platform, using the OSF/rose
7235 object format.  If the either of the @option{-gstabs} or @option{-gstabs+}
7236 switches are used, the @file{mips-tfile} program will encapsulate the
7237 stabs within MIPS ECOFF@.
7238
7239 @item -mgas
7240 @opindex mgas
7241 Generate code for the GNU assembler.  This is the default on the OSF/1
7242 reference platform, using the OSF/rose object format.  Also, this is
7243 the default if the configure option @option{--with-gnu-as} is used.
7244
7245 @item -msplit-addresses
7246 @itemx -mno-split-addresses
7247 @opindex msplit-addresses
7248 @opindex mno-split-addresses
7249 Generate code to load the high and low parts of address constants separately.
7250 This allows GCC to optimize away redundant loads of the high order
7251 bits of addresses.  This optimization requires GNU as and GNU ld.
7252 This optimization is enabled by default for some embedded targets where
7253 GNU as and GNU ld are standard.
7254
7255 @item -mrnames
7256 @itemx -mno-rnames
7257 @opindex mrnames
7258 @opindex mno-rnames
7259 The @option{-mrnames} switch says to output code using the MIPS software
7260 names for the registers, instead of the hardware names (ie, @var{a0}
7261 instead of @var{$4}).  The only known assembler that supports this option
7262 is the Algorithmics assembler.
7263
7264 @item -mgpopt
7265 @itemx -mno-gpopt
7266 @opindex mgpopt
7267 @opindex mno-gpopt
7268 The @option{-mgpopt} switch says to write all of the data declarations
7269 before the instructions in the text section, this allows the MIPS
7270 assembler to generate one word memory references instead of using two
7271 words for short global or static data items.  This is on by default if
7272 optimization is selected.
7273
7274 @item -mstats
7275 @itemx -mno-stats
7276 @opindex mstats
7277 @opindex mno-stats
7278 For each non-inline function processed, the @option{-mstats} switch
7279 causes the compiler to emit one line to the standard error file to
7280 print statistics about the program (number of registers saved, stack
7281 size, etc.).
7282
7283 @item -mmemcpy
7284 @itemx -mno-memcpy
7285 @opindex mmemcpy
7286 @opindex mno-memcpy
7287 The @option{-mmemcpy} switch makes all block moves call the appropriate
7288 string function (@samp{memcpy} or @samp{bcopy}) instead of possibly
7289 generating inline code.
7290
7291 @item -mmips-tfile
7292 @itemx -mno-mips-tfile
7293 @opindex mmips-tfile
7294 @opindex mno-mips-tfile
7295 The @option{-mno-mips-tfile} switch causes the compiler not
7296 postprocess the object file with the @file{mips-tfile} program,
7297 after the MIPS assembler has generated it to add debug support.  If
7298 @file{mips-tfile} is not run, then no local variables will be
7299 available to the debugger.  In addition, @file{stage2} and
7300 @file{stage3} objects will have the temporary file names passed to the
7301 assembler embedded in the object file, which means the objects will
7302 not compare the same.  The @option{-mno-mips-tfile} switch should only
7303 be used when there are bugs in the @file{mips-tfile} program that
7304 prevents compilation.
7305
7306 @item -msoft-float
7307 @opindex msoft-float
7308 Generate output containing library calls for floating point.
7309 @strong{Warning:} the requisite libraries are not part of GCC@.
7310 Normally the facilities of the machine's usual C compiler are used, but
7311 this can't be done directly in cross-compilation.  You must make your
7312 own arrangements to provide suitable library functions for
7313 cross-compilation.
7314
7315 @item -mhard-float
7316 @opindex mhard-float
7317 Generate output containing floating point instructions.  This is the
7318 default if you use the unmodified sources.
7319
7320 @item -mabicalls
7321 @itemx -mno-abicalls
7322 @opindex mabicalls
7323 @opindex mno-abicalls
7324 Emit (or do not emit) the pseudo operations @samp{.abicalls},
7325 @samp{.cpload}, and @samp{.cprestore} that some System V.4 ports use for
7326 position independent code.
7327
7328 @item -mlong-calls
7329 @itemx -mno-long-calls
7330 @opindex mlong-calls
7331 @opindex mno-long-calls
7332 Do all calls with the @samp{JALR} instruction, which requires
7333 loading up a function's address into a register before the call.
7334 You need to use this switch, if you call outside of the current
7335 512 megabyte segment to functions that are not through pointers.
7336
7337 @item -mhalf-pic
7338 @itemx -mno-half-pic
7339 @opindex mhalf-pic
7340 @opindex mno-half-pic
7341 Put pointers to extern references into the data section and load them
7342 up, rather than put the references in the text section.
7343
7344 @item -membedded-pic
7345 @itemx -mno-embedded-pic
7346 @opindex membedded-pic
7347 @opindex mno-embedded-pic
7348 Generate PIC code suitable for some embedded systems.  All calls are
7349 made using PC relative address, and all data is addressed using the $gp
7350 register.  No more than 65536 bytes of global data may be used.  This
7351 requires GNU as and GNU ld which do most of the work.  This currently
7352 only works on targets which use ECOFF; it does not work with ELF@.
7353
7354 @item -membedded-data
7355 @itemx -mno-embedded-data
7356 @opindex membedded-data
7357 @opindex mno-embedded-data
7358 Allocate variables to the read-only data section first if possible, then
7359 next in the small data section if possible, otherwise in data.  This gives
7360 slightly slower code than the default, but reduces the amount of RAM required
7361 when executing, and thus may be preferred for some embedded systems.
7362
7363 @item -muninit-const-in-rodata
7364 @itemx -mno-uninit-const-in-rodata
7365 @opindex muninit-const-in-rodata
7366 @opindex mno-uninit-const-in-rodata
7367 When used together with @option{-membedded-data}, it will always store uninitialized
7368 const variables in the read-only data section.
7369
7370 @item -msingle-float
7371 @itemx -mdouble-float
7372 @opindex msingle-float
7373 @opindex mdouble-float
7374 The @option{-msingle-float} switch tells gcc to assume that the floating
7375 point coprocessor only supports single precision operations, as on the
7376 @samp{r4650} chip.  The @option{-mdouble-float} switch permits gcc to use
7377 double precision operations.  This is the default.
7378
7379 @item -mmad
7380 @itemx -mno-mad
7381 @opindex mmad
7382 @opindex mno-mad
7383 Permit use of the @samp{mad}, @samp{madu} and @samp{mul} instructions,
7384 as on the @samp{r4650} chip.
7385
7386 @item -m4650
7387 @opindex m4650
7388 Turns on @option{-msingle-float}, @option{-mmad}, and, at least for now,
7389 @option{-mcpu=r4650}.
7390
7391 @item -mips16
7392 @itemx -mno-mips16
7393 @opindex mips16
7394 @opindex mno-mips16
7395 Enable 16-bit instructions.
7396
7397 @item -mentry
7398 @opindex mentry
7399 Use the entry and exit pseudo ops.  This option can only be used with
7400 @option{-mips16}.
7401
7402 @item -EL
7403 @opindex EL
7404 Compile code for the processor in little endian mode.
7405 The requisite libraries are assumed to exist.
7406
7407 @item -EB
7408 @opindex EB
7409 Compile code for the processor in big endian mode.
7410 The requisite libraries are assumed to exist.
7411
7412 @item -G @var{num}
7413 @opindex G
7414 @cindex smaller data references (MIPS)
7415 @cindex gp-relative references (MIPS)
7416 Put global and static items less than or equal to @var{num} bytes into
7417 the small data or bss sections instead of the normal data or bss
7418 section.  This allows the assembler to emit one word memory reference
7419 instructions based on the global pointer (@var{gp} or @var{$28}),
7420 instead of the normal two words used.  By default, @var{num} is 8 when
7421 the MIPS assembler is used, and 0 when the GNU assembler is used.  The
7422 @option{-G @var{num}} switch is also passed to the assembler and linker.
7423 All modules should be compiled with the same @option{-G @var{num}}
7424 value.
7425
7426 @item -nocpp
7427 @opindex nocpp
7428 Tell the MIPS assembler to not run its preprocessor over user
7429 assembler files (with a @samp{.s} suffix) when assembling them.
7430
7431 @item -mfix7000
7432 @opindex mfix7000
7433 Pass an option to gas which will cause nops to be inserted if
7434 the read of the destination register of an mfhi or mflo instruction
7435 occurs in the following two instructions.
7436
7437 @item -no-crt0
7438 @opindex no-crt0
7439 Do not include the default crt0.
7440
7441 @item -mflush-func=@var{func}
7442 @itemx -mno-flush-func
7443 @opindex mflush-func
7444 Specifies the function to call to flush the I and D caches, or to not
7445 call any such function.  If called, the function must take the same
7446 arguments as the common @code{_flush_func()}, that is, the address of the
7447 memory range for which the cache is being flushed, the size of the
7448 memory range, and the number 3 (to flush both caches).  The default
7449 depends on the target gcc was configured for, but commonly is either
7450 @samp{_flush_func} or @samp{__cpu_flush}.
7451 @end table
7452
7453 @ifset INTERNALS
7454 These options are defined by the macro
7455 @code{TARGET_SWITCHES} in the machine description.  The default for the
7456 options is also defined by that macro, which enables you to change the
7457 defaults.
7458 @end ifset
7459
7460 @node i386 and x86-64 Options
7461 @subsection Intel 386 and AMD x86-64 Options
7462 @cindex i386 Options
7463 @cindex x86-64 Options
7464 @cindex Intel 386 Options
7465 @cindex AMD x86-64 Options
7466
7467 These @samp{-m} options are defined for the i386 and x86-64 family of
7468 computers:
7469
7470 @table @gcctabopt
7471 @item -mcpu=@var{cpu-type}
7472 @opindex mcpu
7473 Assume the defaults for the machine type @var{cpu-type} when scheduling
7474 instructions.  The choices for @var{cpu-type} are @samp{i386},
7475 @samp{i486}, @samp{i586}, @samp{i686}, @samp{pentium},
7476 @samp{pentiumpro}, @samp{pentium4}, @samp{k6}, and @samp{athlon}
7477
7478 While picking a specific @var{cpu-type} will schedule things appropriately
7479 for that particular chip, the compiler will not generate any code that
7480 does not run on the i386 without the @option{-march=@var{cpu-type}} option
7481 being used.  @samp{i586} is equivalent to @samp{pentium} and @samp{i686}
7482 is equivalent to @samp{pentiumpro}.  @samp{k6} and @samp{athlon} are the
7483 AMD chips as opposed to the Intel ones.
7484
7485 @item -march=@var{cpu-type}
7486 @opindex march
7487 Generate instructions for the machine type @var{cpu-type}.  The choices
7488 for @var{cpu-type} are the same as for @option{-mcpu}.  Moreover,
7489 specifying @option{-march=@var{cpu-type}} implies @option{-mcpu=@var{cpu-type}}.
7490
7491 @item -m386
7492 @itemx -m486
7493 @itemx -mpentium
7494 @itemx -mpentiumpro
7495 @opindex m386
7496 @opindex m486
7497 @opindex mpentium
7498 @opindex mpentiumpro
7499 These options are synonyms for @option{-mcpu=i386}, @option{-mcpu=i486},
7500 @option{-mcpu=pentium}, and @option{-mcpu=pentiumpro} respectively.
7501 These synonyms are deprecated.
7502
7503 @item -mintel-syntax
7504 @opindex mintel-syntax
7505 Emit assembly using Intel syntax opcodes instead of AT&T syntax.
7506
7507 @item -mieee-fp
7508 @itemx -mno-ieee-fp
7509 @opindex mieee-fp
7510 @opindex mno-ieee-fp
7511 Control whether or not the compiler uses IEEE floating point
7512 comparisons.  These handle correctly the case where the result of a
7513 comparison is unordered.
7514
7515 @item -msoft-float
7516 @opindex msoft-float
7517 Generate output containing library calls for floating point.
7518 @strong{Warning:} the requisite libraries are not part of GCC@.
7519 Normally the facilities of the machine's usual C compiler are used, but
7520 this can't be done directly in cross-compilation.  You must make your
7521 own arrangements to provide suitable library functions for
7522 cross-compilation.
7523
7524 On machines where a function returns floating point results in the 80387
7525 register stack, some floating point opcodes may be emitted even if
7526 @option{-msoft-float} is used.
7527
7528 @item -mno-fp-ret-in-387
7529 @opindex mno-fp-ret-in-387
7530 Do not use the FPU registers for return values of functions.
7531
7532 The usual calling convention has functions return values of types
7533 @code{float} and @code{double} in an FPU register, even if there
7534 is no FPU@.  The idea is that the operating system should emulate
7535 an FPU@.
7536
7537 The option @option{-mno-fp-ret-in-387} causes such values to be returned
7538 in ordinary CPU registers instead.
7539
7540 @item -mno-fancy-math-387
7541 @opindex mno-fancy-math-387
7542 Some 387 emulators do not support the @code{sin}, @code{cos} and
7543 @code{sqrt} instructions for the 387.  Specify this option to avoid
7544 generating those instructions.  This option is the default on FreeBSD@.
7545 As of revision 2.6.1, these instructions are not generated unless you
7546 also use the @option{-funsafe-math-optimizations} switch.
7547
7548 @item -malign-double
7549 @itemx -mno-align-double
7550 @opindex malign-double
7551 @opindex mno-align-double
7552 Control whether GCC aligns @code{double}, @code{long double}, and
7553 @code{long long} variables on a two word boundary or a one word
7554 boundary.  Aligning @code{double} variables on a two word boundary will
7555 produce code that runs somewhat faster on a @samp{Pentium} at the
7556 expense of more memory.
7557
7558 @item -m128bit-long-double
7559 @opindex m128bit-long-double
7560 Control the size of @code{long double} type. i386 application binary interface
7561 specify the size to be 12 bytes, while modern architectures (Pentium and newer)
7562 prefer @code{long double} aligned to 8 or 16 byte boundary.  This is
7563 impossible to reach with 12 byte long doubles in the array accesses.
7564
7565 @strong{Warning:} if you use the @option{-m128bit-long-double} switch, the
7566 structures and arrays containing @code{long double} will change their size as
7567 well as function calling convention for function taking @code{long double}
7568 will be modified.
7569
7570 @item -m96bit-long-double
7571 @opindex m96bit-long-double
7572 Set the size of @code{long double} to 96 bits as required by the i386
7573 application binary interface.  This is the default.
7574
7575 @item -msvr3-shlib
7576 @itemx -mno-svr3-shlib
7577 @opindex msvr3-shlib
7578 @opindex mno-svr3-shlib
7579 Control whether GCC places uninitialized local variables into the
7580 @code{bss} or @code{data} segments.  @option{-msvr3-shlib} places them
7581 into @code{bss}.  These options are meaningful only on System V Release 3.
7582
7583 @item -mrtd
7584 @opindex mrtd
7585 Use a different function-calling convention, in which functions that
7586 take a fixed number of arguments return with the @code{ret} @var{num}
7587 instruction, which pops their arguments while returning.  This saves one
7588 instruction in the caller since there is no need to pop the arguments
7589 there.
7590
7591 You can specify that an individual function is called with this calling
7592 sequence with the function attribute @samp{stdcall}.  You can also
7593 override the @option{-mrtd} option by using the function attribute
7594 @samp{cdecl}.  @xref{Function Attributes}.
7595
7596 @strong{Warning:} this calling convention is incompatible with the one
7597 normally used on Unix, so you cannot use it if you need to call
7598 libraries compiled with the Unix compiler.
7599
7600 Also, you must provide function prototypes for all functions that
7601 take variable numbers of arguments (including @code{printf});
7602 otherwise incorrect code will be generated for calls to those
7603 functions.
7604
7605 In addition, seriously incorrect code will result if you call a
7606 function with too many arguments.  (Normally, extra arguments are
7607 harmlessly ignored.)
7608
7609 @item -mregparm=@var{num}
7610 @opindex mregparm
7611 Control how many registers are used to pass integer arguments.  By
7612 default, no registers are used to pass arguments, and at most 3
7613 registers can be used.  You can control this behavior for a specific
7614 function by using the function attribute @samp{regparm}.
7615 @xref{Function Attributes}.
7616
7617 @strong{Warning:} if you use this switch, and
7618 @var{num} is nonzero, then you must build all modules with the same
7619 value, including any libraries.  This includes the system libraries and
7620 startup modules.
7621
7622 @item -mpreferred-stack-boundary=@var{num}
7623 @opindex mpreferred-stack-boundary
7624 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
7625 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
7626 the default is 4 (16 bytes or 128 bits), except when optimizing for code
7627 size (@option{-Os}), in which case the default is the minimum correct
7628 alignment (4 bytes for x86, and 8 bytes for x86-64).
7629
7630 On Pentium and PentiumPro, @code{double} and @code{long double} values
7631 should be aligned to an 8 byte boundary (see @option{-malign-double}) or
7632 suffer significant run time performance penalties.  On Pentium III, the
7633 Streaming SIMD Extension (SSE) data type @code{__m128} suffers similar
7634 penalties if it is not 16 byte aligned.
7635
7636 To ensure proper alignment of this values on the stack, the stack boundary
7637 must be as aligned as that required by any value stored on the stack.
7638 Further, every function must be generated such that it keeps the stack
7639 aligned.  Thus calling a function compiled with a higher preferred
7640 stack boundary from a function compiled with a lower preferred stack
7641 boundary will most likely misalign the stack.  It is recommended that
7642 libraries that use callbacks always use the default setting.
7643
7644 This extra alignment does consume extra stack space, and generally
7645 increases code size.  Code that is sensitive to stack space usage, such
7646 as embedded systems and operating system kernels, may want to reduce the
7647 preferred alignment to @option{-mpreferred-stack-boundary=2}.
7648
7649 @item -mmmx
7650 @itemx -mno-mmx
7651 @item -msse
7652 @itemx -mno-sse
7653 @item -m3dnow
7654 @itemx -mno-3dnow
7655 @opindex mmmx
7656 @opindex mno-mmx
7657 @opindex msse
7658 @opindex mno-sse
7659 @opindex m3dnow
7660 @opindex mno-3dnow
7661 These switches enable or disable the use of built-in functions that allow
7662 direct access to the MMX, SSE and 3Dnow extensions of the instruction set.
7663
7664 The following machine modes are available for use with MMX built-in functions
7665 (@pxref{Vector Extensions}): @code{V2SI} for a vector of two 32 bit integers,
7666 @code{V4HI} for a vector of four 16 bit integers, and @code{V8QI} for a
7667 vector of eight 8 bit integers.  Some of the built-in functions operate on
7668 MMX registers as a whole 64 bit entity, these use @code{DI} as their mode.
7669
7670 If 3Dnow extensions are enabled, @code{V2SF} is used as a mode for a vector
7671 of two 32 bit floating point values.
7672
7673 If SSE extensions are enabled, @code{V4SF} is used for a vector of four 32 bit
7674 floating point values.  Some instructions use a vector of four 32 bit
7675 integers, these use @code{V4SI}.  Finally, some instructions operate on an
7676 entire vector register, interpreting it as a 128 bit integer, these use mode
7677 @code{TI}.
7678
7679 The following built-in functions are made available by @option{-mmmx}:
7680 @table @code
7681 @item v8qi __builtin_ia32_paddb (v8qi, v8qi)
7682 Generates the @code{paddb} machine instruction.
7683 @item v4hi __builtin_ia32_paddw (v4hi, v4hi)
7684 Generates the @code{paddw} machine instruction.
7685 @item v2si __builtin_ia32_paddd (v2si, v2si)
7686 Generates the @code{paddd} machine instruction.
7687 @item v8qi __builtin_ia32_psubb (v8qi, v8qi)
7688 Generates the @code{psubb} machine instruction.
7689 @item v4hi __builtin_ia32_psubw (v4hi, v4hi)
7690 Generates the @code{psubw} machine instruction.
7691 @item v2si __builtin_ia32_psubd (v2si, v2si)
7692 Generates the @code{psubd} machine instruction.
7693
7694 @item v8qi __builtin_ia32_paddsb (v8qi, v8qi)
7695 Generates the @code{paddsb} machine instruction.
7696 @item v4hi __builtin_ia32_paddsw (v4hi, v4hi)
7697 Generates the @code{paddsw} machine instruction.
7698 @item v8qi __builtin_ia32_psubsb (v8qi, v8qi)
7699 Generates the @code{psubsb} machine instruction.
7700 @item v4hi __builtin_ia32_psubsw (v4hi, v4hi)
7701 Generates the @code{psubsw} machine instruction.
7702
7703 @item v8qi __builtin_ia32_paddusb (v8qi, v8qi)
7704 Generates the @code{paddusb} machine instruction.
7705 @item v4hi __builtin_ia32_paddusw (v4hi, v4hi)
7706 Generates the @code{paddusw} machine instruction.
7707 @item v8qi __builtin_ia32_psubusb (v8qi, v8qi)
7708 Generates the @code{psubusb} machine instruction.
7709 @item v4hi __builtin_ia32_psubusw (v4hi, v4hi)
7710 Generates the @code{psubusw} machine instruction.
7711
7712 @item v4hi __builtin_ia32_pmullw (v4hi, v4hi)
7713 Generates the @code{pmullw} machine instruction.
7714 @item v4hi __builtin_ia32_pmulhw (v4hi, v4hi)
7715 Generates the @code{pmulhw} machine instruction.
7716
7717 @item di __builtin_ia32_pand (di, di)
7718 Generates the @code{pand} machine instruction.
7719 @item di __builtin_ia32_pandn (di,di)
7720 Generates the @code{pandn} machine instruction.
7721 @item di __builtin_ia32_por (di, di)
7722 Generates the @code{por} machine instruction.
7723 @item di __builtin_ia32_pxor (di, di)
7724 Generates the @code{pxor} machine instruction.
7725
7726 @item v8qi __builtin_ia32_pcmpeqb (v8qi, v8qi)
7727 Generates the @code{pcmpeqb} machine instruction.
7728 @item v4hi __builtin_ia32_pcmpeqw (v4hi, v4hi)
7729 Generates the @code{pcmpeqw} machine instruction.
7730 @item v2si __builtin_ia32_pcmpeqd (v2si, v2si)
7731 Generates the @code{pcmpeqd} machine instruction.
7732 @item v8qi __builtin_ia32_pcmpgtb (v8qi, v8qi)
7733 Generates the @code{pcmpgtb} machine instruction.
7734 @item v4hi __builtin_ia32_pcmpgtw (v4hi, v4hi)
7735 Generates the @code{pcmpgtw} machine instruction.
7736 @item v2si __builtin_ia32_pcmpgtd (v2si, v2si)
7737 Generates the @code{pcmpgtd} machine instruction.
7738
7739 @item v8qi __builtin_ia32_punpckhbw (v8qi, v8qi)
7740 Generates the @code{punpckhbw} machine instruction.
7741 @item v4hi __builtin_ia32_punpckhwd (v4hi, v4hi)
7742 Generates the @code{punpckhwd} machine instruction.
7743 @item v2si __builtin_ia32_punpckhdq (v2si, v2si)
7744 Generates the @code{punpckhdq} machine instruction.
7745 @item v8qi __builtin_ia32_punpcklbw (v8qi, v8qi)
7746 Generates the @code{punpcklbw} machine instruction.
7747 @item v4hi __builtin_ia32_punpcklwd (v4hi, v4hi)
7748 Generates the @code{punpcklwd} machine instruction.
7749 @item v2si __builtin_ia32_punpckldq (v2si, v2si)
7750 Generates the @code{punpckldq} machine instruction.
7751
7752 @item v8qi __builtin_ia32_packsswb (v4hi, v4hi)
7753 Generates the @code{packsswb} machine instruction.
7754 @item v4hi __builtin_ia32_packssdw (v2si, v2si)
7755 Generates the @code{packssdw} machine instruction.
7756 @item v8qi __builtin_ia32_packuswb (v4hi, v4hi)
7757 Generates the @code{packuswb} machine instruction.
7758
7759 @end table
7760
7761 The following built-in functions are made available either with @option{-msse}, or
7762 with a combination of @option{-m3dnow} and @option{-march=athlon}.
7763 @table @code
7764
7765 @item v4hi __builtin_ia32_pmulhuw (v4hi, v4hi)
7766 Generates the @code{pmulhuw} machine instruction.
7767
7768 @item v8qi __builtin_ia32_pavgb (v8qi, v8qi)
7769 Generates the @code{pavgb} machine instruction.
7770 @item v4hi __builtin_ia32_pavgw (v4hi, v4hi)
7771 Generates the @code{pavgw} machine instruction.
7772 @item v4hi __builtin_ia32_psadbw (v8qi, v8qi)
7773 Generates the @code{psadbw} machine instruction.
7774
7775 @item v8qi __builtin_ia32_pmaxub (v8qi, v8qi)
7776 Generates the @code{pmaxub} machine instruction.
7777 @item v4hi __builtin_ia32_pmaxsw (v4hi, v4hi)
7778 Generates the @code{pmaxsw} machine instruction.
7779 @item v8qi __builtin_ia32_pminub (v8qi, v8qi)
7780 Generates the @code{pminub} machine instruction.
7781 @item v4hi __builtin_ia32_pminsw (v4hi, v4hi)
7782 Generates the @code{pminsw} machine instruction.
7783
7784 @item int __builtin_ia32_pextrw (v4hi, int)
7785 Generates the @code{pextrw} machine instruction.
7786 @item v4hi __builtin_ia32_pinsrw (v4hi, int, int)
7787 Generates the @code{pinsrw} machine instruction.
7788
7789 @item int __builtin_ia32_pmovmskb (v8qi)
7790 Generates the @code{pmovmskb} machine instruction.
7791 @item void __builtin_ia32_maskmovq (v8qi, v8qi, char *)
7792 Generates the @code{maskmovq} machine instruction.
7793 @item void __builtin_ia32_movntq (di *, di)
7794 Generates the @code{movntq} machine instruction.
7795 @item void __builtin_ia32_sfence (void)
7796 Generates the @code{sfence} machine instruction.
7797 @item void __builtin_ia32_prefetch (char *, int selector)
7798 Generates a prefetch machine instruction, depending on the value of
7799 selector.  If @code{selector} is 0, it generates @code{prefetchnta}; for
7800 a value of 1, it generates @code{prefetcht0}; for a value of 2, it generates
7801 @code{prefetcht1}; and for a value of 3 it generates @code{prefetcht2}.
7802
7803 @end table
7804
7805 The following built-in functions are available when @option{-msse} is used.
7806
7807 @table @code
7808 @item int __builtin_ia32_comieq (v4sf, v4sf)
7809 Generates the @code{comiss} machine instruction and performs an equality
7810 comparison.  The return value is the truth value of that comparison.
7811 @item int __builtin_ia32_comineq (v4sf, v4sf)
7812 Generates the @code{comiss} machine instruction and performs an inequality
7813 comparison.  The return value is the truth value of that comparison.
7814 @item int __builtin_ia32_comilt (v4sf, v4sf)
7815 Generates the @code{comiss} machine instruction and performs a ``less than''
7816 comparison.  The return value is the truth value of that comparison.
7817 @item int __builtin_ia32_comile (v4sf, v4sf)
7818 Generates the @code{comiss} machine instruction and performs a ``less or
7819 equal'' comparison.  The return value is the truth value of that comparison.
7820 @item int __builtin_ia32_comigt (v4sf, v4sf)
7821 Generates the @code{comiss} machine instruction and performs a ``greater than''
7822 comparison.  The return value is the truth value of that comparison.
7823 @item int __builtin_ia32_comige (v4sf, v4sf)
7824 Generates the @code{comiss} machine instruction and performs a ``greater or
7825 equal'' comparison.  The return value is the truth value of that comparison.
7826
7827 @item int __builtin_ia32_ucomieq (v4sf, v4sf)
7828 Generates the @code{ucomiss} machine instruction and performs an equality
7829 comparison.  The return value is the truth value of that comparison.
7830 @item int __builtin_ia32_ucomineq (v4sf, v4sf)
7831 Generates the @code{ucomiss} machine instruction and performs an inequality
7832 comparison.  The return value is the truth value of that comparison.
7833 @item int __builtin_ia32_ucomilt (v4sf, v4sf)
7834 Generates the @code{ucomiss} machine instruction and performs a ``less than''
7835 comparison.  The return value is the truth value of that comparison.
7836 @item int __builtin_ia32_ucomile (v4sf, v4sf)
7837 Generates the @code{ucomiss} machine instruction and performs a ``less or
7838 equal'' comparison.  The return value is the truth value of that comparison.
7839 @item int __builtin_ia32_ucomigt (v4sf, v4sf)
7840 Generates the @code{ucomiss} machine instruction and performs a ``greater than''
7841 comparison.  The return value is the truth value of that comparison.
7842 @item int __builtin_ia32_ucomige (v4sf, v4sf)
7843 Generates the @code{ucomiss} machine instruction and performs a ``greater or
7844 equal'' comparison.  The return value is the truth value of that comparison.
7845
7846 @item v4sf __builtin_ia32_addps (v4sf, v4sf)
7847 Generates the @code{addps} machine instruction.
7848 @item v4sf __builtin_ia32_addss (v4sf, v4sf)
7849 Generates the @code{addss} machine instruction.
7850 @item v4sf __builtin_ia32_subps (v4sf, v4sf)
7851 Generates the @code{subps} machine instruction.
7852 @item v4sf __builtin_ia32_subss (v4sf, v4sf)
7853 Generates the @code{subss} machine instruction.
7854 @item v4sf __builtin_ia32_mulps (v4sf, v4sf)
7855 Generates the @code{mulps} machine instruction.
7856 @item v4sf __builtin_ia32_mulss (v4sf, v4sf)
7857 Generates the @code{mulss} machine instruction.
7858 @item v4sf __builtin_ia32_divps (v4sf, v4sf)
7859 Generates the @code{divps} machine instruction.
7860 @item v4sf __builtin_ia32_divss (v4sf, v4sf)
7861 Generates the @code{divss} machine instruction.
7862
7863 @item v4si __builtin_ia32_cmpeqps (v4sf, v4sf)
7864 Generates the @code{cmpeqps} machine instruction.
7865 @item v4si __builtin_ia32_cmplts (v4sf, v4sf)
7866 Generates the @code{cmpltps} machine instruction.
7867 @item v4si __builtin_ia32_cmpleps (v4sf, v4sf)
7868 Generates the @code{cmpleps} machine instruction.
7869 @item v4si __builtin_ia32_cmpgtps (v4sf, v4sf)
7870 Generates the @code{cmpgtps} machine instruction.
7871 @item v4si __builtin_ia32_cmpgeps (v4sf, v4sf)
7872 Generates the @code{cmpgeps} machine instruction.
7873 @item v4si __builtin_ia32_cmpunordps (v4sf, v4sf)
7874 Generates the @code{cmpunodps} machine instruction.
7875 @item v4si __builtin_ia32_cmpneqps (v4sf, v4sf)
7876 Generates the @code{cmpeqps} machine instruction.
7877 @item v4si __builtin_ia32_cmpnltps (v4sf, v4sf)
7878 Generates the @code{cmpltps} machine instruction.
7879 @item v4si __builtin_ia32_cmpnleps (v4sf, v4sf)
7880 Generates the @code{cmpleps} machine instruction.
7881 @item v4si __builtin_ia32_cmpngtps (v4sf, v4sf)
7882 Generates the @code{cmpgtps} machine instruction.
7883 @item v4si __builtin_ia32_cmpngeps (v4sf, v4sf)
7884 Generates the @code{cmpgeps} machine instruction.
7885 @item v4si __builtin_ia32_cmpordps (v4sf, v4sf)
7886 Generates the @code{cmpunodps} machine instruction.
7887
7888 @item v4si __builtin_ia32_cmpeqss (v4sf, v4sf)
7889 Generates the @code{cmpeqss} machine instruction.
7890 @item v4si __builtin_ia32_cmpltss (v4sf, v4sf)
7891 Generates the @code{cmpltss} machine instruction.
7892 @item v4si __builtin_ia32_cmpless (v4sf, v4sf)
7893 Generates the @code{cmpless} machine instruction.
7894 @item v4si __builtin_ia32_cmpgtss (v4sf, v4sf)
7895 Generates the @code{cmpgtss} machine instruction.
7896 @item v4si __builtin_ia32_cmpgess (v4sf, v4sf)
7897 Generates the @code{cmpgess} machine instruction.
7898 @item v4si __builtin_ia32_cmpunordss (v4sf, v4sf)
7899 Generates the @code{cmpunodss} machine instruction.
7900 @item v4si __builtin_ia32_cmpneqss (v4sf, v4sf)
7901 Generates the @code{cmpeqss} machine instruction.
7902 @item v4si __builtin_ia32_cmpnlts (v4sf, v4sf)
7903 Generates the @code{cmpltss} machine instruction.
7904 @item v4si __builtin_ia32_cmpnless (v4sf, v4sf)
7905 Generates the @code{cmpless} machine instruction.
7906 @item v4si __builtin_ia32_cmpngtss (v4sf, v4sf)
7907 Generates the @code{cmpgtss} machine instruction.
7908 @item v4si __builtin_ia32_cmpngess (v4sf, v4sf)
7909 Generates the @code{cmpgess} machine instruction.
7910 @item v4si __builtin_ia32_cmpordss (v4sf, v4sf)
7911 Generates the @code{cmpunodss} machine instruction.
7912
7913 @item v4sf __builtin_ia32_maxps (v4sf, v4sf)
7914 Generates the @code{maxps} machine instruction.
7915 @item v4sf __builtin_ia32_maxsss (v4sf, v4sf)
7916 Generates the @code{maxss} machine instruction.
7917 @item v4sf __builtin_ia32_minps (v4sf, v4sf)
7918 Generates the @code{minps} machine instruction.
7919 @item v4sf __builtin_ia32_minsss (v4sf, v4sf)
7920 Generates the @code{minss} machine instruction.
7921
7922 @item ti __builtin_ia32_andps (ti, ti)
7923 Generates the @code{andps} machine instruction.
7924 @item ti __builtin_ia32_andnps (ti, ti)
7925 Generates the @code{andnps} machine instruction.
7926 @item ti __builtin_ia32_orps (ti, ti)
7927 Generates the @code{orps} machine instruction.
7928 @item ti __builtin_ia32_xorps (ti, ti)
7929 Generates the @code{xorps} machine instruction.
7930
7931 @item v4sf __builtin_ia32_movps (v4sf, v4sf)
7932 Generates the @code{movps} machine instruction.
7933 @item v4sf __builtin_ia32_movhlps (v4sf, v4sf)
7934 Generates the @code{movhlps} machine instruction.
7935 @item v4sf __builtin_ia32_movlhps (v4sf, v4sf)
7936 Generates the @code{movlhps} machine instruction.
7937 @item v4sf __builtin_ia32_unpckhps (v4sf, v4sf)
7938 Generates the @code{unpckhps} machine instruction.
7939 @item v4sf __builtin_ia32_unpcklps (v4sf, v4sf)
7940 Generates the @code{unpcklps} machine instruction.
7941
7942 @item v4sf __builtin_ia32_cvtpi2ps (v4sf, v2si)
7943 Generates the @code{cvtpi2ps} machine instruction.
7944 @item v2si __builtin_ia32_cvtps2pi (v4sf)
7945 Generates the @code{cvtps2pi} machine instruction.
7946 @item v4sf __builtin_ia32_cvtsi2ss (v4sf, int)
7947 Generates the @code{cvtsi2ss} machine instruction.
7948 @item int __builtin_ia32_cvtss2si (v4sf)
7949 Generates the @code{cvtsi2ss} machine instruction.
7950 @item v2si __builtin_ia32_cvttps2pi (v4sf)
7951 Generates the @code{cvttps2pi} machine instruction.
7952 @item int __builtin_ia32_cvttss2si (v4sf)
7953 Generates the @code{cvttsi2ss} machine instruction.
7954
7955 @item v4sf __builtin_ia32_rcpps (v4sf)
7956 Generates the @code{rcpps} machine instruction.
7957 @item v4sf __builtin_ia32_rsqrtps (v4sf)
7958 Generates the @code{rsqrtps} machine instruction.
7959 @item v4sf __builtin_ia32_sqrtps (v4sf)
7960 Generates the @code{sqrtps} machine instruction.
7961 @item v4sf __builtin_ia32_rcpss (v4sf)
7962 Generates the @code{rcpss} machine instruction.
7963 @item v4sf __builtin_ia32_rsqrtss (v4sf)
7964 Generates the @code{rsqrtss} machine instruction.
7965 @item v4sf __builtin_ia32_sqrtss (v4sf)
7966 Generates the @code{sqrtss} machine instruction.
7967
7968 @item v4sf __builtin_ia32_shufps (v4sf, v4sf, int)
7969 Generates the @code{shufps} machine instruction.
7970
7971 @item v4sf __builtin_ia32_loadaps (float *)
7972 Generates the @code{movaps} machine instruction as a load from memory.
7973 @item void __builtin_ia32_storeaps (float *, v4sf)
7974 Generates the @code{movaps} machine instruction as a store to memory.
7975 @item v4sf __builtin_ia32_loadups (float *)
7976 Generates the @code{movups} machine instruction as a load from memory.
7977 @item void __builtin_ia32_storeups (float *, v4sf)
7978 Generates the @code{movups} machine instruction as a store to memory.
7979 @item v4sf __builtin_ia32_loadsss (float *)
7980 Generates the @code{movss} machine instruction as a load from memory.
7981 @item void __builtin_ia32_storess (float *, v4sf)
7982 Generates the @code{movss} machine instruction as a store to memory.
7983
7984 @item v4sf __builtin_ia32_loadhps (v4sf, v2si *)
7985 Generates the @code{movhps} machine instruction as a load from memory.
7986 @item v4sf __builtin_ia32_loadlps (v4sf, v2si *)
7987 Generates the @code{movlps} machine instruction as a load from memory
7988 @item void __builtin_ia32_storehps (v4sf, v2si *)
7989 Generates the @code{movhps} machine instruction as a store to memory.
7990 @item void __builtin_ia32_storelps (v4sf, v2si *)
7991 Generates the @code{movlps} machine instruction as a store to memory.
7992
7993 @item void __builtin_ia32_movntps (float *, v4sf)
7994 Generates the @code{movntps} machine instruction.
7995 @item int __builtin_ia32_movmskps (v4sf)
7996 Generates the @code{movntps} machine instruction.
7997
7998 @item void __builtin_ia32_storeps1 (float *, v4sf)
7999 Generates the @code{movaps} machine instruction as a store to memory.
8000 Before storing, the value is modified with a @code{shufps} instruction
8001 so that the lowest of the four floating point elements is replicated
8002 across the entire vector that is stored.
8003 @item void __builtin_ia32_storerps (float *, v4sf)
8004 Generates the @code{movaps} machine instruction as a store to memory.
8005 Before storing, the value is modified with a @code{shufps} instruction
8006 so that the order of the four floating point elements in the vector is
8007 reversed.
8008 @item v4sf __builtin_ia32_loadps1 (float *)
8009 Generates a @code{movss} machine instruction to load a floating point
8010 value from memory, and a @code{shufps} instruction to replicate the
8011 loaded value across all four elements of the result vector.
8012 @item v4sf __builtin_ia32_loadrps (float *)
8013 Generates a @code{movaps} machine instruction to load a vector from
8014 memory, and a @code{shufps} instruction to reverse the order of the
8015 four floating point elements in the result vector.
8016 @item v4sf __builtin_ia32_setps (float, float, float, float)
8017 Constructs a vector from four single floating point values.  The return
8018 value is equal to the value that would result from storing the four
8019 arguments into consecutive memory locations and then executing a
8020 @code{movaps} to load the vector from memory.
8021 @item v4sf __builtin_ia32_setps1 (float)
8022 Constructs a vector from a single floating point value by replicating
8023 it across all four elements of the result vector.
8024 @end table
8025
8026 @item -mpush-args
8027 @itemx -mno-push-args
8028 @opindex mpush-args
8029 @opindex mno-push-args
8030 Use PUSH operations to store outgoing parameters.  This method is shorter
8031 and usually equally fast as method using SUB/MOV operations and is enabled
8032 by default.  In some cases disabling it may improve performance because of
8033 improved scheduling and reduced dependencies.
8034
8035 @item -maccumulate-outgoing-args
8036 @opindex maccumulate-outgoing-args
8037 If enabled, the maximum amount of space required for outgoing arguments will be
8038 computed in the function prologue.  This is faster on most modern CPUs
8039 because of reduced dependencies, improved scheduling and reduced stack usage
8040 when preferred stack boundary is not equal to 2.  The drawback is a notable
8041 increase in code size.  This switch implies @option{-mno-push-args}.
8042
8043 @item -mthreads
8044 @opindex mthreads
8045 Support thread-safe exception handling on @samp{Mingw32}.  Code that relies
8046 on thread-safe exception handling must compile and link all code with the
8047 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
8048 @option{-D_MT}; when linking, it links in a special thread helper library
8049 @option{-lmingwthrd} which cleans up per thread exception handling data.
8050
8051 @item -mno-align-stringops
8052 @opindex mno-align-stringops
8053 Do not align destination of inlined string operations.  This switch reduces
8054 code size and improves performance in case the destination is already aligned,
8055 but gcc don't know about it.
8056
8057 @item -minline-all-stringops
8058 @opindex minline-all-stringops
8059 By default GCC inlines string operations only when destination is known to be
8060 aligned at least to 4 byte boundary.  This enables more inlining, increase code
8061 size, but may improve performance of code that depends on fast memcpy, strlen
8062 and memset for short lengths.
8063
8064 @item -momit-leaf-frame-pointer
8065 @opindex momit-leaf-frame-pointer
8066 Don't keep the frame pointer in a register for leaf functions.  This
8067 avoids the instructions to save, set up and restore frame pointers and
8068 makes an extra register available in leaf functions.  The option
8069 @option{-fomit-frame-pointer} removes the frame pointer for all functions
8070 which might make debugging harder.
8071 @end table
8072
8073 These @samp{-m} switches are supported in addition to the above
8074 on AMD x86-64 processors in 64-bit environments.
8075
8076 @table @gcctabopt
8077 @item -m32
8078 @itemx -m64
8079 @opindex m32
8080 @opindex m64
8081 Generate code for a 32-bit or 64-bit environment.
8082 The 32-bit environment sets int, long and pointer to 32 bits and
8083 generates code that runs on any i386 system.
8084 The 64-bit environment sets int to 32 bits and long and pointer
8085 to 64 bits and generates code for AMD's x86-64 architecture.
8086
8087 @item -mno-red-zone
8088 @opindex no-red-zone
8089 Do not use a so called red zone for x86-64 code.  The red zone is mandated
8090 by the x86-64 ABI, it is a 128-byte area beyond the location of the
8091 stack pointer that will not be modified by signal or interrupt handlers
8092 and therefore can be used for temporary data without adjusting the stack
8093 pointer.  The flag @option{-mno-red-zone} disables this red zone.
8094 @end table
8095
8096 @node HPPA Options
8097 @subsection HPPA Options
8098 @cindex HPPA Options
8099
8100 These @samp{-m} options are defined for the HPPA family of computers:
8101
8102 @table @gcctabopt
8103 @item -march=@var{architecture-type}
8104 @opindex march
8105 Generate code for the specified architecture.  The choices for
8106 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
8107 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
8108 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
8109 architecture option for your machine.  Code compiled for lower numbered
8110 architectures will run on higher numbered architectures, but not the
8111 other way around.
8112
8113 PA 2.0 support currently requires gas snapshot 19990413 or later.  The
8114 next release of binutils (current is 2.9.1) will probably contain PA 2.0
8115 support.
8116
8117 @item -mpa-risc-1-0
8118 @itemx -mpa-risc-1-1
8119 @itemx -mpa-risc-2-0
8120 @opindex mpa-risc-1-0
8121 @opindex mpa-risc-1-1
8122 @opindex mpa-risc-2-0
8123 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
8124
8125 @item -mbig-switch
8126 @opindex mbig-switch
8127 Generate code suitable for big switch tables.  Use this option only if
8128 the assembler/linker complain about out of range branches within a switch
8129 table.
8130
8131 @item -mjump-in-delay
8132 @opindex mjump-in-delay
8133 Fill delay slots of function calls with unconditional jump instructions
8134 by modifying the return pointer for the function call to be the target
8135 of the conditional jump.
8136
8137 @item -mdisable-fpregs
8138 @opindex mdisable-fpregs
8139 Prevent floating point registers from being used in any manner.  This is
8140 necessary for compiling kernels which perform lazy context switching of
8141 floating point registers.  If you use this option and attempt to perform
8142 floating point operations, the compiler will abort.
8143
8144 @item -mdisable-indexing
8145 @opindex mdisable-indexing
8146 Prevent the compiler from using indexing address modes.  This avoids some
8147 rather obscure problems when compiling MIG generated code under MACH@.
8148
8149 @item -mno-space-regs
8150 @opindex mno-space-regs
8151 Generate code that assumes the target has no space registers.  This allows
8152 GCC to generate faster indirect calls and use unscaled index address modes.
8153
8154 Such code is suitable for level 0 PA systems and kernels.
8155
8156 @item -mfast-indirect-calls
8157 @opindex mfast-indirect-calls
8158 Generate code that assumes calls never cross space boundaries.  This
8159 allows GCC to emit code which performs faster indirect calls.
8160
8161 This option will not work in the presence of shared libraries or nested
8162 functions.
8163
8164 @item -mlong-load-store
8165 @opindex mlong-load-store
8166 Generate 3-instruction load and store sequences as sometimes required by
8167 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
8168 the HP compilers.
8169
8170 @item -mportable-runtime
8171 @opindex mportable-runtime
8172 Use the portable calling conventions proposed by HP for ELF systems.
8173
8174 @item -mgas
8175 @opindex mgas
8176 Enable the use of assembler directives only GAS understands.
8177
8178 @item -mschedule=@var{cpu-type}
8179 @opindex mschedule
8180 Schedule code according to the constraints for the machine type
8181 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
8182 @samp{7100}, @samp{7100LC}, @samp{7200}, and @samp{8000}.  Refer to
8183 @file{/usr/lib/sched.models} on an HP-UX system to determine the
8184 proper scheduling option for your machine.
8185
8186 @item -mlinker-opt
8187 @opindex mlinker-opt
8188 Enable the optimization pass in the HPUX linker.  Note this makes symbolic
8189 debugging impossible.  It also triggers a bug in the HPUX 8 and HPUX 9 linkers
8190 in which they give bogus error messages when linking some programs.
8191
8192 @item -msoft-float
8193 @opindex msoft-float
8194 Generate output containing library calls for floating point.
8195 @strong{Warning:} the requisite libraries are not available for all HPPA
8196 targets.  Normally the facilities of the machine's usual C compiler are
8197 used, but this cannot be done directly in cross-compilation.  You must make
8198 your own arrangements to provide suitable library functions for
8199 cross-compilation.  The embedded target @samp{hppa1.1-*-pro}
8200 does provide software floating point support.
8201
8202 @option{-msoft-float} changes the calling convention in the output file;
8203 therefore, it is only useful if you compile @emph{all} of a program with
8204 this option.  In particular, you need to compile @file{libgcc.a}, the
8205 library that comes with GCC, with @option{-msoft-float} in order for
8206 this to work.
8207 @end table
8208
8209 @node Intel 960 Options
8210 @subsection Intel 960 Options
8211
8212 These @samp{-m} options are defined for the Intel 960 implementations:
8213
8214 @table @gcctabopt
8215 @item -m@var{cpu-type}
8216 @opindex mka
8217 @opindex mkb
8218 @opindex mmc
8219 @opindex mca
8220 @opindex mcf
8221 @opindex msa
8222 @opindex msb
8223 Assume the defaults for the machine type @var{cpu-type} for some of
8224 the other options, including instruction scheduling, floating point
8225 support, and addressing modes.  The choices for @var{cpu-type} are
8226 @samp{ka}, @samp{kb}, @samp{mc}, @samp{ca}, @samp{cf},
8227 @samp{sa}, and @samp{sb}.
8228 The default is
8229 @samp{kb}.
8230
8231 @item -mnumerics
8232 @itemx -msoft-float
8233 @opindex mnumerics
8234 @opindex msoft-float
8235 The @option{-mnumerics} option indicates that the processor does support
8236 floating-point instructions.  The @option{-msoft-float} option indicates
8237 that floating-point support should not be assumed.
8238
8239 @item -mleaf-procedures
8240 @itemx -mno-leaf-procedures
8241 @opindex mleaf-procedures
8242 @opindex mno-leaf-procedures
8243 Do (or do not) attempt to alter leaf procedures to be callable with the
8244 @code{bal} instruction as well as @code{call}.  This will result in more
8245 efficient code for explicit calls when the @code{bal} instruction can be
8246 substituted by the assembler or linker, but less efficient code in other
8247 cases, such as calls via function pointers, or using a linker that doesn't
8248 support this optimization.
8249
8250 @item -mtail-call
8251 @itemx -mno-tail-call
8252 @opindex mtail-call
8253 @opindex mno-tail-call
8254 Do (or do not) make additional attempts (beyond those of the
8255 machine-independent portions of the compiler) to optimize tail-recursive
8256 calls into branches.  You may not want to do this because the detection of
8257 cases where this is not valid is not totally complete.  The default is
8258 @option{-mno-tail-call}.
8259
8260 @item -mcomplex-addr
8261 @itemx -mno-complex-addr
8262 @opindex mcomplex-addr
8263 @opindex mno-complex-addr
8264 Assume (or do not assume) that the use of a complex addressing mode is a
8265 win on this implementation of the i960.  Complex addressing modes may not
8266 be worthwhile on the K-series, but they definitely are on the C-series.
8267 The default is currently @option{-mcomplex-addr} for all processors except
8268 the CB and CC@.
8269
8270 @item -mcode-align
8271 @itemx -mno-code-align
8272 @opindex mcode-align
8273 @opindex mno-code-align
8274 Align code to 8-byte boundaries for faster fetching (or don't bother).
8275 Currently turned on by default for C-series implementations only.
8276
8277 @ignore
8278 @item -mclean-linkage
8279 @itemx -mno-clean-linkage
8280 @opindex mclean-linkage
8281 @opindex mno-clean-linkage
8282 These options are not fully implemented.
8283 @end ignore
8284
8285 @item -mic-compat
8286 @itemx -mic2.0-compat
8287 @itemx -mic3.0-compat
8288 @opindex mic-compat
8289 @opindex mic2.0-compat
8290 @opindex mic3.0-compat
8291 Enable compatibility with iC960 v2.0 or v3.0.
8292
8293 @item -masm-compat
8294 @itemx -mintel-asm
8295 @opindex masm-compat
8296 @opindex mintel-asm
8297 Enable compatibility with the iC960 assembler.
8298
8299 @item -mstrict-align
8300 @itemx -mno-strict-align
8301 @opindex mstrict-align
8302 @opindex mno-strict-align
8303 Do not permit (do permit) unaligned accesses.
8304
8305 @item -mold-align
8306 @opindex mold-align
8307 Enable structure-alignment compatibility with Intel's gcc release version
8308 1.3 (based on gcc 1.37).  This option implies @option{-mstrict-align}.
8309
8310 @item -mlong-double-64
8311 @opindex mlong-double-64
8312 Implement type @samp{long double} as 64-bit floating point numbers.
8313 Without the option @samp{long double} is implemented by 80-bit
8314 floating point numbers.  The only reason we have it because there is
8315 no 128-bit @samp{long double} support in @samp{fp-bit.c} yet.  So it
8316 is only useful for people using soft-float targets.  Otherwise, we
8317 should recommend against use of it.
8318
8319 @end table
8320
8321 @node DEC Alpha Options
8322 @subsection DEC Alpha Options
8323
8324 These @samp{-m} options are defined for the DEC Alpha implementations:
8325
8326 @table @gcctabopt
8327 @item -mno-soft-float
8328 @itemx -msoft-float
8329 @opindex mno-soft-float
8330 @opindex msoft-float
8331 Use (do not use) the hardware floating-point instructions for
8332 floating-point operations.  When @option{-msoft-float} is specified,
8333 functions in @file{libgcc.a} will be used to perform floating-point
8334 operations.  Unless they are replaced by routines that emulate the
8335 floating-point operations, or compiled in such a way as to call such
8336 emulations routines, these routines will issue floating-point
8337 operations.   If you are compiling for an Alpha without floating-point
8338 operations, you must ensure that the library is built so as not to call
8339 them.
8340
8341 Note that Alpha implementations without floating-point operations are
8342 required to have floating-point registers.
8343
8344 @item -mfp-reg
8345 @itemx -mno-fp-regs
8346 @opindex mfp-reg
8347 @opindex mno-fp-regs
8348 Generate code that uses (does not use) the floating-point register set.
8349 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
8350 register set is not used, floating point operands are passed in integer
8351 registers as if they were integers and floating-point results are passed
8352 in $0 instead of $f0.  This is a non-standard calling sequence, so any
8353 function with a floating-point argument or return value called by code
8354 compiled with @option{-mno-fp-regs} must also be compiled with that
8355 option.
8356
8357 A typical use of this option is building a kernel that does not use,
8358 and hence need not save and restore, any floating-point registers.
8359
8360 @item -mieee
8361 @opindex mieee
8362 The Alpha architecture implements floating-point hardware optimized for
8363 maximum performance.  It is mostly compliant with the IEEE floating
8364 point standard.  However, for full compliance, software assistance is
8365 required.  This option generates code fully IEEE compliant code
8366 @emph{except} that the @var{inexact-flag} is not maintained (see below).
8367 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
8368 defined during compilation.  The resulting code is less efficient but is
8369 able to correctly support denormalized numbers and exceptional IEEE
8370 values such as not-a-number and plus/minus infinity.  Other Alpha
8371 compilers call this option @option{-ieee_with_no_inexact}.
8372
8373 @item -mieee-with-inexact
8374 @opindex mieee-with-inexact
8375 This is like @option{-mieee} except the generated code also maintains
8376 the IEEE @var{inexact-flag}.  Turning on this option causes the
8377 generated code to implement fully-compliant IEEE math.  In addition to
8378 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
8379 macro.  On some Alpha implementations the resulting code may execute
8380 significantly slower than the code generated by default.  Since there is
8381 very little code that depends on the @var{inexact-flag}, you should
8382 normally not specify this option.  Other Alpha compilers call this
8383 option @option{-ieee_with_inexact}.
8384
8385 @item -mfp-trap-mode=@var{trap-mode}
8386 @opindex mfp-trap-mode
8387 This option controls what floating-point related traps are enabled.
8388 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
8389 The trap mode can be set to one of four values:
8390
8391 @table @samp
8392 @item n
8393 This is the default (normal) setting.  The only traps that are enabled
8394 are the ones that cannot be disabled in software (e.g., division by zero
8395 trap).
8396
8397 @item u
8398 In addition to the traps enabled by @samp{n}, underflow traps are enabled
8399 as well.
8400
8401 @item su
8402 Like @samp{su}, but the instructions are marked to be safe for software
8403 completion (see Alpha architecture manual for details).
8404
8405 @item sui
8406 Like @samp{su}, but inexact traps are enabled as well.
8407 @end table
8408
8409 @item -mfp-rounding-mode=@var{rounding-mode}
8410 @opindex mfp-rounding-mode
8411 Selects the IEEE rounding mode.  Other Alpha compilers call this option
8412 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
8413 of:
8414
8415 @table @samp
8416 @item n
8417 Normal IEEE rounding mode.  Floating point numbers are rounded towards
8418 the nearest machine number or towards the even machine number in case
8419 of a tie.
8420
8421 @item m
8422 Round towards minus infinity.
8423
8424 @item c
8425 Chopped rounding mode.  Floating point numbers are rounded towards zero.
8426
8427 @item d
8428 Dynamic rounding mode.  A field in the floating point control register
8429 (@var{fpcr}, see Alpha architecture reference manual) controls the
8430 rounding mode in effect.  The C library initializes this register for
8431 rounding towards plus infinity.  Thus, unless your program modifies the
8432 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
8433 @end table
8434
8435 @item -mtrap-precision=@var{trap-precision}
8436 @opindex mtrap-precision
8437 In the Alpha architecture, floating point traps are imprecise.  This
8438 means without software assistance it is impossible to recover from a
8439 floating trap and program execution normally needs to be terminated.
8440 GCC can generate code that can assist operating system trap handlers
8441 in determining the exact location that caused a floating point trap.
8442 Depending on the requirements of an application, different levels of
8443 precisions can be selected:
8444
8445 @table @samp
8446 @item p
8447 Program precision.  This option is the default and means a trap handler
8448 can only identify which program caused a floating point exception.
8449
8450 @item f
8451 Function precision.  The trap handler can determine the function that
8452 caused a floating point exception.
8453
8454 @item i
8455 Instruction precision.  The trap handler can determine the exact
8456 instruction that caused a floating point exception.
8457 @end table
8458
8459 Other Alpha compilers provide the equivalent options called
8460 @option{-scope_safe} and @option{-resumption_safe}.
8461
8462 @item -mieee-conformant
8463 @opindex mieee-conformant
8464 This option marks the generated code as IEEE conformant.  You must not
8465 use this option unless you also specify @option{-mtrap-precision=i} and either
8466 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
8467 is to emit the line @samp{.eflag 48} in the function prologue of the
8468 generated assembly file.  Under DEC Unix, this has the effect that
8469 IEEE-conformant math library routines will be linked in.
8470
8471 @item -mbuild-constants
8472 @opindex mbuild-constants
8473 Normally GCC examines a 32- or 64-bit integer constant to
8474 see if it can construct it from smaller constants in two or three
8475 instructions.  If it cannot, it will output the constant as a literal and
8476 generate code to load it from the data segment at runtime.
8477
8478 Use this option to require GCC to construct @emph{all} integer constants
8479 using code, even if it takes more instructions (the maximum is six).
8480
8481 You would typically use this option to build a shared library dynamic
8482 loader.  Itself a shared library, it must relocate itself in memory
8483 before it can find the variables and constants in its own data segment.
8484
8485 @item -malpha-as
8486 @itemx -mgas
8487 @opindex malpha-as
8488 @opindex mgas
8489 Select whether to generate code to be assembled by the vendor-supplied
8490 assembler (@option{-malpha-as}) or by the GNU assembler @option{-mgas}.
8491
8492 @item -mbwx
8493 @itemx -mno-bwx
8494 @itemx -mcix
8495 @itemx -mno-cix
8496 @itemx -mmax
8497 @itemx -mno-max
8498 @opindex mbwx
8499 @opindex mno-bwx
8500 @opindex mcix
8501 @opindex mno-cix
8502 @opindex mmax
8503 @opindex mno-max
8504 Indicate whether GCC should generate code to use the optional BWX,
8505 CIX, and MAX instruction sets.  The default is to use the instruction sets
8506 supported by the CPU type specified via @option{-mcpu=} option or that
8507 of the CPU on which GCC was built if none was specified.
8508
8509 @item -mcpu=@var{cpu_type}
8510 @opindex mcpu
8511 Set the instruction set, register set, and instruction scheduling
8512 parameters for machine type @var{cpu_type}.  You can specify either the
8513 @samp{EV} style name or the corresponding chip number.  GCC
8514 supports scheduling parameters for the EV4 and EV5 family of processors
8515 and will choose the default values for the instruction set from
8516 the processor you specify.  If you do not specify a processor type,
8517 GCC will default to the processor on which the compiler was built.
8518
8519 Supported values for @var{cpu_type} are
8520
8521 @table @samp
8522 @item ev4
8523 @itemx 21064
8524 Schedules as an EV4 and has no instruction set extensions.
8525
8526 @item ev5
8527 @itemx 21164
8528 Schedules as an EV5 and has no instruction set extensions.
8529
8530 @item ev56
8531 @itemx 21164a
8532 Schedules as an EV5 and supports the BWX extension.
8533
8534 @item pca56
8535 @itemx 21164pc
8536 @itemx 21164PC
8537 Schedules as an EV5 and supports the BWX and MAX extensions.
8538
8539 @item ev6
8540 @itemx 21264
8541 Schedules as an EV5 (until Digital releases the scheduling parameters
8542 for the EV6) and supports the BWX, CIX, and MAX extensions.
8543 @end table
8544
8545 @item -mmemory-latency=@var{time}
8546 @opindex mmemory-latency
8547 Sets the latency the scheduler should assume for typical memory
8548 references as seen by the application.  This number is highly
8549 dependent on the memory access patterns used by the application
8550 and the size of the external cache on the machine.
8551
8552 Valid options for @var{time} are
8553
8554 @table @samp
8555 @item @var{number}
8556 A decimal number representing clock cycles.
8557
8558 @item L1
8559 @itemx L2
8560 @itemx L3
8561 @itemx main
8562 The compiler contains estimates of the number of clock cycles for
8563 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
8564 (also called Dcache, Scache, and Bcache), as well as to main memory.
8565 Note that L3 is only valid for EV5.
8566
8567 @end table
8568 @end table
8569
8570 @node DEC Alpha/VMS Options
8571 @subsection DEC Alpha/VMS Options
8572
8573 These @samp{-m} options are defined for the DEC Alpha/VMS implementations:
8574
8575 @table @gcctabopt
8576 @item -mvms-return-codes
8577 @opindex mvms-return-codes
8578 Return VMS condition codes from main.  The default is to return POSIX
8579 style condition (e.g.@ error) codes.
8580 @end table
8581
8582 @node Clipper Options
8583 @subsection Clipper Options
8584
8585 These @samp{-m} options are defined for the Clipper implementations:
8586
8587 @table @gcctabopt
8588 @item -mc300
8589 @opindex mc300
8590 Produce code for a C300 Clipper processor.  This is the default.
8591
8592 @item -mc400
8593 @opindex mc400
8594 Produce code for a C400 Clipper processor, i.e.@: use floating point
8595 registers f8--f15.
8596 @end table
8597
8598 @node H8/300 Options
8599 @subsection H8/300 Options
8600
8601 These @samp{-m} options are defined for the H8/300 implementations:
8602
8603 @table @gcctabopt
8604 @item -mrelax
8605 @opindex mrelax
8606 Shorten some address references at link time, when possible; uses the
8607 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
8608 ld.info, Using ld}, for a fuller description.
8609
8610 @item -mh
8611 @opindex mh
8612 Generate code for the H8/300H@.
8613
8614 @item -ms
8615 @opindex ms
8616 Generate code for the H8/S@.
8617
8618 @item -ms2600
8619 @opindex ms2600
8620 Generate code for the H8/S2600.  This switch must be used with @option{-ms}.
8621
8622 @item -mint32
8623 @opindex mint32
8624 Make @code{int} data 32 bits by default.
8625
8626 @item -malign-300
8627 @opindex malign-300
8628 On the H8/300H and H8/S, use the same alignment rules as for the H8/300.
8629 The default for the H8/300H and H8/S is to align longs and floats on 4
8630 byte boundaries.
8631 @option{-malign-300} causes them to be aligned on 2 byte boundaries.
8632 This option has no effect on the H8/300.
8633 @end table
8634
8635 @node SH Options
8636 @subsection SH Options
8637
8638 These @samp{-m} options are defined for the SH implementations:
8639
8640 @table @gcctabopt
8641 @item -m1
8642 @opindex m1
8643 Generate code for the SH1.
8644
8645 @item -m2
8646 @opindex m2
8647 Generate code for the SH2.
8648
8649 @item -m3
8650 @opindex m3
8651 Generate code for the SH3.
8652
8653 @item -m3e
8654 @opindex m3e
8655 Generate code for the SH3e.
8656
8657 @item -m4-nofpu
8658 @opindex m4-nofpu
8659 Generate code for the SH4 without a floating-point unit.
8660
8661 @item -m4-single-only
8662 @opindex m4-single-only
8663 Generate code for the SH4 with a floating-point unit that only
8664 supports single-precision arithmetic.
8665
8666 @item -m4-single
8667 @opindex m4-single
8668 Generate code for the SH4 assuming the floating-point unit is in
8669 single-precision mode by default.
8670
8671 @item -m4
8672 @opindex m4
8673 Generate code for the SH4.
8674
8675 @item -mb
8676 @opindex mb
8677 Compile code for the processor in big endian mode.
8678
8679 @item -ml
8680 @opindex ml
8681 Compile code for the processor in little endian mode.
8682
8683 @item -mdalign
8684 @opindex mdalign
8685 Align doubles at 64-bit boundaries.  Note that this changes the calling
8686 conventions, and thus some functions from the standard C library will
8687 not work unless you recompile it first with @option{-mdalign}.
8688
8689 @item -mrelax
8690 @opindex mrelax
8691 Shorten some address references at link time, when possible; uses the
8692 linker option @option{-relax}.
8693
8694 @item -mbigtable
8695 @opindex mbigtable
8696 Use 32-bit offsets in @code{switch} tables.  The default is to use
8697 16-bit offsets.
8698
8699 @item -mfmovd
8700 @opindex mfmovd
8701 Enable the use of the instruction @code{fmovd}.
8702
8703 @item -mhitachi
8704 @opindex mhitachi
8705 Comply with the calling conventions defined by Hitachi.
8706
8707 @item -mnomacsave
8708 @opindex mnomacsave
8709 Mark the @code{MAC} register as call-clobbered, even if
8710 @option{-mhitachi} is given.
8711
8712 @item -mieee
8713 @opindex mieee
8714 Increase IEEE-compliance of floating-point code.
8715
8716 @item -misize
8717 @opindex misize
8718 Dump instruction size and location in the assembly code.
8719
8720 @item -mpadstruct
8721 @opindex mpadstruct
8722 This option is deprecated.  It pads structures to multiple of 4 bytes,
8723 which is incompatible with the SH ABI@.
8724
8725 @item -mspace
8726 @opindex mspace
8727 Optimize for space instead of speed.  Implied by @option{-Os}.
8728
8729 @item -mprefergot
8730 @opindex mprefergot
8731 When generating position-independent code, emit function calls using
8732 the Global Offset Table instead of the Procedure Linkage Table.
8733
8734 @item -musermode
8735 @opindex musermode
8736 Generate a library function call to invalidate instruction cache
8737 entries, after fixing up a trampoline.  This library function call
8738 doesn't assume it can write to the whole memory address space.  This
8739 is the default when the target is @code{sh-*-linux*}.
8740 @end table
8741
8742 @node System V Options
8743 @subsection Options for System V
8744
8745 These additional options are available on System V Release 4 for
8746 compatibility with other compilers on those systems:
8747
8748 @table @gcctabopt
8749 @item -G
8750 @opindex G
8751 Create a shared object.
8752 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
8753
8754 @item -Qy
8755 @opindex Qy
8756 Identify the versions of each tool used by the compiler, in a
8757 @code{.ident} assembler directive in the output.
8758
8759 @item -Qn
8760 @opindex Qn
8761 Refrain from adding @code{.ident} directives to the output file (this is
8762 the default).
8763
8764 @item -YP,@var{dirs}
8765 @opindex YP
8766 Search the directories @var{dirs}, and no others, for libraries
8767 specified with @option{-l}.
8768
8769 @item -Ym,@var{dir}
8770 @opindex Ym
8771 Look in the directory @var{dir} to find the M4 preprocessor.
8772 The assembler uses this option.
8773 @c This is supposed to go with a -Yd for predefined M4 macro files, but
8774 @c the generic assembler that comes with Solaris takes just -Ym.
8775 @end table
8776
8777 @node TMS320C3x/C4x Options
8778 @subsection TMS320C3x/C4x Options
8779 @cindex TMS320C3x/C4x Options
8780
8781 These @samp{-m} options are defined for TMS320C3x/C4x implementations:
8782
8783 @table @gcctabopt
8784
8785 @item -mcpu=@var{cpu_type}
8786 @opindex mcpu
8787 Set the instruction set, register set, and instruction scheduling
8788 parameters for machine type @var{cpu_type}.  Supported values for
8789 @var{cpu_type} are @samp{c30}, @samp{c31}, @samp{c32}, @samp{c40}, and
8790 @samp{c44}.  The default is @samp{c40} to generate code for the
8791 TMS320C40.
8792
8793 @item -mbig-memory
8794 @item -mbig
8795 @itemx -msmall-memory
8796 @itemx -msmall
8797 @opindex mbig-memory
8798 @opindex mbig
8799 @opindex msmall-memory
8800 @opindex msmall
8801 Generates code for the big or small memory model.  The small memory
8802 model assumed that all data fits into one 64K word page.  At run-time
8803 the data page (DP) register must be set to point to the 64K page
8804 containing the .bss and .data program sections.  The big memory model is
8805 the default and requires reloading of the DP register for every direct
8806 memory access.
8807
8808 @item -mbk
8809 @itemx -mno-bk
8810 @opindex mbk
8811 @opindex mno-bk
8812 Allow (disallow) allocation of general integer operands into the block
8813 count register BK@.
8814
8815 @item -mdb
8816 @itemx -mno-db
8817 @opindex mdb
8818 @opindex mno-db
8819 Enable (disable) generation of code using decrement and branch,
8820 DBcond(D), instructions.  This is enabled by default for the C4x.  To be
8821 on the safe side, this is disabled for the C3x, since the maximum
8822 iteration count on the C3x is @math{2^23 + 1} (but who iterates loops more than
8823 @math{2^23} times on the C3x?).  Note that GCC will try to reverse a loop so
8824 that it can utilise the decrement and branch instruction, but will give
8825 up if there is more than one memory reference in the loop.  Thus a loop
8826 where the loop counter is decremented can generate slightly more
8827 efficient code, in cases where the RPTB instruction cannot be utilised.
8828
8829 @item -mdp-isr-reload
8830 @itemx -mparanoid
8831 @opindex mdp-isr-reload
8832 @opindex mparanoid
8833 Force the DP register to be saved on entry to an interrupt service
8834 routine (ISR), reloaded to point to the data section, and restored on
8835 exit from the ISR@.  This should not be required unless someone has
8836 violated the small memory model by modifying the DP register, say within
8837 an object library.
8838
8839 @item -mmpyi
8840 @itemx -mno-mpyi
8841 @opindex mmpyi
8842 @opindex mno-mpyi
8843 For the C3x use the 24-bit MPYI instruction for integer multiplies
8844 instead of a library call to guarantee 32-bit results.  Note that if one
8845 of the operands is a constant, then the multiplication will be performed
8846 using shifts and adds.  If the @option{-mmpyi} option is not specified for the C3x,
8847 then squaring operations are performed inline instead of a library call.
8848
8849 @item -mfast-fix
8850 @itemx -mno-fast-fix
8851 @opindex mfast-fix
8852 @opindex mno-fast-fix
8853 The C3x/C4x FIX instruction to convert a floating point value to an
8854 integer value chooses the nearest integer less than or equal to the
8855 floating point value rather than to the nearest integer.  Thus if the
8856 floating point number is negative, the result will be incorrectly
8857 truncated an additional code is necessary to detect and correct this
8858 case.  This option can be used to disable generation of the additional
8859 code required to correct the result.
8860
8861 @item -mrptb
8862 @itemx -mno-rptb
8863 @opindex mrptb
8864 @opindex mno-rptb
8865 Enable (disable) generation of repeat block sequences using the RPTB
8866 instruction for zero overhead looping.  The RPTB construct is only used
8867 for innermost loops that do not call functions or jump across the loop
8868 boundaries.  There is no advantage having nested RPTB loops due to the
8869 overhead required to save and restore the RC, RS, and RE registers.
8870 This is enabled by default with @option{-O2}.
8871
8872 @item -mrpts=@var{count}
8873 @itemx -mno-rpts
8874 @opindex mrpts
8875 @opindex mno-rpts
8876 Enable (disable) the use of the single instruction repeat instruction
8877 RPTS@.  If a repeat block contains a single instruction, and the loop
8878 count can be guaranteed to be less than the value @var{count}, GCC will
8879 emit a RPTS instruction instead of a RPTB@.  If no value is specified,
8880 then a RPTS will be emitted even if the loop count cannot be determined
8881 at compile time.  Note that the repeated instruction following RPTS does
8882 not have to be reloaded from memory each iteration, thus freeing up the
8883 CPU buses for operands.  However, since interrupts are blocked by this
8884 instruction, it is disabled by default.
8885
8886 @item -mloop-unsigned
8887 @itemx -mno-loop-unsigned
8888 @opindex mloop-unsigned
8889 @opindex mno-loop-unsigned
8890 The maximum iteration count when using RPTS and RPTB (and DB on the C40)
8891 is @math{2^31 + 1} since these instructions test if the iteration count is
8892 negative to terminate the loop.  If the iteration count is unsigned
8893 there is a possibility than the @math{2^31 + 1} maximum iteration count may be
8894 exceeded.  This switch allows an unsigned iteration count.
8895
8896 @item -mti
8897 @opindex mti
8898 Try to emit an assembler syntax that the TI assembler (asm30) is happy
8899 with.  This also enforces compatibility with the API employed by the TI
8900 C3x C compiler.  For example, long doubles are passed as structures
8901 rather than in floating point registers.
8902
8903 @item -mregparm
8904 @itemx -mmemparm
8905 @opindex mregparm
8906 @opindex mmemparm
8907 Generate code that uses registers (stack) for passing arguments to functions.
8908 By default, arguments are passed in registers where possible rather
8909 than by pushing arguments on to the stack.
8910
8911 @item -mparallel-insns
8912 @itemx -mno-parallel-insns
8913 @opindex mparallel-insns
8914 @opindex mno-parallel-insns
8915 Allow the generation of parallel instructions.  This is enabled by
8916 default with @option{-O2}.
8917
8918 @item -mparallel-mpy
8919 @itemx -mno-parallel-mpy
8920 @opindex mparallel-mpy
8921 @opindex mno-parallel-mpy
8922 Allow the generation of MPY||ADD and MPY||SUB parallel instructions,
8923 provided @option{-mparallel-insns} is also specified.  These instructions have
8924 tight register constraints which can pessimize the code generation
8925 of large functions.
8926
8927 @end table
8928
8929 @node V850 Options
8930 @subsection V850 Options
8931 @cindex V850 Options
8932
8933 These @samp{-m} options are defined for V850 implementations:
8934
8935 @table @gcctabopt
8936 @item -mlong-calls
8937 @itemx -mno-long-calls
8938 @opindex mlong-calls
8939 @opindex mno-long-calls
8940 Treat all calls as being far away (near).  If calls are assumed to be
8941 far away, the compiler will always load the functions address up into a
8942 register, and call indirect through the pointer.
8943
8944 @item -mno-ep
8945 @itemx -mep
8946 @opindex mno-ep
8947 @opindex mep
8948 Do not optimize (do optimize) basic blocks that use the same index
8949 pointer 4 or more times to copy pointer into the @code{ep} register, and
8950 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
8951 option is on by default if you optimize.
8952
8953 @item -mno-prolog-function
8954 @itemx -mprolog-function
8955 @opindex mno-prolog-function
8956 @opindex mprolog-function
8957 Do not use (do use) external functions to save and restore registers at
8958 the prolog and epilog of a function.  The external functions are slower,
8959 but use less code space if more than one function saves the same number
8960 of registers.  The @option{-mprolog-function} option is on by default if
8961 you optimize.
8962
8963 @item -mspace
8964 @opindex mspace
8965 Try to make the code as small as possible.  At present, this just turns
8966 on the @option{-mep} and @option{-mprolog-function} options.
8967
8968 @item -mtda=@var{n}
8969 @opindex mtda
8970 Put static or global variables whose size is @var{n} bytes or less into
8971 the tiny data area that register @code{ep} points to.  The tiny data
8972 area can hold up to 256 bytes in total (128 bytes for byte references).
8973
8974 @item -msda=@var{n}
8975 @opindex msda
8976 Put static or global variables whose size is @var{n} bytes or less into
8977 the small data area that register @code{gp} points to.  The small data
8978 area can hold up to 64 kilobytes.
8979
8980 @item -mzda=@var{n}
8981 @opindex mzda
8982 Put static or global variables whose size is @var{n} bytes or less into
8983 the first 32 kilobytes of memory.
8984
8985 @item -mv850
8986 @opindex mv850
8987 Specify that the target processor is the V850.
8988
8989 @item -mbig-switch
8990 @opindex mbig-switch
8991 Generate code suitable for big switch tables.  Use this option only if
8992 the assembler/linker complain about out of range branches within a switch
8993 table.
8994 @end table
8995
8996 @node ARC Options
8997 @subsection ARC Options
8998 @cindex ARC Options
8999
9000 These options are defined for ARC implementations:
9001
9002 @table @gcctabopt
9003 @item -EL
9004 @opindex EL
9005 Compile code for little endian mode.  This is the default.
9006
9007 @item -EB
9008 @opindex EB
9009 Compile code for big endian mode.
9010
9011 @item -mmangle-cpu
9012 @opindex mmangle-cpu
9013 Prepend the name of the cpu to all public symbol names.
9014 In multiple-processor systems, there are many ARC variants with different
9015 instruction and register set characteristics.  This flag prevents code
9016 compiled for one cpu to be linked with code compiled for another.
9017 No facility exists for handling variants that are ``almost identical''.
9018 This is an all or nothing option.
9019
9020 @item -mcpu=@var{cpu}
9021 @opindex mcpu
9022 Compile code for ARC variant @var{cpu}.
9023 Which variants are supported depend on the configuration.
9024 All variants support @option{-mcpu=base}, this is the default.
9025
9026 @item -mtext=@var{text-section}
9027 @itemx -mdata=@var{data-section}
9028 @itemx -mrodata=@var{readonly-data-section}
9029 @opindex mtext
9030 @opindex mdata
9031 @opindex mrodata
9032 Put functions, data, and readonly data in @var{text-section},
9033 @var{data-section}, and @var{readonly-data-section} respectively
9034 by default.  This can be overridden with the @code{section} attribute.
9035 @xref{Variable Attributes}.
9036
9037 @end table
9038
9039 @node NS32K Options
9040 @subsection NS32K Options
9041 @cindex NS32K options
9042
9043 These are the @samp{-m} options defined for the 32000 series.  The default
9044 values for these options depends on which style of 32000 was selected when
9045 the compiler was configured; the defaults for the most common choices are
9046 given below.
9047
9048 @table @gcctabopt
9049 @item -m32032
9050 @itemx -m32032
9051 @opindex m32032
9052 @opindex m32032
9053 Generate output for a 32032.  This is the default
9054 when the compiler is configured for 32032 and 32016 based systems.
9055
9056 @item -m32332
9057 @itemx -m32332
9058 @opindex m32332
9059 @opindex m32332
9060 Generate output for a 32332.  This is the default
9061 when the compiler is configured for 32332-based systems.
9062
9063 @item -m32532
9064 @itemx -m32532
9065 @opindex m32532
9066 @opindex m32532
9067 Generate output for a 32532.  This is the default
9068 when the compiler is configured for 32532-based systems.
9069
9070 @item -m32081
9071 @opindex m32081
9072 Generate output containing 32081 instructions for floating point.
9073 This is the default for all systems.
9074
9075 @item -m32381
9076 @opindex m32381
9077 Generate output containing 32381 instructions for floating point.  This
9078 also implies @option{-m32081}.  The 32381 is only compatible with the 32332
9079 and 32532 cpus.  This is the default for the pc532-netbsd configuration.
9080
9081 @item -mmulti-add
9082 @opindex mmulti-add
9083 Try and generate multiply-add floating point instructions @code{polyF}
9084 and @code{dotF}.  This option is only available if the @option{-m32381}
9085 option is in effect.  Using these instructions requires changes to
9086 register allocation which generally has a negative impact on
9087 performance.  This option should only be enabled when compiling code
9088 particularly likely to make heavy use of multiply-add instructions.
9089
9090 @item -mnomulti-add
9091 @opindex mnomulti-add
9092 Do not try and generate multiply-add floating point instructions
9093 @code{polyF} and @code{dotF}.  This is the default on all platforms.
9094
9095 @item -msoft-float
9096 @opindex msoft-float
9097 Generate output containing library calls for floating point.
9098 @strong{Warning:} the requisite libraries may not be available.
9099
9100 @item -mnobitfield
9101 @opindex mnobitfield
9102 Do not use the bit-field instructions.  On some machines it is faster to
9103 use shifting and masking operations.  This is the default for the pc532.
9104
9105 @item -mbitfield
9106 @opindex mbitfield
9107 Do use the bit-field instructions.  This is the default for all platforms
9108 except the pc532.
9109
9110 @item -mrtd
9111 @opindex mrtd
9112 Use a different function-calling convention, in which functions
9113 that take a fixed number of arguments return pop their
9114 arguments on return with the @code{ret} instruction.
9115
9116 This calling convention is incompatible with the one normally
9117 used on Unix, so you cannot use it if you need to call libraries
9118 compiled with the Unix compiler.
9119
9120 Also, you must provide function prototypes for all functions that
9121 take variable numbers of arguments (including @code{printf});
9122 otherwise incorrect code will be generated for calls to those
9123 functions.
9124
9125 In addition, seriously incorrect code will result if you call a
9126 function with too many arguments.  (Normally, extra arguments are
9127 harmlessly ignored.)
9128
9129 This option takes its name from the 680x0 @code{rtd} instruction.
9130
9131
9132 @item -mregparam
9133 @opindex mregparam
9134 Use a different function-calling convention where the first two arguments
9135 are passed in registers.
9136
9137 This calling convention is incompatible with the one normally
9138 used on Unix, so you cannot use it if you need to call libraries
9139 compiled with the Unix compiler.
9140
9141 @item -mnoregparam
9142 @opindex mnoregparam
9143 Do not pass any arguments in registers.  This is the default for all
9144 targets.
9145
9146 @item -msb
9147 @opindex msb
9148 It is OK to use the sb as an index register which is always loaded with
9149 zero.  This is the default for the pc532-netbsd target.
9150
9151 @item -mnosb
9152 @opindex mnosb
9153 The sb register is not available for use or has not been initialized to
9154 zero by the run time system.  This is the default for all targets except
9155 the pc532-netbsd.  It is also implied whenever @option{-mhimem} or
9156 @option{-fpic} is set.
9157
9158 @item -mhimem
9159 @opindex mhimem
9160 Many ns32000 series addressing modes use displacements of up to 512MB@.
9161 If an address is above 512MB then displacements from zero can not be used.
9162 This option causes code to be generated which can be loaded above 512MB@.
9163 This may be useful for operating systems or ROM code.
9164
9165 @item -mnohimem
9166 @opindex mnohimem
9167 Assume code will be loaded in the first 512MB of virtual address space.
9168 This is the default for all platforms.
9169
9170
9171 @end table
9172
9173 @node AVR Options
9174 @subsection AVR Options
9175 @cindex AVR Options
9176
9177 These options are defined for AVR implementations:
9178
9179 @table @gcctabopt
9180 @item -mmcu=@var{mcu}
9181 @opindex mmcu
9182 Specify ATMEL AVR instruction set or MCU type.
9183
9184 Instruction set avr1 is for the minimal AVR core, not supported by the C
9185 compiler, only for assembler programs (MCU types: at90s1200, attiny10,
9186 attiny11, attiny12, attiny15, attiny28).
9187
9188 Instruction set avr2 (default) is for the classic AVR core with up to
9189 8K program memory space (MCU types: at90s2313, at90s2323, attiny22,
9190 at90s2333, at90s2343, at90s4414, at90s4433, at90s4434, at90s8515,
9191 at90c8534, at90s8535).
9192
9193 Instruction set avr3 is for the classic AVR core with up to 128K program
9194 memory space (MCU types: atmega103, atmega603).
9195
9196 Instruction set avr4 is for the enhanced AVR core with up to 8K program
9197 memory space (MCU types: atmega83, atmega85).
9198
9199 Instruction set avr5 is for the enhanced AVR core with up to 128K program
9200 memory space (MCU types: atmega161, atmega163, atmega32, at94k).
9201
9202 @item -msize
9203 @opindex msize
9204 Output instruction sizes to the asm file.
9205
9206 @item -minit-stack=@var{N}
9207 @opindex minit-stack
9208 Specify the initial stack address, which may be a symbol or numeric value,
9209 @samp{__stack} is the default.
9210
9211 @item -mno-interrupts
9212 @opindex mno-interrupts
9213 Generated code is not compatible with hardware interrupts.
9214 Code size will be smaller.
9215
9216 @item -mcall-prologues
9217 @opindex mcall-prologues
9218 Functions prologues/epilogues expanded as call to appropriate
9219 subroutines.  Code size will be smaller.
9220
9221 @item -mno-tablejump
9222 @opindex mno-tablejump
9223 Do not generate tablejump insns which sometimes increase code size.
9224
9225 @item -mtiny-stack
9226 @opindex mtiny-stack
9227 Change only the low 8 bits of the stack pointer.
9228 @end table
9229
9230 @node MCore Options
9231 @subsection MCore Options
9232 @cindex MCore options
9233
9234 These are the @samp{-m} options defined for the Motorola M*Core
9235 processors.
9236
9237 @table @gcctabopt
9238
9239 @item -mhardlit
9240 @itemx -mhardlit
9241 @itemx -mno-hardlit
9242 @opindex mhardlit
9243 @opindex mhardlit
9244 @opindex mno-hardlit
9245 Inline constants into the code stream if it can be done in two
9246 instructions or less.
9247
9248 @item -mdiv
9249 @itemx -mdiv
9250 @itemx -mno-div
9251 @opindex mdiv
9252 @opindex mdiv
9253 @opindex mno-div
9254 Use the divide instruction.  (Enabled by default).
9255
9256 @item -mrelax-immediate
9257 @itemx -mrelax-immediate
9258 @itemx -mno-relax-immediate
9259 @opindex mrelax-immediate
9260 @opindex mrelax-immediate
9261 @opindex mno-relax-immediate
9262 Allow arbitrary sized immediates in bit operations.
9263
9264 @item -mwide-bitfields
9265 @itemx -mwide-bitfields
9266 @itemx -mno-wide-bitfields
9267 @opindex mwide-bitfields
9268 @opindex mwide-bitfields
9269 @opindex mno-wide-bitfields
9270 Always treat bit-fields as int-sized.
9271
9272 @item -m4byte-functions
9273 @itemx -m4byte-functions
9274 @itemx -mno-4byte-functions
9275 @opindex m4byte-functions
9276 @opindex m4byte-functions
9277 @opindex mno-4byte-functions
9278 Force all functions to be aligned to a four byte boundary.
9279
9280 @item -mcallgraph-data
9281 @itemx -mcallgraph-data
9282 @itemx -mno-callgraph-data
9283 @opindex mcallgraph-data
9284 @opindex mcallgraph-data
9285 @opindex mno-callgraph-data
9286 Emit callgraph information.
9287
9288 @item -mslow-bytes
9289 @itemx -mslow-bytes
9290 @itemx -mno-slow-bytes
9291 @opindex mslow-bytes
9292 @opindex mslow-bytes
9293 @opindex mno-slow-bytes
9294 Prefer word access when reading byte quantities.
9295
9296 @item -mlittle-endian
9297 @itemx -mlittle-endian
9298 @itemx -mbig-endian
9299 @opindex mlittle-endian
9300 @opindex mlittle-endian
9301 @opindex mbig-endian
9302 Generate code for a little endian target.
9303
9304 @item -m210
9305 @itemx -m210
9306 @itemx -m340
9307 @opindex m210
9308 @opindex m210
9309 @opindex m340
9310 Generate code for the 210 processor.
9311 @end table
9312
9313 @node IA-64 Options
9314 @subsection IA-64 Options
9315 @cindex IA-64 Options
9316
9317 These are the @samp{-m} options defined for the Intel IA-64 architecture.
9318
9319 @table @gcctabopt
9320 @item -mbig-endian
9321 @opindex mbig-endian
9322 Generate code for a big endian target.  This is the default for HPUX@.
9323
9324 @item -mlittle-endian
9325 @opindex mlittle-endian
9326 Generate code for a little endian target.  This is the default for AIX5
9327 and Linux.
9328
9329 @item -mgnu-as
9330 @itemx -mno-gnu-as
9331 @opindex mgnu-as
9332 @opindex mno-gnu-as
9333 Generate (or don't) code for the GNU assembler.  This is the default.
9334 @c Also, this is the default if the configure option @option{--with-gnu-as}
9335 @c is used.
9336
9337 @item -mgnu-ld
9338 @itemx -mno-gnu-ld
9339 @opindex mgnu-ld
9340 @opindex mno-gnu-ld
9341 Generate (or don't) code for the GNU linker.  This is the default.
9342 @c Also, this is the default if the configure option @option{--with-gnu-ld}
9343 @c is used.
9344
9345 @item -mno-pic
9346 @opindex mno-pic
9347 Generate code that does not use a global pointer register.  The result
9348 is not position independent code, and violates the IA-64 ABI@.
9349
9350 @item -mvolatile-asm-stop
9351 @itemx -mno-volatile-asm-stop
9352 @opindex mvolatile-asm-stop
9353 @opindex mno-volatile-asm-stop
9354 Generate (or don't) a stop bit immediately before and after volatile asm
9355 statements.
9356
9357 @item -mb-step
9358 @opindex mb-step
9359 Generate code that works around Itanium B step errata.
9360
9361 @item -mregister-names
9362 @itemx -mno-register-names
9363 @opindex mregister-names
9364 @opindex mno-register-names
9365 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
9366 the stacked registers.  This may make assembler output more readable.
9367
9368 @item -mno-sdata
9369 @itemx -msdata
9370 @opindex mno-sdata
9371 @opindex msdata
9372 Disable (or enable) optimizations that use the small data section.  This may
9373 be useful for working around optimizer bugs.
9374
9375 @item -mconstant-gp
9376 @opindex mconstant-gp
9377 Generate code that uses a single constant global pointer value.  This is
9378 useful when compiling kernel code.
9379
9380 @item -mauto-pic
9381 @opindex mauto-pic
9382 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
9383 This is useful when compiling firmware code.
9384
9385 @item -minline-divide-min-latency
9386 @opindex minline-divide-min-latency
9387 Generate code for inline divides using the minimum latency algorithm.
9388
9389 @item -minline-divide-max-throughput
9390 @opindex minline-divide-max-throughput
9391 Generate code for inline divides using the maximum throughput algorithm.
9392
9393 @item -mno-dwarf2-asm
9394 @itemx -mdwarf2-asm
9395 @opindex mno-dwarf2-asm
9396 @opindex mdwarf2-asm
9397 Don't (or do) generate assembler code for the DWARF2 line number debugging
9398 info.  This may be useful when not using the GNU assembler.
9399
9400 @item -mfixed-range=@var{register-range}
9401 @opindex mfixed-range
9402 Generate code treating the given register range as fixed registers.
9403 A fixed register is one that the register allocator can not use.  This is
9404 useful when compiling kernel code.  A register range is specified as
9405 two registers separated by a dash.  Multiple register ranges can be
9406 specified separated by a comma.
9407 @end table
9408
9409 @node D30V Options
9410 @subsection D30V Options
9411 @cindex D30V Options
9412
9413 These @samp{-m} options are defined for D30V implementations:
9414
9415 @table @gcctabopt
9416 @item -mextmem
9417 @opindex mextmem
9418 Link the @samp{.text}, @samp{.data}, @samp{.bss}, @samp{.strings},
9419 @samp{.rodata}, @samp{.rodata1}, @samp{.data1} sections into external
9420 memory, which starts at location @code{0x80000000}.
9421
9422 @item -mextmemory
9423 @opindex mextmemory
9424 Same as the @option{-mextmem} switch.
9425
9426 @item -monchip
9427 @opindex monchip
9428 Link the @samp{.text} section into onchip text memory, which starts at
9429 location @code{0x0}.  Also link @samp{.data}, @samp{.bss},
9430 @samp{.strings}, @samp{.rodata}, @samp{.rodata1}, @samp{.data1} sections
9431 into onchip data memory, which starts at location @code{0x20000000}.
9432
9433 @item -mno-asm-optimize
9434 @itemx -masm-optimize
9435 @opindex mno-asm-optimize
9436 @opindex masm-optimize
9437 Disable (enable) passing @option{-O} to the assembler when optimizing.
9438 The assembler uses the @option{-O} option to automatically parallelize
9439 adjacent short instructions where possible.
9440
9441 @item -mbranch-cost=@var{n}
9442 @opindex mbranch-cost
9443 Increase the internal costs of branches to @var{n}.  Higher costs means
9444 that the compiler will issue more instructions to avoid doing a branch.
9445 The default is 2.
9446
9447 @item -mcond-exec=@var{n}
9448 @opindex mcond-exec
9449 Specify the maximum number of conditionally executed instructions that
9450 replace a branch.  The default is 4.
9451 @end table
9452
9453 @node S/390 and zSeries Options
9454 @subsection S/390 and zSeries Options
9455 @cindex S/390 and zSeries Options
9456
9457 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
9458
9459 @table @gcctabopt
9460 @item -mhard-float
9461 @itemx -msoft-float
9462 @opindex mhard-float
9463 @opindex msoft-float
9464 Use (do not use) the hardware floating-point instructions and registers
9465 for floating-point operations.  When @option{-msoft-float} is specified,
9466 functions in @file{libgcc.a} will be used to perform floating-point
9467 operations.  When @option{-mhard-float} is specified, the compiler
9468 generates IEEE floating-point instructions.  This is the default.
9469
9470 @item -mbackchain
9471 @itemx -mno-backchain
9472 @opindex mbackchain
9473 @opindex mno-backchain
9474 Generate (or do not generate) code which maintains an explicit 
9475 backchain within the stack frame that points to the caller's frame.
9476 This is currently needed to allow debugging.  The default is to
9477 generate the backchain.
9478
9479 @item -msmall-exec
9480 @itemx -mno-small-exec
9481 @opindex msmall-exec
9482 @opindex mno-small-exec
9483 Generate (or do not generate) code using the @code{bras} instruction 
9484 to do subroutine calls. 
9485 This only works reliably if the total executable size does not
9486 exceed 64k.  The default is to use the @code{basr} instruction instead,
9487 which does not have this limitation.
9488
9489 @item -m64
9490 @itemx -m31
9491 @opindex m64
9492 @opindex m31
9493 When @option{-m31} is specified, generate code compliant to the
9494 Linux for S/390 ABI@.  When @option{-m64} is specified, generate
9495 code compliant to the Linux for zSeries ABI@.  This allows GCC in
9496 particular to generate 64-bit instructions.  For the @samp{s390}
9497 targets, the default is @option{-m31}, while the @samp{s390x} 
9498 targets default to @option{-m64}.
9499
9500 @item -mmvcle
9501 @itemx -mno-mvcle
9502 @opindex mmvcle
9503 @opindex mno-mvcle
9504 Generate (or do not generate) code using the @code{mvcle} instruction 
9505 to perform block moves.  When @option{-mno-mvcle} is specifed,
9506 use a @code{mvc} loop instead.  This is the default.
9507
9508 @item -mdebug
9509 @itemx -mno-debug
9510 @opindex mdebug
9511 @opindex mno-debug
9512 Print (or do not print) additional debug information when compiling.
9513 The default is to not print debug information.
9514
9515 @end table
9516
9517 @node CRIS Options
9518 @subsection CRIS Options
9519 @cindex CRIS Options
9520
9521 These options are defined specifically for the CRIS ports.
9522
9523 @table @gcctabopt
9524 @item -march=@var{architecture-type}
9525 @itemx -mcpu=@var{architecture-type}
9526 @opindex march
9527 @opindex mcpu
9528 Generate code for the specified architecture.  The choices for
9529 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
9530 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX.
9531 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
9532 @samp{v10}.
9533
9534 @item -mtune=@var{architecture-type}
9535 @opindex mtune
9536 Tune to @var{architecture-type} everything applicable about the generated
9537 code, except for the ABI and the set of available instructions.  The
9538 choices for @var{architecture-type} are the same as for
9539 @option{-march=@var{architecture-type}}.
9540
9541 @item -mmax-stack-frame=@var{n}
9542 @opindex mmax-stack-frame
9543 Warn when the stack frame of a function exceeds @var{n} bytes.
9544
9545 @item -melinux-stacksize=@var{n}
9546 @opindex melinux-stacksize
9547 Only available with the @samp{cris-axis-aout} target.  Arranges for
9548 indications in the program to the kernel loader that the stack of the
9549 program should be set to @var{n} bytes.
9550
9551 @item -metrax4
9552 @itemx -metrax100
9553 @opindex metrax4
9554 @opindex metrax100
9555 The options @option{-metrax4} and @option{-metrax100} are synonyms for
9556 @option{-march=v3} and @option{-march=v8} respectively.
9557
9558 @item -mpdebug
9559 @opindex mpdebug
9560 Enable CRIS-specific verbose debug-related information in the assembly
9561 code.  This option also has the effect to turn off the @samp{#NO_APP}
9562 formatted-code indicator to the assembler at the beginning of the
9563 assembly file.
9564
9565 @item -mcc-init
9566 @opindex mcc-init
9567 Do not use condition-code results from previous instruction; always emit
9568 compare and test instructions before use of condition codes.
9569
9570 @item -mno-side-effects
9571 @opindex mno-side-effects
9572 Do not emit instructions with side-effects in addressing modes other than
9573 post-increment.
9574
9575 @item -mstack-align
9576 @itemx -mno-stack-align
9577 @itemx -mdata-align
9578 @itemx -mno-data-align
9579 @itemx -mconst-align
9580 @itemx -mno-const-align
9581 @opindex mstack-align
9582 @opindex mno-stack-align
9583 @opindex mdata-align
9584 @opindex mno-data-align
9585 @opindex mconst-align
9586 @opindex mno-const-align
9587 These options (no-options) arranges (eliminate arrangements) for the
9588 stack-frame, individual data and constants to be aligned for the maximum
9589 single data access size for the chosen CPU model.  The default is to
9590 arrange for 32-bit alignment.  ABI details such as structure layout are
9591 not affected by these options.
9592
9593 @item -m32-bit
9594 @itemx -m16-bit
9595 @itemx -m8-bit
9596 @opindex m32-bit
9597 @opindex m16-bit
9598 @opindex m8-bit
9599 Similar to the stack- data- and const-align options above, these options
9600 arrange for stack-frame, writable data and constants to all be 32-bit,
9601 16-bit or 8-bit aligned.  The default is 32-bit alignment.
9602
9603 @item -mno-prologue-epilogue
9604 @itemx -mprologue-epilogue
9605 @opindex mno-prologue-epilogue
9606 @opindex mprologue-epilogue
9607 With @option{-mno-prologue-epilogue}, the normal function prologue and
9608 epilogue that sets up the stack-frame are omitted and no return
9609 instructions or return sequences are generated in the code.  Use this
9610 option only together with visual inspection of the compiled code: no
9611 warnings or errors are generated when call-saved registers must be saved,
9612 or storage for local variable needs to be allocated.
9613
9614 @item -mno-gotplt
9615 @itemx -mgotplt
9616 @opindex mno-gotplt
9617 @opindex mgotplt
9618 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
9619 instruction sequences that load addresses for functions from the PLT part
9620 of the GOT rather than (traditional on other architectures) calls to the
9621 PLT.  The default is @option{-mgotplt}.
9622
9623 @item -maout
9624 @opindex maout
9625 Legacy no-op option only recognized with the cris-axis-aout target.
9626
9627 @item -melf
9628 @opindex melf
9629 Legacy no-op option only recognized with the cris-axis-elf and
9630 cris-axis-linux-gnu targets.
9631
9632 @item -melinux
9633 @opindex melinux
9634 Only recognized with the cris-axis-aout target, where it selects a
9635 GNU/linux-like multilib, include files and instruction set for
9636 @option{-march=v8}.
9637
9638 @item -mlinux
9639 @opindex mlinux
9640 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
9641
9642 @item -sim
9643 @opindex sim
9644 This option, recognized for the cris-axis-aout and cris-axis-elf arranges
9645 to link with input-output functions from a simulator library.  Code,
9646 initialized data and zero-initialized data are allocated consecutively.
9647
9648 @item -sim2
9649 @opindex sim2
9650 Like @option{-sim}, but pass linker options to locate initialized data at
9651 0x40000000 and zero-initialized data at 0x80000000.
9652 @end table
9653
9654 @node MMIX Options
9655 @subsection MMIX Options
9656 @cindex MMIX Options
9657
9658 These options are defined for the MMIX:
9659
9660 @table @code
9661 @item -mlibfuncs
9662 @itemx -mno-libfuncs
9663 Specify that intrinsic library functions are being compiled, passing all
9664 values in registers, no matter the size.
9665
9666 @item -mepsilon
9667 @itemx -mno-epsilon
9668 Generate floating-point comparison instructions that compare with respect
9669 to the @code{rE} epsilon register.
9670
9671 @item -mabi=mmixware
9672 @itemx -mabi=gnu
9673 Generate code that passes function parameters and return values that (in
9674 the called function) are seen as registers @code{$0} and up, as opposed to
9675 the GNU ABI which uses global registers @code{$231} and up.
9676
9677 @item -mzero-extend
9678 @item -mno-zero-extend
9679 When reading data from memory in sizes shorter than 64 bits, use (do not
9680 use) zero-extending load instructions by default, rather than
9681 sign-extending ones.
9682
9683 @item -mknuthdiv
9684 @itemx -mno-knuthdiv
9685 Make the result of a division yielding a remainder have the same sign as
9686 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
9687 remainder follows the sign of the dividend.  Both methods are
9688 arithmetically valid, the latter being almost exclusively used.
9689
9690 @item -mtoplevel-symbols
9691 @itemx -mno-toplevel-symbols
9692 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
9693 code can be used with the @code{PREFIX} assembly directive.
9694
9695 @item -melf
9696 Generate an executable in the ELF format, rather than the default
9697 @samp{mmo} format used by the @command{mmix} simulator.
9698 @end table
9699
9700 @node Code Gen Options
9701 @section Options for Code Generation Conventions
9702 @cindex code generation conventions
9703 @cindex options, code generation
9704 @cindex run-time options
9705
9706 These machine-independent options control the interface conventions
9707 used in code generation.
9708
9709 Most of them have both positive and negative forms; the negative form
9710 of @option{-ffoo} would be @option{-fno-foo}.  In the table below, only
9711 one of the forms is listed---the one which is not the default.  You
9712 can figure out the other form by either removing @samp{no-} or adding
9713 it.
9714
9715 @table @gcctabopt
9716 @item -fexceptions
9717 @opindex fexceptions
9718 Enable exception handling.  Generates extra code needed to propagate
9719 exceptions.  For some targets, this implies GCC will generate frame
9720 unwind information for all functions, which can produce significant data
9721 size overhead, although it does not affect execution.  If you do not
9722 specify this option, GCC will enable it by default for languages like
9723 C++ which normally require exception handling, and disable it for
9724 languages like C that do not normally require it.  However, you may need
9725 to enable this option when compiling C code that needs to interoperate
9726 properly with exception handlers written in C++.  You may also wish to
9727 disable this option if you are compiling older C++ programs that don't
9728 use exception handling.
9729
9730 @item -fnon-call-exceptions
9731 @opindex fnon-call-exceptions
9732 Generate code that allows trapping instructions to throw exceptions.
9733 Note that this requires platform-specific runtime support that does
9734 not exist everywhere.  Moreover, it only allows @emph{trapping}
9735 instructions to throw exceptions, i.e.@: memory references or floating
9736 point instructions.  It does not allow exceptions to be thrown from
9737 arbitrary signal handlers such as @code{SIGALRM}.
9738
9739 @item -funwind-tables
9740 @opindex funwind-tables
9741 Similar to @option{-fexceptions}, except that it will just generate any needed
9742 static data, but will not affect the generated code in any other way.
9743 You will normally not enable this option; instead, a language processor
9744 that needs this handling would enable it on your behalf.
9745
9746 @item -fasynchronous-unwind-tables
9747 @opindex funwind-tables
9748 Generate unwind table in dwarf2 format, if supported by target machine.  The
9749 table is exact at each instruction boundary, so it can be used for stack
9750 unwinding from asynchronous events (such as debugger or garbage collector).
9751
9752 @item -fpcc-struct-return
9753 @opindex fpcc-struct-return
9754 Return ``short'' @code{struct} and @code{union} values in memory like
9755 longer ones, rather than in registers.  This convention is less
9756 efficient, but it has the advantage of allowing intercallability between
9757 GCC-compiled files and files compiled with other compilers.
9758
9759 The precise convention for returning structures in memory depends
9760 on the target configuration macros.
9761
9762 Short structures and unions are those whose size and alignment match
9763 that of some integer type.
9764
9765 @item -freg-struct-return
9766 @opindex freg-struct-return
9767 Return @code{struct} and @code{union} values in registers when possible.
9768 This is more efficient for small structures than
9769 @option{-fpcc-struct-return}.
9770
9771 If you specify neither @option{-fpcc-struct-return} nor
9772 @option{-freg-struct-return}, GCC defaults to whichever convention is
9773 standard for the target.  If there is no standard convention, GCC
9774 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
9775 the principal compiler.  In those cases, we can choose the standard, and
9776 we chose the more efficient register return alternative.
9777
9778 @item -fshort-enums
9779 @opindex fshort-enums
9780 Allocate to an @code{enum} type only as many bytes as it needs for the
9781 declared range of possible values.  Specifically, the @code{enum} type
9782 will be equivalent to the smallest integer type which has enough room.
9783
9784 @item -fshort-double
9785 @opindex fshort-double
9786 Use the same size for @code{double} as for @code{float}.
9787
9788 @item -fshared-data
9789 @opindex fshared-data
9790 Requests that the data and non-@code{const} variables of this
9791 compilation be shared data rather than private data.  The distinction
9792 makes sense only on certain operating systems, where shared data is
9793 shared between processes running the same program, while private data
9794 exists in one copy per process.
9795
9796 @item -fno-common
9797 @opindex fno-common
9798 In C, allocate even uninitialized global variables in the data section of the
9799 object file, rather than generating them as common blocks.  This has the
9800 effect that if the same variable is declared (without @code{extern}) in
9801 two different compilations, you will get an error when you link them.
9802 The only reason this might be useful is if you wish to verify that the
9803 program will work on other systems which always work this way.
9804
9805 @item -fno-ident
9806 @opindex fno-ident
9807 Ignore the @samp{#ident} directive.
9808
9809 @item -fno-gnu-linker
9810 @opindex fno-gnu-linker
9811 Do not output global initializations (such as C++ constructors and
9812 destructors) in the form used by the GNU linker (on systems where the GNU
9813 linker is the standard method of handling them).  Use this option when
9814 you want to use a non-GNU linker, which also requires using the
9815 @command{collect2} program to make sure the system linker includes
9816 constructors and destructors.  (@command{collect2} is included in the GCC
9817 distribution.)  For systems which @emph{must} use @command{collect2}, the
9818 compiler driver @command{gcc} is configured to do this automatically.
9819
9820 @item -finhibit-size-directive
9821 @opindex finhibit-size-directive
9822 Don't output a @code{.size} assembler directive, or anything else that
9823 would cause trouble if the function is split in the middle, and the
9824 two halves are placed at locations far apart in memory.  This option is
9825 used when compiling @file{crtstuff.c}; you should not need to use it
9826 for anything else.
9827
9828 @item -fverbose-asm
9829 @opindex fverbose-asm
9830 Put extra commentary information in the generated assembly code to
9831 make it more readable.  This option is generally only of use to those
9832 who actually need to read the generated assembly code (perhaps while
9833 debugging the compiler itself).
9834
9835 @option{-fno-verbose-asm}, the default, causes the
9836 extra information to be omitted and is useful when comparing two assembler
9837 files.
9838
9839 @item -fvolatile
9840 @opindex fvolatile
9841 Consider all memory references through pointers to be volatile.
9842
9843 @item -fvolatile-global
9844 @opindex fvolatile-global
9845 Consider all memory references to extern and global data items to
9846 be volatile.  GCC does not consider static data items to be volatile
9847 because of this switch.
9848
9849 @item -fvolatile-static
9850 @opindex fvolatile-static
9851 Consider all memory references to static data to be volatile.
9852
9853 @item -fpic
9854 @opindex fpic
9855 @cindex global offset table
9856 @cindex PIC
9857 Generate position-independent code (PIC) suitable for use in a shared
9858 library, if supported for the target machine.  Such code accesses all
9859 constant addresses through a global offset table (GOT)@.  The dynamic
9860 loader resolves the GOT entries when the program starts (the dynamic
9861 loader is not part of GCC; it is part of the operating system).  If
9862 the GOT size for the linked executable exceeds a machine-specific
9863 maximum size, you get an error message from the linker indicating that
9864 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
9865 instead.  (These maximums are 16k on the m88k, 8k on the Sparc, and 32k
9866 on the m68k and RS/6000.  The 386 has no such limit.)
9867
9868 Position-independent code requires special support, and therefore works
9869 only on certain machines.  For the 386, GCC supports PIC for System V
9870 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
9871 position-independent.
9872
9873 @item -fPIC
9874 @opindex fPIC
9875 If supported for the target machine, emit position-independent code,
9876 suitable for dynamic linking and avoiding any limit on the size of the
9877 global offset table.  This option makes a difference on the m68k, m88k,
9878 and the Sparc.
9879
9880 Position-independent code requires special support, and therefore works
9881 only on certain machines.
9882
9883 @item -ffixed-@var{reg}
9884 @opindex ffixed
9885 Treat the register named @var{reg} as a fixed register; generated code
9886 should never refer to it (except perhaps as a stack pointer, frame
9887 pointer or in some other fixed role).
9888
9889 @var{reg} must be the name of a register.  The register names accepted
9890 are machine-specific and are defined in the @code{REGISTER_NAMES}
9891 macro in the machine description macro file.
9892
9893 This flag does not have a negative form, because it specifies a
9894 three-way choice.
9895
9896 @item -fcall-used-@var{reg}
9897 @opindex fcall-used
9898 Treat the register named @var{reg} as an allocable register that is
9899 clobbered by function calls.  It may be allocated for temporaries or
9900 variables that do not live across a call.  Functions compiled this way
9901 will not save and restore the register @var{reg}.
9902
9903 It is an error to used this flag with the frame pointer or stack pointer.
9904 Use of this flag for other registers that have fixed pervasive roles in
9905 the machine's execution model will produce disastrous results.
9906
9907 This flag does not have a negative form, because it specifies a
9908 three-way choice.
9909
9910 @item -fcall-saved-@var{reg}
9911 @opindex fcall-saved
9912 Treat the register named @var{reg} as an allocable register saved by
9913 functions.  It may be allocated even for temporaries or variables that
9914 live across a call.  Functions compiled this way will save and restore
9915 the register @var{reg} if they use it.
9916
9917 It is an error to used this flag with the frame pointer or stack pointer.
9918 Use of this flag for other registers that have fixed pervasive roles in
9919 the machine's execution model will produce disastrous results.
9920
9921 A different sort of disaster will result from the use of this flag for
9922 a register in which function values may be returned.
9923
9924 This flag does not have a negative form, because it specifies a
9925 three-way choice.
9926
9927 @item -fpack-struct
9928 @opindex fpack-struct
9929 Pack all structure members together without holes.  Usually you would
9930 not want to use this option, since it makes the code suboptimal, and
9931 the offsets of structure members won't agree with system libraries.
9932
9933 @item -finstrument-functions
9934 @opindex finstrument-functions
9935 Generate instrumentation calls for entry and exit to functions.  Just
9936 after function entry and just before function exit, the following
9937 profiling functions will be called with the address of the current
9938 function and its call site.  (On some platforms,
9939 @code{__builtin_return_address} does not work beyond the current
9940 function, so the call site information may not be available to the
9941 profiling functions otherwise.)
9942
9943 @example
9944 void __cyg_profile_func_enter (void *this_fn,
9945                                void *call_site);
9946 void __cyg_profile_func_exit  (void *this_fn,
9947                                void *call_site);
9948 @end example
9949
9950 The first argument is the address of the start of the current function,
9951 which may be looked up exactly in the symbol table.
9952
9953 This instrumentation is also done for functions expanded inline in other
9954 functions.  The profiling calls will indicate where, conceptually, the
9955 inline function is entered and exited.  This means that addressable
9956 versions of such functions must be available.  If all your uses of a
9957 function are expanded inline, this may mean an additional expansion of
9958 code size.  If you use @samp{extern inline} in your C code, an
9959 addressable version of such functions must be provided.  (This is
9960 normally the case anyways, but if you get lucky and the optimizer always
9961 expands the functions inline, you might have gotten away without
9962 providing static copies.)
9963
9964 A function may be given the attribute @code{no_instrument_function}, in
9965 which case this instrumentation will not be done.  This can be used, for
9966 example, for the profiling functions listed above, high-priority
9967 interrupt routines, and any functions from which the profiling functions
9968 cannot safely be called (perhaps signal handlers, if the profiling
9969 routines generate output or allocate memory).
9970
9971 @item -fstack-check
9972 @opindex fstack-check
9973 Generate code to verify that you do not go beyond the boundary of the
9974 stack.  You should specify this flag if you are running in an
9975 environment with multiple threads, but only rarely need to specify it in
9976 a single-threaded environment since stack overflow is automatically
9977 detected on nearly all systems if there is only one stack.
9978
9979 Note that this switch does not actually cause checking to be done; the
9980 operating system must do that.  The switch causes generation of code
9981 to ensure that the operating system sees the stack being extended.
9982
9983 @item -fstack-limit-register=@var{reg}
9984 @itemx -fstack-limit-symbol=@var{sym}
9985 @itemx -fno-stack-limit
9986 @opindex fstack-limit-register
9987 @opindex fstack-limit-symbol
9988 @opindex fno-stack-limit
9989 Generate code to ensure that the stack does not grow beyond a certain value,
9990 either the value of a register or the address of a symbol.  If the stack
9991 would grow beyond the value, a signal is raised.  For most targets,
9992 the signal is raised before the stack overruns the boundary, so
9993 it is possible to catch the signal without taking special precautions.
9994
9995 For instance, if the stack starts at absolute address @samp{0x80000000}
9996 and grows downwards, you can use the flags
9997 @option{-fstack-limit-symbol=__stack_limit} and
9998 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
9999 of 128KB@.  Note that this may only work with the GNU linker.
10000
10001 @cindex aliasing of parameters
10002 @cindex parameters, aliased
10003 @item -fargument-alias
10004 @itemx -fargument-noalias
10005 @itemx -fargument-noalias-global
10006 @opindex fargument-alias
10007 @opindex fargument-noalias
10008 @opindex fargument-noalias-global
10009 Specify the possible relationships among parameters and between
10010 parameters and global data.
10011
10012 @option{-fargument-alias} specifies that arguments (parameters) may
10013 alias each other and may alias global storage.@*
10014 @option{-fargument-noalias} specifies that arguments do not alias
10015 each other, but may alias global storage.@*
10016 @option{-fargument-noalias-global} specifies that arguments do not
10017 alias each other and do not alias global storage.
10018
10019 Each language will automatically use whatever option is required by
10020 the language standard.  You should not need to use these options yourself.
10021
10022 @item -fleading-underscore
10023 @opindex fleading-underscore
10024 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
10025 change the way C symbols are represented in the object file.  One use
10026 is to help link with legacy assembly code.
10027
10028 Be warned that you should know what you are doing when invoking this
10029 option, and that not all targets provide complete support for it.
10030 @end table
10031
10032 @c man end
10033
10034 @node Environment Variables
10035 @section Environment Variables Affecting GCC
10036 @cindex environment variables
10037
10038 @c man begin ENVIRONMENT
10039
10040 This section describes several environment variables that affect how GCC
10041 operates.  Some of them work by specifying directories or prefixes to use
10042 when searching for various kinds of files.  Some are used to specify other
10043 aspects of the compilation environment.
10044
10045 @ifclear INTERNALS
10046 Note that you can also specify places to search using options such as
10047 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
10048 take precedence over places specified using environment variables, which
10049 in turn take precedence over those specified by the configuration of GCC@.
10050
10051 @end ifclear
10052 @ifset INTERNALS
10053 Note that you can also specify places to search using options such as
10054 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
10055 take precedence over places specified using environment variables, which
10056 in turn take precedence over those specified by the configuration of GCC@.
10057 @xref{Driver}.
10058 @end ifset
10059
10060 @table @env
10061 @item LANG
10062 @itemx LC_CTYPE
10063 @c @itemx LC_COLLATE
10064 @itemx LC_MESSAGES
10065 @c @itemx LC_MONETARY
10066 @c @itemx LC_NUMERIC
10067 @c @itemx LC_TIME
10068 @itemx LC_ALL
10069 @findex LANG
10070 @findex LC_CTYPE
10071 @c @findex LC_COLLATE
10072 @findex LC_MESSAGES
10073 @c @findex LC_MONETARY
10074 @c @findex LC_NUMERIC
10075 @c @findex LC_TIME
10076 @findex LC_ALL
10077 @cindex locale
10078 These environment variables control the way that GCC uses
10079 localization information that allow GCC to work with different
10080 national conventions.  GCC inspects the locale categories
10081 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
10082 so.  These locale categories can be set to any value supported by your
10083 installation.  A typical value is @samp{en_UK} for English in the United
10084 Kingdom.
10085
10086 The @env{LC_CTYPE} environment variable specifies character
10087 classification.  GCC uses it to determine the character boundaries in
10088 a string; this is needed for some multibyte encodings that contain quote
10089 and escape characters that would otherwise be interpreted as a string
10090 end or escape.
10091
10092 The @env{LC_MESSAGES} environment variable specifies the language to
10093 use in diagnostic messages.
10094
10095 If the @env{LC_ALL} environment variable is set, it overrides the value
10096 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
10097 and @env{LC_MESSAGES} default to the value of the @env{LANG}
10098 environment variable.  If none of these variables are set, GCC
10099 defaults to traditional C English behavior.
10100
10101 @item TMPDIR
10102 @findex TMPDIR
10103 If @env{TMPDIR} is set, it specifies the directory to use for temporary
10104 files.  GCC uses temporary files to hold the output of one stage of
10105 compilation which is to be used as input to the next stage: for example,
10106 the output of the preprocessor, which is the input to the compiler
10107 proper.
10108
10109 @item GCC_EXEC_PREFIX
10110 @findex GCC_EXEC_PREFIX
10111 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
10112 names of the subprograms executed by the compiler.  No slash is added
10113 when this prefix is combined with the name of a subprogram, but you can
10114 specify a prefix that ends with a slash if you wish.
10115
10116 If @env{GCC_EXEC_PREFIX} is not set, GCC will attempt to figure out
10117 an appropriate prefix to use based on the pathname it was invoked with.
10118
10119 If GCC cannot find the subprogram using the specified prefix, it
10120 tries looking in the usual places for the subprogram.
10121
10122 The default value of @env{GCC_EXEC_PREFIX} is
10123 @file{@var{prefix}/lib/gcc-lib/} where @var{prefix} is the value
10124 of @code{prefix} when you ran the @file{configure} script.
10125
10126 Other prefixes specified with @option{-B} take precedence over this prefix.
10127
10128 This prefix is also used for finding files such as @file{crt0.o} that are
10129 used for linking.
10130
10131 In addition, the prefix is used in an unusual way in finding the
10132 directories to search for header files.  For each of the standard
10133 directories whose name normally begins with @samp{/usr/local/lib/gcc-lib}
10134 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
10135 replacing that beginning with the specified prefix to produce an
10136 alternate directory name.  Thus, with @option{-Bfoo/}, GCC will search
10137 @file{foo/bar} where it would normally search @file{/usr/local/lib/bar}.
10138 These alternate directories are searched first; the standard directories
10139 come next.
10140
10141 @item COMPILER_PATH
10142 @findex COMPILER_PATH
10143 The value of @env{COMPILER_PATH} is a colon-separated list of
10144 directories, much like @env{PATH}.  GCC tries the directories thus
10145 specified when searching for subprograms, if it can't find the
10146 subprograms using @env{GCC_EXEC_PREFIX}.
10147
10148 @item LIBRARY_PATH
10149 @findex LIBRARY_PATH
10150 The value of @env{LIBRARY_PATH} is a colon-separated list of
10151 directories, much like @env{PATH}.  When configured as a native compiler,
10152 GCC tries the directories thus specified when searching for special
10153 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
10154 using GCC also uses these directories when searching for ordinary
10155 libraries for the @option{-l} option (but directories specified with
10156 @option{-L} come first).
10157
10158 @item C_INCLUDE_PATH
10159 @itemx CPLUS_INCLUDE_PATH
10160 @itemx OBJC_INCLUDE_PATH
10161 @findex C_INCLUDE_PATH
10162 @findex CPLUS_INCLUDE_PATH
10163 @findex OBJC_INCLUDE_PATH
10164 @c @itemx OBJCPLUS_INCLUDE_PATH
10165 These environment variables pertain to particular languages.  Each
10166 variable's value is a colon-separated list of directories, much like
10167 @env{PATH}.  When GCC searches for header files, it tries the
10168 directories listed in the variable for the language you are using, after
10169 the directories specified with @option{-I} but before the standard header
10170 file directories.
10171
10172 @item DEPENDENCIES_OUTPUT
10173 @findex DEPENDENCIES_OUTPUT
10174 @cindex dependencies for make as output
10175 If this variable is set, its value specifies how to output dependencies
10176 for Make based on the header files processed by the compiler.  This
10177 output looks much like the output from the @option{-M} option
10178 (@pxref{Preprocessor Options}), but it goes to a separate file, and is
10179 in addition to the usual results of compilation.
10180
10181 The value of @env{DEPENDENCIES_OUTPUT} can be just a file name, in
10182 which case the Make rules are written to that file, guessing the target
10183 name from the source file name.  Or the value can have the form
10184 @samp{@var{file} @var{target}}, in which case the rules are written to
10185 file @var{file} using @var{target} as the target name.
10186
10187 @item LANG
10188 @findex LANG
10189 @cindex locale definition
10190 This variable is used to pass locale information to the compiler.  One way in
10191 which this information is used is to determine the character set to be used
10192 when character literals, string literals and comments are parsed in C and C++.
10193 When the compiler is configured to allow multibyte characters,
10194 the following values for @env{LANG} are recognized:
10195
10196 @table @samp
10197 @item C-JIS
10198 Recognize JIS characters.
10199 @item C-SJIS
10200 Recognize SJIS characters.
10201 @item C-EUCJP
10202 Recognize EUCJP characters.
10203 @end table
10204
10205 If @env{LANG} is not defined, or if it has some other value, then the
10206 compiler will use mblen and mbtowc as defined by the default locale to
10207 recognize and translate multibyte characters.
10208 @end table
10209
10210 @c man end
10211
10212 @node Running Protoize
10213 @section Running Protoize
10214
10215 The program @code{protoize} is an optional part of GCC@.  You can use
10216 it to add prototypes to a program, thus converting the program to ISO
10217 C in one respect.  The companion program @code{unprotoize} does the
10218 reverse: it removes argument types from any prototypes that are found.
10219
10220 When you run these programs, you must specify a set of source files as
10221 command line arguments.  The conversion programs start out by compiling
10222 these files to see what functions they define.  The information gathered
10223 about a file @var{foo} is saved in a file named @file{@var{foo}.X}.
10224
10225 After scanning comes actual conversion.  The specified files are all
10226 eligible to be converted; any files they include (whether sources or
10227 just headers) are eligible as well.
10228
10229 But not all the eligible files are converted.  By default,
10230 @code{protoize} and @code{unprotoize} convert only source and header
10231 files in the current directory.  You can specify additional directories
10232 whose files should be converted with the @option{-d @var{directory}}
10233 option.  You can also specify particular files to exclude with the
10234 @option{-x @var{file}} option.  A file is converted if it is eligible, its
10235 directory name matches one of the specified directory names, and its
10236 name within the directory has not been excluded.
10237
10238 Basic conversion with @code{protoize} consists of rewriting most
10239 function definitions and function declarations to specify the types of
10240 the arguments.  The only ones not rewritten are those for varargs
10241 functions.
10242
10243 @code{protoize} optionally inserts prototype declarations at the
10244 beginning of the source file, to make them available for any calls that
10245 precede the function's definition.  Or it can insert prototype
10246 declarations with block scope in the blocks where undeclared functions
10247 are called.
10248
10249 Basic conversion with @code{unprotoize} consists of rewriting most
10250 function declarations to remove any argument types, and rewriting
10251 function definitions to the old-style pre-ISO form.
10252
10253 Both conversion programs print a warning for any function declaration or
10254 definition that they can't convert.  You can suppress these warnings
10255 with @option{-q}.
10256
10257 The output from @code{protoize} or @code{unprotoize} replaces the
10258 original source file.  The original file is renamed to a name ending
10259 with @samp{.save} (for DOS, the saved filename ends in @samp{.sav}
10260 without the original @samp{.c} suffix).  If the @samp{.save} (@samp{.sav}
10261 for DOS) file already exists, then the source file is simply discarded.
10262
10263 @code{protoize} and @code{unprotoize} both depend on GCC itself to
10264 scan the program and collect information about the functions it uses.
10265 So neither of these programs will work until GCC is installed.
10266
10267 Here is a table of the options you can use with @code{protoize} and
10268 @code{unprotoize}.  Each option works with both programs unless
10269 otherwise stated.
10270
10271 @table @code
10272 @item -B @var{directory}
10273 Look for the file @file{SYSCALLS.c.X} in @var{directory}, instead of the
10274 usual directory (normally @file{/usr/local/lib}).  This file contains
10275 prototype information about standard system functions.  This option
10276 applies only to @code{protoize}.
10277
10278 @item -c @var{compilation-options}
10279 Use  @var{compilation-options} as the options when running @code{gcc} to
10280 produce the @samp{.X} files.  The special option @option{-aux-info} is
10281 always passed in addition, to tell @code{gcc} to write a @samp{.X} file.
10282
10283 Note that the compilation options must be given as a single argument to
10284 @code{protoize} or @code{unprotoize}.  If you want to specify several
10285 @code{gcc} options, you must quote the entire set of compilation options
10286 to make them a single word in the shell.
10287
10288 There are certain @code{gcc} arguments that you cannot use, because they
10289 would produce the wrong kind of output.  These include @option{-g},
10290 @option{-O}, @option{-c}, @option{-S}, and @option{-o} If you include these in
10291 the @var{compilation-options}, they are ignored.
10292
10293 @item -C
10294 Rename files to end in @samp{.C} (@samp{.cc} for DOS-based file
10295 systems) instead of @samp{.c}.  This is convenient if you are converting
10296 a C program to C++.  This option applies only to @code{protoize}.
10297
10298 @item -g
10299 Add explicit global declarations.  This means inserting explicit
10300 declarations at the beginning of each source file for each function
10301 that is called in the file and was not declared.  These declarations
10302 precede the first function definition that contains a call to an
10303 undeclared function.  This option applies only to @code{protoize}.
10304
10305 @item -i @var{string}
10306 Indent old-style parameter declarations with the string @var{string}.
10307 This option applies only to @code{protoize}.
10308
10309 @code{unprotoize} converts prototyped function definitions to old-style
10310 function definitions, where the arguments are declared between the
10311 argument list and the initial @samp{@{}.  By default, @code{unprotoize}
10312 uses five spaces as the indentation.  If you want to indent with just
10313 one space instead, use @option{-i " "}.
10314
10315 @item -k
10316 Keep the @samp{.X} files.  Normally, they are deleted after conversion
10317 is finished.
10318
10319 @item -l
10320 Add explicit local declarations.  @code{protoize} with @option{-l} inserts
10321 a prototype declaration for each function in each block which calls the
10322 function without any declaration.  This option applies only to
10323 @code{protoize}.
10324
10325 @item -n
10326 Make no real changes.  This mode just prints information about the conversions
10327 that would have been done without @option{-n}.
10328
10329 @item -N
10330 Make no @samp{.save} files.  The original files are simply deleted.
10331 Use this option with caution.
10332
10333 @item -p @var{program}
10334 Use the program @var{program} as the compiler.  Normally, the name
10335 @file{gcc} is used.
10336
10337 @item -q
10338 Work quietly.  Most warnings are suppressed.
10339
10340 @item -v
10341 Print the version number, just like @option{-v} for @code{gcc}.
10342 @end table
10343
10344 If you need special compiler options to compile one of your program's
10345 source files, then you should generate that file's @samp{.X} file
10346 specially, by running @code{gcc} on that source file with the
10347 appropriate options and the option @option{-aux-info}.  Then run
10348 @code{protoize} on the entire set of files.  @code{protoize} will use
10349 the existing @samp{.X} file because it is newer than the source file.
10350 For example:
10351
10352 @example
10353 gcc -Dfoo=bar file1.c -aux-info file1.X
10354 protoize *.c
10355 @end example
10356
10357 @noindent
10358 You need to include the special files along with the rest in the
10359 @code{protoize} command, even though their @samp{.X} files already
10360 exist, because otherwise they won't get converted.
10361
10362 @xref{Protoize Caveats}, for more information on how to use
10363 @code{protoize} successfully.