Preserve original spellings of extended identifiers.
[official-gcc.git] / gcc / doc / invoke.texi
blob0819804b4c9d6ef6e55994fb8c916320d4c5ad42
1 @c Copyright (C) 1988-2014 Free Software Foundation, Inc.
2 @c This is part of the GCC manual.
3 @c For copying conditions, see the file gcc.texi.
5 @ignore
6 @c man begin INCLUDE
7 @include gcc-vers.texi
8 @c man end
10 @c man begin COPYRIGHT
11 Copyright @copyright{} 1988-2014 Free Software Foundation, Inc.
13 Permission is granted to copy, distribute and/or modify this document
14 under the terms of the GNU Free Documentation License, Version 1.3 or
15 any later version published by the Free Software Foundation; with the
16 Invariant Sections being ``GNU General Public License'' and ``Funding
17 Free Software'', the Front-Cover texts being (a) (see below), and with
18 the Back-Cover Texts being (b) (see below).  A copy of the license is
19 included in the gfdl(7) man page.
21 (a) The FSF's Front-Cover Text is:
23      A GNU Manual
25 (b) The FSF's Back-Cover Text is:
27      You have freedom to copy and modify this GNU Manual, like GNU
28      software.  Copies published by the Free Software Foundation raise
29      funds for GNU development.
30 @c man end
31 @c Set file name and title for the man page.
32 @setfilename gcc
33 @settitle GNU project C and C++ compiler
34 @c man begin SYNOPSIS
35 gcc [@option{-c}|@option{-S}|@option{-E}] [@option{-std=}@var{standard}]
36     [@option{-g}] [@option{-pg}] [@option{-O}@var{level}]
37     [@option{-W}@var{warn}@dots{}] [@option{-Wpedantic}]
38     [@option{-I}@var{dir}@dots{}] [@option{-L}@var{dir}@dots{}]
39     [@option{-D}@var{macro}[=@var{defn}]@dots{}] [@option{-U}@var{macro}]
40     [@option{-f}@var{option}@dots{}] [@option{-m}@var{machine-option}@dots{}]
41     [@option{-o} @var{outfile}] [@@@var{file}] @var{infile}@dots{}
43 Only the most useful options are listed here; see below for the
44 remainder.  @samp{g++} accepts mostly the same options as @samp{gcc}.
45 @c man end
46 @c man begin SEEALSO
47 gpl(7), gfdl(7), fsf-funding(7),
48 cpp(1), gcov(1), as(1), ld(1), gdb(1), adb(1), dbx(1), sdb(1)
49 and the Info entries for @file{gcc}, @file{cpp}, @file{as},
50 @file{ld}, @file{binutils} and @file{gdb}.
51 @c man end
52 @c man begin BUGS
53 For instructions on reporting bugs, see
54 @w{@value{BUGURL}}.
55 @c man end
56 @c man begin AUTHOR
57 See the Info entry for @command{gcc}, or
58 @w{@uref{http://gcc.gnu.org/onlinedocs/gcc/Contributors.html}},
59 for contributors to GCC@.
60 @c man end
61 @end ignore
63 @node Invoking GCC
64 @chapter GCC Command Options
65 @cindex GCC command options
66 @cindex command options
67 @cindex options, GCC command
69 @c man begin DESCRIPTION
70 When you invoke GCC, it normally does preprocessing, compilation,
71 assembly and linking.  The ``overall options'' allow you to stop this
72 process at an intermediate stage.  For example, the @option{-c} option
73 says not to run the linker.  Then the output consists of object files
74 output by the assembler.
76 Other options are passed on to one stage of processing.  Some options
77 control the preprocessor and others the compiler itself.  Yet other
78 options control the assembler and linker; most of these are not
79 documented here, since you rarely need to use any of them.
81 @cindex C compilation options
82 Most of the command-line options that you can use with GCC are useful
83 for C programs; when an option is only useful with another language
84 (usually C++), the explanation says so explicitly.  If the description
85 for a particular option does not mention a source language, you can use
86 that option with all supported languages.
88 @cindex C++ compilation options
89 @xref{Invoking G++,,Compiling C++ Programs}, for a summary of special
90 options for compiling C++ programs.
92 @cindex grouping options
93 @cindex options, grouping
94 The @command{gcc} program accepts options and file names as operands.  Many
95 options have multi-letter names; therefore multiple single-letter options
96 may @emph{not} be grouped: @option{-dv} is very different from @w{@samp{-d
97 -v}}.
99 @cindex order of options
100 @cindex options, order
101 You can mix options and other arguments.  For the most part, the order
102 you use doesn't matter.  Order does matter when you use several
103 options of the same kind; for example, if you specify @option{-L} more
104 than once, the directories are searched in the order specified.  Also,
105 the placement of the @option{-l} option is significant.
107 Many options have long names starting with @samp{-f} or with
108 @samp{-W}---for example,
109 @option{-fmove-loop-invariants}, @option{-Wformat} and so on.  Most of
110 these have both positive and negative forms; the negative form of
111 @option{-ffoo} is @option{-fno-foo}.  This manual documents
112 only one of these two forms, whichever one is not the default.
114 @c man end
116 @xref{Option Index}, for an index to GCC's options.
118 @menu
119 * Option Summary::      Brief list of all options, without explanations.
120 * Overall Options::     Controlling the kind of output:
121                         an executable, object files, assembler files,
122                         or preprocessed source.
123 * Invoking G++::        Compiling C++ programs.
124 * C Dialect Options::   Controlling the variant of C language compiled.
125 * C++ Dialect Options:: Variations on C++.
126 * Objective-C and Objective-C++ Dialect Options:: Variations on Objective-C
127                         and Objective-C++.
128 * Language Independent Options:: Controlling how diagnostics should be
129                         formatted.
130 * Warning Options::     How picky should the compiler be?
131 * Debugging Options::   Symbol tables, measurements, and debugging dumps.
132 * Optimize Options::    How much optimization?
133 * Preprocessor Options:: Controlling header files and macro definitions.
134                          Also, getting dependency information for Make.
135 * Assembler Options::   Passing options to the assembler.
136 * Link Options::        Specifying libraries and so on.
137 * Directory Options::   Where to find header files and libraries.
138                         Where to find the compiler executable files.
139 * Spec Files::          How to pass switches to sub-processes.
140 * Target Options::      Running a cross-compiler, or an old version of GCC.
141 * Submodel Options::    Specifying minor hardware or convention variations,
142                         such as 68010 vs 68020.
143 * Code Gen Options::    Specifying conventions for function calls, data layout
144                         and register usage.
145 * Environment Variables:: Env vars that affect GCC.
146 * Precompiled Headers:: Compiling a header once, and using it many times.
147 @end menu
149 @c man begin OPTIONS
151 @node Option Summary
152 @section Option Summary
154 Here is a summary of all the options, grouped by type.  Explanations are
155 in the following sections.
157 @table @emph
158 @item Overall Options
159 @xref{Overall Options,,Options Controlling the Kind of Output}.
160 @gccoptlist{-c  -S  -E  -o @var{file}  -no-canonical-prefixes  @gol
161 -pipe  -pass-exit-codes  @gol
162 -x @var{language}  -v  -###  --help@r{[}=@var{class}@r{[},@dots{}@r{]]}  --target-help  @gol
163 --version -wrapper @@@var{file} -fplugin=@var{file} -fplugin-arg-@var{name}=@var{arg}  @gol
164 -fdump-ada-spec@r{[}-slim@r{]} -fada-spec-parent=@var{unit} -fdump-go-spec=@var{file}}
166 @item C Language Options
167 @xref{C Dialect Options,,Options Controlling C Dialect}.
168 @gccoptlist{-ansi  -std=@var{standard}  -fgnu89-inline @gol
169 -aux-info @var{filename} -fallow-parameterless-variadic-functions @gol
170 -fno-asm  -fno-builtin  -fno-builtin-@var{function} @gol
171 -fhosted  -ffreestanding -fopenmp -fopenmp-simd -fms-extensions @gol
172 -fplan9-extensions -trigraphs  -traditional  -traditional-cpp @gol
173 -fallow-single-precision  -fcond-mismatch -flax-vector-conversions @gol
174 -fsigned-bitfields  -fsigned-char @gol
175 -funsigned-bitfields  -funsigned-char}
177 @item C++ Language Options
178 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}.
179 @gccoptlist{-fabi-version=@var{n}  -fno-access-control  -fcheck-new @gol
180 -fconstexpr-depth=@var{n}  -ffriend-injection @gol
181 -fno-elide-constructors @gol
182 -fno-enforce-eh-specs @gol
183 -ffor-scope  -fno-for-scope  -fno-gnu-keywords @gol
184 -fno-implicit-templates @gol
185 -fno-implicit-inline-templates @gol
186 -fno-implement-inlines  -fms-extensions @gol
187 -fno-nonansi-builtins  -fnothrow-opt  -fno-operator-names @gol
188 -fno-optional-diags  -fpermissive @gol
189 -fno-pretty-templates @gol
190 -frepo  -fno-rtti  -fstats  -ftemplate-backtrace-limit=@var{n} @gol
191 -ftemplate-depth=@var{n} @gol
192 -fno-threadsafe-statics  -fuse-cxa-atexit @gol
193 -fno-weak  -nostdinc++ @gol
194 -fvisibility-inlines-hidden @gol
195 -fvtable-verify=@var{std|preinit|none} @gol
196 -fvtv-counts -fvtv-debug @gol
197 -fvisibility-ms-compat @gol
198 -fext-numeric-literals @gol
199 -Wabi=@var{n}  -Wconversion-null  -Wctor-dtor-privacy @gol
200 -Wdelete-non-virtual-dtor -Wliteral-suffix -Wnarrowing @gol
201 -Wnoexcept -Wnon-virtual-dtor  -Wreorder @gol
202 -Weffc++  -Wstrict-null-sentinel @gol
203 -Wno-non-template-friend  -Wold-style-cast @gol
204 -Woverloaded-virtual  -Wno-pmf-conversions @gol
205 -Wsign-promo}
207 @item Objective-C and Objective-C++ Language Options
208 @xref{Objective-C and Objective-C++ Dialect Options,,Options Controlling
209 Objective-C and Objective-C++ Dialects}.
210 @gccoptlist{-fconstant-string-class=@var{class-name} @gol
211 -fgnu-runtime  -fnext-runtime @gol
212 -fno-nil-receivers @gol
213 -fobjc-abi-version=@var{n} @gol
214 -fobjc-call-cxx-cdtors @gol
215 -fobjc-direct-dispatch @gol
216 -fobjc-exceptions @gol
217 -fobjc-gc @gol
218 -fobjc-nilcheck @gol
219 -fobjc-std=objc1 @gol
220 -fno-local-ivars @gol
221 -fivar-visibility=@var{public|protected|private|package} @gol
222 -freplace-objc-classes @gol
223 -fzero-link @gol
224 -gen-decls @gol
225 -Wassign-intercept @gol
226 -Wno-protocol  -Wselector @gol
227 -Wstrict-selector-match @gol
228 -Wundeclared-selector}
230 @item Language Independent Options
231 @xref{Language Independent Options,,Options to Control Diagnostic Messages Formatting}.
232 @gccoptlist{-fmessage-length=@var{n}  @gol
233 -fdiagnostics-show-location=@r{[}once@r{|}every-line@r{]}  @gol
234 -fdiagnostics-color=@r{[}auto@r{|}never@r{|}always@r{]}  @gol
235 -fno-diagnostics-show-option -fno-diagnostics-show-caret}
237 @item Warning Options
238 @xref{Warning Options,,Options to Request or Suppress Warnings}.
239 @gccoptlist{-fsyntax-only  -fmax-errors=@var{n}  -Wpedantic @gol
240 -pedantic-errors @gol
241 -w  -Wextra  -Wall  -Waddress  -Waggregate-return  @gol
242 -Waggressive-loop-optimizations -Warray-bounds @gol
243 -Wbool-compare @gol
244 -Wno-attributes -Wno-builtin-macro-redefined @gol
245 -Wc90-c99-compat -Wc99-c11-compat @gol
246 -Wc++-compat -Wc++11-compat -Wcast-align  -Wcast-qual  @gol
247 -Wchar-subscripts -Wclobbered  -Wcomment -Wconditionally-supported  @gol
248 -Wconversion -Wcoverage-mismatch -Wdate-time -Wdelete-incomplete -Wno-cpp  @gol
249 -Wno-deprecated -Wno-deprecated-declarations -Wno-designated-init @gol
250 -Wdisabled-optimization -Wno-discarded-qualifiers @gol
251 -Wno-div-by-zero -Wdouble-promotion -Wempty-body  -Wenum-compare @gol
252 -Wno-endif-labels -Werror  -Werror=* @gol
253 -Wfatal-errors  -Wfloat-equal  -Wformat  -Wformat=2 @gol
254 -Wno-format-contains-nul -Wno-format-extra-args -Wformat-nonliteral @gol
255 -Wformat-security  -Wformat-signedness  -Wformat-y2k @gol
256 -Wframe-larger-than=@var{len} -Wno-free-nonheap-object -Wjump-misses-init @gol
257 -Wignored-qualifiers  -Wincompatible-pointer-types @gol
258 -Wimplicit  -Wimplicit-function-declaration  -Wimplicit-int @gol
259 -Winit-self  -Winline  -Wno-int-conversion @gol
260 -Wno-int-to-pointer-cast -Wno-invalid-offsetof @gol
261 -Winvalid-pch -Wlarger-than=@var{len}  -Wunsafe-loop-optimizations @gol
262 -Wlogical-op -Wlogical-not-parentheses -Wlong-long @gol
263 -Wmain -Wmaybe-uninitialized -Wmemset-transposed-args -Wmissing-braces @gol
264 -Wmissing-field-initializers -Wmissing-include-dirs @gol
265 -Wno-multichar  -Wnonnull  -Wnormalized=@r{[}none@r{|}id@r{|}nfc@r{|}nfkc@r{]} @gol
266  -Wodr  -Wno-overflow  -Wopenmp-simd @gol
267 -Woverlength-strings  -Wpacked  -Wpacked-bitfield-compat  -Wpadded @gol
268 -Wparentheses  -Wpedantic-ms-format -Wno-pedantic-ms-format @gol
269 -Wpointer-arith  -Wno-pointer-to-int-cast @gol
270 -Wredundant-decls  -Wno-return-local-addr @gol
271 -Wreturn-type  -Wsequence-point  -Wshadow  -Wno-shadow-ivar @gol
272 -Wsign-compare  -Wsign-conversion -Wfloat-conversion @gol
273 -Wsizeof-pointer-memaccess  -Wsizeof-array-argument @gol
274 -Wstack-protector -Wstack-usage=@var{len} -Wstrict-aliasing @gol
275 -Wstrict-aliasing=n @gol -Wstrict-overflow -Wstrict-overflow=@var{n} @gol
276 -Wsuggest-attribute=@r{[}pure@r{|}const@r{|}noreturn@r{|}format@r{]} @gol
277 -Wsuggest-final-types @gol -Wsuggest-final-methods @gol
278 -Wmissing-format-attribute @gol
279 -Wswitch  -Wswitch-default  -Wswitch-enum -Wswitch-bool -Wsync-nand @gol
280 -Wsystem-headers  -Wtrampolines  -Wtrigraphs  -Wtype-limits  -Wundef @gol
281 -Wuninitialized  -Wunknown-pragmas  -Wno-pragmas @gol
282 -Wunsuffixed-float-constants  -Wunused  -Wunused-function @gol
283 -Wunused-label  -Wunused-local-typedefs -Wunused-parameter @gol
284 -Wno-unused-result -Wunused-value @gol -Wunused-variable @gol
285 -Wunused-but-set-parameter -Wunused-but-set-variable @gol
286 -Wuseless-cast -Wvariadic-macros -Wvector-operation-performance @gol
287 -Wvla -Wvolatile-register-var  -Wwrite-strings -Wzero-as-null-pointer-constant}
289 @item C and Objective-C-only Warning Options
290 @gccoptlist{-Wbad-function-cast  -Wmissing-declarations @gol
291 -Wmissing-parameter-type  -Wmissing-prototypes  -Wnested-externs @gol
292 -Wold-style-declaration  -Wold-style-definition @gol
293 -Wstrict-prototypes  -Wtraditional  -Wtraditional-conversion @gol
294 -Wdeclaration-after-statement -Wpointer-sign}
296 @item Debugging Options
297 @xref{Debugging Options,,Options for Debugging Your Program or GCC}.
298 @gccoptlist{-d@var{letters}  -dumpspecs  -dumpmachine  -dumpversion @gol
299 -fsanitize=@var{style} -fsanitize-recover -fsanitize-recover=@var{style} @gol
300 -fasan-shadow-offset=@var{number} -fsanitize-undefined-trap-on-error @gol
301 -fdbg-cnt-list -fdbg-cnt=@var{counter-value-list} @gol
302 -fdisable-ipa-@var{pass_name} @gol
303 -fdisable-rtl-@var{pass_name} @gol
304 -fdisable-rtl-@var{pass-name}=@var{range-list} @gol
305 -fdisable-tree-@var{pass_name} @gol
306 -fdisable-tree-@var{pass-name}=@var{range-list} @gol
307 -fdump-noaddr -fdump-unnumbered -fdump-unnumbered-links @gol
308 -fdump-translation-unit@r{[}-@var{n}@r{]} @gol
309 -fdump-class-hierarchy@r{[}-@var{n}@r{]} @gol
310 -fdump-ipa-all -fdump-ipa-cgraph -fdump-ipa-inline @gol
311 -fdump-passes @gol
312 -fdump-statistics @gol
313 -fdump-tree-all @gol
314 -fdump-tree-original@r{[}-@var{n}@r{]}  @gol
315 -fdump-tree-optimized@r{[}-@var{n}@r{]} @gol
316 -fdump-tree-cfg -fdump-tree-alias @gol
317 -fdump-tree-ch @gol
318 -fdump-tree-ssa@r{[}-@var{n}@r{]} -fdump-tree-pre@r{[}-@var{n}@r{]} @gol
319 -fdump-tree-ccp@r{[}-@var{n}@r{]} -fdump-tree-dce@r{[}-@var{n}@r{]} @gol
320 -fdump-tree-gimple@r{[}-raw@r{]} @gol
321 -fdump-tree-dom@r{[}-@var{n}@r{]} @gol
322 -fdump-tree-dse@r{[}-@var{n}@r{]} @gol
323 -fdump-tree-phiprop@r{[}-@var{n}@r{]} @gol
324 -fdump-tree-phiopt@r{[}-@var{n}@r{]} @gol
325 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
326 -fdump-tree-copyrename@r{[}-@var{n}@r{]} @gol
327 -fdump-tree-nrv -fdump-tree-vect @gol
328 -fdump-tree-sink @gol
329 -fdump-tree-sra@r{[}-@var{n}@r{]} @gol
330 -fdump-tree-forwprop@r{[}-@var{n}@r{]} @gol
331 -fdump-tree-fre@r{[}-@var{n}@r{]} @gol
332 -fdump-tree-vtable-verify @gol
333 -fdump-tree-vrp@r{[}-@var{n}@r{]} @gol
334 -fdump-tree-storeccp@r{[}-@var{n}@r{]} @gol
335 -fdump-final-insns=@var{file} @gol
336 -fcompare-debug@r{[}=@var{opts}@r{]}  -fcompare-debug-second @gol
337 -feliminate-dwarf2-dups -fno-eliminate-unused-debug-types @gol
338 -feliminate-unused-debug-symbols -femit-class-debug-always @gol
339 -fenable-@var{kind}-@var{pass} @gol
340 -fenable-@var{kind}-@var{pass}=@var{range-list} @gol
341 -fdebug-types-section -fmem-report-wpa @gol
342 -fmem-report -fpre-ipa-mem-report -fpost-ipa-mem-report -fprofile-arcs @gol
343 -fopt-info @gol
344 -fopt-info-@var{options}@r{[}=@var{file}@r{]} @gol
345 -frandom-seed=@var{number} -fsched-verbose=@var{n} @gol
346 -fsel-sched-verbose -fsel-sched-dump-cfg -fsel-sched-pipelining-verbose @gol
347 -fstack-usage  -ftest-coverage  -ftime-report -fvar-tracking @gol
348 -fvar-tracking-assignments  -fvar-tracking-assignments-toggle @gol
349 -g  -g@var{level}  -gtoggle  -gcoff  -gdwarf-@var{version} @gol
350 -ggdb  -grecord-gcc-switches  -gno-record-gcc-switches @gol
351 -gstabs  -gstabs+  -gstrict-dwarf  -gno-strict-dwarf @gol
352 -gvms  -gxcoff  -gxcoff+ -gz@r{[}=@var{type}@r{]} @gol
353 -fno-merge-debug-strings -fno-dwarf2-cfi-asm @gol
354 -fdebug-prefix-map=@var{old}=@var{new} @gol
355 -femit-struct-debug-baseonly -femit-struct-debug-reduced @gol
356 -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]} @gol
357 -p  -pg  -print-file-name=@var{library}  -print-libgcc-file-name @gol
358 -print-multi-directory  -print-multi-lib  -print-multi-os-directory @gol
359 -print-prog-name=@var{program}  -print-search-dirs  -Q @gol
360 -print-sysroot -print-sysroot-headers-suffix @gol
361 -save-temps -save-temps=cwd -save-temps=obj -time@r{[}=@var{file}@r{]}}
363 @item Optimization Options
364 @xref{Optimize Options,,Options that Control Optimization}.
365 @gccoptlist{-faggressive-loop-optimizations -falign-functions[=@var{n}] @gol
366 -falign-jumps[=@var{n}] @gol
367 -falign-labels[=@var{n}] -falign-loops[=@var{n}] @gol
368 -fassociative-math -fauto-profile -fauto-profile[=@var{path}] @gol
369 -fauto-inc-dec -fbranch-probabilities @gol
370 -fbranch-target-load-optimize -fbranch-target-load-optimize2 @gol
371 -fbtr-bb-exclusive -fcaller-saves @gol
372 -fcheck-data-deps -fcombine-stack-adjustments -fconserve-stack @gol
373 -fcompare-elim -fcprop-registers -fcrossjumping @gol
374 -fcse-follow-jumps -fcse-skip-blocks -fcx-fortran-rules @gol
375 -fcx-limited-range @gol
376 -fdata-sections -fdce -fdelayed-branch @gol
377 -fdelete-null-pointer-checks -fdevirtualize -fdevirtualize-speculatively -fdse @gol
378 -fearly-inlining -fipa-sra -fexpensive-optimizations -ffat-lto-objects @gol
379 -ffast-math -ffinite-math-only -ffloat-store -fexcess-precision=@var{style} @gol
380 -fforward-propagate -ffp-contract=@var{style} -ffunction-sections @gol
381 -fgcse -fgcse-after-reload -fgcse-las -fgcse-lm -fgraphite-identity @gol
382 -fgcse-sm -fhoist-adjacent-loads -fif-conversion @gol
383 -fif-conversion2 -findirect-inlining @gol
384 -finline-functions -finline-functions-called-once -finline-limit=@var{n} @gol
385 -finline-small-functions -fipa-cp -fipa-cp-clone @gol
386 -fipa-pta -fipa-profile -fipa-pure-const -fipa-reference -fipa-icf @gol
387 -fira-algorithm=@var{algorithm} @gol
388 -fira-region=@var{region} -fira-hoist-pressure @gol
389 -fira-loop-pressure -fno-ira-share-save-slots @gol
390 -fno-ira-share-spill-slots -fira-verbose=@var{n} @gol
391 -fisolate-erroneous-paths-dereference -fisolate-erroneous-paths-attribute @gol
392 -fivopts -fkeep-inline-functions -fkeep-static-consts -flive-range-shrinkage @gol
393 -floop-block -floop-interchange -floop-strip-mine -floop-nest-optimize @gol
394 -floop-parallelize-all -flto -flto-compression-level @gol
395 -flto-partition=@var{alg} -flto-report -flto-report-wpa -fmerge-all-constants @gol
396 -fmerge-constants -fmodulo-sched -fmodulo-sched-allow-regmoves @gol
397 -fmove-loop-invariants -fno-branch-count-reg @gol
398 -fno-defer-pop -fno-function-cse -fno-guess-branch-probability @gol
399 -fno-inline -fno-math-errno -fno-peephole -fno-peephole2 @gol
400 -fno-sched-interblock -fno-sched-spec -fno-signed-zeros @gol
401 -fno-toplevel-reorder -fno-trapping-math -fno-zero-initialized-in-bss @gol
402 -fomit-frame-pointer -foptimize-sibling-calls @gol
403 -fpartial-inlining -fpeel-loops -fpredictive-commoning @gol
404 -fprefetch-loop-arrays -fprofile-report @gol
405 -fprofile-correction -fprofile-dir=@var{path} -fprofile-generate @gol
406 -fprofile-generate=@var{path} @gol
407 -fprofile-use -fprofile-use=@var{path} -fprofile-values -fprofile-reorder-functions @gol
408 -freciprocal-math -free -frename-registers -freorder-blocks @gol
409 -freorder-blocks-and-partition -freorder-functions @gol
410 -frerun-cse-after-loop -freschedule-modulo-scheduled-loops @gol
411 -frounding-math -fsched2-use-superblocks -fsched-pressure @gol
412 -fsched-spec-load -fsched-spec-load-dangerous @gol
413 -fsched-stalled-insns-dep[=@var{n}] -fsched-stalled-insns[=@var{n}] @gol
414 -fsched-group-heuristic -fsched-critical-path-heuristic @gol
415 -fsched-spec-insn-heuristic -fsched-rank-heuristic @gol
416 -fsched-last-insn-heuristic -fsched-dep-count-heuristic @gol
417 -fschedule-insns -fschedule-insns2 -fsection-anchors @gol
418 -fselective-scheduling -fselective-scheduling2 @gol
419 -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops @gol
420 -fsemantic-interposition @gol
421 -fshrink-wrap -fsignaling-nans -fsingle-precision-constant @gol
422 -fsplit-ivs-in-unroller -fsplit-wide-types -fssa-phiopt -fstack-protector @gol
423 -fstack-protector-all -fstack-protector-strong -fstrict-aliasing @gol
424 -fstrict-overflow -fthread-jumps -ftracer -ftree-bit-ccp @gol
425 -ftree-builtin-call-dce -ftree-ccp -ftree-ch @gol
426 -ftree-coalesce-inline-vars -ftree-coalesce-vars -ftree-copy-prop @gol
427 -ftree-copyrename -ftree-dce -ftree-dominator-opts -ftree-dse @gol
428 -ftree-forwprop -ftree-fre -ftree-loop-if-convert @gol
429 -ftree-loop-if-convert-stores -ftree-loop-im @gol
430 -ftree-phiprop -ftree-loop-distribution -ftree-loop-distribute-patterns @gol
431 -ftree-loop-ivcanon -ftree-loop-linear -ftree-loop-optimize @gol
432 -ftree-loop-vectorize @gol
433 -ftree-parallelize-loops=@var{n} -ftree-pre -ftree-partial-pre -ftree-pta @gol
434 -ftree-reassoc -ftree-sink -ftree-slsr -ftree-sra @gol
435 -ftree-switch-conversion -ftree-tail-merge -ftree-ter @gol
436 -ftree-vectorize -ftree-vrp @gol
437 -funit-at-a-time -funroll-all-loops -funroll-loops @gol
438 -funsafe-loop-optimizations -funsafe-math-optimizations -funswitch-loops @gol
439 -fuse-caller-save -fvariable-expansion-in-unroller -fvect-cost-model -fvpt @gol
440 -fweb -fwhole-program -fwpa -fuse-ld=@var{linker} -fuse-linker-plugin @gol
441 --param @var{name}=@var{value}
442 -O  -O0  -O1  -O2  -O3  -Os -Ofast -Og}
444 @item Preprocessor Options
445 @xref{Preprocessor Options,,Options Controlling the Preprocessor}.
446 @gccoptlist{-A@var{question}=@var{answer} @gol
447 -A-@var{question}@r{[}=@var{answer}@r{]} @gol
448 -C  -dD  -dI  -dM  -dN @gol
449 -D@var{macro}@r{[}=@var{defn}@r{]}  -E  -H @gol
450 -idirafter @var{dir} @gol
451 -include @var{file}  -imacros @var{file} @gol
452 -iprefix @var{file}  -iwithprefix @var{dir} @gol
453 -iwithprefixbefore @var{dir}  -isystem @var{dir} @gol
454 -imultilib @var{dir} -isysroot @var{dir} @gol
455 -M  -MM  -MF  -MG  -MP  -MQ  -MT  -nostdinc  @gol
456 -P  -fdebug-cpp -ftrack-macro-expansion -fworking-directory @gol
457 -remap -trigraphs  -undef  -U@var{macro}  @gol
458 -Wp,@var{option} -Xpreprocessor @var{option} -no-integrated-cpp}
460 @item Assembler Option
461 @xref{Assembler Options,,Passing Options to the Assembler}.
462 @gccoptlist{-Wa,@var{option}  -Xassembler @var{option}}
464 @item Linker Options
465 @xref{Link Options,,Options for Linking}.
466 @gccoptlist{@var{object-file-name}  -l@var{library} @gol
467 -nostartfiles  -nodefaultlibs  -nostdlib -pie -rdynamic @gol
468 -s  -static -static-libgcc -static-libstdc++ @gol
469 -static-libasan -static-libtsan -static-liblsan -static-libubsan @gol
470 -shared -shared-libgcc  -symbolic @gol
471 -T @var{script}  -Wl,@var{option}  -Xlinker @var{option} @gol
472 -u @var{symbol} -z @var{keyword}}
474 @item Directory Options
475 @xref{Directory Options,,Options for Directory Search}.
476 @gccoptlist{-B@var{prefix} -I@var{dir} -iplugindir=@var{dir} @gol
477 -iquote@var{dir} -L@var{dir} -specs=@var{file} -I- @gol
478 --sysroot=@var{dir} --no-sysroot-suffix}
480 @item Machine Dependent Options
481 @xref{Submodel Options,,Hardware Models and Configurations}.
482 @c This list is ordered alphanumerically by subsection name.
483 @c Try and put the significant identifier (CPU or system) first,
484 @c so users have a clue at guessing where the ones they want will be.
486 @emph{AArch64 Options}
487 @gccoptlist{-mabi=@var{name}  -mbig-endian  -mlittle-endian @gol
488 -mgeneral-regs-only @gol
489 -mcmodel=tiny  -mcmodel=small  -mcmodel=large @gol
490 -mstrict-align @gol
491 -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
492 -mtls-dialect=desc  -mtls-dialect=traditional @gol
493 -mfix-cortex-a53-835769  -mno-fix-cortex-a53-835769 @gol
494 -march=@var{name}  -mcpu=@var{name}  -mtune=@var{name}}
496 @emph{Adapteva Epiphany Options}
497 @gccoptlist{-mhalf-reg-file -mprefer-short-insn-regs @gol
498 -mbranch-cost=@var{num} -mcmove -mnops=@var{num} -msoft-cmpsf @gol
499 -msplit-lohi -mpost-inc -mpost-modify -mstack-offset=@var{num} @gol
500 -mround-nearest -mlong-calls -mshort-calls -msmall16 @gol
501 -mfp-mode=@var{mode} -mvect-double -max-vect-align=@var{num} @gol
502 -msplit-vecmove-early -m1reg-@var{reg}}
504 @emph{ARC Options}
505 @gccoptlist{-mbarrel-shifter @gol
506 -mcpu=@var{cpu} -mA6 -mARC600 -mA7 -mARC700 @gol
507 -mdpfp -mdpfp-compact -mdpfp-fast -mno-dpfp-lrsr @gol
508 -mea -mno-mpy -mmul32x16 -mmul64 @gol
509 -mnorm -mspfp -mspfp-compact -mspfp-fast -msimd -msoft-float -mswap @gol
510 -mcrc -mdsp-packa -mdvbf -mlock -mmac-d16 -mmac-24 -mrtsc -mswape @gol
511 -mtelephony -mxy -misize -mannotate-align -marclinux -marclinux_prof @gol
512 -mepilogue-cfi -mlong-calls -mmedium-calls -msdata @gol
513 -mucb-mcount -mvolatile-cache @gol
514 -malign-call -mauto-modify-reg -mbbit-peephole -mno-brcc @gol
515 -mcase-vector-pcrel -mcompact-casesi -mno-cond-exec -mearly-cbranchsi @gol
516 -mexpand-adddi -mindexed-loads -mlra -mlra-priority-none @gol
517 -mlra-priority-compact mlra-priority-noncompact -mno-millicode @gol
518 -mmixed-code -mq-class -mRcq -mRcw -msize-level=@var{level} @gol
519 -mtune=@var{cpu} -mmultcost=@var{num} -munalign-prob-threshold=@var{probability}}
521 @emph{ARM Options}
522 @gccoptlist{-mapcs-frame  -mno-apcs-frame @gol
523 -mabi=@var{name} @gol
524 -mapcs-stack-check  -mno-apcs-stack-check @gol
525 -mapcs-float  -mno-apcs-float @gol
526 -mapcs-reentrant  -mno-apcs-reentrant @gol
527 -msched-prolog  -mno-sched-prolog @gol
528 -mlittle-endian  -mbig-endian @gol
529 -mfloat-abi=@var{name} @gol
530 -mfp16-format=@var{name}
531 -mthumb-interwork  -mno-thumb-interwork @gol
532 -mcpu=@var{name}  -march=@var{name}  -mfpu=@var{name}  @gol
533 -mstructure-size-boundary=@var{n} @gol
534 -mabort-on-noreturn @gol
535 -mlong-calls  -mno-long-calls @gol
536 -msingle-pic-base  -mno-single-pic-base @gol
537 -mpic-register=@var{reg} @gol
538 -mnop-fun-dllimport @gol
539 -mpoke-function-name @gol
540 -mthumb  -marm @gol
541 -mtpcs-frame  -mtpcs-leaf-frame @gol
542 -mcaller-super-interworking  -mcallee-super-interworking @gol
543 -mtp=@var{name} -mtls-dialect=@var{dialect} @gol
544 -mword-relocations @gol
545 -mfix-cortex-m3-ldrd @gol
546 -munaligned-access @gol
547 -mneon-for-64bits @gol
548 -mslow-flash-data @gol
549 -mrestrict-it}
551 @emph{AVR Options}
552 @gccoptlist{-mmcu=@var{mcu} -maccumulate-args -mbranch-cost=@var{cost} @gol
553 -mcall-prologues -mint8 -mno-interrupts -mrelax @gol
554 -mstrict-X -mtiny-stack -Waddr-space-convert}
556 @emph{Blackfin Options}
557 @gccoptlist{-mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]} @gol
558 -msim -momit-leaf-frame-pointer  -mno-omit-leaf-frame-pointer @gol
559 -mspecld-anomaly  -mno-specld-anomaly  -mcsync-anomaly  -mno-csync-anomaly @gol
560 -mlow-64k -mno-low64k  -mstack-check-l1  -mid-shared-library @gol
561 -mno-id-shared-library  -mshared-library-id=@var{n} @gol
562 -mleaf-id-shared-library  -mno-leaf-id-shared-library @gol
563 -msep-data  -mno-sep-data  -mlong-calls  -mno-long-calls @gol
564 -mfast-fp -minline-plt -mmulticore  -mcorea  -mcoreb  -msdram @gol
565 -micplb}
567 @emph{C6X Options}
568 @gccoptlist{-mbig-endian  -mlittle-endian -march=@var{cpu} @gol
569 -msim -msdata=@var{sdata-type}}
571 @emph{CRIS Options}
572 @gccoptlist{-mcpu=@var{cpu}  -march=@var{cpu}  -mtune=@var{cpu} @gol
573 -mmax-stack-frame=@var{n}  -melinux-stacksize=@var{n} @gol
574 -metrax4  -metrax100  -mpdebug  -mcc-init  -mno-side-effects @gol
575 -mstack-align  -mdata-align  -mconst-align @gol
576 -m32-bit  -m16-bit  -m8-bit  -mno-prologue-epilogue  -mno-gotplt @gol
577 -melf  -maout  -melinux  -mlinux  -sim  -sim2 @gol
578 -mmul-bug-workaround  -mno-mul-bug-workaround}
580 @emph{CR16 Options}
581 @gccoptlist{-mmac @gol
582 -mcr16cplus -mcr16c @gol
583 -msim -mint32 -mbit-ops
584 -mdata-model=@var{model}}
586 @emph{Darwin Options}
587 @gccoptlist{-all_load  -allowable_client  -arch  -arch_errors_fatal @gol
588 -arch_only  -bind_at_load  -bundle  -bundle_loader @gol
589 -client_name  -compatibility_version  -current_version @gol
590 -dead_strip @gol
591 -dependency-file  -dylib_file  -dylinker_install_name @gol
592 -dynamic  -dynamiclib  -exported_symbols_list @gol
593 -filelist  -flat_namespace  -force_cpusubtype_ALL @gol
594 -force_flat_namespace  -headerpad_max_install_names @gol
595 -iframework @gol
596 -image_base  -init  -install_name  -keep_private_externs @gol
597 -multi_module  -multiply_defined  -multiply_defined_unused @gol
598 -noall_load   -no_dead_strip_inits_and_terms @gol
599 -nofixprebinding -nomultidefs  -noprebind  -noseglinkedit @gol
600 -pagezero_size  -prebind  -prebind_all_twolevel_modules @gol
601 -private_bundle  -read_only_relocs  -sectalign @gol
602 -sectobjectsymbols  -whyload  -seg1addr @gol
603 -sectcreate  -sectobjectsymbols  -sectorder @gol
604 -segaddr -segs_read_only_addr -segs_read_write_addr @gol
605 -seg_addr_table  -seg_addr_table_filename  -seglinkedit @gol
606 -segprot  -segs_read_only_addr  -segs_read_write_addr @gol
607 -single_module  -static  -sub_library  -sub_umbrella @gol
608 -twolevel_namespace  -umbrella  -undefined @gol
609 -unexported_symbols_list  -weak_reference_mismatches @gol
610 -whatsloaded -F -gused -gfull -mmacosx-version-min=@var{version} @gol
611 -mkernel -mone-byte-bool}
613 @emph{DEC Alpha Options}
614 @gccoptlist{-mno-fp-regs  -msoft-float @gol
615 -mieee  -mieee-with-inexact  -mieee-conformant @gol
616 -mfp-trap-mode=@var{mode}  -mfp-rounding-mode=@var{mode} @gol
617 -mtrap-precision=@var{mode}  -mbuild-constants @gol
618 -mcpu=@var{cpu-type}  -mtune=@var{cpu-type} @gol
619 -mbwx  -mmax  -mfix  -mcix @gol
620 -mfloat-vax  -mfloat-ieee @gol
621 -mexplicit-relocs  -msmall-data  -mlarge-data @gol
622 -msmall-text  -mlarge-text @gol
623 -mmemory-latency=@var{time}}
625 @emph{FR30 Options}
626 @gccoptlist{-msmall-model -mno-lsim}
628 @emph{FRV Options}
629 @gccoptlist{-mgpr-32  -mgpr-64  -mfpr-32  -mfpr-64 @gol
630 -mhard-float  -msoft-float @gol
631 -malloc-cc  -mfixed-cc  -mdword  -mno-dword @gol
632 -mdouble  -mno-double @gol
633 -mmedia  -mno-media  -mmuladd  -mno-muladd @gol
634 -mfdpic  -minline-plt -mgprel-ro  -multilib-library-pic @gol
635 -mlinked-fp  -mlong-calls  -malign-labels @gol
636 -mlibrary-pic  -macc-4  -macc-8 @gol
637 -mpack  -mno-pack  -mno-eflags  -mcond-move  -mno-cond-move @gol
638 -moptimize-membar -mno-optimize-membar @gol
639 -mscc  -mno-scc  -mcond-exec  -mno-cond-exec @gol
640 -mvliw-branch  -mno-vliw-branch @gol
641 -mmulti-cond-exec  -mno-multi-cond-exec  -mnested-cond-exec @gol
642 -mno-nested-cond-exec  -mtomcat-stats @gol
643 -mTLS -mtls @gol
644 -mcpu=@var{cpu}}
646 @emph{GNU/Linux Options}
647 @gccoptlist{-mglibc -muclibc -mbionic -mandroid @gol
648 -tno-android-cc -tno-android-ld}
650 @emph{H8/300 Options}
651 @gccoptlist{-mrelax  -mh  -ms  -mn  -mexr -mno-exr  -mint32  -malign-300}
653 @emph{HPPA Options}
654 @gccoptlist{-march=@var{architecture-type} @gol
655 -mdisable-fpregs  -mdisable-indexing @gol
656 -mfast-indirect-calls  -mgas  -mgnu-ld   -mhp-ld @gol
657 -mfixed-range=@var{register-range} @gol
658 -mjump-in-delay -mlinker-opt -mlong-calls @gol
659 -mlong-load-store  -mno-disable-fpregs @gol
660 -mno-disable-indexing  -mno-fast-indirect-calls  -mno-gas @gol
661 -mno-jump-in-delay  -mno-long-load-store @gol
662 -mno-portable-runtime  -mno-soft-float @gol
663 -mno-space-regs  -msoft-float  -mpa-risc-1-0 @gol
664 -mpa-risc-1-1  -mpa-risc-2-0  -mportable-runtime @gol
665 -mschedule=@var{cpu-type}  -mspace-regs  -msio  -mwsio @gol
666 -munix=@var{unix-std}  -nolibdld  -static  -threads}
668 @emph{i386 and x86-64 Options}
669 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
670 -mtune-ctrl=@var{feature-list} -mdump-tune-features -mno-default @gol
671 -mfpmath=@var{unit} @gol
672 -masm=@var{dialect}  -mno-fancy-math-387 @gol
673 -mno-fp-ret-in-387  -msoft-float @gol
674 -mno-wide-multiply  -mrtd  -malign-double @gol
675 -mpreferred-stack-boundary=@var{num} @gol
676 -mincoming-stack-boundary=@var{num} @gol
677 -mcld -mcx16 -msahf -mmovbe -mcrc32 @gol
678 -mrecip -mrecip=@var{opt} @gol
679 -mvzeroupper -mprefer-avx128 @gol
680 -mmmx  -msse  -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -msse4 -mavx @gol
681 -mavx2 -mavx512f -mavx512pf -mavx512er -mavx512cd -msha @gol
682 -maes -mpclmul -mfsgsbase -mrdrnd -mf16c -mfma -mprefetchwt1 @gol
683 -mclflushopt -mxsavec -mxsaves @gol
684 -msse4a -m3dnow -mpopcnt -mabm -mbmi -mtbm -mfma4 -mxop -mlzcnt @gol
685 -mbmi2 -mfxsr -mxsave -mxsaveopt -mrtm -mlwp -mmpx -mthreads @gol
686 -mno-align-stringops  -minline-all-stringops @gol
687 -minline-stringops-dynamically -mstringop-strategy=@var{alg} @gol
688 -mmemcpy-strategy=@var{strategy} -mmemset-strategy=@var{strategy}
689 -mpush-args  -maccumulate-outgoing-args  -m128bit-long-double @gol
690 -m96bit-long-double -mlong-double-64 -mlong-double-80 -mlong-double-128 @gol
691 -mregparm=@var{num}  -msseregparm @gol
692 -mveclibabi=@var{type} -mvect8-ret-in-mem @gol
693 -mpc32 -mpc64 -mpc80 -mstackrealign @gol
694 -momit-leaf-frame-pointer  -mno-red-zone -mno-tls-direct-seg-refs @gol
695 -mcmodel=@var{code-model} -mabi=@var{name} -maddress-mode=@var{mode} @gol
696 -m32 -m64 -mx32 -m16 -mlarge-data-threshold=@var{num} @gol
697 -msse2avx -mfentry -mrecord-mcount -mnop-mcount -m8bit-idiv @gol
698 -mavx256-split-unaligned-load -mavx256-split-unaligned-store @gol
699 -mstack-protector-guard=@var{guard}}
701 @emph{i386 and x86-64 Windows Options}
702 @gccoptlist{-mconsole -mcygwin -mno-cygwin -mdll @gol
703 -mnop-fun-dllimport -mthread @gol
704 -municode -mwin32 -mwindows -fno-set-stack-executable}
706 @emph{IA-64 Options}
707 @gccoptlist{-mbig-endian  -mlittle-endian  -mgnu-as  -mgnu-ld  -mno-pic @gol
708 -mvolatile-asm-stop  -mregister-names  -msdata -mno-sdata @gol
709 -mconstant-gp  -mauto-pic  -mfused-madd @gol
710 -minline-float-divide-min-latency @gol
711 -minline-float-divide-max-throughput @gol
712 -mno-inline-float-divide @gol
713 -minline-int-divide-min-latency @gol
714 -minline-int-divide-max-throughput  @gol
715 -mno-inline-int-divide @gol
716 -minline-sqrt-min-latency -minline-sqrt-max-throughput @gol
717 -mno-inline-sqrt @gol
718 -mdwarf2-asm -mearly-stop-bits @gol
719 -mfixed-range=@var{register-range} -mtls-size=@var{tls-size} @gol
720 -mtune=@var{cpu-type} -milp32 -mlp64 @gol
721 -msched-br-data-spec -msched-ar-data-spec -msched-control-spec @gol
722 -msched-br-in-data-spec -msched-ar-in-data-spec -msched-in-control-spec @gol
723 -msched-spec-ldc -msched-spec-control-ldc @gol
724 -msched-prefer-non-data-spec-insns -msched-prefer-non-control-spec-insns @gol
725 -msched-stop-bits-after-every-cycle -msched-count-spec-in-critical-path @gol
726 -msel-sched-dont-check-control-spec -msched-fp-mem-deps-zero-cost @gol
727 -msched-max-memory-insns-hard-limit -msched-max-memory-insns=@var{max-insns}}
729 @emph{LM32 Options}
730 @gccoptlist{-mbarrel-shift-enabled -mdivide-enabled -mmultiply-enabled @gol
731 -msign-extend-enabled -muser-enabled}
733 @emph{M32R/D Options}
734 @gccoptlist{-m32r2 -m32rx -m32r @gol
735 -mdebug @gol
736 -malign-loops -mno-align-loops @gol
737 -missue-rate=@var{number} @gol
738 -mbranch-cost=@var{number} @gol
739 -mmodel=@var{code-size-model-type} @gol
740 -msdata=@var{sdata-type} @gol
741 -mno-flush-func -mflush-func=@var{name} @gol
742 -mno-flush-trap -mflush-trap=@var{number} @gol
743 -G @var{num}}
745 @emph{M32C Options}
746 @gccoptlist{-mcpu=@var{cpu} -msim -memregs=@var{number}}
748 @emph{M680x0 Options}
749 @gccoptlist{-march=@var{arch}  -mcpu=@var{cpu}  -mtune=@var{tune}
750 -m68000  -m68020  -m68020-40  -m68020-60  -m68030  -m68040 @gol
751 -m68060  -mcpu32  -m5200  -m5206e  -m528x  -m5307  -m5407 @gol
752 -mcfv4e  -mbitfield  -mno-bitfield  -mc68000  -mc68020 @gol
753 -mnobitfield  -mrtd  -mno-rtd  -mdiv  -mno-div  -mshort @gol
754 -mno-short  -mhard-float  -m68881  -msoft-float  -mpcrel @gol
755 -malign-int  -mstrict-align  -msep-data  -mno-sep-data @gol
756 -mshared-library-id=n  -mid-shared-library  -mno-id-shared-library @gol
757 -mxgot -mno-xgot}
759 @emph{MCore Options}
760 @gccoptlist{-mhardlit  -mno-hardlit  -mdiv  -mno-div  -mrelax-immediates @gol
761 -mno-relax-immediates  -mwide-bitfields  -mno-wide-bitfields @gol
762 -m4byte-functions  -mno-4byte-functions  -mcallgraph-data @gol
763 -mno-callgraph-data  -mslow-bytes  -mno-slow-bytes  -mno-lsim @gol
764 -mlittle-endian  -mbig-endian  -m210  -m340  -mstack-increment}
766 @emph{MeP Options}
767 @gccoptlist{-mabsdiff -mall-opts -maverage -mbased=@var{n} -mbitops @gol
768 -mc=@var{n} -mclip -mconfig=@var{name} -mcop -mcop32 -mcop64 -mivc2 @gol
769 -mdc -mdiv -meb -mel -mio-volatile -ml -mleadz -mm -mminmax @gol
770 -mmult -mno-opts -mrepeat -ms -msatur -msdram -msim -msimnovec -mtf @gol
771 -mtiny=@var{n}}
773 @emph{MicroBlaze Options}
774 @gccoptlist{-msoft-float -mhard-float -msmall-divides -mcpu=@var{cpu} @gol
775 -mmemcpy -mxl-soft-mul -mxl-soft-div -mxl-barrel-shift @gol
776 -mxl-pattern-compare -mxl-stack-check -mxl-gp-opt -mno-clearbss @gol
777 -mxl-multiply-high -mxl-float-convert -mxl-float-sqrt @gol
778 -mbig-endian -mlittle-endian -mxl-reorder -mxl-mode-@var{app-model}}
780 @emph{MIPS Options}
781 @gccoptlist{-EL  -EB  -march=@var{arch}  -mtune=@var{arch} @gol
782 -mips1  -mips2  -mips3  -mips4  -mips32  -mips32r2  -mips32r3  -mips32r5 @gol
783 -mips64  -mips64r2  -mips64r3  -mips64r5 @gol
784 -mips16  -mno-mips16  -mflip-mips16 @gol
785 -minterlink-compressed -mno-interlink-compressed @gol
786 -minterlink-mips16  -mno-interlink-mips16 @gol
787 -mabi=@var{abi}  -mabicalls  -mno-abicalls @gol
788 -mshared  -mno-shared  -mplt  -mno-plt  -mxgot  -mno-xgot @gol
789 -mgp32  -mgp64  -mfp32  -mfp64  -mhard-float  -msoft-float @gol
790 -mno-float  -msingle-float  -mdouble-float @gol
791 -mabs=@var{mode}  -mnan=@var{encoding} @gol
792 -mdsp  -mno-dsp  -mdspr2  -mno-dspr2 @gol
793 -mmcu -mmno-mcu @gol
794 -meva -mno-eva @gol
795 -mvirt -mno-virt @gol
796 -mxpa -mno-xpa @gol
797 -mmicromips -mno-micromips @gol
798 -mfpu=@var{fpu-type} @gol
799 -msmartmips  -mno-smartmips @gol
800 -mpaired-single  -mno-paired-single  -mdmx  -mno-mdmx @gol
801 -mips3d  -mno-mips3d  -mmt  -mno-mt  -mllsc  -mno-llsc @gol
802 -mlong64  -mlong32  -msym32  -mno-sym32 @gol
803 -G@var{num}  -mlocal-sdata  -mno-local-sdata @gol
804 -mextern-sdata  -mno-extern-sdata  -mgpopt  -mno-gopt @gol
805 -membedded-data  -mno-embedded-data @gol
806 -muninit-const-in-rodata  -mno-uninit-const-in-rodata @gol
807 -mcode-readable=@var{setting} @gol
808 -msplit-addresses  -mno-split-addresses @gol
809 -mexplicit-relocs  -mno-explicit-relocs @gol
810 -mcheck-zero-division  -mno-check-zero-division @gol
811 -mdivide-traps  -mdivide-breaks @gol
812 -mmemcpy  -mno-memcpy  -mlong-calls  -mno-long-calls @gol
813 -mmad -mno-mad -mimadd -mno-imadd -mfused-madd  -mno-fused-madd  -nocpp @gol
814 -mfix-24k -mno-fix-24k @gol
815 -mfix-r4000  -mno-fix-r4000  -mfix-r4400  -mno-fix-r4400 @gol
816 -mfix-r10000 -mno-fix-r10000  -mfix-rm7000 -mno-fix-rm7000 @gol
817 -mfix-vr4120  -mno-fix-vr4120 @gol
818 -mfix-vr4130  -mno-fix-vr4130  -mfix-sb1  -mno-fix-sb1 @gol
819 -mflush-func=@var{func}  -mno-flush-func @gol
820 -mbranch-cost=@var{num}  -mbranch-likely  -mno-branch-likely @gol
821 -mfp-exceptions -mno-fp-exceptions @gol
822 -mvr4130-align -mno-vr4130-align -msynci -mno-synci @gol
823 -mrelax-pic-calls -mno-relax-pic-calls -mmcount-ra-address}
825 @emph{MMIX Options}
826 @gccoptlist{-mlibfuncs  -mno-libfuncs  -mepsilon  -mno-epsilon  -mabi=gnu @gol
827 -mabi=mmixware  -mzero-extend  -mknuthdiv  -mtoplevel-symbols @gol
828 -melf  -mbranch-predict  -mno-branch-predict  -mbase-addresses @gol
829 -mno-base-addresses  -msingle-exit  -mno-single-exit}
831 @emph{MN10300 Options}
832 @gccoptlist{-mmult-bug  -mno-mult-bug @gol
833 -mno-am33 -mam33 -mam33-2 -mam34 @gol
834 -mtune=@var{cpu-type} @gol
835 -mreturn-pointer-on-d0 @gol
836 -mno-crt0  -mrelax -mliw -msetlb}
838 @emph{Moxie Options}
839 @gccoptlist{-meb -mel -mno-crt0}
841 @emph{MSP430 Options}
842 @gccoptlist{-msim -masm-hex -mmcu= -mcpu= -mlarge -msmall -mrelax @gol
843 -mhwmult= -minrt}
845 @emph{NDS32 Options}
846 @gccoptlist{-mbig-endian -mlittle-endian @gol
847 -mreduced-regs -mfull-regs @gol
848 -mcmov -mno-cmov @gol
849 -mperf-ext -mno-perf-ext @gol
850 -mv3push -mno-v3push @gol
851 -m16bit -mno-16bit @gol
852 -mgp-direct -mno-gp-direct @gol
853 -misr-vector-size=@var{num} @gol
854 -mcache-block-size=@var{num} @gol
855 -march=@var{arch} @gol
856 -mforce-fp-as-gp -mforbid-fp-as-gp @gol
857 -mex9 -mctor-dtor -mrelax}
859 @emph{Nios II Options}
860 @gccoptlist{-G @var{num} -mgpopt -mno-gpopt -mel -meb @gol
861 -mno-bypass-cache -mbypass-cache @gol
862 -mno-cache-volatile -mcache-volatile @gol
863 -mno-fast-sw-div -mfast-sw-div @gol
864 -mhw-mul -mno-hw-mul -mhw-mulx -mno-hw-mulx -mno-hw-div -mhw-div @gol
865 -mcustom-@var{insn}=@var{N} -mno-custom-@var{insn} @gol
866 -mcustom-fpu-cfg=@var{name} @gol
867 -mhal -msmallc -msys-crt0=@var{name} -msys-lib=@var{name}}
869 @emph{PDP-11 Options}
870 @gccoptlist{-mfpu  -msoft-float  -mac0  -mno-ac0  -m40  -m45  -m10 @gol
871 -mbcopy  -mbcopy-builtin  -mint32  -mno-int16 @gol
872 -mint16  -mno-int32  -mfloat32  -mno-float64 @gol
873 -mfloat64  -mno-float32  -mabshi  -mno-abshi @gol
874 -mbranch-expensive  -mbranch-cheap @gol
875 -munix-asm  -mdec-asm}
877 @emph{picoChip Options}
878 @gccoptlist{-mae=@var{ae_type} -mvliw-lookahead=@var{N} @gol
879 -msymbol-as-address -mno-inefficient-warnings}
881 @emph{PowerPC Options}
882 See RS/6000 and PowerPC Options.
884 @emph{RL78 Options}
885 @gccoptlist{-msim -mmul=none -mmul=g13 -mmul=rl78 @gol
886 -m64bit-doubles -m32bit-doubles}
888 @emph{RS/6000 and PowerPC Options}
889 @gccoptlist{-mcpu=@var{cpu-type} @gol
890 -mtune=@var{cpu-type} @gol
891 -mcmodel=@var{code-model} @gol
892 -mpowerpc64 @gol
893 -maltivec  -mno-altivec @gol
894 -mpowerpc-gpopt  -mno-powerpc-gpopt @gol
895 -mpowerpc-gfxopt  -mno-powerpc-gfxopt @gol
896 -mmfcrf  -mno-mfcrf  -mpopcntb  -mno-popcntb -mpopcntd -mno-popcntd @gol
897 -mfprnd  -mno-fprnd @gol
898 -mcmpb -mno-cmpb -mmfpgpr -mno-mfpgpr -mhard-dfp -mno-hard-dfp @gol
899 -mfull-toc   -mminimal-toc  -mno-fp-in-toc  -mno-sum-in-toc @gol
900 -m64  -m32  -mxl-compat  -mno-xl-compat  -mpe @gol
901 -malign-power  -malign-natural @gol
902 -msoft-float  -mhard-float  -mmultiple  -mno-multiple @gol
903 -msingle-float -mdouble-float -msimple-fpu @gol
904 -mstring  -mno-string  -mupdate  -mno-update @gol
905 -mavoid-indexed-addresses  -mno-avoid-indexed-addresses @gol
906 -mfused-madd  -mno-fused-madd  -mbit-align  -mno-bit-align @gol
907 -mstrict-align  -mno-strict-align  -mrelocatable @gol
908 -mno-relocatable  -mrelocatable-lib  -mno-relocatable-lib @gol
909 -mtoc  -mno-toc  -mlittle  -mlittle-endian  -mbig  -mbig-endian @gol
910 -mdynamic-no-pic  -maltivec -mswdiv  -msingle-pic-base @gol
911 -mprioritize-restricted-insns=@var{priority} @gol
912 -msched-costly-dep=@var{dependence_type} @gol
913 -minsert-sched-nops=@var{scheme} @gol
914 -mcall-sysv  -mcall-netbsd @gol
915 -maix-struct-return  -msvr4-struct-return @gol
916 -mabi=@var{abi-type} -msecure-plt -mbss-plt @gol
917 -mblock-move-inline-limit=@var{num} @gol
918 -misel -mno-isel @gol
919 -misel=yes  -misel=no @gol
920 -mspe -mno-spe @gol
921 -mspe=yes  -mspe=no @gol
922 -mpaired @gol
923 -mgen-cell-microcode -mwarn-cell-microcode @gol
924 -mvrsave -mno-vrsave @gol
925 -mmulhw -mno-mulhw @gol
926 -mdlmzb -mno-dlmzb @gol
927 -mfloat-gprs=yes  -mfloat-gprs=no -mfloat-gprs=single -mfloat-gprs=double @gol
928 -mprototype  -mno-prototype @gol
929 -msim  -mmvme  -mads  -myellowknife  -memb  -msdata @gol
930 -msdata=@var{opt}  -mvxworks  -G @var{num}  -pthread @gol
931 -mrecip -mrecip=@var{opt} -mno-recip -mrecip-precision @gol
932 -mno-recip-precision @gol
933 -mveclibabi=@var{type} -mfriz -mno-friz @gol
934 -mpointers-to-nested-functions -mno-pointers-to-nested-functions @gol
935 -msave-toc-indirect -mno-save-toc-indirect @gol
936 -mpower8-fusion -mno-mpower8-fusion -mpower8-vector -mno-power8-vector @gol
937 -mcrypto -mno-crypto -mdirect-move -mno-direct-move @gol
938 -mquad-memory -mno-quad-memory @gol
939 -mquad-memory-atomic -mno-quad-memory-atomic @gol
940 -mcompat-align-parm -mno-compat-align-parm}
942 @emph{RX Options}
943 @gccoptlist{-m64bit-doubles  -m32bit-doubles  -fpu  -nofpu@gol
944 -mcpu=@gol
945 -mbig-endian-data -mlittle-endian-data @gol
946 -msmall-data @gol
947 -msim  -mno-sim@gol
948 -mas100-syntax -mno-as100-syntax@gol
949 -mrelax@gol
950 -mmax-constant-size=@gol
951 -mint-register=@gol
952 -mpid@gol
953 -mno-warn-multiple-fast-interrupts@gol
954 -msave-acc-in-interrupts}
956 @emph{S/390 and zSeries Options}
957 @gccoptlist{-mtune=@var{cpu-type}  -march=@var{cpu-type} @gol
958 -mhard-float  -msoft-float  -mhard-dfp -mno-hard-dfp @gol
959 -mlong-double-64 -mlong-double-128 @gol
960 -mbackchain  -mno-backchain -mpacked-stack  -mno-packed-stack @gol
961 -msmall-exec  -mno-small-exec  -mmvcle -mno-mvcle @gol
962 -m64  -m31  -mdebug  -mno-debug  -mesa  -mzarch @gol
963 -mtpf-trace -mno-tpf-trace  -mfused-madd  -mno-fused-madd @gol
964 -mwarn-framesize  -mwarn-dynamicstack  -mstack-size -mstack-guard @gol
965 -mhotpatch[=@var{halfwords}] -mno-hotpatch}
967 @emph{Score Options}
968 @gccoptlist{-meb -mel @gol
969 -mnhwloop @gol
970 -muls @gol
971 -mmac @gol
972 -mscore5 -mscore5u -mscore7 -mscore7d}
974 @emph{SH Options}
975 @gccoptlist{-m1  -m2  -m2e @gol
976 -m2a-nofpu -m2a-single-only -m2a-single -m2a @gol
977 -m3  -m3e @gol
978 -m4-nofpu  -m4-single-only  -m4-single  -m4 @gol
979 -m4a-nofpu -m4a-single-only -m4a-single -m4a -m4al @gol
980 -m5-64media  -m5-64media-nofpu @gol
981 -m5-32media  -m5-32media-nofpu @gol
982 -m5-compact  -m5-compact-nofpu @gol
983 -mb  -ml  -mdalign  -mrelax @gol
984 -mbigtable -mfmovd -mhitachi -mrenesas -mno-renesas -mnomacsave @gol
985 -mieee -mno-ieee -mbitops  -misize  -minline-ic_invalidate -mpadstruct @gol
986 -mspace -mprefergot  -musermode -multcost=@var{number} -mdiv=@var{strategy} @gol
987 -mdivsi3_libfunc=@var{name} -mfixed-range=@var{register-range} @gol
988 -mindexed-addressing -mgettrcost=@var{number} -mpt-fixed @gol
989 -maccumulate-outgoing-args -minvalid-symbols @gol
990 -matomic-model=@var{atomic-model} @gol
991 -mbranch-cost=@var{num} -mzdcbranch -mno-zdcbranch @gol
992 -mfused-madd -mno-fused-madd -mfsca -mno-fsca -mfsrra -mno-fsrra @gol
993 -mpretend-cmove -mtas}
995 @emph{Solaris 2 Options}
996 @gccoptlist{-mclear-hwcap -mno-clear-hwcap -mimpure-text  -mno-impure-text @gol
997 -pthreads -pthread}
999 @emph{SPARC Options}
1000 @gccoptlist{-mcpu=@var{cpu-type} @gol
1001 -mtune=@var{cpu-type} @gol
1002 -mcmodel=@var{code-model} @gol
1003 -mmemory-model=@var{mem-model} @gol
1004 -m32  -m64  -mapp-regs  -mno-app-regs @gol
1005 -mfaster-structs  -mno-faster-structs  -mflat  -mno-flat @gol
1006 -mfpu  -mno-fpu  -mhard-float  -msoft-float @gol
1007 -mhard-quad-float  -msoft-quad-float @gol
1008 -mstack-bias  -mno-stack-bias @gol
1009 -munaligned-doubles  -mno-unaligned-doubles @gol
1010 -muser-mode  -mno-user-mode @gol
1011 -mv8plus  -mno-v8plus  -mvis  -mno-vis @gol
1012 -mvis2  -mno-vis2  -mvis3  -mno-vis3 @gol
1013 -mcbcond -mno-cbcond @gol
1014 -mfmaf  -mno-fmaf  -mpopc  -mno-popc @gol
1015 -mfix-at697f -mfix-ut699}
1017 @emph{SPU Options}
1018 @gccoptlist{-mwarn-reloc -merror-reloc @gol
1019 -msafe-dma -munsafe-dma @gol
1020 -mbranch-hints @gol
1021 -msmall-mem -mlarge-mem -mstdmain @gol
1022 -mfixed-range=@var{register-range} @gol
1023 -mea32 -mea64 @gol
1024 -maddress-space-conversion -mno-address-space-conversion @gol
1025 -mcache-size=@var{cache-size} @gol
1026 -matomic-updates -mno-atomic-updates}
1028 @emph{System V Options}
1029 @gccoptlist{-Qy  -Qn  -YP,@var{paths}  -Ym,@var{dir}}
1031 @emph{TILE-Gx Options}
1032 @gccoptlist{-mcpu=CPU -m32 -m64 -mbig-endian -mlittle-endian @gol
1033 -mcmodel=@var{code-model}}
1035 @emph{TILEPro Options}
1036 @gccoptlist{-mcpu=@var{cpu} -m32}
1038 @emph{V850 Options}
1039 @gccoptlist{-mlong-calls  -mno-long-calls  -mep  -mno-ep @gol
1040 -mprolog-function  -mno-prolog-function  -mspace @gol
1041 -mtda=@var{n}  -msda=@var{n}  -mzda=@var{n} @gol
1042 -mapp-regs  -mno-app-regs @gol
1043 -mdisable-callt  -mno-disable-callt @gol
1044 -mv850e2v3 -mv850e2 -mv850e1 -mv850es @gol
1045 -mv850e -mv850 -mv850e3v5 @gol
1046 -mloop @gol
1047 -mrelax @gol
1048 -mlong-jumps @gol
1049 -msoft-float @gol
1050 -mhard-float @gol
1051 -mgcc-abi @gol
1052 -mrh850-abi @gol
1053 -mbig-switch}
1055 @emph{VAX Options}
1056 @gccoptlist{-mg  -mgnu  -munix}
1058 @emph{VMS Options}
1059 @gccoptlist{-mvms-return-codes -mdebug-main=@var{prefix} -mmalloc64 @gol
1060 -mpointer-size=@var{size}}
1062 @emph{VxWorks Options}
1063 @gccoptlist{-mrtp  -non-static  -Bstatic  -Bdynamic @gol
1064 -Xbind-lazy  -Xbind-now}
1066 @emph{x86-64 Options}
1067 See i386 and x86-64 Options.
1069 @emph{Xstormy16 Options}
1070 @gccoptlist{-msim}
1072 @emph{Xtensa Options}
1073 @gccoptlist{-mconst16 -mno-const16 @gol
1074 -mfused-madd  -mno-fused-madd @gol
1075 -mforce-no-pic @gol
1076 -mserialize-volatile  -mno-serialize-volatile @gol
1077 -mtext-section-literals  -mno-text-section-literals @gol
1078 -mtarget-align  -mno-target-align @gol
1079 -mlongcalls  -mno-longcalls}
1081 @emph{zSeries Options}
1082 See S/390 and zSeries Options.
1084 @item Code Generation Options
1085 @xref{Code Gen Options,,Options for Code Generation Conventions}.
1086 @gccoptlist{-fcall-saved-@var{reg}  -fcall-used-@var{reg} @gol
1087 -ffixed-@var{reg}  -fexceptions @gol
1088 -fnon-call-exceptions  -fdelete-dead-exceptions  -funwind-tables @gol
1089 -fasynchronous-unwind-tables @gol
1090 -fno-gnu-unique @gol
1091 -finhibit-size-directive  -finstrument-functions @gol
1092 -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{} @gol
1093 -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{} @gol
1094 -fno-common  -fno-ident @gol
1095 -fpcc-struct-return  -fpic  -fPIC -fpie -fPIE @gol
1096 -fno-jump-tables @gol
1097 -frecord-gcc-switches @gol
1098 -freg-struct-return  -fshort-enums @gol
1099 -fshort-double  -fshort-wchar @gol
1100 -fverbose-asm  -fpack-struct[=@var{n}]  -fstack-check @gol
1101 -fstack-limit-register=@var{reg}  -fstack-limit-symbol=@var{sym} @gol
1102 -fno-stack-limit -fsplit-stack @gol
1103 -fleading-underscore  -ftls-model=@var{model} @gol
1104 -fstack-reuse=@var{reuse_level} @gol
1105 -ftrapv  -fwrapv  -fbounds-check @gol
1106 -fvisibility -fstrict-volatile-bitfields -fsync-libcalls}
1107 @end table
1110 @node Overall Options
1111 @section Options Controlling the Kind of Output
1113 Compilation can involve up to four stages: preprocessing, compilation
1114 proper, assembly and linking, always in that order.  GCC is capable of
1115 preprocessing and compiling several files either into several
1116 assembler input files, or into one assembler input file; then each
1117 assembler input file produces an object file, and linking combines all
1118 the object files (those newly compiled, and those specified as input)
1119 into an executable file.
1121 @cindex file name suffix
1122 For any given input file, the file name suffix determines what kind of
1123 compilation is done:
1125 @table @gcctabopt
1126 @item @var{file}.c
1127 C source code that must be preprocessed.
1129 @item @var{file}.i
1130 C source code that should not be preprocessed.
1132 @item @var{file}.ii
1133 C++ source code that should not be preprocessed.
1135 @item @var{file}.m
1136 Objective-C source code.  Note that you must link with the @file{libobjc}
1137 library to make an Objective-C program work.
1139 @item @var{file}.mi
1140 Objective-C source code that should not be preprocessed.
1142 @item @var{file}.mm
1143 @itemx @var{file}.M
1144 Objective-C++ source code.  Note that you must link with the @file{libobjc}
1145 library to make an Objective-C++ program work.  Note that @samp{.M} refers
1146 to a literal capital M@.
1148 @item @var{file}.mii
1149 Objective-C++ source code that should not be preprocessed.
1151 @item @var{file}.h
1152 C, C++, Objective-C or Objective-C++ header file to be turned into a
1153 precompiled header (default), or C, C++ header file to be turned into an
1154 Ada spec (via the @option{-fdump-ada-spec} switch).
1156 @item @var{file}.cc
1157 @itemx @var{file}.cp
1158 @itemx @var{file}.cxx
1159 @itemx @var{file}.cpp
1160 @itemx @var{file}.CPP
1161 @itemx @var{file}.c++
1162 @itemx @var{file}.C
1163 C++ source code that must be preprocessed.  Note that in @samp{.cxx},
1164 the last two letters must both be literally @samp{x}.  Likewise,
1165 @samp{.C} refers to a literal capital C@.
1167 @item @var{file}.mm
1168 @itemx @var{file}.M
1169 Objective-C++ source code that must be preprocessed.
1171 @item @var{file}.mii
1172 Objective-C++ source code that should not be preprocessed.
1174 @item @var{file}.hh
1175 @itemx @var{file}.H
1176 @itemx @var{file}.hp
1177 @itemx @var{file}.hxx
1178 @itemx @var{file}.hpp
1179 @itemx @var{file}.HPP
1180 @itemx @var{file}.h++
1181 @itemx @var{file}.tcc
1182 C++ header file to be turned into a precompiled header or Ada spec.
1184 @item @var{file}.f
1185 @itemx @var{file}.for
1186 @itemx @var{file}.ftn
1187 Fixed form Fortran source code that should not be preprocessed.
1189 @item @var{file}.F
1190 @itemx @var{file}.FOR
1191 @itemx @var{file}.fpp
1192 @itemx @var{file}.FPP
1193 @itemx @var{file}.FTN
1194 Fixed form Fortran source code that must be preprocessed (with the traditional
1195 preprocessor).
1197 @item @var{file}.f90
1198 @itemx @var{file}.f95
1199 @itemx @var{file}.f03
1200 @itemx @var{file}.f08
1201 Free form Fortran source code that should not be preprocessed.
1203 @item @var{file}.F90
1204 @itemx @var{file}.F95
1205 @itemx @var{file}.F03
1206 @itemx @var{file}.F08
1207 Free form Fortran source code that must be preprocessed (with the
1208 traditional preprocessor).
1210 @item @var{file}.go
1211 Go source code.
1213 @c FIXME: Descriptions of Java file types.
1214 @c @var{file}.java
1215 @c @var{file}.class
1216 @c @var{file}.zip
1217 @c @var{file}.jar
1219 @item @var{file}.ads
1220 Ada source code file that contains a library unit declaration (a
1221 declaration of a package, subprogram, or generic, or a generic
1222 instantiation), or a library unit renaming declaration (a package,
1223 generic, or subprogram renaming declaration).  Such files are also
1224 called @dfn{specs}.
1226 @item @var{file}.adb
1227 Ada source code file containing a library unit body (a subprogram or
1228 package body).  Such files are also called @dfn{bodies}.
1230 @c GCC also knows about some suffixes for languages not yet included:
1231 @c Pascal:
1232 @c @var{file}.p
1233 @c @var{file}.pas
1234 @c Ratfor:
1235 @c @var{file}.r
1237 @item @var{file}.s
1238 Assembler code.
1240 @item @var{file}.S
1241 @itemx @var{file}.sx
1242 Assembler code that must be preprocessed.
1244 @item @var{other}
1245 An object file to be fed straight into linking.
1246 Any file name with no recognized suffix is treated this way.
1247 @end table
1249 @opindex x
1250 You can specify the input language explicitly with the @option{-x} option:
1252 @table @gcctabopt
1253 @item -x @var{language}
1254 Specify explicitly the @var{language} for the following input files
1255 (rather than letting the compiler choose a default based on the file
1256 name suffix).  This option applies to all following input files until
1257 the next @option{-x} option.  Possible values for @var{language} are:
1258 @smallexample
1259 c  c-header  cpp-output
1260 c++  c++-header  c++-cpp-output
1261 objective-c  objective-c-header  objective-c-cpp-output
1262 objective-c++ objective-c++-header objective-c++-cpp-output
1263 assembler  assembler-with-cpp
1265 f77  f77-cpp-input f95  f95-cpp-input
1267 java
1268 @end smallexample
1270 @item -x none
1271 Turn off any specification of a language, so that subsequent files are
1272 handled according to their file name suffixes (as they are if @option{-x}
1273 has not been used at all).
1275 @item -pass-exit-codes
1276 @opindex pass-exit-codes
1277 Normally the @command{gcc} program exits with the code of 1 if any
1278 phase of the compiler returns a non-success return code.  If you specify
1279 @option{-pass-exit-codes}, the @command{gcc} program instead returns with
1280 the numerically highest error produced by any phase returning an error
1281 indication.  The C, C++, and Fortran front ends return 4 if an internal
1282 compiler error is encountered.
1283 @end table
1285 If you only want some of the stages of compilation, you can use
1286 @option{-x} (or filename suffixes) to tell @command{gcc} where to start, and
1287 one of the options @option{-c}, @option{-S}, or @option{-E} to say where
1288 @command{gcc} is to stop.  Note that some combinations (for example,
1289 @samp{-x cpp-output -E}) instruct @command{gcc} to do nothing at all.
1291 @table @gcctabopt
1292 @item -c
1293 @opindex c
1294 Compile or assemble the source files, but do not link.  The linking
1295 stage simply is not done.  The ultimate output is in the form of an
1296 object file for each source file.
1298 By default, the object file name for a source file is made by replacing
1299 the suffix @samp{.c}, @samp{.i}, @samp{.s}, etc., with @samp{.o}.
1301 Unrecognized input files, not requiring compilation or assembly, are
1302 ignored.
1304 @item -S
1305 @opindex S
1306 Stop after the stage of compilation proper; do not assemble.  The output
1307 is in the form of an assembler code file for each non-assembler input
1308 file specified.
1310 By default, the assembler file name for a source file is made by
1311 replacing the suffix @samp{.c}, @samp{.i}, etc., with @samp{.s}.
1313 Input files that don't require compilation are ignored.
1315 @item -E
1316 @opindex E
1317 Stop after the preprocessing stage; do not run the compiler proper.  The
1318 output is in the form of preprocessed source code, which is sent to the
1319 standard output.
1321 Input files that don't require preprocessing are ignored.
1323 @cindex output file option
1324 @item -o @var{file}
1325 @opindex o
1326 Place output in file @var{file}.  This applies to whatever
1327 sort of output is being produced, whether it be an executable file,
1328 an object file, an assembler file or preprocessed C code.
1330 If @option{-o} is not specified, the default is to put an executable
1331 file in @file{a.out}, the object file for
1332 @file{@var{source}.@var{suffix}} in @file{@var{source}.o}, its
1333 assembler file in @file{@var{source}.s}, a precompiled header file in
1334 @file{@var{source}.@var{suffix}.gch}, and all preprocessed C source on
1335 standard output.
1337 @item -v
1338 @opindex v
1339 Print (on standard error output) the commands executed to run the stages
1340 of compilation.  Also print the version number of the compiler driver
1341 program and of the preprocessor and the compiler proper.
1343 @item -###
1344 @opindex ###
1345 Like @option{-v} except the commands are not executed and arguments
1346 are quoted unless they contain only alphanumeric characters or @code{./-_}.
1347 This is useful for shell scripts to capture the driver-generated command lines.
1349 @item -pipe
1350 @opindex pipe
1351 Use pipes rather than temporary files for communication between the
1352 various stages of compilation.  This fails to work on some systems where
1353 the assembler is unable to read from a pipe; but the GNU assembler has
1354 no trouble.
1356 @item --help
1357 @opindex help
1358 Print (on the standard output) a description of the command-line options
1359 understood by @command{gcc}.  If the @option{-v} option is also specified
1360 then @option{--help} is also passed on to the various processes
1361 invoked by @command{gcc}, so that they can display the command-line options
1362 they accept.  If the @option{-Wextra} option has also been specified
1363 (prior to the @option{--help} option), then command-line options that
1364 have no documentation associated with them are also displayed.
1366 @item --target-help
1367 @opindex target-help
1368 Print (on the standard output) a description of target-specific command-line
1369 options for each tool.  For some targets extra target-specific
1370 information may also be printed.
1372 @item --help=@{@var{class}@r{|[}^@r{]}@var{qualifier}@}@r{[},@dots{}@r{]}
1373 Print (on the standard output) a description of the command-line
1374 options understood by the compiler that fit into all specified classes
1375 and qualifiers.  These are the supported classes:
1377 @table @asis
1378 @item @samp{optimizers}
1379 Display all of the optimization options supported by the
1380 compiler.
1382 @item @samp{warnings}
1383 Display all of the options controlling warning messages
1384 produced by the compiler.
1386 @item @samp{target}
1387 Display target-specific options.  Unlike the
1388 @option{--target-help} option however, target-specific options of the
1389 linker and assembler are not displayed.  This is because those
1390 tools do not currently support the extended @option{--help=} syntax.
1392 @item @samp{params}
1393 Display the values recognized by the @option{--param}
1394 option.
1396 @item @var{language}
1397 Display the options supported for @var{language}, where
1398 @var{language} is the name of one of the languages supported in this
1399 version of GCC@.
1401 @item @samp{common}
1402 Display the options that are common to all languages.
1403 @end table
1405 These are the supported qualifiers:
1407 @table @asis
1408 @item @samp{undocumented}
1409 Display only those options that are undocumented.
1411 @item @samp{joined}
1412 Display options taking an argument that appears after an equal
1413 sign in the same continuous piece of text, such as:
1414 @samp{--help=target}.
1416 @item @samp{separate}
1417 Display options taking an argument that appears as a separate word
1418 following the original option, such as: @samp{-o output-file}.
1419 @end table
1421 Thus for example to display all the undocumented target-specific
1422 switches supported by the compiler, use:
1424 @smallexample
1425 --help=target,undocumented
1426 @end smallexample
1428 The sense of a qualifier can be inverted by prefixing it with the
1429 @samp{^} character, so for example to display all binary warning
1430 options (i.e., ones that are either on or off and that do not take an
1431 argument) that have a description, use:
1433 @smallexample
1434 --help=warnings,^joined,^undocumented
1435 @end smallexample
1437 The argument to @option{--help=} should not consist solely of inverted
1438 qualifiers.
1440 Combining several classes is possible, although this usually
1441 restricts the output so much that there is nothing to display.  One
1442 case where it does work, however, is when one of the classes is
1443 @var{target}.  For example, to display all the target-specific
1444 optimization options, use:
1446 @smallexample
1447 --help=target,optimizers
1448 @end smallexample
1450 The @option{--help=} option can be repeated on the command line.  Each
1451 successive use displays its requested class of options, skipping
1452 those that have already been displayed.
1454 If the @option{-Q} option appears on the command line before the
1455 @option{--help=} option, then the descriptive text displayed by
1456 @option{--help=} is changed.  Instead of describing the displayed
1457 options, an indication is given as to whether the option is enabled,
1458 disabled or set to a specific value (assuming that the compiler
1459 knows this at the point where the @option{--help=} option is used).
1461 Here is a truncated example from the ARM port of @command{gcc}:
1463 @smallexample
1464   % gcc -Q -mabi=2 --help=target -c
1465   The following options are target specific:
1466   -mabi=                                2
1467   -mabort-on-noreturn                   [disabled]
1468   -mapcs                                [disabled]
1469 @end smallexample
1471 The output is sensitive to the effects of previous command-line
1472 options, so for example it is possible to find out which optimizations
1473 are enabled at @option{-O2} by using:
1475 @smallexample
1476 -Q -O2 --help=optimizers
1477 @end smallexample
1479 Alternatively you can discover which binary optimizations are enabled
1480 by @option{-O3} by using:
1482 @smallexample
1483 gcc -c -Q -O3 --help=optimizers > /tmp/O3-opts
1484 gcc -c -Q -O2 --help=optimizers > /tmp/O2-opts
1485 diff /tmp/O2-opts /tmp/O3-opts | grep enabled
1486 @end smallexample
1488 @item -no-canonical-prefixes
1489 @opindex no-canonical-prefixes
1490 Do not expand any symbolic links, resolve references to @samp{/../}
1491 or @samp{/./}, or make the path absolute when generating a relative
1492 prefix.
1494 @item --version
1495 @opindex version
1496 Display the version number and copyrights of the invoked GCC@.
1498 @item -wrapper
1499 @opindex wrapper
1500 Invoke all subcommands under a wrapper program.  The name of the
1501 wrapper program and its parameters are passed as a comma separated
1502 list.
1504 @smallexample
1505 gcc -c t.c -wrapper gdb,--args
1506 @end smallexample
1508 @noindent
1509 This invokes all subprograms of @command{gcc} under
1510 @samp{gdb --args}, thus the invocation of @command{cc1} is
1511 @samp{gdb --args cc1 @dots{}}.
1513 @item -fplugin=@var{name}.so
1514 @opindex fplugin
1515 Load the plugin code in file @var{name}.so, assumed to be a
1516 shared object to be dlopen'd by the compiler.  The base name of
1517 the shared object file is used to identify the plugin for the
1518 purposes of argument parsing (See
1519 @option{-fplugin-arg-@var{name}-@var{key}=@var{value}} below).
1520 Each plugin should define the callback functions specified in the
1521 Plugins API.
1523 @item -fplugin-arg-@var{name}-@var{key}=@var{value}
1524 @opindex fplugin-arg
1525 Define an argument called @var{key} with a value of @var{value}
1526 for the plugin called @var{name}.
1528 @item -fdump-ada-spec@r{[}-slim@r{]}
1529 @opindex fdump-ada-spec
1530 For C and C++ source and include files, generate corresponding Ada specs.
1531 @xref{Generating Ada Bindings for C and C++ headers,,, gnat_ugn,
1532 GNAT User's Guide}, which provides detailed documentation on this feature.
1534 @item -fada-spec-parent=@var{unit}
1535 @opindex fada-spec-parent
1536 In conjunction with @option{-fdump-ada-spec@r{[}-slim@r{]}} above, generate
1537 Ada specs as child units of parent @var{unit}.
1539 @item -fdump-go-spec=@var{file}
1540 @opindex fdump-go-spec
1541 For input files in any language, generate corresponding Go
1542 declarations in @var{file}.  This generates Go @code{const},
1543 @code{type}, @code{var}, and @code{func} declarations which may be a
1544 useful way to start writing a Go interface to code written in some
1545 other language.
1547 @include @value{srcdir}/../libiberty/at-file.texi
1548 @end table
1550 @node Invoking G++
1551 @section Compiling C++ Programs
1553 @cindex suffixes for C++ source
1554 @cindex C++ source file suffixes
1555 C++ source files conventionally use one of the suffixes @samp{.C},
1556 @samp{.cc}, @samp{.cpp}, @samp{.CPP}, @samp{.c++}, @samp{.cp}, or
1557 @samp{.cxx}; C++ header files often use @samp{.hh}, @samp{.hpp},
1558 @samp{.H}, or (for shared template code) @samp{.tcc}; and
1559 preprocessed C++ files use the suffix @samp{.ii}.  GCC recognizes
1560 files with these names and compiles them as C++ programs even if you
1561 call the compiler the same way as for compiling C programs (usually
1562 with the name @command{gcc}).
1564 @findex g++
1565 @findex c++
1566 However, the use of @command{gcc} does not add the C++ library.
1567 @command{g++} is a program that calls GCC and automatically specifies linking
1568 against the C++ library.  It treats @samp{.c},
1569 @samp{.h} and @samp{.i} files as C++ source files instead of C source
1570 files unless @option{-x} is used.  This program is also useful when
1571 precompiling a C header file with a @samp{.h} extension for use in C++
1572 compilations.  On many systems, @command{g++} is also installed with
1573 the name @command{c++}.
1575 @cindex invoking @command{g++}
1576 When you compile C++ programs, you may specify many of the same
1577 command-line options that you use for compiling programs in any
1578 language; or command-line options meaningful for C and related
1579 languages; or options that are meaningful only for C++ programs.
1580 @xref{C Dialect Options,,Options Controlling C Dialect}, for
1581 explanations of options for languages related to C@.
1582 @xref{C++ Dialect Options,,Options Controlling C++ Dialect}, for
1583 explanations of options that are meaningful only for C++ programs.
1585 @node C Dialect Options
1586 @section Options Controlling C Dialect
1587 @cindex dialect options
1588 @cindex language dialect options
1589 @cindex options, dialect
1591 The following options control the dialect of C (or languages derived
1592 from C, such as C++, Objective-C and Objective-C++) that the compiler
1593 accepts:
1595 @table @gcctabopt
1596 @cindex ANSI support
1597 @cindex ISO support
1598 @item -ansi
1599 @opindex ansi
1600 In C mode, this is equivalent to @option{-std=c90}. In C++ mode, it is
1601 equivalent to @option{-std=c++98}.
1603 This turns off certain features of GCC that are incompatible with ISO
1604 C90 (when compiling C code), or of standard C++ (when compiling C++ code),
1605 such as the @code{asm} and @code{typeof} keywords, and
1606 predefined macros such as @code{unix} and @code{vax} that identify the
1607 type of system you are using.  It also enables the undesirable and
1608 rarely used ISO trigraph feature.  For the C compiler,
1609 it disables recognition of C++ style @samp{//} comments as well as
1610 the @code{inline} keyword.
1612 The alternate keywords @code{__asm__}, @code{__extension__},
1613 @code{__inline__} and @code{__typeof__} continue to work despite
1614 @option{-ansi}.  You would not want to use them in an ISO C program, of
1615 course, but it is useful to put them in header files that might be included
1616 in compilations done with @option{-ansi}.  Alternate predefined macros
1617 such as @code{__unix__} and @code{__vax__} are also available, with or
1618 without @option{-ansi}.
1620 The @option{-ansi} option does not cause non-ISO programs to be
1621 rejected gratuitously.  For that, @option{-Wpedantic} is required in
1622 addition to @option{-ansi}.  @xref{Warning Options}.
1624 The macro @code{__STRICT_ANSI__} is predefined when the @option{-ansi}
1625 option is used.  Some header files may notice this macro and refrain
1626 from declaring certain functions or defining certain macros that the
1627 ISO standard doesn't call for; this is to avoid interfering with any
1628 programs that might use these names for other things.
1630 Functions that are normally built in but do not have semantics
1631 defined by ISO C (such as @code{alloca} and @code{ffs}) are not built-in
1632 functions when @option{-ansi} is used.  @xref{Other Builtins,,Other
1633 built-in functions provided by GCC}, for details of the functions
1634 affected.
1636 @item -std=
1637 @opindex std
1638 Determine the language standard. @xref{Standards,,Language Standards
1639 Supported by GCC}, for details of these standard versions.  This option
1640 is currently only supported when compiling C or C++.
1642 The compiler can accept several base standards, such as @samp{c90} or
1643 @samp{c++98}, and GNU dialects of those standards, such as
1644 @samp{gnu90} or @samp{gnu++98}.  When a base standard is specified, the
1645 compiler accepts all programs following that standard plus those
1646 using GNU extensions that do not contradict it.  For example,
1647 @option{-std=c90} turns off certain features of GCC that are
1648 incompatible with ISO C90, such as the @code{asm} and @code{typeof}
1649 keywords, but not other GNU extensions that do not have a meaning in
1650 ISO C90, such as omitting the middle term of a @code{?:}
1651 expression. On the other hand, when a GNU dialect of a standard is
1652 specified, all features supported by the compiler are enabled, even when
1653 those features change the meaning of the base standard.  As a result, some
1654 strict-conforming programs may be rejected.  The particular standard
1655 is used by @option{-Wpedantic} to identify which features are GNU
1656 extensions given that version of the standard. For example
1657 @option{-std=gnu90 -Wpedantic} warns about C++ style @samp{//}
1658 comments, while @option{-std=gnu99 -Wpedantic} does not.
1660 A value for this option must be provided; possible values are
1662 @table @samp
1663 @item c90
1664 @itemx c89
1665 @itemx iso9899:1990
1666 Support all ISO C90 programs (certain GNU extensions that conflict
1667 with ISO C90 are disabled). Same as @option{-ansi} for C code.
1669 @item iso9899:199409
1670 ISO C90 as modified in amendment 1.
1672 @item c99
1673 @itemx c9x
1674 @itemx iso9899:1999
1675 @itemx iso9899:199x
1676 ISO C99.  This standard is substantially completely supported, modulo
1677 bugs and floating-point issues
1678 (mainly but not entirely relating to optional C99 features from
1679 Annexes F and G).  See
1680 @w{@uref{http://gcc.gnu.org/c99status.html}} for more information.  The
1681 names @samp{c9x} and @samp{iso9899:199x} are deprecated.
1683 @item c11
1684 @itemx c1x
1685 @itemx iso9899:2011
1686 ISO C11, the 2011 revision of the ISO C standard.  This standard is
1687 substantially completely supported, modulo bugs, floating-point issues
1688 (mainly but not entirely relating to optional C11 features from
1689 Annexes F and G) and the optional Annexes K (Bounds-checking
1690 interfaces) and L (Analyzability).  The name @samp{c1x} is deprecated.
1692 @item gnu90
1693 @itemx gnu89
1694 GNU dialect of ISO C90 (including some C99 features).
1696 @item gnu99
1697 @itemx gnu9x
1698 GNU dialect of ISO C99.  The name @samp{gnu9x} is deprecated.
1700 @item gnu11
1701 @itemx gnu1x
1702 GNU dialect of ISO C11.  This is the default for C code.
1703 The name @samp{gnu1x} is deprecated.
1705 @item c++98
1706 @itemx c++03
1707 The 1998 ISO C++ standard plus the 2003 technical corrigendum and some
1708 additional defect reports. Same as @option{-ansi} for C++ code.
1710 @item gnu++98
1711 @itemx gnu++03
1712 GNU dialect of @option{-std=c++98}.  This is the default for
1713 C++ code.
1715 @item c++11
1716 @itemx c++0x
1717 The 2011 ISO C++ standard plus amendments.
1718 The name @samp{c++0x} is deprecated.
1720 @item gnu++11
1721 @itemx gnu++0x
1722 GNU dialect of @option{-std=c++11}.
1723 The name @samp{gnu++0x} is deprecated.
1725 @item c++14
1726 @itemx c++1y
1727 The 2014 ISO C++ standard plus amendments.
1728 The name @samp{c++1y} is deprecated.
1730 @item gnu++14
1731 @itemx gnu++1y
1732 GNU dialect of @option{-std=c++14}.
1733 The name @samp{gnu++1y} is deprecated.
1735 @item c++1z
1736 The next revision of the ISO C++ standard, tentatively planned for
1737 2017.  Support is highly experimental, and will almost certainly
1738 change in incompatible ways in future releases.
1740 @item gnu++1z
1741 GNU dialect of @option{-std=c++1z}.  Support is highly experimental,
1742 and will almost certainly change in incompatible ways in future
1743 releases.
1744 @end table
1746 @item -fgnu89-inline
1747 @opindex fgnu89-inline
1748 The option @option{-fgnu89-inline} tells GCC to use the traditional
1749 GNU semantics for @code{inline} functions when in C99 mode.
1750 @xref{Inline,,An Inline Function is As Fast As a Macro}.  This option
1751 is accepted and ignored by GCC versions 4.1.3 up to but not including
1752 4.3.  In GCC versions 4.3 and later it changes the behavior of GCC in
1753 C99 mode.  Using this option is roughly equivalent to adding the
1754 @code{gnu_inline} function attribute to all inline functions
1755 (@pxref{Function Attributes}).
1757 The option @option{-fno-gnu89-inline} explicitly tells GCC to use the
1758 C99 semantics for @code{inline} when in C99 or gnu99 mode (i.e., it
1759 specifies the default behavior).  This option was first supported in
1760 GCC 4.3.  This option is not supported in @option{-std=c90} or
1761 @option{-std=gnu90} mode.
1763 The preprocessor macros @code{__GNUC_GNU_INLINE__} and
1764 @code{__GNUC_STDC_INLINE__} may be used to check which semantics are
1765 in effect for @code{inline} functions.  @xref{Common Predefined
1766 Macros,,,cpp,The C Preprocessor}.
1768 @item -aux-info @var{filename}
1769 @opindex aux-info
1770 Output to the given filename prototyped declarations for all functions
1771 declared and/or defined in a translation unit, including those in header
1772 files.  This option is silently ignored in any language other than C@.
1774 Besides declarations, the file indicates, in comments, the origin of
1775 each declaration (source file and line), whether the declaration was
1776 implicit, prototyped or unprototyped (@samp{I}, @samp{N} for new or
1777 @samp{O} for old, respectively, in the first character after the line
1778 number and the colon), and whether it came from a declaration or a
1779 definition (@samp{C} or @samp{F}, respectively, in the following
1780 character).  In the case of function definitions, a K&R-style list of
1781 arguments followed by their declarations is also provided, inside
1782 comments, after the declaration.
1784 @item -fallow-parameterless-variadic-functions
1785 @opindex fallow-parameterless-variadic-functions
1786 Accept variadic functions without named parameters.
1788 Although it is possible to define such a function, this is not very
1789 useful as it is not possible to read the arguments.  This is only
1790 supported for C as this construct is allowed by C++.
1792 @item -fno-asm
1793 @opindex fno-asm
1794 Do not recognize @code{asm}, @code{inline} or @code{typeof} as a
1795 keyword, so that code can use these words as identifiers.  You can use
1796 the keywords @code{__asm__}, @code{__inline__} and @code{__typeof__}
1797 instead.  @option{-ansi} implies @option{-fno-asm}.
1799 In C++, this switch only affects the @code{typeof} keyword, since
1800 @code{asm} and @code{inline} are standard keywords.  You may want to
1801 use the @option{-fno-gnu-keywords} flag instead, which has the same
1802 effect.  In C99 mode (@option{-std=c99} or @option{-std=gnu99}), this
1803 switch only affects the @code{asm} and @code{typeof} keywords, since
1804 @code{inline} is a standard keyword in ISO C99.
1806 @item -fno-builtin
1807 @itemx -fno-builtin-@var{function}
1808 @opindex fno-builtin
1809 @cindex built-in functions
1810 Don't recognize built-in functions that do not begin with
1811 @samp{__builtin_} as prefix.  @xref{Other Builtins,,Other built-in
1812 functions provided by GCC}, for details of the functions affected,
1813 including those which are not built-in functions when @option{-ansi} or
1814 @option{-std} options for strict ISO C conformance are used because they
1815 do not have an ISO standard meaning.
1817 GCC normally generates special code to handle certain built-in functions
1818 more efficiently; for instance, calls to @code{alloca} may become single
1819 instructions which adjust the stack directly, and calls to @code{memcpy}
1820 may become inline copy loops.  The resulting code is often both smaller
1821 and faster, but since the function calls no longer appear as such, you
1822 cannot set a breakpoint on those calls, nor can you change the behavior
1823 of the functions by linking with a different library.  In addition,
1824 when a function is recognized as a built-in function, GCC may use
1825 information about that function to warn about problems with calls to
1826 that function, or to generate more efficient code, even if the
1827 resulting code still contains calls to that function.  For example,
1828 warnings are given with @option{-Wformat} for bad calls to
1829 @code{printf} when @code{printf} is built in and @code{strlen} is
1830 known not to modify global memory.
1832 With the @option{-fno-builtin-@var{function}} option
1833 only the built-in function @var{function} is
1834 disabled.  @var{function} must not begin with @samp{__builtin_}.  If a
1835 function is named that is not built-in in this version of GCC, this
1836 option is ignored.  There is no corresponding
1837 @option{-fbuiltin-@var{function}} option; if you wish to enable
1838 built-in functions selectively when using @option{-fno-builtin} or
1839 @option{-ffreestanding}, you may define macros such as:
1841 @smallexample
1842 #define abs(n)          __builtin_abs ((n))
1843 #define strcpy(d, s)    __builtin_strcpy ((d), (s))
1844 @end smallexample
1846 @item -fhosted
1847 @opindex fhosted
1848 @cindex hosted environment
1850 Assert that compilation targets a hosted environment.  This implies
1851 @option{-fbuiltin}.  A hosted environment is one in which the
1852 entire standard library is available, and in which @code{main} has a return
1853 type of @code{int}.  Examples are nearly everything except a kernel.
1854 This is equivalent to @option{-fno-freestanding}.
1856 @item -ffreestanding
1857 @opindex ffreestanding
1858 @cindex hosted environment
1860 Assert that compilation targets a freestanding environment.  This
1861 implies @option{-fno-builtin}.  A freestanding environment
1862 is one in which the standard library may not exist, and program startup may
1863 not necessarily be at @code{main}.  The most obvious example is an OS kernel.
1864 This is equivalent to @option{-fno-hosted}.
1866 @xref{Standards,,Language Standards Supported by GCC}, for details of
1867 freestanding and hosted environments.
1869 @item -fopenmp
1870 @opindex fopenmp
1871 @cindex OpenMP parallel
1872 Enable handling of OpenMP directives @code{#pragma omp} in C/C++ and
1873 @code{!$omp} in Fortran.  When @option{-fopenmp} is specified, the
1874 compiler generates parallel code according to the OpenMP Application
1875 Program Interface v4.0 @w{@uref{http://www.openmp.org/}}.  This option
1876 implies @option{-pthread}, and thus is only supported on targets that
1877 have support for @option{-pthread}. @option{-fopenmp} implies
1878 @option{-fopenmp-simd}.
1880 @item -fopenmp-simd
1881 @opindex fopenmp-simd
1882 @cindex OpenMP SIMD
1883 @cindex SIMD
1884 Enable handling of OpenMP's SIMD directives with @code{#pragma omp}
1885 in C/C++ and @code{!$omp} in Fortran. Other OpenMP directives
1886 are ignored.
1888 @item -fcilkplus
1889 @opindex fcilkplus
1890 @cindex Enable Cilk Plus
1891 Enable the usage of Cilk Plus language extension features for C/C++.
1892 When the option @option{-fcilkplus} is specified, enable the usage of
1893 the Cilk Plus Language extension features for C/C++.  The present
1894 implementation follows ABI version 1.2.  This is an experimental
1895 feature that is only partially complete, and whose interface may
1896 change in future versions of GCC as the official specification
1897 changes.  Currently, all features but @code{_Cilk_for} have been
1898 implemented.
1900 @item -fgnu-tm
1901 @opindex fgnu-tm
1902 When the option @option{-fgnu-tm} is specified, the compiler
1903 generates code for the Linux variant of Intel's current Transactional
1904 Memory ABI specification document (Revision 1.1, May 6 2009).  This is
1905 an experimental feature whose interface may change in future versions
1906 of GCC, as the official specification changes.  Please note that not
1907 all architectures are supported for this feature.
1909 For more information on GCC's support for transactional memory,
1910 @xref{Enabling libitm,,The GNU Transactional Memory Library,libitm,GNU
1911 Transactional Memory Library}.
1913 Note that the transactional memory feature is not supported with
1914 non-call exceptions (@option{-fnon-call-exceptions}).
1916 @item -fms-extensions
1917 @opindex fms-extensions
1918 Accept some non-standard constructs used in Microsoft header files.
1920 In C++ code, this allows member names in structures to be similar
1921 to previous types declarations.
1923 @smallexample
1924 typedef int UOW;
1925 struct ABC @{
1926   UOW UOW;
1928 @end smallexample
1930 Some cases of unnamed fields in structures and unions are only
1931 accepted with this option.  @xref{Unnamed Fields,,Unnamed struct/union
1932 fields within structs/unions}, for details.
1934 Note that this option is off for all targets but i?86 and x86_64
1935 targets using ms-abi.
1936 @item -fplan9-extensions
1937 Accept some non-standard constructs used in Plan 9 code.
1939 This enables @option{-fms-extensions}, permits passing pointers to
1940 structures with anonymous fields to functions that expect pointers to
1941 elements of the type of the field, and permits referring to anonymous
1942 fields declared using a typedef.  @xref{Unnamed Fields,,Unnamed
1943 struct/union fields within structs/unions}, for details.  This is only
1944 supported for C, not C++.
1946 @item -trigraphs
1947 @opindex trigraphs
1948 Support ISO C trigraphs.  The @option{-ansi} option (and @option{-std}
1949 options for strict ISO C conformance) implies @option{-trigraphs}.
1951 @cindex traditional C language
1952 @cindex C language, traditional
1953 @item -traditional
1954 @itemx -traditional-cpp
1955 @opindex traditional-cpp
1956 @opindex traditional
1957 Formerly, these options caused GCC to attempt to emulate a pre-standard
1958 C compiler.  They are now only supported with the @option{-E} switch.
1959 The preprocessor continues to support a pre-standard mode.  See the GNU
1960 CPP manual for details.
1962 @item -fcond-mismatch
1963 @opindex fcond-mismatch
1964 Allow conditional expressions with mismatched types in the second and
1965 third arguments.  The value of such an expression is void.  This option
1966 is not supported for C++.
1968 @item -flax-vector-conversions
1969 @opindex flax-vector-conversions
1970 Allow implicit conversions between vectors with differing numbers of
1971 elements and/or incompatible element types.  This option should not be
1972 used for new code.
1974 @item -funsigned-char
1975 @opindex funsigned-char
1976 Let the type @code{char} be unsigned, like @code{unsigned char}.
1978 Each kind of machine has a default for what @code{char} should
1979 be.  It is either like @code{unsigned char} by default or like
1980 @code{signed char} by default.
1982 Ideally, a portable program should always use @code{signed char} or
1983 @code{unsigned char} when it depends on the signedness of an object.
1984 But many programs have been written to use plain @code{char} and
1985 expect it to be signed, or expect it to be unsigned, depending on the
1986 machines they were written for.  This option, and its inverse, let you
1987 make such a program work with the opposite default.
1989 The type @code{char} is always a distinct type from each of
1990 @code{signed char} or @code{unsigned char}, even though its behavior
1991 is always just like one of those two.
1993 @item -fsigned-char
1994 @opindex fsigned-char
1995 Let the type @code{char} be signed, like @code{signed char}.
1997 Note that this is equivalent to @option{-fno-unsigned-char}, which is
1998 the negative form of @option{-funsigned-char}.  Likewise, the option
1999 @option{-fno-signed-char} is equivalent to @option{-funsigned-char}.
2001 @item -fsigned-bitfields
2002 @itemx -funsigned-bitfields
2003 @itemx -fno-signed-bitfields
2004 @itemx -fno-unsigned-bitfields
2005 @opindex fsigned-bitfields
2006 @opindex funsigned-bitfields
2007 @opindex fno-signed-bitfields
2008 @opindex fno-unsigned-bitfields
2009 These options control whether a bit-field is signed or unsigned, when the
2010 declaration does not use either @code{signed} or @code{unsigned}.  By
2011 default, such a bit-field is signed, because this is consistent: the
2012 basic integer types such as @code{int} are signed types.
2013 @end table
2015 @node C++ Dialect Options
2016 @section Options Controlling C++ Dialect
2018 @cindex compiler options, C++
2019 @cindex C++ options, command-line
2020 @cindex options, C++
2021 This section describes the command-line options that are only meaningful
2022 for C++ programs.  You can also use most of the GNU compiler options
2023 regardless of what language your program is in.  For example, you
2024 might compile a file @code{firstClass.C} like this:
2026 @smallexample
2027 g++ -g -frepo -O -c firstClass.C
2028 @end smallexample
2030 @noindent
2031 In this example, only @option{-frepo} is an option meant
2032 only for C++ programs; you can use the other options with any
2033 language supported by GCC@.
2035 Here is a list of options that are @emph{only} for compiling C++ programs:
2037 @table @gcctabopt
2039 @item -fabi-version=@var{n}
2040 @opindex fabi-version
2041 Use version @var{n} of the C++ ABI@.  The default is version 0.
2043 Version 0 refers to the version conforming most closely to
2044 the C++ ABI specification.  Therefore, the ABI obtained using version 0
2045 will change in different versions of G++ as ABI bugs are fixed.
2047 Version 1 is the version of the C++ ABI that first appeared in G++ 3.2.  
2049 Version 2 is the version of the C++ ABI that first appeared in G++
2050 3.4, and was the default through G++ 4.9.
2052 Version 3 corrects an error in mangling a constant address as a
2053 template argument.
2055 Version 4, which first appeared in G++ 4.5, implements a standard
2056 mangling for vector types.
2058 Version 5, which first appeared in G++ 4.6, corrects the mangling of
2059 attribute const/volatile on function pointer types, decltype of a
2060 plain decl, and use of a function parameter in the declaration of
2061 another parameter.
2063 Version 6, which first appeared in G++ 4.7, corrects the promotion
2064 behavior of C++11 scoped enums and the mangling of template argument
2065 packs, const/static_cast, prefix ++ and --, and a class scope function
2066 used as a template argument.
2068 Version 7, which first appeared in G++ 4.8, that treats nullptr_t as a
2069 builtin type and corrects the mangling of lambdas in default argument
2070 scope.
2072 Version 8, which first appeared in G++ 4.9, corrects the substitution
2073 behavior of function types with function-cv-qualifiers.
2075 See also @option{-Wabi}.
2077 @item -fabi-compat-version=@var{n}
2078 @opindex fabi-compat-version
2079 Starting with GCC 4.5, on targets that support strong aliases, G++
2080 works around mangling changes by creating an alias with the correct
2081 mangled name when defining a symbol with an incorrect mangled name.
2082 This switch specifies which ABI version to use for the alias.
2084 With @option{-fabi-version=0} (the default), this defaults to 2.  If
2085 another ABI version is explicitly selected, this defaults to 0.
2087 The compatibility version is also set by @option{-Wabi=@var{n}}.
2089 @item -fno-access-control
2090 @opindex fno-access-control
2091 Turn off all access checking.  This switch is mainly useful for working
2092 around bugs in the access control code.
2094 @item -fcheck-new
2095 @opindex fcheck-new
2096 Check that the pointer returned by @code{operator new} is non-null
2097 before attempting to modify the storage allocated.  This check is
2098 normally unnecessary because the C++ standard specifies that
2099 @code{operator new} only returns @code{0} if it is declared
2100 @samp{throw()}, in which case the compiler always checks the
2101 return value even without this option.  In all other cases, when
2102 @code{operator new} has a non-empty exception specification, memory
2103 exhaustion is signalled by throwing @code{std::bad_alloc}.  See also
2104 @samp{new (nothrow)}.
2106 @item -fconstexpr-depth=@var{n}
2107 @opindex fconstexpr-depth
2108 Set the maximum nested evaluation depth for C++11 constexpr functions
2109 to @var{n}.  A limit is needed to detect endless recursion during
2110 constant expression evaluation.  The minimum specified by the standard
2111 is 512.
2113 @item -fdeduce-init-list
2114 @opindex fdeduce-init-list
2115 Enable deduction of a template type parameter as
2116 @code{std::initializer_list} from a brace-enclosed initializer list, i.e.@:
2118 @smallexample
2119 template <class T> auto forward(T t) -> decltype (realfn (t))
2121   return realfn (t);
2124 void f()
2126   forward(@{1,2@}); // call forward<std::initializer_list<int>>
2128 @end smallexample
2130 This deduction was implemented as a possible extension to the
2131 originally proposed semantics for the C++11 standard, but was not part
2132 of the final standard, so it is disabled by default.  This option is
2133 deprecated, and may be removed in a future version of G++.
2135 @item -ffriend-injection
2136 @opindex ffriend-injection
2137 Inject friend functions into the enclosing namespace, so that they are
2138 visible outside the scope of the class in which they are declared.
2139 Friend functions were documented to work this way in the old Annotated
2140 C++ Reference Manual, and versions of G++ before 4.1 always worked
2141 that way.  However, in ISO C++ a friend function that is not declared
2142 in an enclosing scope can only be found using argument dependent
2143 lookup.  This option causes friends to be injected as they were in
2144 earlier releases.
2146 This option is for compatibility, and may be removed in a future
2147 release of G++.
2149 @item -fno-elide-constructors
2150 @opindex fno-elide-constructors
2151 The C++ standard allows an implementation to omit creating a temporary
2152 that is only used to initialize another object of the same type.
2153 Specifying this option disables that optimization, and forces G++ to
2154 call the copy constructor in all cases.
2156 @item -fno-enforce-eh-specs
2157 @opindex fno-enforce-eh-specs
2158 Don't generate code to check for violation of exception specifications
2159 at run time.  This option violates the C++ standard, but may be useful
2160 for reducing code size in production builds, much like defining
2161 @samp{NDEBUG}.  This does not give user code permission to throw
2162 exceptions in violation of the exception specifications; the compiler
2163 still optimizes based on the specifications, so throwing an
2164 unexpected exception results in undefined behavior at run time.
2166 @item -fextern-tls-init
2167 @itemx -fno-extern-tls-init
2168 @opindex fextern-tls-init
2169 @opindex fno-extern-tls-init
2170 The C++11 and OpenMP standards allow @samp{thread_local} and
2171 @samp{threadprivate} variables to have dynamic (runtime)
2172 initialization.  To support this, any use of such a variable goes
2173 through a wrapper function that performs any necessary initialization.
2174 When the use and definition of the variable are in the same
2175 translation unit, this overhead can be optimized away, but when the
2176 use is in a different translation unit there is significant overhead
2177 even if the variable doesn't actually need dynamic initialization.  If
2178 the programmer can be sure that no use of the variable in a
2179 non-defining TU needs to trigger dynamic initialization (either
2180 because the variable is statically initialized, or a use of the
2181 variable in the defining TU will be executed before any uses in
2182 another TU), they can avoid this overhead with the
2183 @option{-fno-extern-tls-init} option.
2185 On targets that support symbol aliases, the default is
2186 @option{-fextern-tls-init}.  On targets that do not support symbol
2187 aliases, the default is @option{-fno-extern-tls-init}.
2189 @item -ffor-scope
2190 @itemx -fno-for-scope
2191 @opindex ffor-scope
2192 @opindex fno-for-scope
2193 If @option{-ffor-scope} is specified, the scope of variables declared in
2194 a @i{for-init-statement} is limited to the @samp{for} loop itself,
2195 as specified by the C++ standard.
2196 If @option{-fno-for-scope} is specified, the scope of variables declared in
2197 a @i{for-init-statement} extends to the end of the enclosing scope,
2198 as was the case in old versions of G++, and other (traditional)
2199 implementations of C++.
2201 If neither flag is given, the default is to follow the standard,
2202 but to allow and give a warning for old-style code that would
2203 otherwise be invalid, or have different behavior.
2205 @item -fno-gnu-keywords
2206 @opindex fno-gnu-keywords
2207 Do not recognize @code{typeof} as a keyword, so that code can use this
2208 word as an identifier.  You can use the keyword @code{__typeof__} instead.
2209 @option{-ansi} implies @option{-fno-gnu-keywords}.
2211 @item -fno-implicit-templates
2212 @opindex fno-implicit-templates
2213 Never emit code for non-inline templates that are instantiated
2214 implicitly (i.e.@: by use); only emit code for explicit instantiations.
2215 @xref{Template Instantiation}, for more information.
2217 @item -fno-implicit-inline-templates
2218 @opindex fno-implicit-inline-templates
2219 Don't emit code for implicit instantiations of inline templates, either.
2220 The default is to handle inlines differently so that compiles with and
2221 without optimization need the same set of explicit instantiations.
2223 @item -fno-implement-inlines
2224 @opindex fno-implement-inlines
2225 To save space, do not emit out-of-line copies of inline functions
2226 controlled by @samp{#pragma implementation}.  This causes linker
2227 errors if these functions are not inlined everywhere they are called.
2229 @item -fms-extensions
2230 @opindex fms-extensions
2231 Disable Wpedantic warnings about constructs used in MFC, such as implicit
2232 int and getting a pointer to member function via non-standard syntax.
2234 @item -fno-nonansi-builtins
2235 @opindex fno-nonansi-builtins
2236 Disable built-in declarations of functions that are not mandated by
2237 ANSI/ISO C@.  These include @code{ffs}, @code{alloca}, @code{_exit},
2238 @code{index}, @code{bzero}, @code{conjf}, and other related functions.
2240 @item -fnothrow-opt
2241 @opindex fnothrow-opt
2242 Treat a @code{throw()} exception specification as if it were a
2243 @code{noexcept} specification to reduce or eliminate the text size
2244 overhead relative to a function with no exception specification.  If
2245 the function has local variables of types with non-trivial
2246 destructors, the exception specification actually makes the
2247 function smaller because the EH cleanups for those variables can be
2248 optimized away.  The semantic effect is that an exception thrown out of
2249 a function with such an exception specification results in a call
2250 to @code{terminate} rather than @code{unexpected}.
2252 @item -fno-operator-names
2253 @opindex fno-operator-names
2254 Do not treat the operator name keywords @code{and}, @code{bitand},
2255 @code{bitor}, @code{compl}, @code{not}, @code{or} and @code{xor} as
2256 synonyms as keywords.
2258 @item -fno-optional-diags
2259 @opindex fno-optional-diags
2260 Disable diagnostics that the standard says a compiler does not need to
2261 issue.  Currently, the only such diagnostic issued by G++ is the one for
2262 a name having multiple meanings within a class.
2264 @item -fpermissive
2265 @opindex fpermissive
2266 Downgrade some diagnostics about nonconformant code from errors to
2267 warnings.  Thus, using @option{-fpermissive} allows some
2268 nonconforming code to compile.
2270 @item -fno-pretty-templates
2271 @opindex fno-pretty-templates
2272 When an error message refers to a specialization of a function
2273 template, the compiler normally prints the signature of the
2274 template followed by the template arguments and any typedefs or
2275 typenames in the signature (e.g. @code{void f(T) [with T = int]}
2276 rather than @code{void f(int)}) so that it's clear which template is
2277 involved.  When an error message refers to a specialization of a class
2278 template, the compiler omits any template arguments that match
2279 the default template arguments for that template.  If either of these
2280 behaviors make it harder to understand the error message rather than
2281 easier, you can use @option{-fno-pretty-templates} to disable them.
2283 @item -frepo
2284 @opindex frepo
2285 Enable automatic template instantiation at link time.  This option also
2286 implies @option{-fno-implicit-templates}.  @xref{Template
2287 Instantiation}, for more information.
2289 @item -fno-rtti
2290 @opindex fno-rtti
2291 Disable generation of information about every class with virtual
2292 functions for use by the C++ run-time type identification features
2293 (@samp{dynamic_cast} and @samp{typeid}).  If you don't use those parts
2294 of the language, you can save some space by using this flag.  Note that
2295 exception handling uses the same information, but G++ generates it as
2296 needed. The @samp{dynamic_cast} operator can still be used for casts that
2297 do not require run-time type information, i.e.@: casts to @code{void *} or to
2298 unambiguous base classes.
2300 @item -fstats
2301 @opindex fstats
2302 Emit statistics about front-end processing at the end of the compilation.
2303 This information is generally only useful to the G++ development team.
2305 @item -fstrict-enums
2306 @opindex fstrict-enums
2307 Allow the compiler to optimize using the assumption that a value of
2308 enumerated type can only be one of the values of the enumeration (as
2309 defined in the C++ standard; basically, a value that can be
2310 represented in the minimum number of bits needed to represent all the
2311 enumerators).  This assumption may not be valid if the program uses a
2312 cast to convert an arbitrary integer value to the enumerated type.
2314 @item -ftemplate-backtrace-limit=@var{n}
2315 @opindex ftemplate-backtrace-limit
2316 Set the maximum number of template instantiation notes for a single
2317 warning or error to @var{n}.  The default value is 10.
2319 @item -ftemplate-depth=@var{n}
2320 @opindex ftemplate-depth
2321 Set the maximum instantiation depth for template classes to @var{n}.
2322 A limit on the template instantiation depth is needed to detect
2323 endless recursions during template class instantiation.  ANSI/ISO C++
2324 conforming programs must not rely on a maximum depth greater than 17
2325 (changed to 1024 in C++11).  The default value is 900, as the compiler
2326 can run out of stack space before hitting 1024 in some situations.
2328 @item -fno-threadsafe-statics
2329 @opindex fno-threadsafe-statics
2330 Do not emit the extra code to use the routines specified in the C++
2331 ABI for thread-safe initialization of local statics.  You can use this
2332 option to reduce code size slightly in code that doesn't need to be
2333 thread-safe.
2335 @item -fuse-cxa-atexit
2336 @opindex fuse-cxa-atexit
2337 Register destructors for objects with static storage duration with the
2338 @code{__cxa_atexit} function rather than the @code{atexit} function.
2339 This option is required for fully standards-compliant handling of static
2340 destructors, but only works if your C library supports
2341 @code{__cxa_atexit}.
2343 @item -fno-use-cxa-get-exception-ptr
2344 @opindex fno-use-cxa-get-exception-ptr
2345 Don't use the @code{__cxa_get_exception_ptr} runtime routine.  This
2346 causes @code{std::uncaught_exception} to be incorrect, but is necessary
2347 if the runtime routine is not available.
2349 @item -fvisibility-inlines-hidden
2350 @opindex fvisibility-inlines-hidden
2351 This switch declares that the user does not attempt to compare
2352 pointers to inline functions or methods where the addresses of the two functions
2353 are taken in different shared objects.
2355 The effect of this is that GCC may, effectively, mark inline methods with
2356 @code{__attribute__ ((visibility ("hidden")))} so that they do not
2357 appear in the export table of a DSO and do not require a PLT indirection
2358 when used within the DSO@.  Enabling this option can have a dramatic effect
2359 on load and link times of a DSO as it massively reduces the size of the
2360 dynamic export table when the library makes heavy use of templates.
2362 The behavior of this switch is not quite the same as marking the
2363 methods as hidden directly, because it does not affect static variables
2364 local to the function or cause the compiler to deduce that
2365 the function is defined in only one shared object.
2367 You may mark a method as having a visibility explicitly to negate the
2368 effect of the switch for that method.  For example, if you do want to
2369 compare pointers to a particular inline method, you might mark it as
2370 having default visibility.  Marking the enclosing class with explicit
2371 visibility has no effect.
2373 Explicitly instantiated inline methods are unaffected by this option
2374 as their linkage might otherwise cross a shared library boundary.
2375 @xref{Template Instantiation}.
2377 @item -fvisibility-ms-compat
2378 @opindex fvisibility-ms-compat
2379 This flag attempts to use visibility settings to make GCC's C++
2380 linkage model compatible with that of Microsoft Visual Studio.
2382 The flag makes these changes to GCC's linkage model:
2384 @enumerate
2385 @item
2386 It sets the default visibility to @code{hidden}, like
2387 @option{-fvisibility=hidden}.
2389 @item
2390 Types, but not their members, are not hidden by default.
2392 @item
2393 The One Definition Rule is relaxed for types without explicit
2394 visibility specifications that are defined in more than one
2395 shared object: those declarations are permitted if they are
2396 permitted when this option is not used.
2397 @end enumerate
2399 In new code it is better to use @option{-fvisibility=hidden} and
2400 export those classes that are intended to be externally visible.
2401 Unfortunately it is possible for code to rely, perhaps accidentally,
2402 on the Visual Studio behavior.
2404 Among the consequences of these changes are that static data members
2405 of the same type with the same name but defined in different shared
2406 objects are different, so changing one does not change the other;
2407 and that pointers to function members defined in different shared
2408 objects may not compare equal.  When this flag is given, it is a
2409 violation of the ODR to define types with the same name differently.
2411 @item -fvtable-verify=@var{std|preinit|none}
2412 @opindex fvtable-verify
2413 Turn on (or off, if using @option{-fvtable-verify=none}) the security
2414 feature that verifies at runtime, for every virtual call that is made, that
2415 the vtable pointer through which the call is made is valid for the type of
2416 the object, and has not been corrupted or overwritten.  If an invalid vtable
2417 pointer is detected (at runtime), an error is reported and execution of the
2418 program is immediately halted.
2420 This option causes runtime data structures to be built, at program start up,
2421 for verifying the vtable pointers.  The options @code{std} and @code{preinit}
2422 control the timing of when these data structures are built.  In both cases the
2423 data structures are built before execution reaches 'main'.  The
2424 @option{-fvtable-verify=std} causes these data structure to be built after the
2425 shared libraries have been loaded and initialized.
2426 @option{-fvtable-verify=preinit} causes them to be built before the shared
2427 libraries have been loaded and initialized.
2429 If this option appears multiple times in the compiler line, with different
2430 values specified, 'none' will take highest priority over both 'std' and
2431 'preinit'; 'preinit' will take priority over 'std'.
2433 @item -fvtv-debug
2434 @opindex (fvtv-debug)
2435 Causes debug versions of the runtime functions for the vtable verification 
2436 feature to be called.  This assumes the @option{-fvtable-verify=std} or
2437 @option{-fvtable-verify=preinit} has been used.  This flag will also cause the
2438 compiler to keep track of which vtable pointers it found for each class, and
2439 record that information in the file ``vtv_set_ptr_data.log'', in the dump
2440 file directory on the user's machine.
2442 Note:  This feature APPENDS data to the log file. If you want a fresh log
2443 file, be sure to delete any existing one.
2445 @item -fvtv-counts
2446 @opindex fvtv-counts
2447 This is a debugging flag.  When used in conjunction with
2448 @option{-fvtable-verify=std} or @option{-fvtable-verify=preinit}, this
2449 causes the compiler to keep track of the total number of virtual calls
2450 it encountered and the number of verifications it inserted.  It also
2451 counts the number of calls to certain runtime library functions
2452 that it inserts.  This information, for each compilation unit, is written
2453 to a file named ``vtv_count_data.log'', in the dump_file directory on
2454 the user's machine.   It also counts the size of the vtable pointer sets
2455 for each class, and writes this information to ``vtv_class_set_sizes.log''
2456 in the same directory.
2458 Note:  This feature APPENDS data to the log files.  To get a fresh log
2459 files, be sure to delete any existing ones.
2461 @item -fno-weak
2462 @opindex fno-weak
2463 Do not use weak symbol support, even if it is provided by the linker.
2464 By default, G++ uses weak symbols if they are available.  This
2465 option exists only for testing, and should not be used by end-users;
2466 it results in inferior code and has no benefits.  This option may
2467 be removed in a future release of G++.
2469 @item -nostdinc++
2470 @opindex nostdinc++
2471 Do not search for header files in the standard directories specific to
2472 C++, but do still search the other standard directories.  (This option
2473 is used when building the C++ library.)
2474 @end table
2476 In addition, these optimization, warning, and code generation options
2477 have meanings only for C++ programs:
2479 @table @gcctabopt
2480 @item -Wabi @r{(C, Objective-C, C++ and Objective-C++ only)}
2481 @opindex Wabi
2482 @opindex Wno-abi
2483 When an explicit @option{-fabi-version=@var{n}} option is used, causes
2484 G++ to warn when it generates code that is probably not compatible with the
2485 vendor-neutral C++ ABI@.  Since G++ now defaults to
2486 @option{-fabi-version=0}, @option{-Wabi} has no effect unless either
2487 an older ABI version is selected (with @option{-fabi-version=@var{n}})
2488 or an older compatibility version is selected (with
2489 @option{-Wabi=@var{n}} or @option{-fabi-compat-version=@var{n}}).
2491 Although an effort has been made to warn about
2492 all such cases, there are probably some cases that are not warned about,
2493 even though G++ is generating incompatible code.  There may also be
2494 cases where warnings are emitted even though the code that is generated
2495 is compatible.
2497 You should rewrite your code to avoid these warnings if you are
2498 concerned about the fact that code generated by G++ may not be binary
2499 compatible with code generated by other compilers.
2501 @option{-Wabi} can also be used with an explicit version number to
2502 warn about compatibility with a particular @option{-fabi-version}
2503 level, e.g. @option{-Wabi=2} to warn about changes relative to
2504 @option{-fabi-version=2}.  Specifying a version number also sets
2505 @option{-fabi-compat-version=@var{n}}.
2507 The known incompatibilities in @option{-fabi-version=2} (which was the
2508 default from GCC 3.4 to 4.9) include:
2510 @itemize @bullet
2512 @item
2513 A template with a non-type template parameter of reference type was
2514 mangled incorrectly:
2515 @smallexample
2516 extern int N;
2517 template <int &> struct S @{@};
2518 void n (S<N>) @{2@}
2519 @end smallexample
2521 This was fixed in @option{-fabi-version=3}.
2523 @item
2524 SIMD vector types declared using @code{__attribute ((vector_size))} were
2525 mangled in a non-standard way that does not allow for overloading of
2526 functions taking vectors of different sizes.
2528 The mangling was changed in @option{-fabi-version=4}.
2530 @item
2531 @code{__attribute ((const))} and @code{noreturn} were mangled as type
2532 qualifiers, and @code{decltype} of a plain declaration was folded away.
2534 These mangling issues were fixed in @option{-fabi-version=5}.
2536 @item
2537 Scoped enumerators passed as arguments to a variadic function are
2538 promoted like unscoped enumerators, causing @samp{va_arg} to complain.
2539 On most targets this does not actually affect the parameter passing
2540 ABI, as there is no way to pass an argument smaller than @samp{int}.
2542 Also, the ABI changed the mangling of template argument packs,
2543 @code{const_cast}, @code{static_cast}, prefix increment/decrement, and
2544 a class scope function used as a template argument.
2546 These issues were corrected in @option{-fabi-version=6}.
2548 @item
2549 Lambdas in default argument scope were mangled incorrectly, and the
2550 ABI changed the mangling of nullptr_t.
2552 These issues were corrected in @option{-fabi-version=7}.
2554 @item
2555 When mangling a function type with function-cv-qualifiers, the
2556 un-qualified function type was incorrectly treated as a substitution
2557 candidate.
2559 This was fixed in @option{-fabi-version=8}.
2560 @end itemize
2562 It also warns about psABI-related changes.  The known psABI changes at this
2563 point include:
2565 @itemize @bullet
2567 @item
2568 For SysV/x86-64, unions with @code{long double} members are 
2569 passed in memory as specified in psABI.  For example:
2571 @smallexample
2572 union U @{
2573   long double ld;
2574   int i;
2576 @end smallexample
2578 @noindent
2579 @code{union U} is always passed in memory.
2581 @end itemize
2583 @item -Wctor-dtor-privacy @r{(C++ and Objective-C++ only)}
2584 @opindex Wctor-dtor-privacy
2585 @opindex Wno-ctor-dtor-privacy
2586 Warn when a class seems unusable because all the constructors or
2587 destructors in that class are private, and it has neither friends nor
2588 public static member functions.  Also warn if there are no non-private
2589 methods, and there's at least one private member function that isn't
2590 a constructor or destructor.
2592 @item -Wdelete-non-virtual-dtor @r{(C++ and Objective-C++ only)}
2593 @opindex Wdelete-non-virtual-dtor
2594 @opindex Wno-delete-non-virtual-dtor
2595 Warn when @samp{delete} is used to destroy an instance of a class that
2596 has virtual functions and non-virtual destructor. It is unsafe to delete
2597 an instance of a derived class through a pointer to a base class if the
2598 base class does not have a virtual destructor.  This warning is enabled
2599 by @option{-Wall}.
2601 @item -Wliteral-suffix @r{(C++ and Objective-C++ only)}
2602 @opindex Wliteral-suffix
2603 @opindex Wno-literal-suffix
2604 Warn when a string or character literal is followed by a ud-suffix which does
2605 not begin with an underscore.  As a conforming extension, GCC treats such
2606 suffixes as separate preprocessing tokens in order to maintain backwards
2607 compatibility with code that uses formatting macros from @code{<inttypes.h>}.
2608 For example:
2610 @smallexample
2611 #define __STDC_FORMAT_MACROS
2612 #include <inttypes.h>
2613 #include <stdio.h>
2615 int main() @{
2616   int64_t i64 = 123;
2617   printf("My int64: %"PRId64"\n", i64);
2619 @end smallexample
2621 In this case, @code{PRId64} is treated as a separate preprocessing token.
2623 This warning is enabled by default.
2625 @item -Wnarrowing @r{(C++ and Objective-C++ only)}
2626 @opindex Wnarrowing
2627 @opindex Wno-narrowing
2628 Warn when a narrowing conversion prohibited by C++11 occurs within
2629 @samp{@{ @}}, e.g.
2631 @smallexample
2632 int i = @{ 2.2 @}; // error: narrowing from double to int
2633 @end smallexample
2635 This flag is included in @option{-Wall} and @option{-Wc++11-compat}.
2637 With @option{-std=c++11}, @option{-Wno-narrowing} suppresses for
2638 non-constants the diagnostic required by the standard.  Note that this
2639 does not affect the meaning of well-formed code; narrowing conversions
2640 are still considered ill-formed in SFINAE context.
2642 @item -Wnoexcept @r{(C++ and Objective-C++ only)}
2643 @opindex Wnoexcept
2644 @opindex Wno-noexcept
2645 Warn when a noexcept-expression evaluates to false because of a call
2646 to a function that does not have a non-throwing exception
2647 specification (i.e. @samp{throw()} or @samp{noexcept}) but is known by
2648 the compiler to never throw an exception.
2650 @item -Wnon-virtual-dtor @r{(C++ and Objective-C++ only)}
2651 @opindex Wnon-virtual-dtor
2652 @opindex Wno-non-virtual-dtor
2653 Warn when a class has virtual functions and an accessible non-virtual
2654 destructor itself or in an accessible polymorphic base class, in which
2655 case it is possible but unsafe to delete an instance of a derived
2656 class through a pointer to the class itself or base class.  This
2657 warning is automatically enabled if @option{-Weffc++} is specified.
2659 @item -Wreorder @r{(C++ and Objective-C++ only)}
2660 @opindex Wreorder
2661 @opindex Wno-reorder
2662 @cindex reordering, warning
2663 @cindex warning for reordering of member initializers
2664 Warn when the order of member initializers given in the code does not
2665 match the order in which they must be executed.  For instance:
2667 @smallexample
2668 struct A @{
2669   int i;
2670   int j;
2671   A(): j (0), i (1) @{ @}
2673 @end smallexample
2675 @noindent
2676 The compiler rearranges the member initializers for @samp{i}
2677 and @samp{j} to match the declaration order of the members, emitting
2678 a warning to that effect.  This warning is enabled by @option{-Wall}.
2680 @item -fext-numeric-literals @r{(C++ and Objective-C++ only)}
2681 @opindex fext-numeric-literals
2682 @opindex fno-ext-numeric-literals
2683 Accept imaginary, fixed-point, or machine-defined
2684 literal number suffixes as GNU extensions.
2685 When this option is turned off these suffixes are treated
2686 as C++11 user-defined literal numeric suffixes.
2687 This is on by default for all pre-C++11 dialects and all GNU dialects:
2688 @option{-std=c++98}, @option{-std=gnu++98}, @option{-std=gnu++11},
2689 @option{-std=gnu++14}.
2690 This option is off by default
2691 for ISO C++11 onwards (@option{-std=c++11}, ...).
2692 @end table
2694 The following @option{-W@dots{}} options are not affected by @option{-Wall}.
2696 @table @gcctabopt
2697 @item -Weffc++ @r{(C++ and Objective-C++ only)}
2698 @opindex Weffc++
2699 @opindex Wno-effc++
2700 Warn about violations of the following style guidelines from Scott Meyers'
2701 @cite{Effective C++} series of books:
2703 @itemize @bullet
2704 @item
2705 Define a copy constructor and an assignment operator for classes
2706 with dynamically-allocated memory.
2708 @item
2709 Prefer initialization to assignment in constructors.
2711 @item
2712 Have @code{operator=} return a reference to @code{*this}.
2714 @item
2715 Don't try to return a reference when you must return an object.
2717 @item
2718 Distinguish between prefix and postfix forms of increment and
2719 decrement operators.
2721 @item
2722 Never overload @code{&&}, @code{||}, or @code{,}.
2724 @end itemize
2726 This option also enables @option{-Wnon-virtual-dtor}, which is also
2727 one of the effective C++ recommendations.  However, the check is
2728 extended to warn about the lack of virtual destructor in accessible
2729 non-polymorphic bases classes too.
2731 When selecting this option, be aware that the standard library
2732 headers do not obey all of these guidelines; use @samp{grep -v}
2733 to filter out those warnings.
2735 @item -Wstrict-null-sentinel @r{(C++ and Objective-C++ only)}
2736 @opindex Wstrict-null-sentinel
2737 @opindex Wno-strict-null-sentinel
2738 Warn about the use of an uncasted @code{NULL} as sentinel.  When
2739 compiling only with GCC this is a valid sentinel, as @code{NULL} is defined
2740 to @code{__null}.  Although it is a null pointer constant rather than a
2741 null pointer, it is guaranteed to be of the same size as a pointer.
2742 But this use is not portable across different compilers.
2744 @item -Wno-non-template-friend @r{(C++ and Objective-C++ only)}
2745 @opindex Wno-non-template-friend
2746 @opindex Wnon-template-friend
2747 Disable warnings when non-templatized friend functions are declared
2748 within a template.  Since the advent of explicit template specification
2749 support in G++, if the name of the friend is an unqualified-id (i.e.,
2750 @samp{friend foo(int)}), the C++ language specification demands that the
2751 friend declare or define an ordinary, nontemplate function.  (Section
2752 14.5.3).  Before G++ implemented explicit specification, unqualified-ids
2753 could be interpreted as a particular specialization of a templatized
2754 function.  Because this non-conforming behavior is no longer the default
2755 behavior for G++, @option{-Wnon-template-friend} allows the compiler to
2756 check existing code for potential trouble spots and is on by default.
2757 This new compiler behavior can be turned off with
2758 @option{-Wno-non-template-friend}, which keeps the conformant compiler code
2759 but disables the helpful warning.
2761 @item -Wold-style-cast @r{(C++ and Objective-C++ only)}
2762 @opindex Wold-style-cast
2763 @opindex Wno-old-style-cast
2764 Warn if an old-style (C-style) cast to a non-void type is used within
2765 a C++ program.  The new-style casts (@samp{dynamic_cast},
2766 @samp{static_cast}, @samp{reinterpret_cast}, and @samp{const_cast}) are
2767 less vulnerable to unintended effects and much easier to search for.
2769 @item -Woverloaded-virtual @r{(C++ and Objective-C++ only)}
2770 @opindex Woverloaded-virtual
2771 @opindex Wno-overloaded-virtual
2772 @cindex overloaded virtual function, warning
2773 @cindex warning for overloaded virtual function
2774 Warn when a function declaration hides virtual functions from a
2775 base class.  For example, in:
2777 @smallexample
2778 struct A @{
2779   virtual void f();
2782 struct B: public A @{
2783   void f(int);
2785 @end smallexample
2787 the @code{A} class version of @code{f} is hidden in @code{B}, and code
2788 like:
2790 @smallexample
2791 B* b;
2792 b->f();
2793 @end smallexample
2795 @noindent
2796 fails to compile.
2798 @item -Wno-pmf-conversions @r{(C++ and Objective-C++ only)}
2799 @opindex Wno-pmf-conversions
2800 @opindex Wpmf-conversions
2801 Disable the diagnostic for converting a bound pointer to member function
2802 to a plain pointer.
2804 @item -Wsign-promo @r{(C++ and Objective-C++ only)}
2805 @opindex Wsign-promo
2806 @opindex Wno-sign-promo
2807 Warn when overload resolution chooses a promotion from unsigned or
2808 enumerated type to a signed type, over a conversion to an unsigned type of
2809 the same size.  Previous versions of G++ tried to preserve
2810 unsignedness, but the standard mandates the current behavior.
2811 @end table
2813 @node Objective-C and Objective-C++ Dialect Options
2814 @section Options Controlling Objective-C and Objective-C++ Dialects
2816 @cindex compiler options, Objective-C and Objective-C++
2817 @cindex Objective-C and Objective-C++ options, command-line
2818 @cindex options, Objective-C and Objective-C++
2819 (NOTE: This manual does not describe the Objective-C and Objective-C++
2820 languages themselves.  @xref{Standards,,Language Standards
2821 Supported by GCC}, for references.)
2823 This section describes the command-line options that are only meaningful
2824 for Objective-C and Objective-C++ programs.  You can also use most of
2825 the language-independent GNU compiler options.
2826 For example, you might compile a file @code{some_class.m} like this:
2828 @smallexample
2829 gcc -g -fgnu-runtime -O -c some_class.m
2830 @end smallexample
2832 @noindent
2833 In this example, @option{-fgnu-runtime} is an option meant only for
2834 Objective-C and Objective-C++ programs; you can use the other options with
2835 any language supported by GCC@.
2837 Note that since Objective-C is an extension of the C language, Objective-C
2838 compilations may also use options specific to the C front-end (e.g.,
2839 @option{-Wtraditional}).  Similarly, Objective-C++ compilations may use
2840 C++-specific options (e.g., @option{-Wabi}).
2842 Here is a list of options that are @emph{only} for compiling Objective-C
2843 and Objective-C++ programs:
2845 @table @gcctabopt
2846 @item -fconstant-string-class=@var{class-name}
2847 @opindex fconstant-string-class
2848 Use @var{class-name} as the name of the class to instantiate for each
2849 literal string specified with the syntax @code{@@"@dots{}"}.  The default
2850 class name is @code{NXConstantString} if the GNU runtime is being used, and
2851 @code{NSConstantString} if the NeXT runtime is being used (see below).  The
2852 @option{-fconstant-cfstrings} option, if also present, overrides the
2853 @option{-fconstant-string-class} setting and cause @code{@@"@dots{}"} literals
2854 to be laid out as constant CoreFoundation strings.
2856 @item -fgnu-runtime
2857 @opindex fgnu-runtime
2858 Generate object code compatible with the standard GNU Objective-C
2859 runtime.  This is the default for most types of systems.
2861 @item -fnext-runtime
2862 @opindex fnext-runtime
2863 Generate output compatible with the NeXT runtime.  This is the default
2864 for NeXT-based systems, including Darwin and Mac OS X@.  The macro
2865 @code{__NEXT_RUNTIME__} is predefined if (and only if) this option is
2866 used.
2868 @item -fno-nil-receivers
2869 @opindex fno-nil-receivers
2870 Assume that all Objective-C message dispatches (@code{[receiver
2871 message:arg]}) in this translation unit ensure that the receiver is
2872 not @code{nil}.  This allows for more efficient entry points in the
2873 runtime to be used.  This option is only available in conjunction with
2874 the NeXT runtime and ABI version 0 or 1.
2876 @item -fobjc-abi-version=@var{n}
2877 @opindex fobjc-abi-version
2878 Use version @var{n} of the Objective-C ABI for the selected runtime.
2879 This option is currently supported only for the NeXT runtime.  In that
2880 case, Version 0 is the traditional (32-bit) ABI without support for
2881 properties and other Objective-C 2.0 additions.  Version 1 is the
2882 traditional (32-bit) ABI with support for properties and other
2883 Objective-C 2.0 additions.  Version 2 is the modern (64-bit) ABI.  If
2884 nothing is specified, the default is Version 0 on 32-bit target
2885 machines, and Version 2 on 64-bit target machines.
2887 @item -fobjc-call-cxx-cdtors
2888 @opindex fobjc-call-cxx-cdtors
2889 For each Objective-C class, check if any of its instance variables is a
2890 C++ object with a non-trivial default constructor.  If so, synthesize a
2891 special @code{- (id) .cxx_construct} instance method which runs
2892 non-trivial default constructors on any such instance variables, in order,
2893 and then return @code{self}.  Similarly, check if any instance variable
2894 is a C++ object with a non-trivial destructor, and if so, synthesize a
2895 special @code{- (void) .cxx_destruct} method which runs
2896 all such default destructors, in reverse order.
2898 The @code{- (id) .cxx_construct} and @code{- (void) .cxx_destruct}
2899 methods thusly generated only operate on instance variables
2900 declared in the current Objective-C class, and not those inherited
2901 from superclasses.  It is the responsibility of the Objective-C
2902 runtime to invoke all such methods in an object's inheritance
2903 hierarchy.  The @code{- (id) .cxx_construct} methods are invoked
2904 by the runtime immediately after a new object instance is allocated;
2905 the @code{- (void) .cxx_destruct} methods are invoked immediately
2906 before the runtime deallocates an object instance.
2908 As of this writing, only the NeXT runtime on Mac OS X 10.4 and later has
2909 support for invoking the @code{- (id) .cxx_construct} and
2910 @code{- (void) .cxx_destruct} methods.
2912 @item -fobjc-direct-dispatch
2913 @opindex fobjc-direct-dispatch
2914 Allow fast jumps to the message dispatcher.  On Darwin this is
2915 accomplished via the comm page.
2917 @item -fobjc-exceptions
2918 @opindex fobjc-exceptions
2919 Enable syntactic support for structured exception handling in
2920 Objective-C, similar to what is offered by C++ and Java.  This option
2921 is required to use the Objective-C keywords @code{@@try},
2922 @code{@@throw}, @code{@@catch}, @code{@@finally} and
2923 @code{@@synchronized}.  This option is available with both the GNU
2924 runtime and the NeXT runtime (but not available in conjunction with
2925 the NeXT runtime on Mac OS X 10.2 and earlier).
2927 @item -fobjc-gc
2928 @opindex fobjc-gc
2929 Enable garbage collection (GC) in Objective-C and Objective-C++
2930 programs.  This option is only available with the NeXT runtime; the
2931 GNU runtime has a different garbage collection implementation that
2932 does not require special compiler flags.
2934 @item -fobjc-nilcheck
2935 @opindex fobjc-nilcheck
2936 For the NeXT runtime with version 2 of the ABI, check for a nil
2937 receiver in method invocations before doing the actual method call.
2938 This is the default and can be disabled using
2939 @option{-fno-objc-nilcheck}.  Class methods and super calls are never
2940 checked for nil in this way no matter what this flag is set to.
2941 Currently this flag does nothing when the GNU runtime, or an older
2942 version of the NeXT runtime ABI, is used.
2944 @item -fobjc-std=objc1
2945 @opindex fobjc-std
2946 Conform to the language syntax of Objective-C 1.0, the language
2947 recognized by GCC 4.0.  This only affects the Objective-C additions to
2948 the C/C++ language; it does not affect conformance to C/C++ standards,
2949 which is controlled by the separate C/C++ dialect option flags.  When
2950 this option is used with the Objective-C or Objective-C++ compiler,
2951 any Objective-C syntax that is not recognized by GCC 4.0 is rejected.
2952 This is useful if you need to make sure that your Objective-C code can
2953 be compiled with older versions of GCC@.
2955 @item -freplace-objc-classes
2956 @opindex freplace-objc-classes
2957 Emit a special marker instructing @command{ld(1)} not to statically link in
2958 the resulting object file, and allow @command{dyld(1)} to load it in at
2959 run time instead.  This is used in conjunction with the Fix-and-Continue
2960 debugging mode, where the object file in question may be recompiled and
2961 dynamically reloaded in the course of program execution, without the need
2962 to restart the program itself.  Currently, Fix-and-Continue functionality
2963 is only available in conjunction with the NeXT runtime on Mac OS X 10.3
2964 and later.
2966 @item -fzero-link
2967 @opindex fzero-link
2968 When compiling for the NeXT runtime, the compiler ordinarily replaces calls
2969 to @code{objc_getClass("@dots{}")} (when the name of the class is known at
2970 compile time) with static class references that get initialized at load time,
2971 which improves run-time performance.  Specifying the @option{-fzero-link} flag
2972 suppresses this behavior and causes calls to @code{objc_getClass("@dots{}")}
2973 to be retained.  This is useful in Zero-Link debugging mode, since it allows
2974 for individual class implementations to be modified during program execution.
2975 The GNU runtime currently always retains calls to @code{objc_get_class("@dots{}")}
2976 regardless of command-line options.
2978 @item -fno-local-ivars
2979 @opindex fno-local-ivars
2980 @opindex flocal-ivars
2981 By default instance variables in Objective-C can be accessed as if
2982 they were local variables from within the methods of the class they're
2983 declared in.  This can lead to shadowing between instance variables
2984 and other variables declared either locally inside a class method or
2985 globally with the same name.  Specifying the @option{-fno-local-ivars}
2986 flag disables this behavior thus avoiding variable shadowing issues.
2988 @item -fivar-visibility=@var{public|protected|private|package}
2989 @opindex fivar-visibility
2990 Set the default instance variable visibility to the specified option
2991 so that instance variables declared outside the scope of any access
2992 modifier directives default to the specified visibility.
2994 @item -gen-decls
2995 @opindex gen-decls
2996 Dump interface declarations for all classes seen in the source file to a
2997 file named @file{@var{sourcename}.decl}.
2999 @item -Wassign-intercept @r{(Objective-C and Objective-C++ only)}
3000 @opindex Wassign-intercept
3001 @opindex Wno-assign-intercept
3002 Warn whenever an Objective-C assignment is being intercepted by the
3003 garbage collector.
3005 @item -Wno-protocol @r{(Objective-C and Objective-C++ only)}
3006 @opindex Wno-protocol
3007 @opindex Wprotocol
3008 If a class is declared to implement a protocol, a warning is issued for
3009 every method in the protocol that is not implemented by the class.  The
3010 default behavior is to issue a warning for every method not explicitly
3011 implemented in the class, even if a method implementation is inherited
3012 from the superclass.  If you use the @option{-Wno-protocol} option, then
3013 methods inherited from the superclass are considered to be implemented,
3014 and no warning is issued for them.
3016 @item -Wselector @r{(Objective-C and Objective-C++ only)}
3017 @opindex Wselector
3018 @opindex Wno-selector
3019 Warn if multiple methods of different types for the same selector are
3020 found during compilation.  The check is performed on the list of methods
3021 in the final stage of compilation.  Additionally, a check is performed
3022 for each selector appearing in a @code{@@selector(@dots{})}
3023 expression, and a corresponding method for that selector has been found
3024 during compilation.  Because these checks scan the method table only at
3025 the end of compilation, these warnings are not produced if the final
3026 stage of compilation is not reached, for example because an error is
3027 found during compilation, or because the @option{-fsyntax-only} option is
3028 being used.
3030 @item -Wstrict-selector-match @r{(Objective-C and Objective-C++ only)}
3031 @opindex Wstrict-selector-match
3032 @opindex Wno-strict-selector-match
3033 Warn if multiple methods with differing argument and/or return types are
3034 found for a given selector when attempting to send a message using this
3035 selector to a receiver of type @code{id} or @code{Class}.  When this flag
3036 is off (which is the default behavior), the compiler omits such warnings
3037 if any differences found are confined to types that share the same size
3038 and alignment.
3040 @item -Wundeclared-selector @r{(Objective-C and Objective-C++ only)}
3041 @opindex Wundeclared-selector
3042 @opindex Wno-undeclared-selector
3043 Warn if a @code{@@selector(@dots{})} expression referring to an
3044 undeclared selector is found.  A selector is considered undeclared if no
3045 method with that name has been declared before the
3046 @code{@@selector(@dots{})} expression, either explicitly in an
3047 @code{@@interface} or @code{@@protocol} declaration, or implicitly in
3048 an @code{@@implementation} section.  This option always performs its
3049 checks as soon as a @code{@@selector(@dots{})} expression is found,
3050 while @option{-Wselector} only performs its checks in the final stage of
3051 compilation.  This also enforces the coding style convention
3052 that methods and selectors must be declared before being used.
3054 @item -print-objc-runtime-info
3055 @opindex print-objc-runtime-info
3056 Generate C header describing the largest structure that is passed by
3057 value, if any.
3059 @end table
3061 @node Language Independent Options
3062 @section Options to Control Diagnostic Messages Formatting
3063 @cindex options to control diagnostics formatting
3064 @cindex diagnostic messages
3065 @cindex message formatting
3067 Traditionally, diagnostic messages have been formatted irrespective of
3068 the output device's aspect (e.g.@: its width, @dots{}).  You can use the
3069 options described below
3070 to control the formatting algorithm for diagnostic messages, 
3071 e.g.@: how many characters per line, how often source location
3072 information should be reported.  Note that some language front ends may not
3073 honor these options.
3075 @table @gcctabopt
3076 @item -fmessage-length=@var{n}
3077 @opindex fmessage-length
3078 Try to format error messages so that they fit on lines of about
3079 @var{n} characters.  If @var{n} is zero, then no line-wrapping will be
3080 done; each error message will appear on a single line.  This is the
3081 default for all front ends.
3083 @item -fdiagnostics-show-location=once
3084 @opindex fdiagnostics-show-location
3085 Only meaningful in line-wrapping mode.  Instructs the diagnostic messages
3086 reporter to emit source location information @emph{once}; that is, in
3087 case the message is too long to fit on a single physical line and has to
3088 be wrapped, the source location won't be emitted (as prefix) again,
3089 over and over, in subsequent continuation lines.  This is the default
3090 behavior.
3092 @item -fdiagnostics-show-location=every-line
3093 Only meaningful in line-wrapping mode.  Instructs the diagnostic
3094 messages reporter to emit the same source location information (as
3095 prefix) for physical lines that result from the process of breaking
3096 a message which is too long to fit on a single line.
3098 @item -fdiagnostics-color[=@var{WHEN}]
3099 @itemx -fno-diagnostics-color
3100 @opindex fdiagnostics-color
3101 @cindex highlight, color, colour
3102 @vindex GCC_COLORS @r{environment variable}
3103 Use color in diagnostics.  @var{WHEN} is @samp{never}, @samp{always},
3104 or @samp{auto}.  The default is @samp{never} if @env{GCC_COLORS} environment
3105 variable isn't present in the environment, and @samp{auto} otherwise.
3106 @samp{auto} means to use color only when the standard error is a terminal.
3107 The forms @option{-fdiagnostics-color} and @option{-fno-diagnostics-color} are
3108 aliases for @option{-fdiagnostics-color=always} and
3109 @option{-fdiagnostics-color=never}, respectively.
3111 The colors are defined by the environment variable @env{GCC_COLORS}.
3112 Its value is a colon-separated list of capabilities and Select Graphic
3113 Rendition (SGR) substrings. SGR commands are interpreted by the
3114 terminal or terminal emulator.  (See the section in the documentation
3115 of your text terminal for permitted values and their meanings as
3116 character attributes.)  These substring values are integers in decimal
3117 representation and can be concatenated with semicolons.
3118 Common values to concatenate include
3119 @samp{1} for bold,
3120 @samp{4} for underline,
3121 @samp{5} for blink,
3122 @samp{7} for inverse,
3123 @samp{39} for default foreground color,
3124 @samp{30} to @samp{37} for foreground colors,
3125 @samp{90} to @samp{97} for 16-color mode foreground colors,
3126 @samp{38;5;0} to @samp{38;5;255}
3127 for 88-color and 256-color modes foreground colors,
3128 @samp{49} for default background color,
3129 @samp{40} to @samp{47} for background colors,
3130 @samp{100} to @samp{107} for 16-color mode background colors,
3131 and @samp{48;5;0} to @samp{48;5;255}
3132 for 88-color and 256-color modes background colors.
3134 The default @env{GCC_COLORS} is
3135 @samp{error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01}
3136 where @samp{01;31} is bold red, @samp{01;35} is bold magenta,
3137 @samp{01;36} is bold cyan, @samp{01;32} is bold green and
3138 @samp{01} is bold. Setting @env{GCC_COLORS} to the empty
3139 string disables colors.
3140 Supported capabilities are as follows.
3142 @table @code
3143 @item error=
3144 @vindex error GCC_COLORS @r{capability}
3145 SGR substring for error: markers.
3147 @item warning=
3148 @vindex warning GCC_COLORS @r{capability}
3149 SGR substring for warning: markers.
3151 @item note=
3152 @vindex note GCC_COLORS @r{capability}
3153 SGR substring for note: markers.
3155 @item caret=
3156 @vindex caret GCC_COLORS @r{capability}
3157 SGR substring for caret line.
3159 @item locus=
3160 @vindex locus GCC_COLORS @r{capability}
3161 SGR substring for location information, @samp{file:line} or
3162 @samp{file:line:column} etc.
3164 @item quote=
3165 @vindex quote GCC_COLORS @r{capability}
3166 SGR substring for information printed within quotes.
3167 @end table
3169 @item -fno-diagnostics-show-option
3170 @opindex fno-diagnostics-show-option
3171 @opindex fdiagnostics-show-option
3172 By default, each diagnostic emitted includes text indicating the
3173 command-line option that directly controls the diagnostic (if such an
3174 option is known to the diagnostic machinery).  Specifying the
3175 @option{-fno-diagnostics-show-option} flag suppresses that behavior.
3177 @item -fno-diagnostics-show-caret
3178 @opindex fno-diagnostics-show-caret
3179 @opindex fdiagnostics-show-caret
3180 By default, each diagnostic emitted includes the original source line
3181 and a caret '^' indicating the column.  This option suppresses this
3182 information.
3184 @end table
3186 @node Warning Options
3187 @section Options to Request or Suppress Warnings
3188 @cindex options to control warnings
3189 @cindex warning messages
3190 @cindex messages, warning
3191 @cindex suppressing warnings
3193 Warnings are diagnostic messages that report constructions that
3194 are not inherently erroneous but that are risky or suggest there
3195 may have been an error.
3197 The following language-independent options do not enable specific
3198 warnings but control the kinds of diagnostics produced by GCC@.
3200 @table @gcctabopt
3201 @cindex syntax checking
3202 @item -fsyntax-only
3203 @opindex fsyntax-only
3204 Check the code for syntax errors, but don't do anything beyond that.
3206 @item -fmax-errors=@var{n}
3207 @opindex fmax-errors
3208 Limits the maximum number of error messages to @var{n}, at which point
3209 GCC bails out rather than attempting to continue processing the source
3210 code.  If @var{n} is 0 (the default), there is no limit on the number
3211 of error messages produced.  If @option{-Wfatal-errors} is also
3212 specified, then @option{-Wfatal-errors} takes precedence over this
3213 option.
3215 @item -w
3216 @opindex w
3217 Inhibit all warning messages.
3219 @item -Werror
3220 @opindex Werror
3221 @opindex Wno-error
3222 Make all warnings into errors.
3224 @item -Werror=
3225 @opindex Werror=
3226 @opindex Wno-error=
3227 Make the specified warning into an error.  The specifier for a warning
3228 is appended; for example @option{-Werror=switch} turns the warnings
3229 controlled by @option{-Wswitch} into errors.  This switch takes a
3230 negative form, to be used to negate @option{-Werror} for specific
3231 warnings; for example @option{-Wno-error=switch} makes
3232 @option{-Wswitch} warnings not be errors, even when @option{-Werror}
3233 is in effect.
3235 The warning message for each controllable warning includes the
3236 option that controls the warning.  That option can then be used with
3237 @option{-Werror=} and @option{-Wno-error=} as described above.
3238 (Printing of the option in the warning message can be disabled using the
3239 @option{-fno-diagnostics-show-option} flag.)
3241 Note that specifying @option{-Werror=}@var{foo} automatically implies
3242 @option{-W}@var{foo}.  However, @option{-Wno-error=}@var{foo} does not
3243 imply anything.
3245 @item -Wfatal-errors
3246 @opindex Wfatal-errors
3247 @opindex Wno-fatal-errors
3248 This option causes the compiler to abort compilation on the first error
3249 occurred rather than trying to keep going and printing further error
3250 messages.
3252 @end table
3254 You can request many specific warnings with options beginning with
3255 @samp{-W}, for example @option{-Wimplicit} to request warnings on
3256 implicit declarations.  Each of these specific warning options also
3257 has a negative form beginning @samp{-Wno-} to turn off warnings; for
3258 example, @option{-Wno-implicit}.  This manual lists only one of the
3259 two forms, whichever is not the default.  For further
3260 language-specific options also refer to @ref{C++ Dialect Options} and
3261 @ref{Objective-C and Objective-C++ Dialect Options}.
3263 Some options, such as @option{-Wall} and @option{-Wextra}, turn on other
3264 options, such as @option{-Wunused}, which may turn on further options,
3265 such as @option{-Wunused-value}. The combined effect of positive and
3266 negative forms is that more specific options have priority over less
3267 specific ones, independently of their position in the command-line. For
3268 options of the same specificity, the last one takes effect. Options
3269 enabled or disabled via pragmas (@pxref{Diagnostic Pragmas}) take effect
3270 as if they appeared at the end of the command-line.
3272 When an unrecognized warning option is requested (e.g.,
3273 @option{-Wunknown-warning}), GCC emits a diagnostic stating
3274 that the option is not recognized.  However, if the @option{-Wno-} form
3275 is used, the behavior is slightly different: no diagnostic is
3276 produced for @option{-Wno-unknown-warning} unless other diagnostics
3277 are being produced.  This allows the use of new @option{-Wno-} options
3278 with old compilers, but if something goes wrong, the compiler
3279 warns that an unrecognized option is present.
3281 @table @gcctabopt
3282 @item -Wpedantic
3283 @itemx -pedantic
3284 @opindex pedantic
3285 @opindex Wpedantic
3286 Issue all the warnings demanded by strict ISO C and ISO C++;
3287 reject all programs that use forbidden extensions, and some other
3288 programs that do not follow ISO C and ISO C++.  For ISO C, follows the
3289 version of the ISO C standard specified by any @option{-std} option used.
3291 Valid ISO C and ISO C++ programs should compile properly with or without
3292 this option (though a rare few require @option{-ansi} or a
3293 @option{-std} option specifying the required version of ISO C)@.  However,
3294 without this option, certain GNU extensions and traditional C and C++
3295 features are supported as well.  With this option, they are rejected.
3297 @option{-Wpedantic} does not cause warning messages for use of the
3298 alternate keywords whose names begin and end with @samp{__}.  Pedantic
3299 warnings are also disabled in the expression that follows
3300 @code{__extension__}.  However, only system header files should use
3301 these escape routes; application programs should avoid them.
3302 @xref{Alternate Keywords}.
3304 Some users try to use @option{-Wpedantic} to check programs for strict ISO
3305 C conformance.  They soon find that it does not do quite what they want:
3306 it finds some non-ISO practices, but not all---only those for which
3307 ISO C @emph{requires} a diagnostic, and some others for which
3308 diagnostics have been added.
3310 A feature to report any failure to conform to ISO C might be useful in
3311 some instances, but would require considerable additional work and would
3312 be quite different from @option{-Wpedantic}.  We don't have plans to
3313 support such a feature in the near future.
3315 Where the standard specified with @option{-std} represents a GNU
3316 extended dialect of C, such as @samp{gnu90} or @samp{gnu99}, there is a
3317 corresponding @dfn{base standard}, the version of ISO C on which the GNU
3318 extended dialect is based.  Warnings from @option{-Wpedantic} are given
3319 where they are required by the base standard.  (It does not make sense
3320 for such warnings to be given only for features not in the specified GNU
3321 C dialect, since by definition the GNU dialects of C include all
3322 features the compiler supports with the given option, and there would be
3323 nothing to warn about.)
3325 @item -pedantic-errors
3326 @opindex pedantic-errors
3327 Give an error whenever the @dfn{base standard} (see @option{-Wpedantic})
3328 requires a diagnostic, in some cases where there is undefined behavior
3329 at compile-time and in some other cases that do not prevent compilation
3330 of programs that are valid according to the standard. This is not
3331 equivalent to @option{-Werror=pedantic}, since there are errors enabled
3332 by this option and not enabled by the latter and vice versa.
3334 @item -Wall
3335 @opindex Wall
3336 @opindex Wno-all
3337 This enables all the warnings about constructions that some users
3338 consider questionable, and that are easy to avoid (or modify to
3339 prevent the warning), even in conjunction with macros.  This also
3340 enables some language-specific warnings described in @ref{C++ Dialect
3341 Options} and @ref{Objective-C and Objective-C++ Dialect Options}.
3343 @option{-Wall} turns on the following warning flags:
3345 @gccoptlist{-Waddress   @gol
3346 -Warray-bounds @r{(only with} @option{-O2}@r{)}  @gol
3347 -Wc++11-compat  @gol
3348 -Wchar-subscripts  @gol
3349 -Wenum-compare @r{(in C/ObjC; this is on by default in C++)} @gol
3350 -Wimplicit-int @r{(C and Objective-C only)} @gol
3351 -Wimplicit-function-declaration @r{(C and Objective-C only)} @gol
3352 -Wcomment  @gol
3353 -Wformat   @gol
3354 -Wmain @r{(only for C/ObjC and unless} @option{-ffreestanding}@r{)}  @gol
3355 -Wmaybe-uninitialized @gol
3356 -Wmissing-braces @r{(only for C/ObjC)} @gol
3357 -Wnonnull  @gol
3358 -Wopenmp-simd @gol
3359 -Wparentheses  @gol
3360 -Wpointer-sign  @gol
3361 -Wreorder   @gol
3362 -Wreturn-type  @gol
3363 -Wsequence-point  @gol
3364 -Wsign-compare @r{(only in C++)}  @gol
3365 -Wstrict-aliasing  @gol
3366 -Wstrict-overflow=1  @gol
3367 -Wswitch  @gol
3368 -Wtrigraphs  @gol
3369 -Wuninitialized  @gol
3370 -Wunknown-pragmas  @gol
3371 -Wunused-function  @gol
3372 -Wunused-label     @gol
3373 -Wunused-value     @gol
3374 -Wunused-variable  @gol
3375 -Wvolatile-register-var @gol
3378 Note that some warning flags are not implied by @option{-Wall}.  Some of
3379 them warn about constructions that users generally do not consider
3380 questionable, but which occasionally you might wish to check for;
3381 others warn about constructions that are necessary or hard to avoid in
3382 some cases, and there is no simple way to modify the code to suppress
3383 the warning. Some of them are enabled by @option{-Wextra} but many of
3384 them must be enabled individually.
3386 @item -Wextra
3387 @opindex W
3388 @opindex Wextra
3389 @opindex Wno-extra
3390 This enables some extra warning flags that are not enabled by
3391 @option{-Wall}. (This option used to be called @option{-W}.  The older
3392 name is still supported, but the newer name is more descriptive.)
3394 @gccoptlist{-Wclobbered  @gol
3395 -Wempty-body  @gol
3396 -Wignored-qualifiers @gol
3397 -Wmissing-field-initializers  @gol
3398 -Wmissing-parameter-type @r{(C only)}  @gol
3399 -Wold-style-declaration @r{(C only)}  @gol
3400 -Woverride-init  @gol
3401 -Wsign-compare  @gol
3402 -Wtype-limits  @gol
3403 -Wuninitialized  @gol
3404 -Wunused-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)} @gol
3405 -Wunused-but-set-parameter @r{(only with} @option{-Wunused} @r{or} @option{-Wall}@r{)}  @gol
3408 The option @option{-Wextra} also prints warning messages for the
3409 following cases:
3411 @itemize @bullet
3413 @item
3414 A pointer is compared against integer zero with @samp{<}, @samp{<=},
3415 @samp{>}, or @samp{>=}.
3417 @item
3418 (C++ only) An enumerator and a non-enumerator both appear in a
3419 conditional expression.
3421 @item
3422 (C++ only) Ambiguous virtual bases.
3424 @item
3425 (C++ only) Subscripting an array that has been declared @samp{register}.
3427 @item
3428 (C++ only) Taking the address of a variable that has been declared
3429 @samp{register}.
3431 @item
3432 (C++ only) A base class is not initialized in a derived class's copy
3433 constructor.
3435 @end itemize
3437 @item -Wchar-subscripts
3438 @opindex Wchar-subscripts
3439 @opindex Wno-char-subscripts
3440 Warn if an array subscript has type @code{char}.  This is a common cause
3441 of error, as programmers often forget that this type is signed on some
3442 machines.
3443 This warning is enabled by @option{-Wall}.
3445 @item -Wcomment
3446 @opindex Wcomment
3447 @opindex Wno-comment
3448 Warn whenever a comment-start sequence @samp{/*} appears in a @samp{/*}
3449 comment, or whenever a Backslash-Newline appears in a @samp{//} comment.
3450 This warning is enabled by @option{-Wall}.
3452 @item -Wno-coverage-mismatch
3453 @opindex Wno-coverage-mismatch
3454 Warn if feedback profiles do not match when using the
3455 @option{-fprofile-use} option.
3456 If a source file is changed between compiling with @option{-fprofile-gen} and
3457 with @option{-fprofile-use}, the files with the profile feedback can fail
3458 to match the source file and GCC cannot use the profile feedback
3459 information.  By default, this warning is enabled and is treated as an
3460 error.  @option{-Wno-coverage-mismatch} can be used to disable the
3461 warning or @option{-Wno-error=coverage-mismatch} can be used to
3462 disable the error.  Disabling the error for this warning can result in
3463 poorly optimized code and is useful only in the
3464 case of very minor changes such as bug fixes to an existing code-base.
3465 Completely disabling the warning is not recommended.
3467 @item -Wno-cpp
3468 @r{(C, Objective-C, C++, Objective-C++ and Fortran only)}
3470 Suppress warning messages emitted by @code{#warning} directives.
3472 @item -Wdouble-promotion @r{(C, C++, Objective-C and Objective-C++ only)}
3473 @opindex Wdouble-promotion
3474 @opindex Wno-double-promotion
3475 Give a warning when a value of type @code{float} is implicitly
3476 promoted to @code{double}.  CPUs with a 32-bit ``single-precision''
3477 floating-point unit implement @code{float} in hardware, but emulate
3478 @code{double} in software.  On such a machine, doing computations
3479 using @code{double} values is much more expensive because of the
3480 overhead required for software emulation.
3482 It is easy to accidentally do computations with @code{double} because
3483 floating-point literals are implicitly of type @code{double}.  For
3484 example, in:
3485 @smallexample
3486 @group
3487 float area(float radius)
3489    return 3.14159 * radius * radius;
3491 @end group
3492 @end smallexample
3493 the compiler performs the entire computation with @code{double}
3494 because the floating-point literal is a @code{double}.
3496 @item -Wformat
3497 @itemx -Wformat=@var{n}
3498 @opindex Wformat
3499 @opindex Wno-format
3500 @opindex ffreestanding
3501 @opindex fno-builtin
3502 @opindex Wformat=
3503 Check calls to @code{printf} and @code{scanf}, etc., to make sure that
3504 the arguments supplied have types appropriate to the format string
3505 specified, and that the conversions specified in the format string make
3506 sense.  This includes standard functions, and others specified by format
3507 attributes (@pxref{Function Attributes}), in the @code{printf},
3508 @code{scanf}, @code{strftime} and @code{strfmon} (an X/Open extension,
3509 not in the C standard) families (or other target-specific families).
3510 Which functions are checked without format attributes having been
3511 specified depends on the standard version selected, and such checks of
3512 functions without the attribute specified are disabled by
3513 @option{-ffreestanding} or @option{-fno-builtin}.
3515 The formats are checked against the format features supported by GNU
3516 libc version 2.2.  These include all ISO C90 and C99 features, as well
3517 as features from the Single Unix Specification and some BSD and GNU
3518 extensions.  Other library implementations may not support all these
3519 features; GCC does not support warning about features that go beyond a
3520 particular library's limitations.  However, if @option{-Wpedantic} is used
3521 with @option{-Wformat}, warnings are given about format features not
3522 in the selected standard version (but not for @code{strfmon} formats,
3523 since those are not in any version of the C standard).  @xref{C Dialect
3524 Options,,Options Controlling C Dialect}.
3526 @table @gcctabopt
3527 @item -Wformat=1
3528 @itemx -Wformat
3529 @opindex Wformat
3530 @opindex Wformat=1
3531 Option @option{-Wformat} is equivalent to @option{-Wformat=1}, and
3532 @option{-Wno-format} is equivalent to @option{-Wformat=0}.  Since
3533 @option{-Wformat} also checks for null format arguments for several
3534 functions, @option{-Wformat} also implies @option{-Wnonnull}.  Some
3535 aspects of this level of format checking can be disabled by the
3536 options: @option{-Wno-format-contains-nul},
3537 @option{-Wno-format-extra-args}, and @option{-Wno-format-zero-length}.
3538 @option{-Wformat} is enabled by @option{-Wall}.
3540 @item -Wno-format-contains-nul
3541 @opindex Wno-format-contains-nul
3542 @opindex Wformat-contains-nul
3543 If @option{-Wformat} is specified, do not warn about format strings that
3544 contain NUL bytes.
3546 @item -Wno-format-extra-args
3547 @opindex Wno-format-extra-args
3548 @opindex Wformat-extra-args
3549 If @option{-Wformat} is specified, do not warn about excess arguments to a
3550 @code{printf} or @code{scanf} format function.  The C standard specifies
3551 that such arguments are ignored.
3553 Where the unused arguments lie between used arguments that are
3554 specified with @samp{$} operand number specifications, normally
3555 warnings are still given, since the implementation could not know what
3556 type to pass to @code{va_arg} to skip the unused arguments.  However,
3557 in the case of @code{scanf} formats, this option suppresses the
3558 warning if the unused arguments are all pointers, since the Single
3559 Unix Specification says that such unused arguments are allowed.
3561 @item -Wno-format-zero-length
3562 @opindex Wno-format-zero-length
3563 @opindex Wformat-zero-length
3564 If @option{-Wformat} is specified, do not warn about zero-length formats.
3565 The C standard specifies that zero-length formats are allowed.
3568 @item -Wformat=2
3569 @opindex Wformat=2
3570 Enable @option{-Wformat} plus additional format checks.  Currently
3571 equivalent to @option{-Wformat -Wformat-nonliteral -Wformat-security
3572 -Wformat-signedness -Wformat-y2k}.
3574 @item -Wformat-nonliteral
3575 @opindex Wformat-nonliteral
3576 @opindex Wno-format-nonliteral
3577 If @option{-Wformat} is specified, also warn if the format string is not a
3578 string literal and so cannot be checked, unless the format function
3579 takes its format arguments as a @code{va_list}.
3581 @item -Wformat-security
3582 @opindex Wformat-security
3583 @opindex Wno-format-security
3584 If @option{-Wformat} is specified, also warn about uses of format
3585 functions that represent possible security problems.  At present, this
3586 warns about calls to @code{printf} and @code{scanf} functions where the
3587 format string is not a string literal and there are no format arguments,
3588 as in @code{printf (foo);}.  This may be a security hole if the format
3589 string came from untrusted input and contains @samp{%n}.  (This is
3590 currently a subset of what @option{-Wformat-nonliteral} warns about, but
3591 in future warnings may be added to @option{-Wformat-security} that are not
3592 included in @option{-Wformat-nonliteral}.)
3594 @item -Wformat-signedness
3595 @opindex Wformat-signedness
3596 @opindex Wno-format-signedness
3597 If @option{-Wformat} is specified, also warn if the format string
3598 requires an unsigned argument and the argument is signed and vice versa.
3600 @item -Wformat-y2k
3601 @opindex Wformat-y2k
3602 @opindex Wno-format-y2k
3603 If @option{-Wformat} is specified, also warn about @code{strftime}
3604 formats that may yield only a two-digit year.
3605 @end table
3607 @item -Wnonnull
3608 @opindex Wnonnull
3609 @opindex Wno-nonnull
3610 Warn about passing a null pointer for arguments marked as
3611 requiring a non-null value by the @code{nonnull} function attribute.
3613 @option{-Wnonnull} is included in @option{-Wall} and @option{-Wformat}.  It
3614 can be disabled with the @option{-Wno-nonnull} option.
3616 @item -Winit-self @r{(C, C++, Objective-C and Objective-C++ only)}
3617 @opindex Winit-self
3618 @opindex Wno-init-self
3619 Warn about uninitialized variables that are initialized with themselves.
3620 Note this option can only be used with the @option{-Wuninitialized} option.
3622 For example, GCC warns about @code{i} being uninitialized in the
3623 following snippet only when @option{-Winit-self} has been specified:
3624 @smallexample
3625 @group
3626 int f()
3628   int i = i;
3629   return i;
3631 @end group
3632 @end smallexample
3634 This warning is enabled by @option{-Wall} in C++.
3636 @item -Wimplicit-int @r{(C and Objective-C only)}
3637 @opindex Wimplicit-int
3638 @opindex Wno-implicit-int
3639 Warn when a declaration does not specify a type.
3640 This warning is enabled by @option{-Wall}.
3642 @item -Wimplicit-function-declaration @r{(C and Objective-C only)}
3643 @opindex Wimplicit-function-declaration
3644 @opindex Wno-implicit-function-declaration
3645 Give a warning whenever a function is used before being declared. In
3646 C99 mode (@option{-std=c99} or @option{-std=gnu99}), this warning is
3647 enabled by default and it is made into an error by
3648 @option{-pedantic-errors}. This warning is also enabled by
3649 @option{-Wall}.
3651 @item -Wimplicit @r{(C and Objective-C only)}
3652 @opindex Wimplicit
3653 @opindex Wno-implicit
3654 Same as @option{-Wimplicit-int} and @option{-Wimplicit-function-declaration}.
3655 This warning is enabled by @option{-Wall}.
3657 @item -Wignored-qualifiers @r{(C and C++ only)}
3658 @opindex Wignored-qualifiers
3659 @opindex Wno-ignored-qualifiers
3660 Warn if the return type of a function has a type qualifier
3661 such as @code{const}.  For ISO C such a type qualifier has no effect,
3662 since the value returned by a function is not an lvalue.
3663 For C++, the warning is only emitted for scalar types or @code{void}.
3664 ISO C prohibits qualified @code{void} return types on function
3665 definitions, so such return types always receive a warning
3666 even without this option.
3668 This warning is also enabled by @option{-Wextra}.
3670 @item -Wmain
3671 @opindex Wmain
3672 @opindex Wno-main
3673 Warn if the type of @samp{main} is suspicious.  @samp{main} should be
3674 a function with external linkage, returning int, taking either zero
3675 arguments, two, or three arguments of appropriate types.  This warning
3676 is enabled by default in C++ and is enabled by either @option{-Wall}
3677 or @option{-Wpedantic}.
3679 @item -Wmissing-braces
3680 @opindex Wmissing-braces
3681 @opindex Wno-missing-braces
3682 Warn if an aggregate or union initializer is not fully bracketed.  In
3683 the following example, the initializer for @samp{a} is not fully
3684 bracketed, but that for @samp{b} is fully bracketed.  This warning is
3685 enabled by @option{-Wall} in C.
3687 @smallexample
3688 int a[2][2] = @{ 0, 1, 2, 3 @};
3689 int b[2][2] = @{ @{ 0, 1 @}, @{ 2, 3 @} @};
3690 @end smallexample
3692 This warning is enabled by @option{-Wall}.
3694 @item -Wmissing-include-dirs @r{(C, C++, Objective-C and Objective-C++ only)}
3695 @opindex Wmissing-include-dirs
3696 @opindex Wno-missing-include-dirs
3697 Warn if a user-supplied include directory does not exist.
3699 @item -Wparentheses
3700 @opindex Wparentheses
3701 @opindex Wno-parentheses
3702 Warn if parentheses are omitted in certain contexts, such
3703 as when there is an assignment in a context where a truth value
3704 is expected, or when operators are nested whose precedence people
3705 often get confused about.
3707 Also warn if a comparison like @samp{x<=y<=z} appears; this is
3708 equivalent to @samp{(x<=y ? 1 : 0) <= z}, which is a different
3709 interpretation from that of ordinary mathematical notation.
3711 Also warn about constructions where there may be confusion to which
3712 @code{if} statement an @code{else} branch belongs.  Here is an example of
3713 such a case:
3715 @smallexample
3716 @group
3718   if (a)
3719     if (b)
3720       foo ();
3721   else
3722     bar ();
3724 @end group
3725 @end smallexample
3727 In C/C++, every @code{else} branch belongs to the innermost possible
3728 @code{if} statement, which in this example is @code{if (b)}.  This is
3729 often not what the programmer expected, as illustrated in the above
3730 example by indentation the programmer chose.  When there is the
3731 potential for this confusion, GCC issues a warning when this flag
3732 is specified.  To eliminate the warning, add explicit braces around
3733 the innermost @code{if} statement so there is no way the @code{else}
3734 can belong to the enclosing @code{if}.  The resulting code
3735 looks like this:
3737 @smallexample
3738 @group
3740   if (a)
3741     @{
3742       if (b)
3743         foo ();
3744       else
3745         bar ();
3746     @}
3748 @end group
3749 @end smallexample
3751 Also warn for dangerous uses of the GNU extension to
3752 @code{?:} with omitted middle operand. When the condition
3753 in the @code{?}: operator is a boolean expression, the omitted value is
3754 always 1.  Often programmers expect it to be a value computed
3755 inside the conditional expression instead.
3757 This warning is enabled by @option{-Wall}.
3759 @item -Wsequence-point
3760 @opindex Wsequence-point
3761 @opindex Wno-sequence-point
3762 Warn about code that may have undefined semantics because of violations
3763 of sequence point rules in the C and C++ standards.
3765 The C and C++ standards define the order in which expressions in a C/C++
3766 program are evaluated in terms of @dfn{sequence points}, which represent
3767 a partial ordering between the execution of parts of the program: those
3768 executed before the sequence point, and those executed after it.  These
3769 occur after the evaluation of a full expression (one which is not part
3770 of a larger expression), after the evaluation of the first operand of a
3771 @code{&&}, @code{||}, @code{? :} or @code{,} (comma) operator, before a
3772 function is called (but after the evaluation of its arguments and the
3773 expression denoting the called function), and in certain other places.
3774 Other than as expressed by the sequence point rules, the order of
3775 evaluation of subexpressions of an expression is not specified.  All
3776 these rules describe only a partial order rather than a total order,
3777 since, for example, if two functions are called within one expression
3778 with no sequence point between them, the order in which the functions
3779 are called is not specified.  However, the standards committee have
3780 ruled that function calls do not overlap.
3782 It is not specified when between sequence points modifications to the
3783 values of objects take effect.  Programs whose behavior depends on this
3784 have undefined behavior; the C and C++ standards specify that ``Between
3785 the previous and next sequence point an object shall have its stored
3786 value modified at most once by the evaluation of an expression.
3787 Furthermore, the prior value shall be read only to determine the value
3788 to be stored.''.  If a program breaks these rules, the results on any
3789 particular implementation are entirely unpredictable.
3791 Examples of code with undefined behavior are @code{a = a++;}, @code{a[n]
3792 = b[n++]} and @code{a[i++] = i;}.  Some more complicated cases are not
3793 diagnosed by this option, and it may give an occasional false positive
3794 result, but in general it has been found fairly effective at detecting
3795 this sort of problem in programs.
3797 The standard is worded confusingly, therefore there is some debate
3798 over the precise meaning of the sequence point rules in subtle cases.
3799 Links to discussions of the problem, including proposed formal
3800 definitions, may be found on the GCC readings page, at
3801 @uref{http://gcc.gnu.org/@/readings.html}.
3803 This warning is enabled by @option{-Wall} for C and C++.
3805 @item -Wno-return-local-addr
3806 @opindex Wno-return-local-addr
3807 @opindex Wreturn-local-addr
3808 Do not warn about returning a pointer (or in C++, a reference) to a
3809 variable that goes out of scope after the function returns.
3811 @item -Wreturn-type
3812 @opindex Wreturn-type
3813 @opindex Wno-return-type
3814 Warn whenever a function is defined with a return type that defaults
3815 to @code{int}.  Also warn about any @code{return} statement with no
3816 return value in a function whose return type is not @code{void}
3817 (falling off the end of the function body is considered returning
3818 without a value), and about a @code{return} statement with an
3819 expression in a function whose return type is @code{void}.
3821 For C++, a function without return type always produces a diagnostic
3822 message, even when @option{-Wno-return-type} is specified.  The only
3823 exceptions are @samp{main} and functions defined in system headers.
3825 This warning is enabled by @option{-Wall}.
3827 @item -Wswitch
3828 @opindex Wswitch
3829 @opindex Wno-switch
3830 Warn whenever a @code{switch} statement has an index of enumerated type
3831 and lacks a @code{case} for one or more of the named codes of that
3832 enumeration.  (The presence of a @code{default} label prevents this
3833 warning.)  @code{case} labels outside the enumeration range also
3834 provoke warnings when this option is used (even if there is a
3835 @code{default} label).
3836 This warning is enabled by @option{-Wall}.
3838 @item -Wswitch-default
3839 @opindex Wswitch-default
3840 @opindex Wno-switch-default
3841 Warn whenever a @code{switch} statement does not have a @code{default}
3842 case.
3844 @item -Wswitch-enum
3845 @opindex Wswitch-enum
3846 @opindex Wno-switch-enum
3847 Warn whenever a @code{switch} statement has an index of enumerated type
3848 and lacks a @code{case} for one or more of the named codes of that
3849 enumeration.  @code{case} labels outside the enumeration range also
3850 provoke warnings when this option is used.  The only difference
3851 between @option{-Wswitch} and this option is that this option gives a
3852 warning about an omitted enumeration code even if there is a
3853 @code{default} label.
3855 @item -Wswitch-bool
3856 @opindex Wswitch-bool
3857 @opindex Wno-switch-bool
3858 Warn whenever a @code{switch} statement has an index of boolean type.
3859 It is possible to suppress this warning by casting the controlling
3860 expression to a type other than @code{bool}.  For example:
3861 @smallexample
3862 @group
3863 switch ((int) (a == 4))
3864   @{
3865   @dots{}
3866   @}
3867 @end group
3868 @end smallexample
3869 This warning is enabled by default for C and C++ programs.
3871 @item -Wsync-nand @r{(C and C++ only)}
3872 @opindex Wsync-nand
3873 @opindex Wno-sync-nand
3874 Warn when @code{__sync_fetch_and_nand} and @code{__sync_nand_and_fetch}
3875 built-in functions are used.  These functions changed semantics in GCC 4.4.
3877 @item -Wtrigraphs
3878 @opindex Wtrigraphs
3879 @opindex Wno-trigraphs
3880 Warn if any trigraphs are encountered that might change the meaning of
3881 the program (trigraphs within comments are not warned about).
3882 This warning is enabled by @option{-Wall}.
3884 @item -Wunused-but-set-parameter
3885 @opindex Wunused-but-set-parameter
3886 @opindex Wno-unused-but-set-parameter
3887 Warn whenever a function parameter is assigned to, but otherwise unused
3888 (aside from its declaration).
3890 To suppress this warning use the @samp{unused} attribute
3891 (@pxref{Variable Attributes}).
3893 This warning is also enabled by @option{-Wunused} together with
3894 @option{-Wextra}.
3896 @item -Wunused-but-set-variable
3897 @opindex Wunused-but-set-variable
3898 @opindex Wno-unused-but-set-variable
3899 Warn whenever a local variable is assigned to, but otherwise unused
3900 (aside from its declaration).
3901 This warning is enabled by @option{-Wall}.
3903 To suppress this warning use the @samp{unused} attribute
3904 (@pxref{Variable Attributes}).
3906 This warning is also enabled by @option{-Wunused}, which is enabled
3907 by @option{-Wall}.
3909 @item -Wunused-function
3910 @opindex Wunused-function
3911 @opindex Wno-unused-function
3912 Warn whenever a static function is declared but not defined or a
3913 non-inline static function is unused.
3914 This warning is enabled by @option{-Wall}.
3916 @item -Wunused-label
3917 @opindex Wunused-label
3918 @opindex Wno-unused-label
3919 Warn whenever a label is declared but not used.
3920 This warning is enabled by @option{-Wall}.
3922 To suppress this warning use the @samp{unused} attribute
3923 (@pxref{Variable Attributes}).
3925 @item -Wunused-local-typedefs @r{(C, Objective-C, C++ and Objective-C++ only)}
3926 @opindex Wunused-local-typedefs
3927 Warn when a typedef locally defined in a function is not used.
3928 This warning is enabled by @option{-Wall}.
3930 @item -Wunused-parameter
3931 @opindex Wunused-parameter
3932 @opindex Wno-unused-parameter
3933 Warn whenever a function parameter is unused aside from its declaration.
3935 To suppress this warning use the @samp{unused} attribute
3936 (@pxref{Variable Attributes}).
3938 @item -Wno-unused-result
3939 @opindex Wunused-result
3940 @opindex Wno-unused-result
3941 Do not warn if a caller of a function marked with attribute
3942 @code{warn_unused_result} (@pxref{Function Attributes}) does not use
3943 its return value. The default is @option{-Wunused-result}.
3945 @item -Wunused-variable
3946 @opindex Wunused-variable
3947 @opindex Wno-unused-variable
3948 Warn whenever a local variable or non-constant static variable is unused
3949 aside from its declaration.
3950 This warning is enabled by @option{-Wall}.
3952 To suppress this warning use the @samp{unused} attribute
3953 (@pxref{Variable Attributes}).
3955 @item -Wunused-value
3956 @opindex Wunused-value
3957 @opindex Wno-unused-value
3958 Warn whenever a statement computes a result that is explicitly not
3959 used. To suppress this warning cast the unused expression to
3960 @samp{void}. This includes an expression-statement or the left-hand
3961 side of a comma expression that contains no side effects. For example,
3962 an expression such as @samp{x[i,j]} causes a warning, while
3963 @samp{x[(void)i,j]} does not.
3965 This warning is enabled by @option{-Wall}.
3967 @item -Wunused
3968 @opindex Wunused
3969 @opindex Wno-unused
3970 All the above @option{-Wunused} options combined.
3972 In order to get a warning about an unused function parameter, you must
3973 either specify @option{-Wextra -Wunused} (note that @option{-Wall} implies
3974 @option{-Wunused}), or separately specify @option{-Wunused-parameter}.
3976 @item -Wuninitialized
3977 @opindex Wuninitialized
3978 @opindex Wno-uninitialized
3979 Warn if an automatic variable is used without first being initialized
3980 or if a variable may be clobbered by a @code{setjmp} call. In C++,
3981 warn if a non-static reference or non-static @samp{const} member
3982 appears in a class without constructors.
3984 If you want to warn about code that uses the uninitialized value of the
3985 variable in its own initializer, use the @option{-Winit-self} option.
3987 These warnings occur for individual uninitialized or clobbered
3988 elements of structure, union or array variables as well as for
3989 variables that are uninitialized or clobbered as a whole.  They do
3990 not occur for variables or elements declared @code{volatile}.  Because
3991 these warnings depend on optimization, the exact variables or elements
3992 for which there are warnings depends on the precise optimization
3993 options and version of GCC used.
3995 Note that there may be no warning about a variable that is used only
3996 to compute a value that itself is never used, because such
3997 computations may be deleted by data flow analysis before the warnings
3998 are printed.
4000 @item -Wmaybe-uninitialized
4001 @opindex Wmaybe-uninitialized
4002 @opindex Wno-maybe-uninitialized
4003 For an automatic variable, if there exists a path from the function
4004 entry to a use of the variable that is initialized, but there exist
4005 some other paths for which the variable is not initialized, the compiler
4006 emits a warning if it cannot prove the uninitialized paths are not
4007 executed at run time. These warnings are made optional because GCC is
4008 not smart enough to see all the reasons why the code might be correct
4009 in spite of appearing to have an error.  Here is one example of how
4010 this can happen:
4012 @smallexample
4013 @group
4015   int x;
4016   switch (y)
4017     @{
4018     case 1: x = 1;
4019       break;
4020     case 2: x = 4;
4021       break;
4022     case 3: x = 5;
4023     @}
4024   foo (x);
4026 @end group
4027 @end smallexample
4029 @noindent
4030 If the value of @code{y} is always 1, 2 or 3, then @code{x} is
4031 always initialized, but GCC doesn't know this. To suppress the
4032 warning, you need to provide a default case with assert(0) or
4033 similar code.
4035 @cindex @code{longjmp} warnings
4036 This option also warns when a non-volatile automatic variable might be
4037 changed by a call to @code{longjmp}.  These warnings as well are possible
4038 only in optimizing compilation.
4040 The compiler sees only the calls to @code{setjmp}.  It cannot know
4041 where @code{longjmp} will be called; in fact, a signal handler could
4042 call it at any point in the code.  As a result, you may get a warning
4043 even when there is in fact no problem because @code{longjmp} cannot
4044 in fact be called at the place that would cause a problem.
4046 Some spurious warnings can be avoided if you declare all the functions
4047 you use that never return as @code{noreturn}.  @xref{Function
4048 Attributes}.
4050 This warning is enabled by @option{-Wall} or @option{-Wextra}.
4052 @item -Wunknown-pragmas
4053 @opindex Wunknown-pragmas
4054 @opindex Wno-unknown-pragmas
4055 @cindex warning for unknown pragmas
4056 @cindex unknown pragmas, warning
4057 @cindex pragmas, warning of unknown
4058 Warn when a @code{#pragma} directive is encountered that is not understood by 
4059 GCC@.  If this command-line option is used, warnings are even issued
4060 for unknown pragmas in system header files.  This is not the case if
4061 the warnings are only enabled by the @option{-Wall} command-line option.
4063 @item -Wno-pragmas
4064 @opindex Wno-pragmas
4065 @opindex Wpragmas
4066 Do not warn about misuses of pragmas, such as incorrect parameters,
4067 invalid syntax, or conflicts between pragmas.  See also
4068 @option{-Wunknown-pragmas}.
4070 @item -Wstrict-aliasing
4071 @opindex Wstrict-aliasing
4072 @opindex Wno-strict-aliasing
4073 This option is only active when @option{-fstrict-aliasing} is active.
4074 It warns about code that might break the strict aliasing rules that the
4075 compiler is using for optimization.  The warning does not catch all
4076 cases, but does attempt to catch the more common pitfalls.  It is
4077 included in @option{-Wall}.
4078 It is equivalent to @option{-Wstrict-aliasing=3}
4080 @item -Wstrict-aliasing=n
4081 @opindex Wstrict-aliasing=n
4082 This option is only active when @option{-fstrict-aliasing} is active.
4083 It warns about code that might break the strict aliasing rules that the
4084 compiler is using for optimization.
4085 Higher levels correspond to higher accuracy (fewer false positives).
4086 Higher levels also correspond to more effort, similar to the way @option{-O} 
4087 works.
4088 @option{-Wstrict-aliasing} is equivalent to @option{-Wstrict-aliasing=3}.
4090 Level 1: Most aggressive, quick, least accurate.
4091 Possibly useful when higher levels
4092 do not warn but @option{-fstrict-aliasing} still breaks the code, as it has very few
4093 false negatives.  However, it has many false positives.
4094 Warns for all pointer conversions between possibly incompatible types,
4095 even if never dereferenced.  Runs in the front end only.
4097 Level 2: Aggressive, quick, not too precise.
4098 May still have many false positives (not as many as level 1 though),
4099 and few false negatives (but possibly more than level 1).
4100 Unlike level 1, it only warns when an address is taken.  Warns about
4101 incomplete types.  Runs in the front end only.
4103 Level 3 (default for @option{-Wstrict-aliasing}):
4104 Should have very few false positives and few false
4105 negatives.  Slightly slower than levels 1 or 2 when optimization is enabled.
4106 Takes care of the common pun+dereference pattern in the front end:
4107 @code{*(int*)&some_float}.
4108 If optimization is enabled, it also runs in the back end, where it deals
4109 with multiple statement cases using flow-sensitive points-to information.
4110 Only warns when the converted pointer is dereferenced.
4111 Does not warn about incomplete types.
4113 @item -Wstrict-overflow
4114 @itemx -Wstrict-overflow=@var{n}
4115 @opindex Wstrict-overflow
4116 @opindex Wno-strict-overflow
4117 This option is only active when @option{-fstrict-overflow} is active.
4118 It warns about cases where the compiler optimizes based on the
4119 assumption that signed overflow does not occur.  Note that it does not
4120 warn about all cases where the code might overflow: it only warns
4121 about cases where the compiler implements some optimization.  Thus
4122 this warning depends on the optimization level.
4124 An optimization that assumes that signed overflow does not occur is
4125 perfectly safe if the values of the variables involved are such that
4126 overflow never does, in fact, occur.  Therefore this warning can
4127 easily give a false positive: a warning about code that is not
4128 actually a problem.  To help focus on important issues, several
4129 warning levels are defined.  No warnings are issued for the use of
4130 undefined signed overflow when estimating how many iterations a loop
4131 requires, in particular when determining whether a loop will be
4132 executed at all.
4134 @table @gcctabopt
4135 @item -Wstrict-overflow=1
4136 Warn about cases that are both questionable and easy to avoid.  For
4137 example,  with @option{-fstrict-overflow}, the compiler simplifies
4138 @code{x + 1 > x} to @code{1}.  This level of
4139 @option{-Wstrict-overflow} is enabled by @option{-Wall}; higher levels
4140 are not, and must be explicitly requested.
4142 @item -Wstrict-overflow=2
4143 Also warn about other cases where a comparison is simplified to a
4144 constant.  For example: @code{abs (x) >= 0}.  This can only be
4145 simplified when @option{-fstrict-overflow} is in effect, because
4146 @code{abs (INT_MIN)} overflows to @code{INT_MIN}, which is less than
4147 zero.  @option{-Wstrict-overflow} (with no level) is the same as
4148 @option{-Wstrict-overflow=2}.
4150 @item -Wstrict-overflow=3
4151 Also warn about other cases where a comparison is simplified.  For
4152 example: @code{x + 1 > 1} is simplified to @code{x > 0}.
4154 @item -Wstrict-overflow=4
4155 Also warn about other simplifications not covered by the above cases.
4156 For example: @code{(x * 10) / 5} is simplified to @code{x * 2}.
4158 @item -Wstrict-overflow=5
4159 Also warn about cases where the compiler reduces the magnitude of a
4160 constant involved in a comparison.  For example: @code{x + 2 > y} is
4161 simplified to @code{x + 1 >= y}.  This is reported only at the
4162 highest warning level because this simplification applies to many
4163 comparisons, so this warning level gives a very large number of
4164 false positives.
4165 @end table
4167 @item -Wsuggest-attribute=@r{[}pure@r{|}const@r{|}noreturn@r{|}format@r{]}
4168 @opindex Wsuggest-attribute=
4169 @opindex Wno-suggest-attribute=
4170 Warn for cases where adding an attribute may be beneficial. The
4171 attributes currently supported are listed below.
4173 @table @gcctabopt
4174 @item -Wsuggest-attribute=pure
4175 @itemx -Wsuggest-attribute=const
4176 @itemx -Wsuggest-attribute=noreturn
4177 @opindex Wsuggest-attribute=pure
4178 @opindex Wno-suggest-attribute=pure
4179 @opindex Wsuggest-attribute=const
4180 @opindex Wno-suggest-attribute=const
4181 @opindex Wsuggest-attribute=noreturn
4182 @opindex Wno-suggest-attribute=noreturn
4184 Warn about functions that might be candidates for attributes
4185 @code{pure}, @code{const} or @code{noreturn}.  The compiler only warns for
4186 functions visible in other compilation units or (in the case of @code{pure} and
4187 @code{const}) if it cannot prove that the function returns normally. A function
4188 returns normally if it doesn't contain an infinite loop or return abnormally
4189 by throwing, calling @code{abort()} or trapping.  This analysis requires option
4190 @option{-fipa-pure-const}, which is enabled by default at @option{-O} and
4191 higher.  Higher optimization levels improve the accuracy of the analysis.
4193 @item -Wsuggest-attribute=format
4194 @itemx -Wmissing-format-attribute
4195 @opindex Wsuggest-attribute=format
4196 @opindex Wmissing-format-attribute
4197 @opindex Wno-suggest-attribute=format
4198 @opindex Wno-missing-format-attribute
4199 @opindex Wformat
4200 @opindex Wno-format
4202 Warn about function pointers that might be candidates for @code{format}
4203 attributes.  Note these are only possible candidates, not absolute ones.
4204 GCC guesses that function pointers with @code{format} attributes that
4205 are used in assignment, initialization, parameter passing or return
4206 statements should have a corresponding @code{format} attribute in the
4207 resulting type.  I.e.@: the left-hand side of the assignment or
4208 initialization, the type of the parameter variable, or the return type
4209 of the containing function respectively should also have a @code{format}
4210 attribute to avoid the warning.
4212 GCC also warns about function definitions that might be
4213 candidates for @code{format} attributes.  Again, these are only
4214 possible candidates.  GCC guesses that @code{format} attributes
4215 might be appropriate for any function that calls a function like
4216 @code{vprintf} or @code{vscanf}, but this might not always be the
4217 case, and some functions for which @code{format} attributes are
4218 appropriate may not be detected.
4219 @end table
4221 @item -Wsuggest-final-types
4222 @opindex Wno-suggest-final-types
4223 @opindex Wsuggest-final-types
4224 Warn about types with virtual methods where code quality would be improved
4225 if the type was declared with C++11 final specifier, or, if possible,
4226 declared in anonymous namespace. This allows GCC to devritualize more aggressively
4227 the polymorphic calls. This warning is more effective with link time optimization,
4228 where the information about the class hiearchy graph is more complete.
4230 @item -Wsuggest-final-methods
4231 @opindex Wno-suggest-final-methods
4232 @opindex Wsuggest-final-methods
4233 Warn about virtual methods where code quality would be improved if the method
4234 was declared with C++11 final specifier, or, if possible, its type was declared
4235 in the anonymous namespace or with final specifier. This warning is more
4236 effective with link time optimization, where the information about the class
4237 hiearchy graph is more complete. It is recommended to first consider suggestins
4238 of @option{-Wsuggest-final-types} and then rebuild with new annotations.
4240 @item -Warray-bounds
4241 @opindex Wno-array-bounds
4242 @opindex Warray-bounds
4243 This option is only active when @option{-ftree-vrp} is active
4244 (default for @option{-O2} and above). It warns about subscripts to arrays
4245 that are always out of bounds. This warning is enabled by @option{-Wall}.
4247 @item -Wbool-compare
4248 @opindex Wno-bool-compare
4249 @opindex Wbool-compare
4250 Warn about boolean expression compared with an integer value different from
4251 @code{true}/@code{false}.  For instance, the following comparison is
4252 always false:
4253 @smallexample
4254 int n = 5;
4255 @dots{}
4256 if ((n > 1) == 2) @{ @dots{} @}
4257 @end smallexample
4258 This warning is enabled by @option{-Wall}.
4260 @item -Wno-discarded-qualifiers @r{(C and Objective-C only)}
4261 @opindex Wno-discarded-qualifiers
4262 @opindex Wdiscarded-qualifiers
4263 Do not warn if type qualifiers on pointers are being discarded.
4264 Typically, the compiler will warn if a @code{const char *} variable is
4265 passed to a function that takes @code{char *} parameter.  This option
4266 can be used to suppress such a warning.
4268 @item -Wno-incompatible-pointer-types @r{(C and Objective-C only)}
4269 @opindex Wno-incompatible-pointer-types
4270 @opindex Wincompatible-pointer-types
4271 Do not warn when there is a conversion between pointers that have incompatible
4272 types.  This warning is for cases not covered by @option{-Wno-pointer-sign},
4273 which warns for pointer argument passing or assignment with different signedness
4275 @item -Wno-int-conversion @r{(C and Objective-C only)}
4276 @opindex Wno-int-conversion
4277 @opindex Wint-conversion
4278 Do not warn about incompatible integer to pointer and pointer to integer
4279 conversions.  This warning is about implicit conversions; for explicit
4280 conversions the warnings @option{-Wno-int-to-pointer-cast} and
4281 @option{-Wno-pointer-to-int-cast} may be used.
4283 @item -Wno-div-by-zero
4284 @opindex Wno-div-by-zero
4285 @opindex Wdiv-by-zero
4286 Do not warn about compile-time integer division by zero.  Floating-point
4287 division by zero is not warned about, as it can be a legitimate way of
4288 obtaining infinities and NaNs.
4290 @item -Wsystem-headers
4291 @opindex Wsystem-headers
4292 @opindex Wno-system-headers
4293 @cindex warnings from system headers
4294 @cindex system headers, warnings from
4295 Print warning messages for constructs found in system header files.
4296 Warnings from system headers are normally suppressed, on the assumption
4297 that they usually do not indicate real problems and would only make the
4298 compiler output harder to read.  Using this command-line option tells
4299 GCC to emit warnings from system headers as if they occurred in user
4300 code.  However, note that using @option{-Wall} in conjunction with this
4301 option does @emph{not} warn about unknown pragmas in system
4302 headers---for that, @option{-Wunknown-pragmas} must also be used.
4304 @item -Wtrampolines
4305 @opindex Wtrampolines
4306 @opindex Wno-trampolines
4307 Warn about trampolines generated for pointers to nested functions.
4308 A trampoline is a small piece of data or code that is created at run
4309 time on the stack when the address of a nested function is taken, and is
4310 used to call the nested function indirectly.  For some targets, it is
4311 made up of data only and thus requires no special treatment.  But, for
4312 most targets, it is made up of code and thus requires the stack to be
4313 made executable in order for the program to work properly.
4315 @item -Wfloat-equal
4316 @opindex Wfloat-equal
4317 @opindex Wno-float-equal
4318 Warn if floating-point values are used in equality comparisons.
4320 The idea behind this is that sometimes it is convenient (for the
4321 programmer) to consider floating-point values as approximations to
4322 infinitely precise real numbers.  If you are doing this, then you need
4323 to compute (by analyzing the code, or in some other way) the maximum or
4324 likely maximum error that the computation introduces, and allow for it
4325 when performing comparisons (and when producing output, but that's a
4326 different problem).  In particular, instead of testing for equality, you
4327 should check to see whether the two values have ranges that overlap; and
4328 this is done with the relational operators, so equality comparisons are
4329 probably mistaken.
4331 @item -Wtraditional @r{(C and Objective-C only)}
4332 @opindex Wtraditional
4333 @opindex Wno-traditional
4334 Warn about certain constructs that behave differently in traditional and
4335 ISO C@.  Also warn about ISO C constructs that have no traditional C
4336 equivalent, and/or problematic constructs that should be avoided.
4338 @itemize @bullet
4339 @item
4340 Macro parameters that appear within string literals in the macro body.
4341 In traditional C macro replacement takes place within string literals,
4342 but in ISO C it does not.
4344 @item
4345 In traditional C, some preprocessor directives did not exist.
4346 Traditional preprocessors only considered a line to be a directive
4347 if the @samp{#} appeared in column 1 on the line.  Therefore
4348 @option{-Wtraditional} warns about directives that traditional C
4349 understands but ignores because the @samp{#} does not appear as the
4350 first character on the line.  It also suggests you hide directives like
4351 @samp{#pragma} not understood by traditional C by indenting them.  Some
4352 traditional implementations do not recognize @samp{#elif}, so this option
4353 suggests avoiding it altogether.
4355 @item
4356 A function-like macro that appears without arguments.
4358 @item
4359 The unary plus operator.
4361 @item
4362 The @samp{U} integer constant suffix, or the @samp{F} or @samp{L} floating-point
4363 constant suffixes.  (Traditional C does support the @samp{L} suffix on integer
4364 constants.)  Note, these suffixes appear in macros defined in the system
4365 headers of most modern systems, e.g.@: the @samp{_MIN}/@samp{_MAX} macros in @code{<limits.h>}.
4366 Use of these macros in user code might normally lead to spurious
4367 warnings, however GCC's integrated preprocessor has enough context to
4368 avoid warning in these cases.
4370 @item
4371 A function declared external in one block and then used after the end of
4372 the block.
4374 @item
4375 A @code{switch} statement has an operand of type @code{long}.
4377 @item
4378 A non-@code{static} function declaration follows a @code{static} one.
4379 This construct is not accepted by some traditional C compilers.
4381 @item
4382 The ISO type of an integer constant has a different width or
4383 signedness from its traditional type.  This warning is only issued if
4384 the base of the constant is ten.  I.e.@: hexadecimal or octal values, which
4385 typically represent bit patterns, are not warned about.
4387 @item
4388 Usage of ISO string concatenation is detected.
4390 @item
4391 Initialization of automatic aggregates.
4393 @item
4394 Identifier conflicts with labels.  Traditional C lacks a separate
4395 namespace for labels.
4397 @item
4398 Initialization of unions.  If the initializer is zero, the warning is
4399 omitted.  This is done under the assumption that the zero initializer in
4400 user code appears conditioned on e.g.@: @code{__STDC__} to avoid missing
4401 initializer warnings and relies on default initialization to zero in the
4402 traditional C case.
4404 @item
4405 Conversions by prototypes between fixed/floating-point values and vice
4406 versa.  The absence of these prototypes when compiling with traditional
4407 C causes serious problems.  This is a subset of the possible
4408 conversion warnings; for the full set use @option{-Wtraditional-conversion}.
4410 @item
4411 Use of ISO C style function definitions.  This warning intentionally is
4412 @emph{not} issued for prototype declarations or variadic functions
4413 because these ISO C features appear in your code when using
4414 libiberty's traditional C compatibility macros, @code{PARAMS} and
4415 @code{VPARAMS}.  This warning is also bypassed for nested functions
4416 because that feature is already a GCC extension and thus not relevant to
4417 traditional C compatibility.
4418 @end itemize
4420 @item -Wtraditional-conversion @r{(C and Objective-C only)}
4421 @opindex Wtraditional-conversion
4422 @opindex Wno-traditional-conversion
4423 Warn if a prototype causes a type conversion that is different from what
4424 would happen to the same argument in the absence of a prototype.  This
4425 includes conversions of fixed point to floating and vice versa, and
4426 conversions changing the width or signedness of a fixed-point argument
4427 except when the same as the default promotion.
4429 @item -Wdeclaration-after-statement @r{(C and Objective-C only)}
4430 @opindex Wdeclaration-after-statement
4431 @opindex Wno-declaration-after-statement
4432 Warn when a declaration is found after a statement in a block.  This
4433 construct, known from C++, was introduced with ISO C99 and is by default
4434 allowed in GCC@.  It is not supported by ISO C90 and was not supported by
4435 GCC versions before GCC 3.0.  @xref{Mixed Declarations}.
4437 @item -Wundef
4438 @opindex Wundef
4439 @opindex Wno-undef
4440 Warn if an undefined identifier is evaluated in an @samp{#if} directive.
4442 @item -Wno-endif-labels
4443 @opindex Wno-endif-labels
4444 @opindex Wendif-labels
4445 Do not warn whenever an @samp{#else} or an @samp{#endif} are followed by text.
4447 @item -Wshadow
4448 @opindex Wshadow
4449 @opindex Wno-shadow
4450 Warn whenever a local variable or type declaration shadows another
4451 variable, parameter, type, class member (in C++), or instance variable
4452 (in Objective-C) or whenever a built-in function is shadowed. Note
4453 that in C++, the compiler warns if a local variable shadows an
4454 explicit typedef, but not if it shadows a struct/class/enum.
4456 @item -Wno-shadow-ivar @r{(Objective-C only)}
4457 @opindex Wno-shadow-ivar
4458 @opindex Wshadow-ivar
4459 Do not warn whenever a local variable shadows an instance variable in an
4460 Objective-C method.
4462 @item -Wlarger-than=@var{len}
4463 @opindex Wlarger-than=@var{len}
4464 @opindex Wlarger-than-@var{len}
4465 Warn whenever an object of larger than @var{len} bytes is defined.
4467 @item -Wframe-larger-than=@var{len}
4468 @opindex Wframe-larger-than
4469 Warn if the size of a function frame is larger than @var{len} bytes.
4470 The computation done to determine the stack frame size is approximate
4471 and not conservative.
4472 The actual requirements may be somewhat greater than @var{len}
4473 even if you do not get a warning.  In addition, any space allocated
4474 via @code{alloca}, variable-length arrays, or related constructs
4475 is not included by the compiler when determining
4476 whether or not to issue a warning.
4478 @item -Wno-free-nonheap-object
4479 @opindex Wno-free-nonheap-object
4480 @opindex Wfree-nonheap-object
4481 Do not warn when attempting to free an object that was not allocated
4482 on the heap.
4484 @item -Wstack-usage=@var{len}
4485 @opindex Wstack-usage
4486 Warn if the stack usage of a function might be larger than @var{len} bytes.
4487 The computation done to determine the stack usage is conservative.
4488 Any space allocated via @code{alloca}, variable-length arrays, or related
4489 constructs is included by the compiler when determining whether or not to
4490 issue a warning.
4492 The message is in keeping with the output of @option{-fstack-usage}.
4494 @itemize
4495 @item
4496 If the stack usage is fully static but exceeds the specified amount, it's:
4498 @smallexample
4499   warning: stack usage is 1120 bytes
4500 @end smallexample
4501 @item
4502 If the stack usage is (partly) dynamic but bounded, it's:
4504 @smallexample
4505   warning: stack usage might be 1648 bytes
4506 @end smallexample
4507 @item
4508 If the stack usage is (partly) dynamic and not bounded, it's:
4510 @smallexample
4511   warning: stack usage might be unbounded
4512 @end smallexample
4513 @end itemize
4515 @item -Wunsafe-loop-optimizations
4516 @opindex Wunsafe-loop-optimizations
4517 @opindex Wno-unsafe-loop-optimizations
4518 Warn if the loop cannot be optimized because the compiler cannot
4519 assume anything on the bounds of the loop indices.  With
4520 @option{-funsafe-loop-optimizations} warn if the compiler makes
4521 such assumptions.
4523 @item -Wno-pedantic-ms-format @r{(MinGW targets only)}
4524 @opindex Wno-pedantic-ms-format
4525 @opindex Wpedantic-ms-format
4526 When used in combination with @option{-Wformat}
4527 and @option{-pedantic} without GNU extensions, this option
4528 disables the warnings about non-ISO @code{printf} / @code{scanf} format
4529 width specifiers @code{I32}, @code{I64}, and @code{I} used on Windows targets,
4530 which depend on the MS runtime.
4532 @item -Wpointer-arith
4533 @opindex Wpointer-arith
4534 @opindex Wno-pointer-arith
4535 Warn about anything that depends on the ``size of'' a function type or
4536 of @code{void}.  GNU C assigns these types a size of 1, for
4537 convenience in calculations with @code{void *} pointers and pointers
4538 to functions.  In C++, warn also when an arithmetic operation involves
4539 @code{NULL}.  This warning is also enabled by @option{-Wpedantic}.
4541 @item -Wtype-limits
4542 @opindex Wtype-limits
4543 @opindex Wno-type-limits
4544 Warn if a comparison is always true or always false due to the limited
4545 range of the data type, but do not warn for constant expressions.  For
4546 example, warn if an unsigned variable is compared against zero with
4547 @samp{<} or @samp{>=}.  This warning is also enabled by
4548 @option{-Wextra}.
4550 @item -Wbad-function-cast @r{(C and Objective-C only)}
4551 @opindex Wbad-function-cast
4552 @opindex Wno-bad-function-cast
4553 Warn whenever a function call is cast to a non-matching type.
4554 For example, warn if @code{int malloc()} is cast to @code{anything *}.
4556 @item -Wc90-c99-compat @r{(C and Objective-C only)}
4557 @opindex Wc90-c99-compat
4558 @opindex Wno-c90-c99-compat
4559 Warn about features not present in ISO C90, but present in ISO C99.
4560 For instance, warn about use of variable length arrays, @code{long long}
4561 type, @code{bool} type, compound literals, designated initializers, and so
4562 on.  This option is independent of the standards mode.  Warnings are disabled
4563 in the expression that follows @code{__extension__}.
4565 @item -Wc99-c11-compat @r{(C and Objective-C only)}
4566 @opindex Wc99-c11-compat
4567 @opindex Wno-c99-c11-compat
4568 Warn about features not present in ISO C99, but present in ISO C11.
4569 For instance, warn about use of anonymous structures and unions,
4570 @code{_Atomic} type qualifier, @code{_Thread_local} storage-class specifier,
4571 @code{_Alignas} specifier, @code{Alignof} operator, @code{_Generic} keyword,
4572 and so on.  This option is independent of the standards mode.  Warnings are
4573 disabled in the expression that follows @code{__extension__}.
4575 @item -Wc++-compat @r{(C and Objective-C only)}
4576 Warn about ISO C constructs that are outside of the common subset of
4577 ISO C and ISO C++, e.g.@: request for implicit conversion from
4578 @code{void *} to a pointer to non-@code{void} type.
4580 @item -Wc++11-compat @r{(C++ and Objective-C++ only)}
4581 Warn about C++ constructs whose meaning differs between ISO C++ 1998
4582 and ISO C++ 2011, e.g., identifiers in ISO C++ 1998 that are keywords
4583 in ISO C++ 2011.  This warning turns on @option{-Wnarrowing} and is
4584 enabled by @option{-Wall}.
4586 @item -Wcast-qual
4587 @opindex Wcast-qual
4588 @opindex Wno-cast-qual
4589 Warn whenever a pointer is cast so as to remove a type qualifier from
4590 the target type.  For example, warn if a @code{const char *} is cast
4591 to an ordinary @code{char *}.
4593 Also warn when making a cast that introduces a type qualifier in an
4594 unsafe way.  For example, casting @code{char **} to @code{const char **}
4595 is unsafe, as in this example:
4597 @smallexample
4598   /* p is char ** value.  */
4599   const char **q = (const char **) p;
4600   /* Assignment of readonly string to const char * is OK.  */
4601   *q = "string";
4602   /* Now char** pointer points to read-only memory.  */
4603   **p = 'b';
4604 @end smallexample
4606 @item -Wcast-align
4607 @opindex Wcast-align
4608 @opindex Wno-cast-align
4609 Warn whenever a pointer is cast such that the required alignment of the
4610 target is increased.  For example, warn if a @code{char *} is cast to
4611 an @code{int *} on machines where integers can only be accessed at
4612 two- or four-byte boundaries.
4614 @item -Wwrite-strings
4615 @opindex Wwrite-strings
4616 @opindex Wno-write-strings
4617 When compiling C, give string constants the type @code{const
4618 char[@var{length}]} so that copying the address of one into a
4619 non-@code{const} @code{char *} pointer produces a warning.  These
4620 warnings help you find at compile time code that can try to write
4621 into a string constant, but only if you have been very careful about
4622 using @code{const} in declarations and prototypes.  Otherwise, it is
4623 just a nuisance. This is why we did not make @option{-Wall} request
4624 these warnings.
4626 When compiling C++, warn about the deprecated conversion from string
4627 literals to @code{char *}.  This warning is enabled by default for C++
4628 programs.
4630 @item -Wclobbered
4631 @opindex Wclobbered
4632 @opindex Wno-clobbered
4633 Warn for variables that might be changed by @samp{longjmp} or
4634 @samp{vfork}.  This warning is also enabled by @option{-Wextra}.
4636 @item -Wconditionally-supported @r{(C++ and Objective-C++ only)}
4637 @opindex Wconditionally-supported
4638 @opindex Wno-conditionally-supported
4639 Warn for conditionally-supported (C++11 [intro.defs]) constructs.
4641 @item -Wconversion
4642 @opindex Wconversion
4643 @opindex Wno-conversion
4644 Warn for implicit conversions that may alter a value. This includes
4645 conversions between real and integer, like @code{abs (x)} when
4646 @code{x} is @code{double}; conversions between signed and unsigned,
4647 like @code{unsigned ui = -1}; and conversions to smaller types, like
4648 @code{sqrtf (M_PI)}. Do not warn for explicit casts like @code{abs
4649 ((int) x)} and @code{ui = (unsigned) -1}, or if the value is not
4650 changed by the conversion like in @code{abs (2.0)}.  Warnings about
4651 conversions between signed and unsigned integers can be disabled by
4652 using @option{-Wno-sign-conversion}.
4654 For C++, also warn for confusing overload resolution for user-defined
4655 conversions; and conversions that never use a type conversion
4656 operator: conversions to @code{void}, the same type, a base class or a
4657 reference to them. Warnings about conversions between signed and
4658 unsigned integers are disabled by default in C++ unless
4659 @option{-Wsign-conversion} is explicitly enabled.
4661 @item -Wno-conversion-null @r{(C++ and Objective-C++ only)}
4662 @opindex Wconversion-null
4663 @opindex Wno-conversion-null
4664 Do not warn for conversions between @code{NULL} and non-pointer
4665 types. @option{-Wconversion-null} is enabled by default.
4667 @item -Wzero-as-null-pointer-constant @r{(C++ and Objective-C++ only)}
4668 @opindex Wzero-as-null-pointer-constant
4669 @opindex Wno-zero-as-null-pointer-constant
4670 Warn when a literal '0' is used as null pointer constant.  This can
4671 be useful to facilitate the conversion to @code{nullptr} in C++11.
4673 @item -Wdate-time
4674 @opindex Wdate-time
4675 @opindex Wno-date-time
4676 Warn when macros @code{__TIME__}, @code{__DATE__} or @code{__TIMESTAMP__}
4677 are encountered as they might prevent bit-wise-identical reproducible
4678 compilations.
4680 @item -Wdelete-incomplete @r{(C++ and Objective-C++ only)}
4681 @opindex Wdelete-incomplete
4682 @opindex Wno-delete-incomplete
4683 Warn when deleting a pointer to incomplete type, which may cause
4684 undefined behavior at runtime.  This warning is enabled by default.
4686 @item -Wuseless-cast @r{(C++ and Objective-C++ only)}
4687 @opindex Wuseless-cast
4688 @opindex Wno-useless-cast
4689 Warn when an expression is casted to its own type.
4691 @item -Wempty-body
4692 @opindex Wempty-body
4693 @opindex Wno-empty-body
4694 Warn if an empty body occurs in an @samp{if}, @samp{else} or @samp{do
4695 while} statement.  This warning is also enabled by @option{-Wextra}.
4697 @item -Wenum-compare
4698 @opindex Wenum-compare
4699 @opindex Wno-enum-compare
4700 Warn about a comparison between values of different enumerated types.
4701 In C++ enumeral mismatches in conditional expressions are also
4702 diagnosed and the warning is enabled by default.  In C this warning is 
4703 enabled by @option{-Wall}.
4705 @item -Wjump-misses-init @r{(C, Objective-C only)}
4706 @opindex Wjump-misses-init
4707 @opindex Wno-jump-misses-init
4708 Warn if a @code{goto} statement or a @code{switch} statement jumps
4709 forward across the initialization of a variable, or jumps backward to a
4710 label after the variable has been initialized.  This only warns about
4711 variables that are initialized when they are declared.  This warning is
4712 only supported for C and Objective-C; in C++ this sort of branch is an
4713 error in any case.
4715 @option{-Wjump-misses-init} is included in @option{-Wc++-compat}.  It
4716 can be disabled with the @option{-Wno-jump-misses-init} option.
4718 @item -Wsign-compare
4719 @opindex Wsign-compare
4720 @opindex Wno-sign-compare
4721 @cindex warning for comparison of signed and unsigned values
4722 @cindex comparison of signed and unsigned values, warning
4723 @cindex signed and unsigned values, comparison warning
4724 Warn when a comparison between signed and unsigned values could produce
4725 an incorrect result when the signed value is converted to unsigned.
4726 This warning is also enabled by @option{-Wextra}; to get the other warnings
4727 of @option{-Wextra} without this warning, use @option{-Wextra -Wno-sign-compare}.
4729 @item -Wsign-conversion
4730 @opindex Wsign-conversion
4731 @opindex Wno-sign-conversion
4732 Warn for implicit conversions that may change the sign of an integer
4733 value, like assigning a signed integer expression to an unsigned
4734 integer variable. An explicit cast silences the warning. In C, this
4735 option is enabled also by @option{-Wconversion}.
4737 @item -Wfloat-conversion
4738 @opindex Wfloat-conversion
4739 @opindex Wno-float-conversion
4740 Warn for implicit conversions that reduce the precision of a real value.
4741 This includes conversions from real to integer, and from higher precision
4742 real to lower precision real values.  This option is also enabled by
4743 @option{-Wconversion}.
4745 @item -Wsizeof-pointer-memaccess
4746 @opindex Wsizeof-pointer-memaccess
4747 @opindex Wno-sizeof-pointer-memaccess
4748 Warn for suspicious length parameters to certain string and memory built-in
4749 functions if the argument uses @code{sizeof}.  This warning warns e.g.@:
4750 about @code{memset (ptr, 0, sizeof (ptr));} if @code{ptr} is not an array,
4751 but a pointer, and suggests a possible fix, or about
4752 @code{memcpy (&foo, ptr, sizeof (&foo));}.  This warning is enabled by
4753 @option{-Wall}.
4755 @item -Wsizeof-array-argument
4756 @opindex Wsizeof-array-argument
4757 @opindex Wno-sizeof-array-argument
4758 Warn when the @code{sizeof} operator is applied to a parameter that is
4759 declared as an array in a function definition.  This warning is enabled by
4760 default for C and C++ programs.
4762 @item -Wmemset-transposed-args
4763 @opindex Wmemset-transposed-args
4764 @opindex Wno-memset-transposed-args
4765 Warn for suspicious calls to the @code{memset} built-in function, if the
4766 second argument is not zero and the third argument is zero.  This warns e.g.@
4767 about @code{memset (buf, sizeof buf, 0)} where most probably
4768 @code{memset (buf, 0, sizeof buf)} was meant instead.  The diagnostics
4769 is only emitted if the third argument is literal zero, if it is some expression
4770 that is folded to zero, or e.g. a cast of zero to some type etc., it
4771 is far less likely that user has mistakenly exchanged the arguments and
4772 no warning is emitted.  This warning is enabled by @option{-Wall}.
4774 @item -Waddress
4775 @opindex Waddress
4776 @opindex Wno-address
4777 Warn about suspicious uses of memory addresses. These include using
4778 the address of a function in a conditional expression, such as
4779 @code{void func(void); if (func)}, and comparisons against the memory
4780 address of a string literal, such as @code{if (x == "abc")}.  Such
4781 uses typically indicate a programmer error: the address of a function
4782 always evaluates to true, so their use in a conditional usually
4783 indicate that the programmer forgot the parentheses in a function
4784 call; and comparisons against string literals result in unspecified
4785 behavior and are not portable in C, so they usually indicate that the
4786 programmer intended to use @code{strcmp}.  This warning is enabled by
4787 @option{-Wall}.
4789 @item -Wlogical-op
4790 @opindex Wlogical-op
4791 @opindex Wno-logical-op
4792 Warn about suspicious uses of logical operators in expressions.
4793 This includes using logical operators in contexts where a
4794 bit-wise operator is likely to be expected.
4796 @item -Wlogical-not-parentheses
4797 @opindex Wlogical-not-parentheses
4798 @opindex Wno-logical-not-parentheses
4799 Warn about logical not used on the left hand side operand of a comparison.
4800 This option does not warn if the RHS operand is of a boolean type.  Its
4801 purpose is to detect suspicious code like the following:
4802 @smallexample
4803 int a;
4804 @dots{}
4805 if (!a > 1) @{ @dots{} @}
4806 @end smallexample
4808 It is possible to suppress the warning by wrapping the LHS into
4809 parentheses:
4810 @smallexample
4811 if ((!a) > 1) @{ @dots{} @}
4812 @end smallexample
4814 This warning is enabled by @option{-Wall}.
4816 @item -Waggregate-return
4817 @opindex Waggregate-return
4818 @opindex Wno-aggregate-return
4819 Warn if any functions that return structures or unions are defined or
4820 called.  (In languages where you can return an array, this also elicits
4821 a warning.)
4823 @item -Wno-aggressive-loop-optimizations
4824 @opindex Wno-aggressive-loop-optimizations
4825 @opindex Waggressive-loop-optimizations
4826 Warn if in a loop with constant number of iterations the compiler detects
4827 undefined behavior in some statement during one or more of the iterations.
4829 @item -Wno-attributes
4830 @opindex Wno-attributes
4831 @opindex Wattributes
4832 Do not warn if an unexpected @code{__attribute__} is used, such as
4833 unrecognized attributes, function attributes applied to variables,
4834 etc.  This does not stop errors for incorrect use of supported
4835 attributes.
4837 @item -Wno-builtin-macro-redefined
4838 @opindex Wno-builtin-macro-redefined
4839 @opindex Wbuiltin-macro-redefined
4840 Do not warn if certain built-in macros are redefined.  This suppresses
4841 warnings for redefinition of @code{__TIMESTAMP__}, @code{__TIME__},
4842 @code{__DATE__}, @code{__FILE__}, and @code{__BASE_FILE__}.
4844 @item -Wstrict-prototypes @r{(C and Objective-C only)}
4845 @opindex Wstrict-prototypes
4846 @opindex Wno-strict-prototypes
4847 Warn if a function is declared or defined without specifying the
4848 argument types.  (An old-style function definition is permitted without
4849 a warning if preceded by a declaration that specifies the argument
4850 types.)
4852 @item -Wold-style-declaration @r{(C and Objective-C only)}
4853 @opindex Wold-style-declaration
4854 @opindex Wno-old-style-declaration
4855 Warn for obsolescent usages, according to the C Standard, in a
4856 declaration. For example, warn if storage-class specifiers like
4857 @code{static} are not the first things in a declaration.  This warning
4858 is also enabled by @option{-Wextra}.
4860 @item -Wold-style-definition @r{(C and Objective-C only)}
4861 @opindex Wold-style-definition
4862 @opindex Wno-old-style-definition
4863 Warn if an old-style function definition is used.  A warning is given
4864 even if there is a previous prototype.
4866 @item -Wmissing-parameter-type @r{(C and Objective-C only)}
4867 @opindex Wmissing-parameter-type
4868 @opindex Wno-missing-parameter-type
4869 A function parameter is declared without a type specifier in K&R-style
4870 functions:
4872 @smallexample
4873 void foo(bar) @{ @}
4874 @end smallexample
4876 This warning is also enabled by @option{-Wextra}.
4878 @item -Wmissing-prototypes @r{(C and Objective-C only)}
4879 @opindex Wmissing-prototypes
4880 @opindex Wno-missing-prototypes
4881 Warn if a global function is defined without a previous prototype
4882 declaration.  This warning is issued even if the definition itself
4883 provides a prototype.  Use this option to detect global functions
4884 that do not have a matching prototype declaration in a header file.
4885 This option is not valid for C++ because all function declarations
4886 provide prototypes and a non-matching declaration will declare an
4887 overload rather than conflict with an earlier declaration.
4888 Use @option{-Wmissing-declarations} to detect missing declarations in C++.
4890 @item -Wmissing-declarations
4891 @opindex Wmissing-declarations
4892 @opindex Wno-missing-declarations
4893 Warn if a global function is defined without a previous declaration.
4894 Do so even if the definition itself provides a prototype.
4895 Use this option to detect global functions that are not declared in
4896 header files.  In C, no warnings are issued for functions with previous
4897 non-prototype declarations; use @option{-Wmissing-prototypes} to detect
4898 missing prototypes.  In C++, no warnings are issued for function templates,
4899 or for inline functions, or for functions in anonymous namespaces.
4901 @item -Wmissing-field-initializers
4902 @opindex Wmissing-field-initializers
4903 @opindex Wno-missing-field-initializers
4904 @opindex W
4905 @opindex Wextra
4906 @opindex Wno-extra
4907 Warn if a structure's initializer has some fields missing.  For
4908 example, the following code causes such a warning, because
4909 @code{x.h} is implicitly zero:
4911 @smallexample
4912 struct s @{ int f, g, h; @};
4913 struct s x = @{ 3, 4 @};
4914 @end smallexample
4916 This option does not warn about designated initializers, so the following
4917 modification does not trigger a warning:
4919 @smallexample
4920 struct s @{ int f, g, h; @};
4921 struct s x = @{ .f = 3, .g = 4 @};
4922 @end smallexample
4924 In C++ this option does not warn either about the empty @{ @}
4925 initializer, for example:
4927 @smallexample
4928 struct s @{ int f, g, h; @};
4929 s x = @{ @};
4930 @end smallexample
4932 This warning is included in @option{-Wextra}.  To get other @option{-Wextra}
4933 warnings without this one, use @option{-Wextra -Wno-missing-field-initializers}.
4935 @item -Wno-multichar
4936 @opindex Wno-multichar
4937 @opindex Wmultichar
4938 Do not warn if a multicharacter constant (@samp{'FOOF'}) is used.
4939 Usually they indicate a typo in the user's code, as they have
4940 implementation-defined values, and should not be used in portable code.
4942 @item -Wnormalized@r{[}=@r{<}none@r{|}id@r{|}nfc@r{|}nfkc@r{>]}
4943 @opindex Wnormalized=
4944 @opindex Wnormalized
4945 @opindex Wno-normalized
4946 @cindex NFC
4947 @cindex NFKC
4948 @cindex character set, input normalization
4949 In ISO C and ISO C++, two identifiers are different if they are
4950 different sequences of characters.  However, sometimes when characters
4951 outside the basic ASCII character set are used, you can have two
4952 different character sequences that look the same.  To avoid confusion,
4953 the ISO 10646 standard sets out some @dfn{normalization rules} which
4954 when applied ensure that two sequences that look the same are turned into
4955 the same sequence.  GCC can warn you if you are using identifiers that
4956 have not been normalized; this option controls that warning.
4958 There are four levels of warning supported by GCC@.  The default is
4959 @option{-Wnormalized=nfc}, which warns about any identifier that is
4960 not in the ISO 10646 ``C'' normalized form, @dfn{NFC}.  NFC is the
4961 recommended form for most uses.  It is equivalent to
4962 @option{-Wnormalized}.
4964 Unfortunately, there are some characters allowed in identifiers by
4965 ISO C and ISO C++ that, when turned into NFC, are not allowed in 
4966 identifiers.  That is, there's no way to use these symbols in portable
4967 ISO C or C++ and have all your identifiers in NFC@.
4968 @option{-Wnormalized=id} suppresses the warning for these characters.
4969 It is hoped that future versions of the standards involved will correct
4970 this, which is why this option is not the default.
4972 You can switch the warning off for all characters by writing
4973 @option{-Wnormalized=none} or @option{-Wno-normalized}.  You should
4974 only do this if you are using some other normalization scheme (like
4975 ``D''), because otherwise you can easily create bugs that are
4976 literally impossible to see.
4978 Some characters in ISO 10646 have distinct meanings but look identical
4979 in some fonts or display methodologies, especially once formatting has
4980 been applied.  For instance @code{\u207F}, ``SUPERSCRIPT LATIN SMALL
4981 LETTER N'', displays just like a regular @code{n} that has been
4982 placed in a superscript.  ISO 10646 defines the @dfn{NFKC}
4983 normalization scheme to convert all these into a standard form as
4984 well, and GCC warns if your code is not in NFKC if you use
4985 @option{-Wnormalized=nfkc}.  This warning is comparable to warning
4986 about every identifier that contains the letter O because it might be
4987 confused with the digit 0, and so is not the default, but may be
4988 useful as a local coding convention if the programming environment 
4989 cannot be fixed to display these characters distinctly.
4991 @item -Wno-deprecated
4992 @opindex Wno-deprecated
4993 @opindex Wdeprecated
4994 Do not warn about usage of deprecated features.  @xref{Deprecated Features}.
4996 @item -Wno-deprecated-declarations
4997 @opindex Wno-deprecated-declarations
4998 @opindex Wdeprecated-declarations
4999 Do not warn about uses of functions (@pxref{Function Attributes}),
5000 variables (@pxref{Variable Attributes}), and types (@pxref{Type
5001 Attributes}) marked as deprecated by using the @code{deprecated}
5002 attribute.
5004 @item -Wno-overflow
5005 @opindex Wno-overflow
5006 @opindex Woverflow
5007 Do not warn about compile-time overflow in constant expressions.
5009 @item -Wno-odr
5010 @opindex Wno-odr
5011 @opindex Wodr
5012 Warn about One Definition Rule violations during link-time optimization.
5013 Requires @option{-flto-odr-type-merging} to be enabled.  Enabled by default.
5015 @item -Wopenmp-simd
5016 @opindex Wopenm-simd
5017 Warn if the vectorizer cost model overrides the OpenMP or the Cilk Plus
5018 simd directive set by user.  The @option{-fsimd-cost-model=unlimited} can
5019 be used to relax the cost model.
5021 @item -Woverride-init @r{(C and Objective-C only)}
5022 @opindex Woverride-init
5023 @opindex Wno-override-init
5024 @opindex W
5025 @opindex Wextra
5026 @opindex Wno-extra
5027 Warn if an initialized field without side effects is overridden when
5028 using designated initializers (@pxref{Designated Inits, , Designated
5029 Initializers}).
5031 This warning is included in @option{-Wextra}.  To get other
5032 @option{-Wextra} warnings without this one, use @option{-Wextra
5033 -Wno-override-init}.
5035 @item -Wpacked
5036 @opindex Wpacked
5037 @opindex Wno-packed
5038 Warn if a structure is given the packed attribute, but the packed
5039 attribute has no effect on the layout or size of the structure.
5040 Such structures may be mis-aligned for little benefit.  For
5041 instance, in this code, the variable @code{f.x} in @code{struct bar}
5042 is misaligned even though @code{struct bar} does not itself
5043 have the packed attribute:
5045 @smallexample
5046 @group
5047 struct foo @{
5048   int x;
5049   char a, b, c, d;
5050 @} __attribute__((packed));
5051 struct bar @{
5052   char z;
5053   struct foo f;
5055 @end group
5056 @end smallexample
5058 @item -Wpacked-bitfield-compat
5059 @opindex Wpacked-bitfield-compat
5060 @opindex Wno-packed-bitfield-compat
5061 The 4.1, 4.2 and 4.3 series of GCC ignore the @code{packed} attribute
5062 on bit-fields of type @code{char}.  This has been fixed in GCC 4.4 but
5063 the change can lead to differences in the structure layout.  GCC
5064 informs you when the offset of such a field has changed in GCC 4.4.
5065 For example there is no longer a 4-bit padding between field @code{a}
5066 and @code{b} in this structure:
5068 @smallexample
5069 struct foo
5071   char a:4;
5072   char b:8;
5073 @} __attribute__ ((packed));
5074 @end smallexample
5076 This warning is enabled by default.  Use
5077 @option{-Wno-packed-bitfield-compat} to disable this warning.
5079 @item -Wpadded
5080 @opindex Wpadded
5081 @opindex Wno-padded
5082 Warn if padding is included in a structure, either to align an element
5083 of the structure or to align the whole structure.  Sometimes when this
5084 happens it is possible to rearrange the fields of the structure to
5085 reduce the padding and so make the structure smaller.
5087 @item -Wredundant-decls
5088 @opindex Wredundant-decls
5089 @opindex Wno-redundant-decls
5090 Warn if anything is declared more than once in the same scope, even in
5091 cases where multiple declaration is valid and changes nothing.
5093 @item -Wnested-externs @r{(C and Objective-C only)}
5094 @opindex Wnested-externs
5095 @opindex Wno-nested-externs
5096 Warn if an @code{extern} declaration is encountered within a function.
5098 @item -Wno-inherited-variadic-ctor
5099 @opindex Winherited-variadic-ctor
5100 @opindex Wno-inherited-variadic-ctor
5101 Suppress warnings about use of C++11 inheriting constructors when the
5102 base class inherited from has a C variadic constructor; the warning is
5103 on by default because the ellipsis is not inherited.
5105 @item -Winline
5106 @opindex Winline
5107 @opindex Wno-inline
5108 Warn if a function that is declared as inline cannot be inlined.
5109 Even with this option, the compiler does not warn about failures to
5110 inline functions declared in system headers.
5112 The compiler uses a variety of heuristics to determine whether or not
5113 to inline a function.  For example, the compiler takes into account
5114 the size of the function being inlined and the amount of inlining
5115 that has already been done in the current function.  Therefore,
5116 seemingly insignificant changes in the source program can cause the
5117 warnings produced by @option{-Winline} to appear or disappear.
5119 @item -Wno-invalid-offsetof @r{(C++ and Objective-C++ only)}
5120 @opindex Wno-invalid-offsetof
5121 @opindex Winvalid-offsetof
5122 Suppress warnings from applying the @samp{offsetof} macro to a non-POD
5123 type.  According to the 2014 ISO C++ standard, applying @samp{offsetof}
5124 to a non-standard-layout type is undefined.  In existing C++ implementations,
5125 however, @samp{offsetof} typically gives meaningful results.
5126 This flag is for users who are aware that they are
5127 writing nonportable code and who have deliberately chosen to ignore the
5128 warning about it.
5130 The restrictions on @samp{offsetof} may be relaxed in a future version
5131 of the C++ standard.
5133 @item -Wno-int-to-pointer-cast
5134 @opindex Wno-int-to-pointer-cast
5135 @opindex Wint-to-pointer-cast
5136 Suppress warnings from casts to pointer type of an integer of a
5137 different size. In C++, casting to a pointer type of smaller size is
5138 an error. @option{Wint-to-pointer-cast} is enabled by default.
5141 @item -Wno-pointer-to-int-cast @r{(C and Objective-C only)}
5142 @opindex Wno-pointer-to-int-cast
5143 @opindex Wpointer-to-int-cast
5144 Suppress warnings from casts from a pointer to an integer type of a
5145 different size.
5147 @item -Winvalid-pch
5148 @opindex Winvalid-pch
5149 @opindex Wno-invalid-pch
5150 Warn if a precompiled header (@pxref{Precompiled Headers}) is found in
5151 the search path but can't be used.
5153 @item -Wlong-long
5154 @opindex Wlong-long
5155 @opindex Wno-long-long
5156 Warn if @samp{long long} type is used.  This is enabled by either
5157 @option{-Wpedantic} or @option{-Wtraditional} in ISO C90 and C++98
5158 modes.  To inhibit the warning messages, use @option{-Wno-long-long}.
5160 @item -Wvariadic-macros
5161 @opindex Wvariadic-macros
5162 @opindex Wno-variadic-macros
5163 Warn if variadic macros are used in ISO C90 mode, or if the GNU
5164 alternate syntax is used in ISO C99 mode.  This is enabled by either
5165 @option{-Wpedantic} or @option{-Wtraditional}.  To inhibit the warning
5166 messages, use @option{-Wno-variadic-macros}.
5168 @item -Wvarargs
5169 @opindex Wvarargs
5170 @opindex Wno-varargs
5171 Warn upon questionable usage of the macros used to handle variable
5172 arguments like @samp{va_start}.  This is default.  To inhibit the
5173 warning messages, use @option{-Wno-varargs}.
5175 @item -Wvector-operation-performance
5176 @opindex Wvector-operation-performance
5177 @opindex Wno-vector-operation-performance
5178 Warn if vector operation is not implemented via SIMD capabilities of the
5179 architecture.  Mainly useful for the performance tuning.
5180 Vector operation can be implemented @code{piecewise}, which means that the
5181 scalar operation is performed on every vector element; 
5182 @code{in parallel}, which means that the vector operation is implemented
5183 using scalars of wider type, which normally is more performance efficient;
5184 and @code{as a single scalar}, which means that vector fits into a
5185 scalar type.
5187 @item -Wno-virtual-move-assign
5188 @opindex Wvirtual-move-assign
5189 @opindex Wno-virtual-move-assign
5190 Suppress warnings about inheriting from a virtual base with a
5191 non-trivial C++11 move assignment operator.  This is dangerous because
5192 if the virtual base is reachable along more than one path, it will be
5193 moved multiple times, which can mean both objects end up in the
5194 moved-from state.  If the move assignment operator is written to avoid
5195 moving from a moved-from object, this warning can be disabled.
5197 @item -Wvla
5198 @opindex Wvla
5199 @opindex Wno-vla
5200 Warn if variable length array is used in the code.
5201 @option{-Wno-vla} prevents the @option{-Wpedantic} warning of
5202 the variable length array.
5204 @item -Wvolatile-register-var
5205 @opindex Wvolatile-register-var
5206 @opindex Wno-volatile-register-var
5207 Warn if a register variable is declared volatile.  The volatile
5208 modifier does not inhibit all optimizations that may eliminate reads
5209 and/or writes to register variables.  This warning is enabled by
5210 @option{-Wall}.
5212 @item -Wdisabled-optimization
5213 @opindex Wdisabled-optimization
5214 @opindex Wno-disabled-optimization
5215 Warn if a requested optimization pass is disabled.  This warning does
5216 not generally indicate that there is anything wrong with your code; it
5217 merely indicates that GCC's optimizers are unable to handle the code
5218 effectively.  Often, the problem is that your code is too big or too
5219 complex; GCC refuses to optimize programs when the optimization
5220 itself is likely to take inordinate amounts of time.
5222 @item -Wpointer-sign @r{(C and Objective-C only)}
5223 @opindex Wpointer-sign
5224 @opindex Wno-pointer-sign
5225 Warn for pointer argument passing or assignment with different signedness.
5226 This option is only supported for C and Objective-C@.  It is implied by
5227 @option{-Wall} and by @option{-Wpedantic}, which can be disabled with
5228 @option{-Wno-pointer-sign}.
5230 @item -Wstack-protector
5231 @opindex Wstack-protector
5232 @opindex Wno-stack-protector
5233 This option is only active when @option{-fstack-protector} is active.  It
5234 warns about functions that are not protected against stack smashing.
5236 @item -Woverlength-strings
5237 @opindex Woverlength-strings
5238 @opindex Wno-overlength-strings
5239 Warn about string constants that are longer than the ``minimum
5240 maximum'' length specified in the C standard.  Modern compilers
5241 generally allow string constants that are much longer than the
5242 standard's minimum limit, but very portable programs should avoid
5243 using longer strings.
5245 The limit applies @emph{after} string constant concatenation, and does
5246 not count the trailing NUL@.  In C90, the limit was 509 characters; in
5247 C99, it was raised to 4095.  C++98 does not specify a normative
5248 minimum maximum, so we do not diagnose overlength strings in C++@.
5250 This option is implied by @option{-Wpedantic}, and can be disabled with
5251 @option{-Wno-overlength-strings}.
5253 @item -Wunsuffixed-float-constants @r{(C and Objective-C only)}
5254 @opindex Wunsuffixed-float-constants
5256 Issue a warning for any floating constant that does not have
5257 a suffix.  When used together with @option{-Wsystem-headers} it
5258 warns about such constants in system header files.  This can be useful
5259 when preparing code to use with the @code{FLOAT_CONST_DECIMAL64} pragma
5260 from the decimal floating-point extension to C99.
5262 @item -Wno-designated-init @r{(C and Objective-C only)}
5263 Suppress warnings when a positional initializer is used to initialize
5264 a structure that has been marked with the @code{designated_init}
5265 attribute.
5267 @end table
5269 @node Debugging Options
5270 @section Options for Debugging Your Program or GCC
5271 @cindex options, debugging
5272 @cindex debugging information options
5274 GCC has various special options that are used for debugging
5275 either your program or GCC:
5277 @table @gcctabopt
5278 @item -g
5279 @opindex g
5280 Produce debugging information in the operating system's native format
5281 (stabs, COFF, XCOFF, or DWARF 2)@.  GDB can work with this debugging
5282 information.
5284 On most systems that use stabs format, @option{-g} enables use of extra
5285 debugging information that only GDB can use; this extra information
5286 makes debugging work better in GDB but probably makes other debuggers
5287 crash or
5288 refuse to read the program.  If you want to control for certain whether
5289 to generate the extra information, use @option{-gstabs+}, @option{-gstabs},
5290 @option{-gxcoff+}, @option{-gxcoff}, or @option{-gvms} (see below).
5292 GCC allows you to use @option{-g} with
5293 @option{-O}.  The shortcuts taken by optimized code may occasionally
5294 produce surprising results: some variables you declared may not exist
5295 at all; flow of control may briefly move where you did not expect it;
5296 some statements may not be executed because they compute constant
5297 results or their values are already at hand; some statements may
5298 execute in different places because they have been moved out of loops.
5300 Nevertheless it proves possible to debug optimized output.  This makes
5301 it reasonable to use the optimizer for programs that might have bugs.
5303 The following options are useful when GCC is generated with the
5304 capability for more than one debugging format.
5306 @item -gsplit-dwarf
5307 @opindex gsplit-dwarf
5308 Separate as much dwarf debugging information as possible into a
5309 separate output file with the extension .dwo.  This option allows
5310 the build system to avoid linking files with debug information.  To
5311 be useful, this option requires a debugger capable of reading .dwo
5312 files.
5314 @item -ggdb
5315 @opindex ggdb
5316 Produce debugging information for use by GDB@.  This means to use the
5317 most expressive format available (DWARF 2, stabs, or the native format
5318 if neither of those are supported), including GDB extensions if at all
5319 possible.
5321 @item -gpubnames
5322 @opindex gpubnames
5323 Generate dwarf .debug_pubnames and .debug_pubtypes sections.
5325 @item -ggnu-pubnames
5326 @opindex ggnu-pubnames
5327 Generate .debug_pubnames and .debug_pubtypes sections in a format
5328 suitable for conversion into a GDB@ index.  This option is only useful
5329 with a linker that can produce GDB@ index version 7.
5331 @item -gstabs
5332 @opindex gstabs
5333 Produce debugging information in stabs format (if that is supported),
5334 without GDB extensions.  This is the format used by DBX on most BSD
5335 systems.  On MIPS, Alpha and System V Release 4 systems this option
5336 produces stabs debugging output that is not understood by DBX or SDB@.
5337 On System V Release 4 systems this option requires the GNU assembler.
5339 @item -feliminate-unused-debug-symbols
5340 @opindex feliminate-unused-debug-symbols
5341 Produce debugging information in stabs format (if that is supported),
5342 for only symbols that are actually used.
5344 @item -femit-class-debug-always
5345 Instead of emitting debugging information for a C++ class in only one
5346 object file, emit it in all object files using the class.  This option
5347 should be used only with debuggers that are unable to handle the way GCC
5348 normally emits debugging information for classes because using this
5349 option increases the size of debugging information by as much as a
5350 factor of two.
5352 @item -fdebug-types-section
5353 @opindex fdebug-types-section
5354 @opindex fno-debug-types-section
5355 When using DWARF Version 4 or higher, type DIEs can be put into
5356 their own @code{.debug_types} section instead of making them part of the
5357 @code{.debug_info} section.  It is more efficient to put them in a separate
5358 comdat sections since the linker can then remove duplicates.
5359 But not all DWARF consumers support @code{.debug_types} sections yet
5360 and on some objects @code{.debug_types} produces larger instead of smaller
5361 debugging information.
5363 @item -gstabs+
5364 @opindex gstabs+
5365 Produce debugging information in stabs format (if that is supported),
5366 using GNU extensions understood only by the GNU debugger (GDB)@.  The
5367 use of these extensions is likely to make other debuggers crash or
5368 refuse to read the program.
5370 @item -gcoff
5371 @opindex gcoff
5372 Produce debugging information in COFF format (if that is supported).
5373 This is the format used by SDB on most System V systems prior to
5374 System V Release 4.
5376 @item -gxcoff
5377 @opindex gxcoff
5378 Produce debugging information in XCOFF format (if that is supported).
5379 This is the format used by the DBX debugger on IBM RS/6000 systems.
5381 @item -gxcoff+
5382 @opindex gxcoff+
5383 Produce debugging information in XCOFF format (if that is supported),
5384 using GNU extensions understood only by the GNU debugger (GDB)@.  The
5385 use of these extensions is likely to make other debuggers crash or
5386 refuse to read the program, and may cause assemblers other than the GNU
5387 assembler (GAS) to fail with an error.
5389 @item -gdwarf-@var{version}
5390 @opindex gdwarf-@var{version}
5391 Produce debugging information in DWARF format (if that is supported).
5392 The value of @var{version} may be either 2, 3 or 4; the default version
5393 for most targets is 4.
5395 Note that with DWARF Version 2, some ports require and always
5396 use some non-conflicting DWARF 3 extensions in the unwind tables.
5398 Version 4 may require GDB 7.0 and @option{-fvar-tracking-assignments}
5399 for maximum benefit.
5401 @item -grecord-gcc-switches
5402 @opindex grecord-gcc-switches
5403 This switch causes the command-line options used to invoke the
5404 compiler that may affect code generation to be appended to the
5405 DW_AT_producer attribute in DWARF debugging information.  The options
5406 are concatenated with spaces separating them from each other and from
5407 the compiler version.  See also @option{-frecord-gcc-switches} for another
5408 way of storing compiler options into the object file.  This is the default.
5410 @item -gno-record-gcc-switches
5411 @opindex gno-record-gcc-switches
5412 Disallow appending command-line options to the DW_AT_producer attribute
5413 in DWARF debugging information.
5415 @item -gstrict-dwarf
5416 @opindex gstrict-dwarf
5417 Disallow using extensions of later DWARF standard version than selected
5418 with @option{-gdwarf-@var{version}}.  On most targets using non-conflicting
5419 DWARF extensions from later standard versions is allowed.
5421 @item -gno-strict-dwarf
5422 @opindex gno-strict-dwarf
5423 Allow using extensions of later DWARF standard version than selected with
5424 @option{-gdwarf-@var{version}}.
5426 @item -gz@r{[}=@var{type}@r{]}
5427 @opindex gz
5428 Produce compressed debug sections in DWARF format, if that is supported.
5429 If @var{type} is not given, the default type depends on the capabilities
5430 of the assembler and linker used.  @var{type} may be one of
5431 @option{none} (don't compress debug sections), @option{zlib} (use zlib
5432 compression in ELF gABI format), or @option{zlib-gnu} (use zlib
5433 compression in traditional GNU format).  If the linker doesn't support
5434 writing compressed debug sections, the option is rejected.  Otherwise,
5435 if the assembler does not support them, @option{-gz} is silently ignored
5436 when producing object files.
5438 @item -gvms
5439 @opindex gvms
5440 Produce debugging information in Alpha/VMS debug format (if that is
5441 supported).  This is the format used by DEBUG on Alpha/VMS systems.
5443 @item -g@var{level}
5444 @itemx -ggdb@var{level}
5445 @itemx -gstabs@var{level}
5446 @itemx -gcoff@var{level}
5447 @itemx -gxcoff@var{level}
5448 @itemx -gvms@var{level}
5449 Request debugging information and also use @var{level} to specify how
5450 much information.  The default level is 2.
5452 Level 0 produces no debug information at all.  Thus, @option{-g0} negates
5453 @option{-g}.
5455 Level 1 produces minimal information, enough for making backtraces in
5456 parts of the program that you don't plan to debug.  This includes
5457 descriptions of functions and external variables, and line number
5458 tables, but no information about local variables.
5460 Level 3 includes extra information, such as all the macro definitions
5461 present in the program.  Some debuggers support macro expansion when
5462 you use @option{-g3}.
5464 @option{-gdwarf-2} does not accept a concatenated debug level, because
5465 GCC used to support an option @option{-gdwarf} that meant to generate
5466 debug information in version 1 of the DWARF format (which is very
5467 different from version 2), and it would have been too confusing.  That
5468 debug format is long obsolete, but the option cannot be changed now.
5469 Instead use an additional @option{-g@var{level}} option to change the
5470 debug level for DWARF.
5472 @item -gtoggle
5473 @opindex gtoggle
5474 Turn off generation of debug info, if leaving out this option
5475 generates it, or turn it on at level 2 otherwise.  The position of this
5476 argument in the command line does not matter; it takes effect after all
5477 other options are processed, and it does so only once, no matter how
5478 many times it is given.  This is mainly intended to be used with
5479 @option{-fcompare-debug}.
5481 @item -fsanitize=address
5482 @opindex fsanitize=address
5483 Enable AddressSanitizer, a fast memory error detector.
5484 Memory access instructions will be instrumented to detect
5485 out-of-bounds and use-after-free bugs.
5486 See @uref{http://code.google.com/p/address-sanitizer/} for
5487 more details.  The run-time behavior can be influenced using the
5488 @env{ASAN_OPTIONS} environment variable; see
5489 @url{https://code.google.com/p/address-sanitizer/wiki/Flags#Run-time_flags} for
5490 a list of supported options.
5492 @item -fsanitize=kernel-address
5493 @opindex fsanitize=kernel-address
5494 Enable AddressSanitizer for Linux kernel.
5495 See @uref{http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerForKernel} for more details.
5497 @item -fsanitize=thread
5498 @opindex fsanitize=thread
5499 Enable ThreadSanitizer, a fast data race detector.
5500 Memory access instructions will be instrumented to detect
5501 data race bugs.  See @uref{http://code.google.com/p/thread-sanitizer/} for more
5502 details. The run-time behavior can be influenced using the @env{TSAN_OPTIONS}
5503 environment variable; see
5504 @url{https://code.google.com/p/thread-sanitizer/wiki/Flags} for a list of
5505 supported options.
5507 @item -fsanitize=leak
5508 @opindex fsanitize=leak
5509 Enable LeakSanitizer, a memory leak detector.
5510 This option only matters for linking of executables and if neither
5511 @option{-fsanitize=address} nor @option{-fsanitize=thread} is used.  In that
5512 case it will link the executable against a library that overrides @code{malloc}
5513 and other allocator functions.  See
5514 @uref{https://code.google.com/p/address-sanitizer/wiki/LeakSanitizer} for more
5515 details.  The run-time behavior can be influenced using the
5516 @env{LSAN_OPTIONS} environment variable.
5518 @item -fsanitize=undefined
5519 @opindex fsanitize=undefined
5520 Enable UndefinedBehaviorSanitizer, a fast undefined behavior detector.
5521 Various computations will be instrumented to detect undefined behavior
5522 at runtime.  Current suboptions are:
5524 @table @gcctabopt
5526 @item -fsanitize=shift
5527 @opindex fsanitize=shift
5528 This option enables checking that the result of a shift operation is
5529 not undefined.  Note that what exactly is considered undefined differs
5530 slightly between C and C++, as well as between ISO C90 and C99, etc.
5532 @item -fsanitize=integer-divide-by-zero
5533 @opindex fsanitize=integer-divide-by-zero
5534 Detect integer division by zero as well as @code{INT_MIN / -1} division.
5536 @item -fsanitize=unreachable
5537 @opindex fsanitize=unreachable
5538 With this option, the compiler will turn the @code{__builtin_unreachable}
5539 call into a diagnostics message call instead.  When reaching the
5540 @code{__builtin_unreachable} call, the behavior is undefined.
5542 @item -fsanitize=vla-bound
5543 @opindex fsanitize=vla-bound
5544 This option instructs the compiler to check that the size of a variable
5545 length array is positive.  This option does not have any effect in
5546 @option{-std=c++14} mode, as the standard requires the exception be thrown
5547 instead.
5549 @item -fsanitize=null
5550 @opindex fsanitize=null
5551 This option enables pointer checking.  Particularly, the application
5552 built with this option turned on will issue an error message when it
5553 tries to dereference a NULL pointer, or if a reference (possibly an
5554 rvalue reference) is bound to a NULL pointer, or if a method is invoked
5555 on an object pointed by a NULL pointer.
5557 @item -fsanitize=return
5558 @opindex fsanitize=return
5559 This option enables return statement checking.  Programs
5560 built with this option turned on will issue an error message
5561 when the end of a non-void function is reached without actually
5562 returning a value.  This option works in C++ only.
5564 @item -fsanitize=signed-integer-overflow
5565 @opindex fsanitize=signed-integer-overflow
5566 This option enables signed integer overflow checking.  We check that
5567 the result of @code{+}, @code{*}, and both unary and binary @code{-}
5568 does not overflow in the signed arithmetics.  Note, integer promotion
5569 rules must be taken into account.  That is, the following is not an
5570 overflow:
5571 @smallexample
5572 signed char a = SCHAR_MAX;
5573 a++;
5574 @end smallexample
5576 @item -fsanitize=bounds
5577 @opindex fsanitize=bounds
5578 This option enables instrumentation of array bounds.  Various out of bounds
5579 accesses are detected.  Flexible array members and initializers of variables
5580 with static storage are not instrumented.
5582 @item -fsanitize=alignment
5583 @opindex fsanitize=alignment
5585 This option enables checking of alignment of pointers when they are
5586 dereferenced, or when a reference is bound to insufficiently aligned target,
5587 or when a method or constructor is invoked on insufficiently aligned object.
5589 @item -fsanitize=object-size
5590 @opindex fsanitize=object-size
5591 This option enables instrumentation of memory references using the
5592 @code{__builtin_object_size} function.  Various out of bounds pointer
5593 accesses are detected.
5595 @item -fsanitize=float-divide-by-zero
5596 @opindex fsanitize=float-divide-by-zero
5597 Detect floating-point division by zero.  Unlike other similar options,
5598 @option{-fsanitize=float-divide-by-zero} is not enabled by
5599 @option{-fsanitize=undefined}, since floating-point division by zero can
5600 be a legitimate way of obtaining infinities and NaNs.
5602 @item -fsanitize=float-cast-overflow
5603 @opindex fsanitize=float-cast-overflow
5604 This option enables floating-point type to integer conversion checking.
5605 We check that the result of the conversion does not overflow.
5606 This option does not work well with @code{FE_INVALID} exceptions enabled.
5608 @item -fsanitize=nonnull-attribute
5609 @opindex fsanitize=nonnull-attribute
5611 This option enables instrumentation of calls, checking whether null values
5612 are not passed to arguments marked as requiring a non-null value by the
5613 @code{nonnull} function attribute.
5615 @item -fsanitize=returns-nonnull-attribute
5616 @opindex fsanitize=returns-nonnull-attribute
5618 This option enables instrumentation of return statements in functions
5619 marked with @code{returns_nonnull} function attribute, to detect returning
5620 of null values from such functions.
5622 @item -fsanitize=bool
5623 @opindex fsanitize=bool
5625 This option enables instrumentation of loads from bool.  If a value other
5626 than 0/1 is loaded, a run-time error is issued.
5628 @item -fsanitize=enum
5629 @opindex fsanitize=enum
5631 This option enables instrumentation of loads from an enum type.  If
5632 a value outside the range of values for the enum type is loaded,
5633 a run-time error is issued.
5635 @end table
5637 While @option{-ftrapv} causes traps for signed overflows to be emitted,
5638 @option{-fsanitize=undefined} gives a diagnostic message.
5639 This currently works only for the C family of languages.
5641 @item -fasan-shadow-offset=@var{number}
5642 @opindex fasan-shadow-offset
5643 This option forces GCC to use custom shadow offset in AddressSanitizer checks.
5644 It is useful for experimenting with different shadow memory layouts in
5645 Kernel AddressSanitizer.
5647 @item -fsanitize-recover@r{[}=@var{opts}@r{]}
5648 @opindex fsanitize-recover
5649 @opindex fno-sanitize-recover
5650 @option{-fsanitize-recover=} controls error recovery mode for sanitizers
5651 mentioned in comma-separated list of @var{opts}.  Enabling this option
5652 for a sanitizer component would cause it to attempt to continue
5653 running the program as if no error happened.  This means multiple
5654 runtime errors can be reported in a single program run, and the exit
5655 code of the program may indicate success even when errors
5656 have been reported.  The @option{-fno-sanitize-recover=} can be used to alter
5657 this behavior, only the first detected error will be reported
5658 and program will exit after that with non-zero exit code.
5660 Currently this feature only works for @option{-fsanitize=undefined} (and its suboptions
5661 except for @option{-fsanitize=unreachable} and @option{-fsanitize=return}),
5662 @option{-fsanitize=float-cast-overflow}, @option{-fsanitize=float-divide-by-zero} and
5663 @option{-fsanitize=kernel-address}.  For these sanitizers error recovery is turned on by default.
5665 Syntax without explicit @var{opts} parameter is deprecated.  It is equivalent to
5666 @option{-fsanitize-recover=undefined,float-cast-overflow,float-divide-by-zero,kernel-address}.
5667 Similarly @option{-fno-sanitize-recover} is equivalent to
5668 @option{-fno-sanitize-recover=undefined,float-cast-overflow,float-divide-by-zero,kernel-address}.
5670 @item -fsanitize-undefined-trap-on-error
5671 @opindex fsanitize-undefined-trap-on-error
5672 The @option{-fsanitize-undefined-trap-on-error} instructs the compiler to
5673 report undefined behavior using @code{__builtin_trap ()} rather than
5674 a @code{libubsan} library routine.  The advantage of this is that the
5675 @code{libubsan} library is not needed and will not be linked in, so this
5676 is usable even for use in freestanding environments.
5678 @item -fdump-final-insns@r{[}=@var{file}@r{]}
5679 @opindex fdump-final-insns
5680 Dump the final internal representation (RTL) to @var{file}.  If the
5681 optional argument is omitted (or if @var{file} is @code{.}), the name
5682 of the dump file is determined by appending @code{.gkd} to the
5683 compilation output file name.
5685 @item -fcompare-debug@r{[}=@var{opts}@r{]}
5686 @opindex fcompare-debug
5687 @opindex fno-compare-debug
5688 If no error occurs during compilation, run the compiler a second time,
5689 adding @var{opts} and @option{-fcompare-debug-second} to the arguments
5690 passed to the second compilation.  Dump the final internal
5691 representation in both compilations, and print an error if they differ.
5693 If the equal sign is omitted, the default @option{-gtoggle} is used.
5695 The environment variable @env{GCC_COMPARE_DEBUG}, if defined, non-empty
5696 and nonzero, implicitly enables @option{-fcompare-debug}.  If
5697 @env{GCC_COMPARE_DEBUG} is defined to a string starting with a dash,
5698 then it is used for @var{opts}, otherwise the default @option{-gtoggle}
5699 is used.
5701 @option{-fcompare-debug=}, with the equal sign but without @var{opts},
5702 is equivalent to @option{-fno-compare-debug}, which disables the dumping
5703 of the final representation and the second compilation, preventing even
5704 @env{GCC_COMPARE_DEBUG} from taking effect.
5706 To verify full coverage during @option{-fcompare-debug} testing, set
5707 @env{GCC_COMPARE_DEBUG} to say @samp{-fcompare-debug-not-overridden},
5708 which GCC rejects as an invalid option in any actual compilation
5709 (rather than preprocessing, assembly or linking).  To get just a
5710 warning, setting @env{GCC_COMPARE_DEBUG} to @samp{-w%n-fcompare-debug
5711 not overridden} will do.
5713 @item -fcompare-debug-second
5714 @opindex fcompare-debug-second
5715 This option is implicitly passed to the compiler for the second
5716 compilation requested by @option{-fcompare-debug}, along with options to
5717 silence warnings, and omitting other options that would cause
5718 side-effect compiler outputs to files or to the standard output.  Dump
5719 files and preserved temporary files are renamed so as to contain the
5720 @code{.gk} additional extension during the second compilation, to avoid
5721 overwriting those generated by the first.
5723 When this option is passed to the compiler driver, it causes the
5724 @emph{first} compilation to be skipped, which makes it useful for little
5725 other than debugging the compiler proper.
5727 @item -feliminate-dwarf2-dups
5728 @opindex feliminate-dwarf2-dups
5729 Compress DWARF 2 debugging information by eliminating duplicated
5730 information about each symbol.  This option only makes sense when
5731 generating DWARF 2 debugging information with @option{-gdwarf-2}.
5733 @item -femit-struct-debug-baseonly
5734 @opindex femit-struct-debug-baseonly
5735 Emit debug information for struct-like types
5736 only when the base name of the compilation source file
5737 matches the base name of file in which the struct is defined.
5739 This option substantially reduces the size of debugging information,
5740 but at significant potential loss in type information to the debugger.
5741 See @option{-femit-struct-debug-reduced} for a less aggressive option.
5742 See @option{-femit-struct-debug-detailed} for more detailed control.
5744 This option works only with DWARF 2.
5746 @item -femit-struct-debug-reduced
5747 @opindex femit-struct-debug-reduced
5748 Emit debug information for struct-like types
5749 only when the base name of the compilation source file
5750 matches the base name of file in which the type is defined,
5751 unless the struct is a template or defined in a system header.
5753 This option significantly reduces the size of debugging information,
5754 with some potential loss in type information to the debugger.
5755 See @option{-femit-struct-debug-baseonly} for a more aggressive option.
5756 See @option{-femit-struct-debug-detailed} for more detailed control.
5758 This option works only with DWARF 2.
5760 @item -femit-struct-debug-detailed@r{[}=@var{spec-list}@r{]}
5761 Specify the struct-like types
5762 for which the compiler generates debug information.
5763 The intent is to reduce duplicate struct debug information
5764 between different object files within the same program.
5766 This option is a detailed version of
5767 @option{-femit-struct-debug-reduced} and @option{-femit-struct-debug-baseonly},
5768 which serves for most needs.
5770 A specification has the syntax@*
5771 [@samp{dir:}|@samp{ind:}][@samp{ord:}|@samp{gen:}](@samp{any}|@samp{sys}|@samp{base}|@samp{none})
5773 The optional first word limits the specification to
5774 structs that are used directly (@samp{dir:}) or used indirectly (@samp{ind:}).
5775 A struct type is used directly when it is the type of a variable, member.
5776 Indirect uses arise through pointers to structs.
5777 That is, when use of an incomplete struct is valid, the use is indirect.
5778 An example is
5779 @samp{struct one direct; struct two * indirect;}.
5781 The optional second word limits the specification to
5782 ordinary structs (@samp{ord:}) or generic structs (@samp{gen:}).
5783 Generic structs are a bit complicated to explain.
5784 For C++, these are non-explicit specializations of template classes,
5785 or non-template classes within the above.
5786 Other programming languages have generics,
5787 but @option{-femit-struct-debug-detailed} does not yet implement them.
5789 The third word specifies the source files for those
5790 structs for which the compiler should emit debug information.
5791 The values @samp{none} and @samp{any} have the normal meaning.
5792 The value @samp{base} means that
5793 the base of name of the file in which the type declaration appears
5794 must match the base of the name of the main compilation file.
5795 In practice, this means that when compiling @file{foo.c}, debug information
5796 is generated for types declared in that file and @file{foo.h},
5797 but not other header files.
5798 The value @samp{sys} means those types satisfying @samp{base}
5799 or declared in system or compiler headers.
5801 You may need to experiment to determine the best settings for your application.
5803 The default is @option{-femit-struct-debug-detailed=all}.
5805 This option works only with DWARF 2.
5807 @item -fno-merge-debug-strings
5808 @opindex fmerge-debug-strings
5809 @opindex fno-merge-debug-strings
5810 Direct the linker to not merge together strings in the debugging
5811 information that are identical in different object files.  Merging is
5812 not supported by all assemblers or linkers.  Merging decreases the size
5813 of the debug information in the output file at the cost of increasing
5814 link processing time.  Merging is enabled by default.
5816 @item -fdebug-prefix-map=@var{old}=@var{new}
5817 @opindex fdebug-prefix-map
5818 When compiling files in directory @file{@var{old}}, record debugging
5819 information describing them as in @file{@var{new}} instead.
5821 @item -fno-dwarf2-cfi-asm
5822 @opindex fdwarf2-cfi-asm
5823 @opindex fno-dwarf2-cfi-asm
5824 Emit DWARF 2 unwind info as compiler generated @code{.eh_frame} section
5825 instead of using GAS @code{.cfi_*} directives.
5827 @cindex @command{prof}
5828 @item -p
5829 @opindex p
5830 Generate extra code to write profile information suitable for the
5831 analysis program @command{prof}.  You must use this option when compiling
5832 the source files you want data about, and you must also use it when
5833 linking.
5835 @cindex @command{gprof}
5836 @item -pg
5837 @opindex pg
5838 Generate extra code to write profile information suitable for the
5839 analysis program @command{gprof}.  You must use this option when compiling
5840 the source files you want data about, and you must also use it when
5841 linking.
5843 @item -Q
5844 @opindex Q
5845 Makes the compiler print out each function name as it is compiled, and
5846 print some statistics about each pass when it finishes.
5848 @item -ftime-report
5849 @opindex ftime-report
5850 Makes the compiler print some statistics about the time consumed by each
5851 pass when it finishes.
5853 @item -fmem-report
5854 @opindex fmem-report
5855 Makes the compiler print some statistics about permanent memory
5856 allocation when it finishes.
5858 @item -fmem-report-wpa
5859 @opindex fmem-report-wpa
5860 Makes the compiler print some statistics about permanent memory
5861 allocation for the WPA phase only.
5863 @item -fpre-ipa-mem-report
5864 @opindex fpre-ipa-mem-report
5865 @item -fpost-ipa-mem-report
5866 @opindex fpost-ipa-mem-report
5867 Makes the compiler print some statistics about permanent memory
5868 allocation before or after interprocedural optimization.
5870 @item -fprofile-report
5871 @opindex fprofile-report
5872 Makes the compiler print some statistics about consistency of the
5873 (estimated) profile and effect of individual passes.
5875 @item -fstack-usage
5876 @opindex fstack-usage
5877 Makes the compiler output stack usage information for the program, on a
5878 per-function basis.  The filename for the dump is made by appending
5879 @file{.su} to the @var{auxname}.  @var{auxname} is generated from the name of
5880 the output file, if explicitly specified and it is not an executable,
5881 otherwise it is the basename of the source file.  An entry is made up
5882 of three fields:
5884 @itemize
5885 @item
5886 The name of the function.
5887 @item
5888 A number of bytes.
5889 @item
5890 One or more qualifiers: @code{static}, @code{dynamic}, @code{bounded}.
5891 @end itemize
5893 The qualifier @code{static} means that the function manipulates the stack
5894 statically: a fixed number of bytes are allocated for the frame on function
5895 entry and released on function exit; no stack adjustments are otherwise made
5896 in the function.  The second field is this fixed number of bytes.
5898 The qualifier @code{dynamic} means that the function manipulates the stack
5899 dynamically: in addition to the static allocation described above, stack
5900 adjustments are made in the body of the function, for example to push/pop
5901 arguments around function calls.  If the qualifier @code{bounded} is also
5902 present, the amount of these adjustments is bounded at compile time and
5903 the second field is an upper bound of the total amount of stack used by
5904 the function.  If it is not present, the amount of these adjustments is
5905 not bounded at compile time and the second field only represents the
5906 bounded part.
5908 @item -fprofile-arcs
5909 @opindex fprofile-arcs
5910 Add code so that program flow @dfn{arcs} are instrumented.  During
5911 execution the program records how many times each branch and call is
5912 executed and how many times it is taken or returns.  When the compiled
5913 program exits it saves this data to a file called
5914 @file{@var{auxname}.gcda} for each source file.  The data may be used for
5915 profile-directed optimizations (@option{-fbranch-probabilities}), or for
5916 test coverage analysis (@option{-ftest-coverage}).  Each object file's
5917 @var{auxname} is generated from the name of the output file, if
5918 explicitly specified and it is not the final executable, otherwise it is
5919 the basename of the source file.  In both cases any suffix is removed
5920 (e.g.@: @file{foo.gcda} for input file @file{dir/foo.c}, or
5921 @file{dir/foo.gcda} for output file specified as @option{-o dir/foo.o}).
5922 @xref{Cross-profiling}.
5924 @cindex @command{gcov}
5925 @item --coverage
5926 @opindex coverage
5928 This option is used to compile and link code instrumented for coverage
5929 analysis.  The option is a synonym for @option{-fprofile-arcs}
5930 @option{-ftest-coverage} (when compiling) and @option{-lgcov} (when
5931 linking).  See the documentation for those options for more details.
5933 @itemize
5935 @item
5936 Compile the source files with @option{-fprofile-arcs} plus optimization
5937 and code generation options.  For test coverage analysis, use the
5938 additional @option{-ftest-coverage} option.  You do not need to profile
5939 every source file in a program.
5941 @item
5942 Link your object files with @option{-lgcov} or @option{-fprofile-arcs}
5943 (the latter implies the former).
5945 @item
5946 Run the program on a representative workload to generate the arc profile
5947 information.  This may be repeated any number of times.  You can run
5948 concurrent instances of your program, and provided that the file system
5949 supports locking, the data files will be correctly updated.  Also
5950 @code{fork} calls are detected and correctly handled (double counting
5951 will not happen).
5953 @item
5954 For profile-directed optimizations, compile the source files again with
5955 the same optimization and code generation options plus
5956 @option{-fbranch-probabilities} (@pxref{Optimize Options,,Options that
5957 Control Optimization}).
5959 @item
5960 For test coverage analysis, use @command{gcov} to produce human readable
5961 information from the @file{.gcno} and @file{.gcda} files.  Refer to the
5962 @command{gcov} documentation for further information.
5964 @end itemize
5966 With @option{-fprofile-arcs}, for each function of your program GCC
5967 creates a program flow graph, then finds a spanning tree for the graph.
5968 Only arcs that are not on the spanning tree have to be instrumented: the
5969 compiler adds code to count the number of times that these arcs are
5970 executed.  When an arc is the only exit or only entrance to a block, the
5971 instrumentation code can be added to the block; otherwise, a new basic
5972 block must be created to hold the instrumentation code.
5974 @need 2000
5975 @item -ftest-coverage
5976 @opindex ftest-coverage
5977 Produce a notes file that the @command{gcov} code-coverage utility
5978 (@pxref{Gcov,, @command{gcov}---a Test Coverage Program}) can use to
5979 show program coverage.  Each source file's note file is called
5980 @file{@var{auxname}.gcno}.  Refer to the @option{-fprofile-arcs} option
5981 above for a description of @var{auxname} and instructions on how to
5982 generate test coverage data.  Coverage data matches the source files
5983 more closely if you do not optimize.
5985 @item -fdbg-cnt-list
5986 @opindex fdbg-cnt-list
5987 Print the name and the counter upper bound for all debug counters.
5990 @item -fdbg-cnt=@var{counter-value-list}
5991 @opindex fdbg-cnt
5992 Set the internal debug counter upper bound.  @var{counter-value-list}
5993 is a comma-separated list of @var{name}:@var{value} pairs
5994 which sets the upper bound of each debug counter @var{name} to @var{value}.
5995 All debug counters have the initial upper bound of @code{UINT_MAX};
5996 thus @code{dbg_cnt()} returns true always unless the upper bound
5997 is set by this option.
5998 For example, with @option{-fdbg-cnt=dce:10,tail_call:0},
5999 @code{dbg_cnt(dce)} returns true only for first 10 invocations.
6001 @item -fenable-@var{kind}-@var{pass}
6002 @itemx -fdisable-@var{kind}-@var{pass}=@var{range-list}
6003 @opindex fdisable-
6004 @opindex fenable-
6006 This is a set of options that are used to explicitly disable/enable
6007 optimization passes.  These options are intended for use for debugging GCC.
6008 Compiler users should use regular options for enabling/disabling
6009 passes instead.
6011 @table @gcctabopt
6013 @item -fdisable-ipa-@var{pass}
6014 Disable IPA pass @var{pass}. @var{pass} is the pass name.  If the same pass is
6015 statically invoked in the compiler multiple times, the pass name should be
6016 appended with a sequential number starting from 1.
6018 @item -fdisable-rtl-@var{pass}
6019 @itemx -fdisable-rtl-@var{pass}=@var{range-list}
6020 Disable RTL pass @var{pass}.  @var{pass} is the pass name.  If the same pass is
6021 statically invoked in the compiler multiple times, the pass name should be
6022 appended with a sequential number starting from 1.  @var{range-list} is a 
6023 comma-separated list of function ranges or assembler names.  Each range is a number
6024 pair separated by a colon.  The range is inclusive in both ends.  If the range
6025 is trivial, the number pair can be simplified as a single number.  If the
6026 function's call graph node's @var{uid} falls within one of the specified ranges,
6027 the @var{pass} is disabled for that function.  The @var{uid} is shown in the
6028 function header of a dump file, and the pass names can be dumped by using
6029 option @option{-fdump-passes}.
6031 @item -fdisable-tree-@var{pass}
6032 @itemx -fdisable-tree-@var{pass}=@var{range-list}
6033 Disable tree pass @var{pass}.  See @option{-fdisable-rtl} for the description of
6034 option arguments.
6036 @item -fenable-ipa-@var{pass}
6037 Enable IPA pass @var{pass}.  @var{pass} is the pass name.  If the same pass is
6038 statically invoked in the compiler multiple times, the pass name should be
6039 appended with a sequential number starting from 1.
6041 @item -fenable-rtl-@var{pass}
6042 @itemx -fenable-rtl-@var{pass}=@var{range-list}
6043 Enable RTL pass @var{pass}.  See @option{-fdisable-rtl} for option argument
6044 description and examples.
6046 @item -fenable-tree-@var{pass}
6047 @itemx -fenable-tree-@var{pass}=@var{range-list}
6048 Enable tree pass @var{pass}.  See @option{-fdisable-rtl} for the description
6049 of option arguments.
6051 @end table
6053 Here are some examples showing uses of these options.
6055 @smallexample
6057 # disable ccp1 for all functions
6058    -fdisable-tree-ccp1
6059 # disable complete unroll for function whose cgraph node uid is 1
6060    -fenable-tree-cunroll=1
6061 # disable gcse2 for functions at the following ranges [1,1],
6062 # [300,400], and [400,1000]
6063 # disable gcse2 for functions foo and foo2
6064    -fdisable-rtl-gcse2=foo,foo2
6065 # disable early inlining
6066    -fdisable-tree-einline
6067 # disable ipa inlining
6068    -fdisable-ipa-inline
6069 # enable tree full unroll
6070    -fenable-tree-unroll
6072 @end smallexample
6074 @item -d@var{letters}
6075 @itemx -fdump-rtl-@var{pass}
6076 @itemx -fdump-rtl-@var{pass}=@var{filename}
6077 @opindex d
6078 @opindex fdump-rtl-@var{pass}
6079 Says to make debugging dumps during compilation at times specified by
6080 @var{letters}.  This is used for debugging the RTL-based passes of the
6081 compiler.  The file names for most of the dumps are made by appending
6082 a pass number and a word to the @var{dumpname}, and the files are
6083 created in the directory of the output file. In case of
6084 @option{=@var{filename}} option, the dump is output on the given file
6085 instead of the pass numbered dump files. Note that the pass number is
6086 computed statically as passes get registered into the pass manager.
6087 Thus the numbering is not related to the dynamic order of execution of
6088 passes.  In particular, a pass installed by a plugin could have a
6089 number over 200 even if it executed quite early.  @var{dumpname} is
6090 generated from the name of the output file, if explicitly specified
6091 and it is not an executable, otherwise it is the basename of the
6092 source file. These switches may have different effects when
6093 @option{-E} is used for preprocessing.
6095 Debug dumps can be enabled with a @option{-fdump-rtl} switch or some
6096 @option{-d} option @var{letters}.  Here are the possible
6097 letters for use in @var{pass} and @var{letters}, and their meanings:
6099 @table @gcctabopt
6101 @item -fdump-rtl-alignments
6102 @opindex fdump-rtl-alignments
6103 Dump after branch alignments have been computed.
6105 @item -fdump-rtl-asmcons
6106 @opindex fdump-rtl-asmcons
6107 Dump after fixing rtl statements that have unsatisfied in/out constraints.
6109 @item -fdump-rtl-auto_inc_dec
6110 @opindex fdump-rtl-auto_inc_dec
6111 Dump after auto-inc-dec discovery.  This pass is only run on
6112 architectures that have auto inc or auto dec instructions.
6114 @item -fdump-rtl-barriers
6115 @opindex fdump-rtl-barriers
6116 Dump after cleaning up the barrier instructions.
6118 @item -fdump-rtl-bbpart
6119 @opindex fdump-rtl-bbpart
6120 Dump after partitioning hot and cold basic blocks.
6122 @item -fdump-rtl-bbro
6123 @opindex fdump-rtl-bbro
6124 Dump after block reordering.
6126 @item -fdump-rtl-btl1
6127 @itemx -fdump-rtl-btl2
6128 @opindex fdump-rtl-btl2
6129 @opindex fdump-rtl-btl2
6130 @option{-fdump-rtl-btl1} and @option{-fdump-rtl-btl2} enable dumping
6131 after the two branch
6132 target load optimization passes.
6134 @item -fdump-rtl-bypass
6135 @opindex fdump-rtl-bypass
6136 Dump after jump bypassing and control flow optimizations.
6138 @item -fdump-rtl-combine
6139 @opindex fdump-rtl-combine
6140 Dump after the RTL instruction combination pass.
6142 @item -fdump-rtl-compgotos
6143 @opindex fdump-rtl-compgotos
6144 Dump after duplicating the computed gotos.
6146 @item -fdump-rtl-ce1
6147 @itemx -fdump-rtl-ce2
6148 @itemx -fdump-rtl-ce3
6149 @opindex fdump-rtl-ce1
6150 @opindex fdump-rtl-ce2
6151 @opindex fdump-rtl-ce3
6152 @option{-fdump-rtl-ce1}, @option{-fdump-rtl-ce2}, and
6153 @option{-fdump-rtl-ce3} enable dumping after the three
6154 if conversion passes.
6156 @item -fdump-rtl-cprop_hardreg
6157 @opindex fdump-rtl-cprop_hardreg
6158 Dump after hard register copy propagation.
6160 @item -fdump-rtl-csa
6161 @opindex fdump-rtl-csa
6162 Dump after combining stack adjustments.
6164 @item -fdump-rtl-cse1
6165 @itemx -fdump-rtl-cse2
6166 @opindex fdump-rtl-cse1
6167 @opindex fdump-rtl-cse2
6168 @option{-fdump-rtl-cse1} and @option{-fdump-rtl-cse2} enable dumping after
6169 the two common subexpression elimination passes.
6171 @item -fdump-rtl-dce
6172 @opindex fdump-rtl-dce
6173 Dump after the standalone dead code elimination passes.
6175 @item -fdump-rtl-dbr
6176 @opindex fdump-rtl-dbr
6177 Dump after delayed branch scheduling.
6179 @item -fdump-rtl-dce1
6180 @itemx -fdump-rtl-dce2
6181 @opindex fdump-rtl-dce1
6182 @opindex fdump-rtl-dce2
6183 @option{-fdump-rtl-dce1} and @option{-fdump-rtl-dce2} enable dumping after
6184 the two dead store elimination passes.
6186 @item -fdump-rtl-eh
6187 @opindex fdump-rtl-eh
6188 Dump after finalization of EH handling code.
6190 @item -fdump-rtl-eh_ranges
6191 @opindex fdump-rtl-eh_ranges
6192 Dump after conversion of EH handling range regions.
6194 @item -fdump-rtl-expand
6195 @opindex fdump-rtl-expand
6196 Dump after RTL generation.
6198 @item -fdump-rtl-fwprop1
6199 @itemx -fdump-rtl-fwprop2
6200 @opindex fdump-rtl-fwprop1
6201 @opindex fdump-rtl-fwprop2
6202 @option{-fdump-rtl-fwprop1} and @option{-fdump-rtl-fwprop2} enable
6203 dumping after the two forward propagation passes.
6205 @item -fdump-rtl-gcse1
6206 @itemx -fdump-rtl-gcse2
6207 @opindex fdump-rtl-gcse1
6208 @opindex fdump-rtl-gcse2
6209 @option{-fdump-rtl-gcse1} and @option{-fdump-rtl-gcse2} enable dumping
6210 after global common subexpression elimination.
6212 @item -fdump-rtl-init-regs
6213 @opindex fdump-rtl-init-regs
6214 Dump after the initialization of the registers.
6216 @item -fdump-rtl-initvals
6217 @opindex fdump-rtl-initvals
6218 Dump after the computation of the initial value sets.
6220 @item -fdump-rtl-into_cfglayout
6221 @opindex fdump-rtl-into_cfglayout
6222 Dump after converting to cfglayout mode.
6224 @item -fdump-rtl-ira
6225 @opindex fdump-rtl-ira
6226 Dump after iterated register allocation.
6228 @item -fdump-rtl-jump
6229 @opindex fdump-rtl-jump
6230 Dump after the second jump optimization.
6232 @item -fdump-rtl-loop2
6233 @opindex fdump-rtl-loop2
6234 @option{-fdump-rtl-loop2} enables dumping after the rtl
6235 loop optimization passes.
6237 @item -fdump-rtl-mach
6238 @opindex fdump-rtl-mach
6239 Dump after performing the machine dependent reorganization pass, if that
6240 pass exists.
6242 @item -fdump-rtl-mode_sw
6243 @opindex fdump-rtl-mode_sw
6244 Dump after removing redundant mode switches.
6246 @item -fdump-rtl-rnreg
6247 @opindex fdump-rtl-rnreg
6248 Dump after register renumbering.
6250 @item -fdump-rtl-outof_cfglayout
6251 @opindex fdump-rtl-outof_cfglayout
6252 Dump after converting from cfglayout mode.
6254 @item -fdump-rtl-peephole2
6255 @opindex fdump-rtl-peephole2
6256 Dump after the peephole pass.
6258 @item -fdump-rtl-postreload
6259 @opindex fdump-rtl-postreload
6260 Dump after post-reload optimizations.
6262 @item -fdump-rtl-pro_and_epilogue
6263 @opindex fdump-rtl-pro_and_epilogue
6264 Dump after generating the function prologues and epilogues.
6266 @item -fdump-rtl-sched1
6267 @itemx -fdump-rtl-sched2
6268 @opindex fdump-rtl-sched1
6269 @opindex fdump-rtl-sched2
6270 @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2} enable dumping
6271 after the basic block scheduling passes.
6273 @item -fdump-rtl-ree
6274 @opindex fdump-rtl-ree
6275 Dump after sign/zero extension elimination.
6277 @item -fdump-rtl-seqabstr
6278 @opindex fdump-rtl-seqabstr
6279 Dump after common sequence discovery.
6281 @item -fdump-rtl-shorten
6282 @opindex fdump-rtl-shorten
6283 Dump after shortening branches.
6285 @item -fdump-rtl-sibling
6286 @opindex fdump-rtl-sibling
6287 Dump after sibling call optimizations.
6289 @item -fdump-rtl-split1
6290 @itemx -fdump-rtl-split2
6291 @itemx -fdump-rtl-split3
6292 @itemx -fdump-rtl-split4
6293 @itemx -fdump-rtl-split5
6294 @opindex fdump-rtl-split1
6295 @opindex fdump-rtl-split2
6296 @opindex fdump-rtl-split3
6297 @opindex fdump-rtl-split4
6298 @opindex fdump-rtl-split5
6299 @option{-fdump-rtl-split1}, @option{-fdump-rtl-split2},
6300 @option{-fdump-rtl-split3}, @option{-fdump-rtl-split4} and
6301 @option{-fdump-rtl-split5} enable dumping after five rounds of
6302 instruction splitting.
6304 @item -fdump-rtl-sms
6305 @opindex fdump-rtl-sms
6306 Dump after modulo scheduling.  This pass is only run on some
6307 architectures.
6309 @item -fdump-rtl-stack
6310 @opindex fdump-rtl-stack
6311 Dump after conversion from GCC's ``flat register file'' registers to the
6312 x87's stack-like registers.  This pass is only run on x86 variants.
6314 @item -fdump-rtl-subreg1
6315 @itemx -fdump-rtl-subreg2
6316 @opindex fdump-rtl-subreg1
6317 @opindex fdump-rtl-subreg2
6318 @option{-fdump-rtl-subreg1} and @option{-fdump-rtl-subreg2} enable dumping after
6319 the two subreg expansion passes.
6321 @item -fdump-rtl-unshare
6322 @opindex fdump-rtl-unshare
6323 Dump after all rtl has been unshared.
6325 @item -fdump-rtl-vartrack
6326 @opindex fdump-rtl-vartrack
6327 Dump after variable tracking.
6329 @item -fdump-rtl-vregs
6330 @opindex fdump-rtl-vregs
6331 Dump after converting virtual registers to hard registers.
6333 @item -fdump-rtl-web
6334 @opindex fdump-rtl-web
6335 Dump after live range splitting.
6337 @item -fdump-rtl-regclass
6338 @itemx -fdump-rtl-subregs_of_mode_init
6339 @itemx -fdump-rtl-subregs_of_mode_finish
6340 @itemx -fdump-rtl-dfinit
6341 @itemx -fdump-rtl-dfinish
6342 @opindex fdump-rtl-regclass
6343 @opindex fdump-rtl-subregs_of_mode_init
6344 @opindex fdump-rtl-subregs_of_mode_finish
6345 @opindex fdump-rtl-dfinit
6346 @opindex fdump-rtl-dfinish
6347 These dumps are defined but always produce empty files.
6349 @item -da
6350 @itemx -fdump-rtl-all
6351 @opindex da
6352 @opindex fdump-rtl-all
6353 Produce all the dumps listed above.
6355 @item -dA
6356 @opindex dA
6357 Annotate the assembler output with miscellaneous debugging information.
6359 @item -dD
6360 @opindex dD
6361 Dump all macro definitions, at the end of preprocessing, in addition to
6362 normal output.
6364 @item -dH
6365 @opindex dH
6366 Produce a core dump whenever an error occurs.
6368 @item -dp
6369 @opindex dp
6370 Annotate the assembler output with a comment indicating which
6371 pattern and alternative is used.  The length of each instruction is
6372 also printed.
6374 @item -dP
6375 @opindex dP
6376 Dump the RTL in the assembler output as a comment before each instruction.
6377 Also turns on @option{-dp} annotation.
6379 @item -dx
6380 @opindex dx
6381 Just generate RTL for a function instead of compiling it.  Usually used
6382 with @option{-fdump-rtl-expand}.
6383 @end table
6385 @item -fdump-noaddr
6386 @opindex fdump-noaddr
6387 When doing debugging dumps, suppress address output.  This makes it more
6388 feasible to use diff on debugging dumps for compiler invocations with
6389 different compiler binaries and/or different
6390 text / bss / data / heap / stack / dso start locations.
6392 @item -freport-bug
6393 @opindex freport-bug
6394 Collect and dump debug information into temporary file if ICE in C/C++
6395 compiler occured.
6397 @item -fdump-unnumbered
6398 @opindex fdump-unnumbered
6399 When doing debugging dumps, suppress instruction numbers and address output.
6400 This makes it more feasible to use diff on debugging dumps for compiler
6401 invocations with different options, in particular with and without
6402 @option{-g}.
6404 @item -fdump-unnumbered-links
6405 @opindex fdump-unnumbered-links
6406 When doing debugging dumps (see @option{-d} option above), suppress
6407 instruction numbers for the links to the previous and next instructions
6408 in a sequence.
6410 @item -fdump-translation-unit @r{(C++ only)}
6411 @itemx -fdump-translation-unit-@var{options} @r{(C++ only)}
6412 @opindex fdump-translation-unit
6413 Dump a representation of the tree structure for the entire translation
6414 unit to a file.  The file name is made by appending @file{.tu} to the
6415 source file name, and the file is created in the same directory as the
6416 output file.  If the @samp{-@var{options}} form is used, @var{options}
6417 controls the details of the dump as described for the
6418 @option{-fdump-tree} options.
6420 @item -fdump-class-hierarchy @r{(C++ only)}
6421 @itemx -fdump-class-hierarchy-@var{options} @r{(C++ only)}
6422 @opindex fdump-class-hierarchy
6423 Dump a representation of each class's hierarchy and virtual function
6424 table layout to a file.  The file name is made by appending
6425 @file{.class} to the source file name, and the file is created in the
6426 same directory as the output file.  If the @samp{-@var{options}} form
6427 is used, @var{options} controls the details of the dump as described
6428 for the @option{-fdump-tree} options.
6430 @item -fdump-ipa-@var{switch}
6431 @opindex fdump-ipa
6432 Control the dumping at various stages of inter-procedural analysis
6433 language tree to a file.  The file name is generated by appending a
6434 switch specific suffix to the source file name, and the file is created
6435 in the same directory as the output file.  The following dumps are
6436 possible:
6438 @table @samp
6439 @item all
6440 Enables all inter-procedural analysis dumps.
6442 @item cgraph
6443 Dumps information about call-graph optimization, unused function removal,
6444 and inlining decisions.
6446 @item inline
6447 Dump after function inlining.
6449 @end table
6451 @item -fdump-passes
6452 @opindex fdump-passes
6453 Dump the list of optimization passes that are turned on and off by
6454 the current command-line options.
6456 @item -fdump-statistics-@var{option}
6457 @opindex fdump-statistics
6458 Enable and control dumping of pass statistics in a separate file.  The
6459 file name is generated by appending a suffix ending in
6460 @samp{.statistics} to the source file name, and the file is created in
6461 the same directory as the output file.  If the @samp{-@var{option}}
6462 form is used, @samp{-stats} causes counters to be summed over the
6463 whole compilation unit while @samp{-details} dumps every event as
6464 the passes generate them.  The default with no option is to sum
6465 counters for each function compiled.
6467 @item -fdump-tree-@var{switch}
6468 @itemx -fdump-tree-@var{switch}-@var{options}
6469 @itemx -fdump-tree-@var{switch}-@var{options}=@var{filename}
6470 @opindex fdump-tree
6471 Control the dumping at various stages of processing the intermediate
6472 language tree to a file.  The file name is generated by appending a
6473 switch-specific suffix to the source file name, and the file is
6474 created in the same directory as the output file. In case of
6475 @option{=@var{filename}} option, the dump is output on the given file
6476 instead of the auto named dump files.  If the @samp{-@var{options}}
6477 form is used, @var{options} is a list of @samp{-} separated options
6478 which control the details of the dump.  Not all options are applicable
6479 to all dumps; those that are not meaningful are ignored.  The
6480 following options are available
6482 @table @samp
6483 @item address
6484 Print the address of each node.  Usually this is not meaningful as it
6485 changes according to the environment and source file.  Its primary use
6486 is for tying up a dump file with a debug environment.
6487 @item asmname
6488 If @code{DECL_ASSEMBLER_NAME} has been set for a given decl, use that
6489 in the dump instead of @code{DECL_NAME}.  Its primary use is ease of
6490 use working backward from mangled names in the assembly file.
6491 @item slim
6492 When dumping front-end intermediate representations, inhibit dumping
6493 of members of a scope or body of a function merely because that scope
6494 has been reached.  Only dump such items when they are directly reachable
6495 by some other path.
6497 When dumping pretty-printed trees, this option inhibits dumping the
6498 bodies of control structures.
6500 When dumping RTL, print the RTL in slim (condensed) form instead of
6501 the default LISP-like representation.
6502 @item raw
6503 Print a raw representation of the tree.  By default, trees are
6504 pretty-printed into a C-like representation.
6505 @item details
6506 Enable more detailed dumps (not honored by every dump option). Also
6507 include information from the optimization passes.
6508 @item stats
6509 Enable dumping various statistics about the pass (not honored by every dump
6510 option).
6511 @item blocks
6512 Enable showing basic block boundaries (disabled in raw dumps).
6513 @item graph
6514 For each of the other indicated dump files (@option{-fdump-rtl-@var{pass}}),
6515 dump a representation of the control flow graph suitable for viewing with
6516 GraphViz to @file{@var{file}.@var{passid}.@var{pass}.dot}.  Each function in
6517 the file is pretty-printed as a subgraph, so that GraphViz can render them
6518 all in a single plot.
6520 This option currently only works for RTL dumps, and the RTL is always
6521 dumped in slim form.
6522 @item vops
6523 Enable showing virtual operands for every statement.
6524 @item lineno
6525 Enable showing line numbers for statements.
6526 @item uid
6527 Enable showing the unique ID (@code{DECL_UID}) for each variable.
6528 @item verbose
6529 Enable showing the tree dump for each statement.
6530 @item eh
6531 Enable showing the EH region number holding each statement.
6532 @item scev
6533 Enable showing scalar evolution analysis details.
6534 @item optimized
6535 Enable showing optimization information (only available in certain
6536 passes).
6537 @item missed
6538 Enable showing missed optimization information (only available in certain
6539 passes).
6540 @item note
6541 Enable other detailed optimization information (only available in
6542 certain passes).
6543 @item =@var{filename}
6544 Instead of an auto named dump file, output into the given file
6545 name. The file names @file{stdout} and @file{stderr} are treated
6546 specially and are considered already open standard streams. For
6547 example,
6549 @smallexample
6550 gcc -O2 -ftree-vectorize -fdump-tree-vect-blocks=foo.dump
6551      -fdump-tree-pre=stderr file.c
6552 @end smallexample
6554 outputs vectorizer dump into @file{foo.dump}, while the PRE dump is
6555 output on to @file{stderr}. If two conflicting dump filenames are
6556 given for the same pass, then the latter option overrides the earlier
6557 one.
6559 @item all
6560 Turn on all options, except @option{raw}, @option{slim}, @option{verbose}
6561 and @option{lineno}.
6563 @item optall
6564 Turn on all optimization options, i.e., @option{optimized},
6565 @option{missed}, and @option{note}.
6566 @end table
6568 The following tree dumps are possible:
6569 @table @samp
6571 @item original
6572 @opindex fdump-tree-original
6573 Dump before any tree based optimization, to @file{@var{file}.original}.
6575 @item optimized
6576 @opindex fdump-tree-optimized
6577 Dump after all tree based optimization, to @file{@var{file}.optimized}.
6579 @item gimple
6580 @opindex fdump-tree-gimple
6581 Dump each function before and after the gimplification pass to a file.  The
6582 file name is made by appending @file{.gimple} to the source file name.
6584 @item cfg
6585 @opindex fdump-tree-cfg
6586 Dump the control flow graph of each function to a file.  The file name is
6587 made by appending @file{.cfg} to the source file name.
6589 @item ch
6590 @opindex fdump-tree-ch
6591 Dump each function after copying loop headers.  The file name is made by
6592 appending @file{.ch} to the source file name.
6594 @item ssa
6595 @opindex fdump-tree-ssa
6596 Dump SSA related information to a file.  The file name is made by appending
6597 @file{.ssa} to the source file name.
6599 @item alias
6600 @opindex fdump-tree-alias
6601 Dump aliasing information for each function.  The file name is made by
6602 appending @file{.alias} to the source file name.
6604 @item ccp
6605 @opindex fdump-tree-ccp
6606 Dump each function after CCP@.  The file name is made by appending
6607 @file{.ccp} to the source file name.
6609 @item storeccp
6610 @opindex fdump-tree-storeccp
6611 Dump each function after STORE-CCP@.  The file name is made by appending
6612 @file{.storeccp} to the source file name.
6614 @item pre
6615 @opindex fdump-tree-pre
6616 Dump trees after partial redundancy elimination.  The file name is made
6617 by appending @file{.pre} to the source file name.
6619 @item fre
6620 @opindex fdump-tree-fre
6621 Dump trees after full redundancy elimination.  The file name is made
6622 by appending @file{.fre} to the source file name.
6624 @item copyprop
6625 @opindex fdump-tree-copyprop
6626 Dump trees after copy propagation.  The file name is made
6627 by appending @file{.copyprop} to the source file name.
6629 @item store_copyprop
6630 @opindex fdump-tree-store_copyprop
6631 Dump trees after store copy-propagation.  The file name is made
6632 by appending @file{.store_copyprop} to the source file name.
6634 @item dce
6635 @opindex fdump-tree-dce
6636 Dump each function after dead code elimination.  The file name is made by
6637 appending @file{.dce} to the source file name.
6639 @item sra
6640 @opindex fdump-tree-sra
6641 Dump each function after performing scalar replacement of aggregates.  The
6642 file name is made by appending @file{.sra} to the source file name.
6644 @item sink
6645 @opindex fdump-tree-sink
6646 Dump each function after performing code sinking.  The file name is made
6647 by appending @file{.sink} to the source file name.
6649 @item dom
6650 @opindex fdump-tree-dom
6651 Dump each function after applying dominator tree optimizations.  The file
6652 name is made by appending @file{.dom} to the source file name.
6654 @item dse
6655 @opindex fdump-tree-dse
6656 Dump each function after applying dead store elimination.  The file
6657 name is made by appending @file{.dse} to the source file name.
6659 @item phiopt
6660 @opindex fdump-tree-phiopt
6661 Dump each function after optimizing PHI nodes into straightline code.  The file
6662 name is made by appending @file{.phiopt} to the source file name.
6664 @item forwprop
6665 @opindex fdump-tree-forwprop
6666 Dump each function after forward propagating single use variables.  The file
6667 name is made by appending @file{.forwprop} to the source file name.
6669 @item copyrename
6670 @opindex fdump-tree-copyrename
6671 Dump each function after applying the copy rename optimization.  The file
6672 name is made by appending @file{.copyrename} to the source file name.
6674 @item nrv
6675 @opindex fdump-tree-nrv
6676 Dump each function after applying the named return value optimization on
6677 generic trees.  The file name is made by appending @file{.nrv} to the source
6678 file name.
6680 @item vect
6681 @opindex fdump-tree-vect
6682 Dump each function after applying vectorization of loops.  The file name is
6683 made by appending @file{.vect} to the source file name.
6685 @item slp
6686 @opindex fdump-tree-slp
6687 Dump each function after applying vectorization of basic blocks.  The file name
6688 is made by appending @file{.slp} to the source file name.
6690 @item vrp
6691 @opindex fdump-tree-vrp
6692 Dump each function after Value Range Propagation (VRP).  The file name
6693 is made by appending @file{.vrp} to the source file name.
6695 @item all
6696 @opindex fdump-tree-all
6697 Enable all the available tree dumps with the flags provided in this option.
6698 @end table
6700 @item -fopt-info
6701 @itemx -fopt-info-@var{options}
6702 @itemx -fopt-info-@var{options}=@var{filename}
6703 @opindex fopt-info
6704 Controls optimization dumps from various optimization passes. If the
6705 @samp{-@var{options}} form is used, @var{options} is a list of
6706 @samp{-} separated options to select the dump details and
6707 optimizations.  If @var{options} is not specified, it defaults to
6708 @option{optimized} for details and @option{optall} for optimization
6709 groups. If the @var{filename} is not specified, it defaults to
6710 @file{stderr}. Note that the output @var{filename} will be overwritten
6711 in case of multiple translation units. If a combined output from
6712 multiple translation units is desired, @file{stderr} should be used
6713 instead.
6715 The options can be divided into two groups, 1) options describing the
6716 verbosity of the dump, and 2) options describing which optimizations
6717 should be included. The options from both the groups can be freely
6718 mixed as they are non-overlapping. However, in case of any conflicts,
6719 the latter options override the earlier options on the command
6720 line. Though multiple -fopt-info options are accepted, only one of
6721 them can have @option{=filename}. If other filenames are provided then
6722 all but the first one are ignored.
6724 The dump verbosity has the following options
6726 @table @samp
6727 @item optimized
6728 Print information when an optimization is successfully applied. It is
6729 up to a pass to decide which information is relevant. For example, the
6730 vectorizer passes print the source location of loops which got
6731 successfully vectorized.
6732 @item missed
6733 Print information about missed optimizations. Individual passes
6734 control which information to include in the output. For example,
6736 @smallexample
6737 gcc -O2 -ftree-vectorize -fopt-info-vec-missed
6738 @end smallexample
6740 will print information about missed optimization opportunities from
6741 vectorization passes on stderr.
6742 @item note
6743 Print verbose information about optimizations, such as certain
6744 transformations, more detailed messages about decisions etc.
6745 @item all
6746 Print detailed optimization information. This includes
6747 @var{optimized}, @var{missed}, and @var{note}.
6748 @end table
6750 The second set of options describes a group of optimizations and may
6751 include one or more of the following.
6753 @table @samp
6754 @item ipa
6755 Enable dumps from all interprocedural optimizations.
6756 @item loop
6757 Enable dumps from all loop optimizations.
6758 @item inline
6759 Enable dumps from all inlining optimizations.
6760 @item vec
6761 Enable dumps from all vectorization optimizations.
6762 @item optall
6763 Enable dumps from all optimizations. This is a superset of
6764 the optimization groups listed above.
6765 @end table
6767 For example,
6768 @smallexample
6769 gcc -O3 -fopt-info-missed=missed.all
6770 @end smallexample
6772 outputs missed optimization report from all the passes into
6773 @file{missed.all}.
6775 As another example,
6776 @smallexample
6777 gcc -O3 -fopt-info-inline-optimized-missed=inline.txt
6778 @end smallexample
6780 will output information about missed optimizations as well as
6781 optimized locations from all the inlining passes into
6782 @file{inline.txt}.
6784 If the @var{filename} is provided, then the dumps from all the
6785 applicable optimizations are concatenated into the @file{filename}.
6786 Otherwise the dump is output onto @file{stderr}. If @var{options} is
6787 omitted, it defaults to @option{all-optall}, which means dump all
6788 available optimization info from all the passes. In the following
6789 example, all optimization info is output on to @file{stderr}.
6791 @smallexample
6792 gcc -O3 -fopt-info
6793 @end smallexample
6795 Note that @option{-fopt-info-vec-missed} behaves the same as
6796 @option{-fopt-info-missed-vec}.
6798 As another example, consider
6800 @smallexample
6801 gcc -fopt-info-vec-missed=vec.miss -fopt-info-loop-optimized=loop.opt
6802 @end smallexample
6804 Here the two output filenames @file{vec.miss} and @file{loop.opt} are
6805 in conflict since only one output file is allowed. In this case, only
6806 the first option takes effect and the subsequent options are
6807 ignored. Thus only the @file{vec.miss} is produced which contains
6808 dumps from the vectorizer about missed opportunities.
6810 @item -frandom-seed=@var{number}
6811 @opindex frandom-seed
6812 This option provides a seed that GCC uses in place of
6813 random numbers in generating certain symbol names
6814 that have to be different in every compiled file.  It is also used to
6815 place unique stamps in coverage data files and the object files that
6816 produce them.  You can use the @option{-frandom-seed} option to produce
6817 reproducibly identical object files.
6819 The @var{number} should be different for every file you compile.
6821 @item -fsched-verbose=@var{n}
6822 @opindex fsched-verbose
6823 On targets that use instruction scheduling, this option controls the
6824 amount of debugging output the scheduler prints.  This information is
6825 written to standard error, unless @option{-fdump-rtl-sched1} or
6826 @option{-fdump-rtl-sched2} is specified, in which case it is output
6827 to the usual dump listing file, @file{.sched1} or @file{.sched2}
6828 respectively.  However for @var{n} greater than nine, the output is
6829 always printed to standard error.
6831 For @var{n} greater than zero, @option{-fsched-verbose} outputs the
6832 same information as @option{-fdump-rtl-sched1} and @option{-fdump-rtl-sched2}.
6833 For @var{n} greater than one, it also output basic block probabilities,
6834 detailed ready list information and unit/insn info.  For @var{n} greater
6835 than two, it includes RTL at abort point, control-flow and regions info.
6836 And for @var{n} over four, @option{-fsched-verbose} also includes
6837 dependence info.
6839 @item -save-temps
6840 @itemx -save-temps=cwd
6841 @opindex save-temps
6842 Store the usual ``temporary'' intermediate files permanently; place them
6843 in the current directory and name them based on the source file.  Thus,
6844 compiling @file{foo.c} with @option{-c -save-temps} produces files
6845 @file{foo.i} and @file{foo.s}, as well as @file{foo.o}.  This creates a
6846 preprocessed @file{foo.i} output file even though the compiler now
6847 normally uses an integrated preprocessor.
6849 When used in combination with the @option{-x} command-line option,
6850 @option{-save-temps} is sensible enough to avoid over writing an
6851 input source file with the same extension as an intermediate file.
6852 The corresponding intermediate file may be obtained by renaming the
6853 source file before using @option{-save-temps}.
6855 If you invoke GCC in parallel, compiling several different source
6856 files that share a common base name in different subdirectories or the
6857 same source file compiled for multiple output destinations, it is
6858 likely that the different parallel compilers will interfere with each
6859 other, and overwrite the temporary files.  For instance:
6861 @smallexample
6862 gcc -save-temps -o outdir1/foo.o indir1/foo.c&
6863 gcc -save-temps -o outdir2/foo.o indir2/foo.c&
6864 @end smallexample
6866 may result in @file{foo.i} and @file{foo.o} being written to
6867 simultaneously by both compilers.
6869 @item -save-temps=obj
6870 @opindex save-temps=obj
6871 Store the usual ``temporary'' intermediate files permanently.  If the
6872 @option{-o} option is used, the temporary files are based on the
6873 object file.  If the @option{-o} option is not used, the
6874 @option{-save-temps=obj} switch behaves like @option{-save-temps}.
6876 For example:
6878 @smallexample
6879 gcc -save-temps=obj -c foo.c
6880 gcc -save-temps=obj -c bar.c -o dir/xbar.o
6881 gcc -save-temps=obj foobar.c -o dir2/yfoobar
6882 @end smallexample
6884 @noindent
6885 creates @file{foo.i}, @file{foo.s}, @file{dir/xbar.i},
6886 @file{dir/xbar.s}, @file{dir2/yfoobar.i}, @file{dir2/yfoobar.s}, and
6887 @file{dir2/yfoobar.o}.
6889 @item -time@r{[}=@var{file}@r{]}
6890 @opindex time
6891 Report the CPU time taken by each subprocess in the compilation
6892 sequence.  For C source files, this is the compiler proper and assembler
6893 (plus the linker if linking is done).
6895 Without the specification of an output file, the output looks like this:
6897 @smallexample
6898 # cc1 0.12 0.01
6899 # as 0.00 0.01
6900 @end smallexample
6902 The first number on each line is the ``user time'', that is time spent
6903 executing the program itself.  The second number is ``system time'',
6904 time spent executing operating system routines on behalf of the program.
6905 Both numbers are in seconds.
6907 With the specification of an output file, the output is appended to the
6908 named file, and it looks like this:
6910 @smallexample
6911 0.12 0.01 cc1 @var{options}
6912 0.00 0.01 as @var{options}
6913 @end smallexample
6915 The ``user time'' and the ``system time'' are moved before the program
6916 name, and the options passed to the program are displayed, so that one
6917 can later tell what file was being compiled, and with which options.
6919 @item -fvar-tracking
6920 @opindex fvar-tracking
6921 Run variable tracking pass.  It computes where variables are stored at each
6922 position in code.  Better debugging information is then generated
6923 (if the debugging information format supports this information).
6925 It is enabled by default when compiling with optimization (@option{-Os},
6926 @option{-O}, @option{-O2}, @dots{}), debugging information (@option{-g}) and
6927 the debug info format supports it.
6929 @item -fvar-tracking-assignments
6930 @opindex fvar-tracking-assignments
6931 @opindex fno-var-tracking-assignments
6932 Annotate assignments to user variables early in the compilation and
6933 attempt to carry the annotations over throughout the compilation all the
6934 way to the end, in an attempt to improve debug information while
6935 optimizing.  Use of @option{-gdwarf-4} is recommended along with it.
6937 It can be enabled even if var-tracking is disabled, in which case
6938 annotations are created and maintained, but discarded at the end.
6940 @item -fvar-tracking-assignments-toggle
6941 @opindex fvar-tracking-assignments-toggle
6942 @opindex fno-var-tracking-assignments-toggle
6943 Toggle @option{-fvar-tracking-assignments}, in the same way that
6944 @option{-gtoggle} toggles @option{-g}.
6946 @item -print-file-name=@var{library}
6947 @opindex print-file-name
6948 Print the full absolute name of the library file @var{library} that
6949 would be used when linking---and don't do anything else.  With this
6950 option, GCC does not compile or link anything; it just prints the
6951 file name.
6953 @item -print-multi-directory
6954 @opindex print-multi-directory
6955 Print the directory name corresponding to the multilib selected by any
6956 other switches present in the command line.  This directory is supposed
6957 to exist in @env{GCC_EXEC_PREFIX}.
6959 @item -print-multi-lib
6960 @opindex print-multi-lib
6961 Print the mapping from multilib directory names to compiler switches
6962 that enable them.  The directory name is separated from the switches by
6963 @samp{;}, and each switch starts with an @samp{@@} instead of the
6964 @samp{-}, without spaces between multiple switches.  This is supposed to
6965 ease shell processing.
6967 @item -print-multi-os-directory
6968 @opindex print-multi-os-directory
6969 Print the path to OS libraries for the selected
6970 multilib, relative to some @file{lib} subdirectory.  If OS libraries are
6971 present in the @file{lib} subdirectory and no multilibs are used, this is
6972 usually just @file{.}, if OS libraries are present in @file{lib@var{suffix}}
6973 sibling directories this prints e.g.@: @file{../lib64}, @file{../lib} or
6974 @file{../lib32}, or if OS libraries are present in @file{lib/@var{subdir}}
6975 subdirectories it prints e.g.@: @file{amd64}, @file{sparcv9} or @file{ev6}.
6977 @item -print-multiarch
6978 @opindex print-multiarch
6979 Print the path to OS libraries for the selected multiarch,
6980 relative to some @file{lib} subdirectory.
6982 @item -print-prog-name=@var{program}
6983 @opindex print-prog-name
6984 Like @option{-print-file-name}, but searches for a program such as @samp{cpp}.
6986 @item -print-libgcc-file-name
6987 @opindex print-libgcc-file-name
6988 Same as @option{-print-file-name=libgcc.a}.
6990 This is useful when you use @option{-nostdlib} or @option{-nodefaultlibs}
6991 but you do want to link with @file{libgcc.a}.  You can do:
6993 @smallexample
6994 gcc -nostdlib @var{files}@dots{} `gcc -print-libgcc-file-name`
6995 @end smallexample
6997 @item -print-search-dirs
6998 @opindex print-search-dirs
6999 Print the name of the configured installation directory and a list of
7000 program and library directories @command{gcc} searches---and don't do anything else.
7002 This is useful when @command{gcc} prints the error message
7003 @samp{installation problem, cannot exec cpp0: No such file or directory}.
7004 To resolve this you either need to put @file{cpp0} and the other compiler
7005 components where @command{gcc} expects to find them, or you can set the environment
7006 variable @env{GCC_EXEC_PREFIX} to the directory where you installed them.
7007 Don't forget the trailing @samp{/}.
7008 @xref{Environment Variables}.
7010 @item -print-sysroot
7011 @opindex print-sysroot
7012 Print the target sysroot directory that is used during
7013 compilation.  This is the target sysroot specified either at configure
7014 time or using the @option{--sysroot} option, possibly with an extra
7015 suffix that depends on compilation options.  If no target sysroot is
7016 specified, the option prints nothing.
7018 @item -print-sysroot-headers-suffix
7019 @opindex print-sysroot-headers-suffix
7020 Print the suffix added to the target sysroot when searching for
7021 headers, or give an error if the compiler is not configured with such
7022 a suffix---and don't do anything else.
7024 @item -dumpmachine
7025 @opindex dumpmachine
7026 Print the compiler's target machine (for example,
7027 @samp{i686-pc-linux-gnu})---and don't do anything else.
7029 @item -dumpversion
7030 @opindex dumpversion
7031 Print the compiler version (for example, @samp{3.0})---and don't do
7032 anything else.
7034 @item -dumpspecs
7035 @opindex dumpspecs
7036 Print the compiler's built-in specs---and don't do anything else.  (This
7037 is used when GCC itself is being built.)  @xref{Spec Files}.
7039 @item -fno-eliminate-unused-debug-types
7040 @opindex feliminate-unused-debug-types
7041 @opindex fno-eliminate-unused-debug-types
7042 Normally, when producing DWARF 2 output, GCC avoids producing debug symbol 
7043 output for types that are nowhere used in the source file being compiled.
7044 Sometimes it is useful to have GCC emit debugging
7045 information for all types declared in a compilation
7046 unit, regardless of whether or not they are actually used
7047 in that compilation unit, for example 
7048 if, in the debugger, you want to cast a value to a type that is
7049 not actually used in your program (but is declared).  More often,
7050 however, this results in a significant amount of wasted space.
7051 @end table
7053 @node Optimize Options
7054 @section Options That Control Optimization
7055 @cindex optimize options
7056 @cindex options, optimization
7058 These options control various sorts of optimizations.
7060 Without any optimization option, the compiler's goal is to reduce the
7061 cost of compilation and to make debugging produce the expected
7062 results.  Statements are independent: if you stop the program with a
7063 breakpoint between statements, you can then assign a new value to any
7064 variable or change the program counter to any other statement in the
7065 function and get exactly the results you expect from the source
7066 code.
7068 Turning on optimization flags makes the compiler attempt to improve
7069 the performance and/or code size at the expense of compilation time
7070 and possibly the ability to debug the program.
7072 The compiler performs optimization based on the knowledge it has of the
7073 program.  Compiling multiple files at once to a single output file mode allows
7074 the compiler to use information gained from all of the files when compiling
7075 each of them.
7077 Not all optimizations are controlled directly by a flag.  Only
7078 optimizations that have a flag are listed in this section.
7080 Most optimizations are only enabled if an @option{-O} level is set on
7081 the command line.  Otherwise they are disabled, even if individual
7082 optimization flags are specified.
7084 Depending on the target and how GCC was configured, a slightly different
7085 set of optimizations may be enabled at each @option{-O} level than
7086 those listed here.  You can invoke GCC with @option{-Q --help=optimizers}
7087 to find out the exact set of optimizations that are enabled at each level.
7088 @xref{Overall Options}, for examples.
7090 @table @gcctabopt
7091 @item -O
7092 @itemx -O1
7093 @opindex O
7094 @opindex O1
7095 Optimize.  Optimizing compilation takes somewhat more time, and a lot
7096 more memory for a large function.
7098 With @option{-O}, the compiler tries to reduce code size and execution
7099 time, without performing any optimizations that take a great deal of
7100 compilation time.
7102 @option{-O} turns on the following optimization flags:
7103 @gccoptlist{
7104 -fauto-inc-dec @gol
7105 -fbranch-count-reg @gol
7106 -fcombine-stack-adjustments @gol
7107 -fcompare-elim @gol
7108 -fcprop-registers @gol
7109 -fdce @gol
7110 -fdefer-pop @gol
7111 -fdelayed-branch @gol
7112 -fdse @gol
7113 -fforward-propagate @gol
7114 -fguess-branch-probability @gol
7115 -fif-conversion2 @gol
7116 -fif-conversion @gol
7117 -finline-functions-called-once @gol
7118 -fipa-pure-const @gol
7119 -fipa-profile @gol
7120 -fipa-reference @gol
7121 -fmerge-constants @gol
7122 -fmove-loop-invariants @gol
7123 -fshrink-wrap @gol
7124 -fsplit-wide-types @gol
7125 -ftree-bit-ccp @gol
7126 -ftree-ccp @gol
7127 -fssa-phiopt @gol
7128 -ftree-ch @gol
7129 -ftree-copy-prop @gol
7130 -ftree-copyrename @gol
7131 -ftree-dce @gol
7132 -ftree-dominator-opts @gol
7133 -ftree-dse @gol
7134 -ftree-forwprop @gol
7135 -ftree-fre @gol
7136 -ftree-phiprop @gol
7137 -ftree-sink @gol
7138 -ftree-slsr @gol
7139 -ftree-sra @gol
7140 -ftree-pta @gol
7141 -ftree-ter @gol
7142 -funit-at-a-time}
7144 @option{-O} also turns on @option{-fomit-frame-pointer} on machines
7145 where doing so does not interfere with debugging.
7147 @item -O2
7148 @opindex O2
7149 Optimize even more.  GCC performs nearly all supported optimizations
7150 that do not involve a space-speed tradeoff.
7151 As compared to @option{-O}, this option increases both compilation time
7152 and the performance of the generated code.
7154 @option{-O2} turns on all optimization flags specified by @option{-O}.  It
7155 also turns on the following optimization flags:
7156 @gccoptlist{-fthread-jumps @gol
7157 -falign-functions  -falign-jumps @gol
7158 -falign-loops  -falign-labels @gol
7159 -fcaller-saves @gol
7160 -fcrossjumping @gol
7161 -fcse-follow-jumps  -fcse-skip-blocks @gol
7162 -fdelete-null-pointer-checks @gol
7163 -fdevirtualize -fdevirtualize-speculatively @gol
7164 -fexpensive-optimizations @gol
7165 -fgcse  -fgcse-lm  @gol
7166 -fhoist-adjacent-loads @gol
7167 -finline-small-functions @gol
7168 -findirect-inlining @gol
7169 -fipa-cp @gol
7170 -fipa-sra @gol
7171 -fipa-icf @gol
7172 -fisolate-erroneous-paths-dereference @gol
7173 -foptimize-sibling-calls @gol
7174 -foptimize-strlen @gol
7175 -fpartial-inlining @gol
7176 -fpeephole2 @gol
7177 -freorder-blocks -freorder-blocks-and-partition -freorder-functions @gol
7178 -frerun-cse-after-loop  @gol
7179 -fsched-interblock  -fsched-spec @gol
7180 -fschedule-insns  -fschedule-insns2 @gol
7181 -fstrict-aliasing -fstrict-overflow @gol
7182 -ftree-builtin-call-dce @gol
7183 -ftree-switch-conversion -ftree-tail-merge @gol
7184 -ftree-pre @gol
7185 -ftree-vrp @gol
7186 -fuse-caller-save}
7188 Please note the warning under @option{-fgcse} about
7189 invoking @option{-O2} on programs that use computed gotos.
7191 @item -O3
7192 @opindex O3
7193 Optimize yet more.  @option{-O3} turns on all optimizations specified
7194 by @option{-O2} and also turns on the @option{-finline-functions},
7195 @option{-funswitch-loops}, @option{-fpredictive-commoning},
7196 @option{-fgcse-after-reload}, @option{-ftree-loop-vectorize},
7197 @option{-ftree-loop-distribute-patterns},
7198 @option{-ftree-slp-vectorize}, @option{-fvect-cost-model},
7199 @option{-ftree-partial-pre} and @option{-fipa-cp-clone} options.
7201 @item -O0
7202 @opindex O0
7203 Reduce compilation time and make debugging produce the expected
7204 results.  This is the default.
7206 @item -Os
7207 @opindex Os
7208 Optimize for size.  @option{-Os} enables all @option{-O2} optimizations that
7209 do not typically increase code size.  It also performs further
7210 optimizations designed to reduce code size.
7212 @option{-Os} disables the following optimization flags:
7213 @gccoptlist{-falign-functions  -falign-jumps  -falign-loops @gol
7214 -falign-labels  -freorder-blocks  -freorder-blocks-and-partition @gol
7215 -fprefetch-loop-arrays}
7217 @item -Ofast
7218 @opindex Ofast
7219 Disregard strict standards compliance.  @option{-Ofast} enables all
7220 @option{-O3} optimizations.  It also enables optimizations that are not
7221 valid for all standard-compliant programs.
7222 It turns on @option{-ffast-math} and the Fortran-specific
7223 @option{-fno-protect-parens} and @option{-fstack-arrays}.
7225 @item -Og
7226 @opindex Og
7227 Optimize debugging experience.  @option{-Og} enables optimizations
7228 that do not interfere with debugging. It should be the optimization
7229 level of choice for the standard edit-compile-debug cycle, offering
7230 a reasonable level of optimization while maintaining fast compilation
7231 and a good debugging experience.
7233 If you use multiple @option{-O} options, with or without level numbers,
7234 the last such option is the one that is effective.
7235 @end table
7237 Options of the form @option{-f@var{flag}} specify machine-independent
7238 flags.  Most flags have both positive and negative forms; the negative
7239 form of @option{-ffoo} is @option{-fno-foo}.  In the table
7240 below, only one of the forms is listed---the one you typically 
7241 use.  You can figure out the other form by either removing @samp{no-}
7242 or adding it.
7244 The following options control specific optimizations.  They are either
7245 activated by @option{-O} options or are related to ones that are.  You
7246 can use the following flags in the rare cases when ``fine-tuning'' of
7247 optimizations to be performed is desired.
7249 @table @gcctabopt
7250 @item -fno-defer-pop
7251 @opindex fno-defer-pop
7252 Always pop the arguments to each function call as soon as that function
7253 returns.  For machines that must pop arguments after a function call,
7254 the compiler normally lets arguments accumulate on the stack for several
7255 function calls and pops them all at once.
7257 Disabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7259 @item -fforward-propagate
7260 @opindex fforward-propagate
7261 Perform a forward propagation pass on RTL@.  The pass tries to combine two
7262 instructions and checks if the result can be simplified.  If loop unrolling
7263 is active, two passes are performed and the second is scheduled after
7264 loop unrolling.
7266 This option is enabled by default at optimization levels @option{-O},
7267 @option{-O2}, @option{-O3}, @option{-Os}.
7269 @item -ffp-contract=@var{style}
7270 @opindex ffp-contract
7271 @option{-ffp-contract=off} disables floating-point expression contraction.
7272 @option{-ffp-contract=fast} enables floating-point expression contraction
7273 such as forming of fused multiply-add operations if the target has
7274 native support for them.
7275 @option{-ffp-contract=on} enables floating-point expression contraction
7276 if allowed by the language standard.  This is currently not implemented
7277 and treated equal to @option{-ffp-contract=off}.
7279 The default is @option{-ffp-contract=fast}.
7281 @item -fomit-frame-pointer
7282 @opindex fomit-frame-pointer
7283 Don't keep the frame pointer in a register for functions that
7284 don't need one.  This avoids the instructions to save, set up and
7285 restore frame pointers; it also makes an extra register available
7286 in many functions.  @strong{It also makes debugging impossible on
7287 some machines.}
7289 On some machines, such as the VAX, this flag has no effect, because
7290 the standard calling sequence automatically handles the frame pointer
7291 and nothing is saved by pretending it doesn't exist.  The
7292 machine-description macro @code{FRAME_POINTER_REQUIRED} controls
7293 whether a target machine supports this flag.  @xref{Registers,,Register
7294 Usage, gccint, GNU Compiler Collection (GCC) Internals}.
7296 Starting with GCC version 4.6, the default setting (when not optimizing for
7297 size) for 32-bit GNU/Linux x86 and 32-bit Darwin x86 targets has been changed to
7298 @option{-fomit-frame-pointer}.  The default can be reverted to
7299 @option{-fno-omit-frame-pointer} by configuring GCC with the
7300 @option{--enable-frame-pointer} configure option.
7302 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7304 @item -foptimize-sibling-calls
7305 @opindex foptimize-sibling-calls
7306 Optimize sibling and tail recursive calls.
7308 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7310 @item -foptimize-strlen
7311 @opindex foptimize-strlen
7312 Optimize various standard C string functions (e.g. @code{strlen},
7313 @code{strchr} or @code{strcpy}) and
7314 their @code{_FORTIFY_SOURCE} counterparts into faster alternatives.
7316 Enabled at levels @option{-O2}, @option{-O3}.
7318 @item -fno-inline
7319 @opindex fno-inline
7320 Do not expand any functions inline apart from those marked with
7321 the @code{always_inline} attribute.  This is the default when not
7322 optimizing.
7324 Single functions can be exempted from inlining by marking them
7325 with the @code{noinline} attribute.
7327 @item -finline-small-functions
7328 @opindex finline-small-functions
7329 Integrate functions into their callers when their body is smaller than expected
7330 function call code (so overall size of program gets smaller).  The compiler
7331 heuristically decides which functions are simple enough to be worth integrating
7332 in this way.  This inlining applies to all functions, even those not declared
7333 inline.
7335 Enabled at level @option{-O2}.
7337 @item -findirect-inlining
7338 @opindex findirect-inlining
7339 Inline also indirect calls that are discovered to be known at compile
7340 time thanks to previous inlining.  This option has any effect only
7341 when inlining itself is turned on by the @option{-finline-functions}
7342 or @option{-finline-small-functions} options.
7344 Enabled at level @option{-O2}.
7346 @item -finline-functions
7347 @opindex finline-functions
7348 Consider all functions for inlining, even if they are not declared inline.
7349 The compiler heuristically decides which functions are worth integrating
7350 in this way.
7352 If all calls to a given function are integrated, and the function is
7353 declared @code{static}, then the function is normally not output as
7354 assembler code in its own right.
7356 Enabled at level @option{-O3}.
7358 @item -finline-functions-called-once
7359 @opindex finline-functions-called-once
7360 Consider all @code{static} functions called once for inlining into their
7361 caller even if they are not marked @code{inline}.  If a call to a given
7362 function is integrated, then the function is not output as assembler code
7363 in its own right.
7365 Enabled at levels @option{-O1}, @option{-O2}, @option{-O3} and @option{-Os}.
7367 @item -fearly-inlining
7368 @opindex fearly-inlining
7369 Inline functions marked by @code{always_inline} and functions whose body seems
7370 smaller than the function call overhead early before doing
7371 @option{-fprofile-generate} instrumentation and real inlining pass.  Doing so
7372 makes profiling significantly cheaper and usually inlining faster on programs
7373 having large chains of nested wrapper functions.
7375 Enabled by default.
7377 @item -fipa-sra
7378 @opindex fipa-sra
7379 Perform interprocedural scalar replacement of aggregates, removal of
7380 unused parameters and replacement of parameters passed by reference
7381 by parameters passed by value.
7383 Enabled at levels @option{-O2}, @option{-O3} and @option{-Os}.
7385 @item -finline-limit=@var{n}
7386 @opindex finline-limit
7387 By default, GCC limits the size of functions that can be inlined.  This flag
7388 allows coarse control of this limit.  @var{n} is the size of functions that
7389 can be inlined in number of pseudo instructions.
7391 Inlining is actually controlled by a number of parameters, which may be
7392 specified individually by using @option{--param @var{name}=@var{value}}.
7393 The @option{-finline-limit=@var{n}} option sets some of these parameters
7394 as follows:
7396 @table @gcctabopt
7397 @item max-inline-insns-single
7398 is set to @var{n}/2.
7399 @item max-inline-insns-auto
7400 is set to @var{n}/2.
7401 @end table
7403 See below for a documentation of the individual
7404 parameters controlling inlining and for the defaults of these parameters.
7406 @emph{Note:} there may be no value to @option{-finline-limit} that results
7407 in default behavior.
7409 @emph{Note:} pseudo instruction represents, in this particular context, an
7410 abstract measurement of function's size.  In no way does it represent a count
7411 of assembly instructions and as such its exact meaning might change from one
7412 release to an another.
7414 @item -fno-keep-inline-dllexport
7415 @opindex -fno-keep-inline-dllexport
7416 This is a more fine-grained version of @option{-fkeep-inline-functions},
7417 which applies only to functions that are declared using the @code{dllexport}
7418 attribute or declspec (@xref{Function Attributes,,Declaring Attributes of
7419 Functions}.)
7421 @item -fkeep-inline-functions
7422 @opindex fkeep-inline-functions
7423 In C, emit @code{static} functions that are declared @code{inline}
7424 into the object file, even if the function has been inlined into all
7425 of its callers.  This switch does not affect functions using the
7426 @code{extern inline} extension in GNU C90@.  In C++, emit any and all
7427 inline functions into the object file.
7429 @item -fkeep-static-consts
7430 @opindex fkeep-static-consts
7431 Emit variables declared @code{static const} when optimization isn't turned
7432 on, even if the variables aren't referenced.
7434 GCC enables this option by default.  If you want to force the compiler to
7435 check if a variable is referenced, regardless of whether or not
7436 optimization is turned on, use the @option{-fno-keep-static-consts} option.
7438 @item -fmerge-constants
7439 @opindex fmerge-constants
7440 Attempt to merge identical constants (string constants and floating-point
7441 constants) across compilation units.
7443 This option is the default for optimized compilation if the assembler and
7444 linker support it.  Use @option{-fno-merge-constants} to inhibit this
7445 behavior.
7447 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7449 @item -fmerge-all-constants
7450 @opindex fmerge-all-constants
7451 Attempt to merge identical constants and identical variables.
7453 This option implies @option{-fmerge-constants}.  In addition to
7454 @option{-fmerge-constants} this considers e.g.@: even constant initialized
7455 arrays or initialized constant variables with integral or floating-point
7456 types.  Languages like C or C++ require each variable, including multiple
7457 instances of the same variable in recursive calls, to have distinct locations,
7458 so using this option results in non-conforming
7459 behavior.
7461 @item -fmodulo-sched
7462 @opindex fmodulo-sched
7463 Perform swing modulo scheduling immediately before the first scheduling
7464 pass.  This pass looks at innermost loops and reorders their
7465 instructions by overlapping different iterations.
7467 @item -fmodulo-sched-allow-regmoves
7468 @opindex fmodulo-sched-allow-regmoves
7469 Perform more aggressive SMS-based modulo scheduling with register moves
7470 allowed.  By setting this flag certain anti-dependences edges are
7471 deleted, which triggers the generation of reg-moves based on the
7472 life-range analysis.  This option is effective only with
7473 @option{-fmodulo-sched} enabled.
7475 @item -fno-branch-count-reg
7476 @opindex fno-branch-count-reg
7477 Do not use ``decrement and branch'' instructions on a count register,
7478 but instead generate a sequence of instructions that decrement a
7479 register, compare it against zero, then branch based upon the result.
7480 This option is only meaningful on architectures that support such
7481 instructions, which include x86, PowerPC, IA-64 and S/390.
7483 Enabled by default at @option{-O1} and higher.
7485 The default is @option{-fbranch-count-reg}.
7487 @item -fno-function-cse
7488 @opindex fno-function-cse
7489 Do not put function addresses in registers; make each instruction that
7490 calls a constant function contain the function's address explicitly.
7492 This option results in less efficient code, but some strange hacks
7493 that alter the assembler output may be confused by the optimizations
7494 performed when this option is not used.
7496 The default is @option{-ffunction-cse}
7498 @item -fno-zero-initialized-in-bss
7499 @opindex fno-zero-initialized-in-bss
7500 If the target supports a BSS section, GCC by default puts variables that
7501 are initialized to zero into BSS@.  This can save space in the resulting
7502 code.
7504 This option turns off this behavior because some programs explicitly
7505 rely on variables going to the data section---e.g., so that the
7506 resulting executable can find the beginning of that section and/or make
7507 assumptions based on that.
7509 The default is @option{-fzero-initialized-in-bss}.
7511 @item -fthread-jumps
7512 @opindex fthread-jumps
7513 Perform optimizations that check to see if a jump branches to a
7514 location where another comparison subsumed by the first is found.  If
7515 so, the first branch is redirected to either the destination of the
7516 second branch or a point immediately following it, depending on whether
7517 the condition is known to be true or false.
7519 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7521 @item -fsplit-wide-types
7522 @opindex fsplit-wide-types
7523 When using a type that occupies multiple registers, such as @code{long
7524 long} on a 32-bit system, split the registers apart and allocate them
7525 independently.  This normally generates better code for those types,
7526 but may make debugging more difficult.
7528 Enabled at levels @option{-O}, @option{-O2}, @option{-O3},
7529 @option{-Os}.
7531 @item -fcse-follow-jumps
7532 @opindex fcse-follow-jumps
7533 In common subexpression elimination (CSE), scan through jump instructions
7534 when the target of the jump is not reached by any other path.  For
7535 example, when CSE encounters an @code{if} statement with an
7536 @code{else} clause, CSE follows the jump when the condition
7537 tested is false.
7539 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7541 @item -fcse-skip-blocks
7542 @opindex fcse-skip-blocks
7543 This is similar to @option{-fcse-follow-jumps}, but causes CSE to
7544 follow jumps that conditionally skip over blocks.  When CSE
7545 encounters a simple @code{if} statement with no else clause,
7546 @option{-fcse-skip-blocks} causes CSE to follow the jump around the
7547 body of the @code{if}.
7549 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7551 @item -frerun-cse-after-loop
7552 @opindex frerun-cse-after-loop
7553 Re-run common subexpression elimination after loop optimizations are
7554 performed.
7556 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7558 @item -fgcse
7559 @opindex fgcse
7560 Perform a global common subexpression elimination pass.
7561 This pass also performs global constant and copy propagation.
7563 @emph{Note:} When compiling a program using computed gotos, a GCC
7564 extension, you may get better run-time performance if you disable
7565 the global common subexpression elimination pass by adding
7566 @option{-fno-gcse} to the command line.
7568 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7570 @item -fgcse-lm
7571 @opindex fgcse-lm
7572 When @option{-fgcse-lm} is enabled, global common subexpression elimination
7573 attempts to move loads that are only killed by stores into themselves.  This
7574 allows a loop containing a load/store sequence to be changed to a load outside
7575 the loop, and a copy/store within the loop.
7577 Enabled by default when @option{-fgcse} is enabled.
7579 @item -fgcse-sm
7580 @opindex fgcse-sm
7581 When @option{-fgcse-sm} is enabled, a store motion pass is run after
7582 global common subexpression elimination.  This pass attempts to move
7583 stores out of loops.  When used in conjunction with @option{-fgcse-lm},
7584 loops containing a load/store sequence can be changed to a load before
7585 the loop and a store after the loop.
7587 Not enabled at any optimization level.
7589 @item -fgcse-las
7590 @opindex fgcse-las
7591 When @option{-fgcse-las} is enabled, the global common subexpression
7592 elimination pass eliminates redundant loads that come after stores to the
7593 same memory location (both partial and full redundancies).
7595 Not enabled at any optimization level.
7597 @item -fgcse-after-reload
7598 @opindex fgcse-after-reload
7599 When @option{-fgcse-after-reload} is enabled, a redundant load elimination
7600 pass is performed after reload.  The purpose of this pass is to clean up
7601 redundant spilling.
7603 @item -faggressive-loop-optimizations
7604 @opindex faggressive-loop-optimizations
7605 This option tells the loop optimizer to use language constraints to
7606 derive bounds for the number of iterations of a loop.  This assumes that
7607 loop code does not invoke undefined behavior by for example causing signed
7608 integer overflows or out-of-bound array accesses.  The bounds for the
7609 number of iterations of a loop are used to guide loop unrolling and peeling
7610 and loop exit test optimizations.
7611 This option is enabled by default.
7613 @item -funsafe-loop-optimizations
7614 @opindex funsafe-loop-optimizations
7615 This option tells the loop optimizer to assume that loop indices do not
7616 overflow, and that loops with nontrivial exit condition are not
7617 infinite.  This enables a wider range of loop optimizations even if
7618 the loop optimizer itself cannot prove that these assumptions are valid.
7619 If you use @option{-Wunsafe-loop-optimizations}, the compiler warns you
7620 if it finds this kind of loop.
7622 @item -fcrossjumping
7623 @opindex fcrossjumping
7624 Perform cross-jumping transformation.
7625 This transformation unifies equivalent code and saves code size.  The
7626 resulting code may or may not perform better than without cross-jumping.
7628 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7630 @item -fauto-inc-dec
7631 @opindex fauto-inc-dec
7632 Combine increments or decrements of addresses with memory accesses.
7633 This pass is always skipped on architectures that do not have
7634 instructions to support this.  Enabled by default at @option{-O} and
7635 higher on architectures that support this.
7637 @item -fdce
7638 @opindex fdce
7639 Perform dead code elimination (DCE) on RTL@.
7640 Enabled by default at @option{-O} and higher.
7642 @item -fdse
7643 @opindex fdse
7644 Perform dead store elimination (DSE) on RTL@.
7645 Enabled by default at @option{-O} and higher.
7647 @item -fif-conversion
7648 @opindex fif-conversion
7649 Attempt to transform conditional jumps into branch-less equivalents.  This
7650 includes use of conditional moves, min, max, set flags and abs instructions, and
7651 some tricks doable by standard arithmetics.  The use of conditional execution
7652 on chips where it is available is controlled by @code{if-conversion2}.
7654 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7656 @item -fif-conversion2
7657 @opindex fif-conversion2
7658 Use conditional execution (where available) to transform conditional jumps into
7659 branch-less equivalents.
7661 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7663 @item -fdeclone-ctor-dtor
7664 @opindex fdeclone-ctor-dtor
7665 The C++ ABI requires multiple entry points for constructors and
7666 destructors: one for a base subobject, one for a complete object, and
7667 one for a virtual destructor that calls operator delete afterwards.
7668 For a hierarchy with virtual bases, the base and complete variants are
7669 clones, which means two copies of the function.  With this option, the
7670 base and complete variants are changed to be thunks that call a common
7671 implementation.
7673 Enabled by @option{-Os}.
7675 @item -fdelete-null-pointer-checks
7676 @opindex fdelete-null-pointer-checks
7677 Assume that programs cannot safely dereference null pointers, and that
7678 no code or data element resides there.  This enables simple constant
7679 folding optimizations at all optimization levels.  In addition, other
7680 optimization passes in GCC use this flag to control global dataflow
7681 analyses that eliminate useless checks for null pointers; these assume
7682 that if a pointer is checked after it has already been dereferenced,
7683 it cannot be null.
7685 Note however that in some environments this assumption is not true.
7686 Use @option{-fno-delete-null-pointer-checks} to disable this optimization
7687 for programs that depend on that behavior.
7689 Some targets, especially embedded ones, disable this option at all levels.
7690 Otherwise it is enabled at all levels: @option{-O0}, @option{-O1},
7691 @option{-O2}, @option{-O3}, @option{-Os}.  Passes that use the information
7692 are enabled independently at different optimization levels.
7694 @item -fdevirtualize
7695 @opindex fdevirtualize
7696 Attempt to convert calls to virtual functions to direct calls.  This
7697 is done both within a procedure and interprocedurally as part of
7698 indirect inlining (@code{-findirect-inlining}) and interprocedural constant
7699 propagation (@option{-fipa-cp}).
7700 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7702 @item -fdevirtualize-speculatively
7703 @opindex fdevirtualize-speculatively
7704 Attempt to convert calls to virtual functions to speculative direct calls.
7705 Based on the analysis of the type inheritance graph, determine for a given call
7706 the set of likely targets. If the set is small, preferably of size 1, change
7707 the call into an conditional deciding on direct and indirect call.  The
7708 speculative calls enable more optimizations, such as inlining.  When they seem
7709 useless after further optimization, they are converted back into original form.
7711 @item -fexpensive-optimizations
7712 @opindex fexpensive-optimizations
7713 Perform a number of minor optimizations that are relatively expensive.
7715 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7717 @item -free
7718 @opindex free
7719 Attempt to remove redundant extension instructions.  This is especially
7720 helpful for the x86-64 architecture, which implicitly zero-extends in 64-bit
7721 registers after writing to their lower 32-bit half.
7723 Enabled for Alpha, AArch64 and x86 at levels @option{-O2},
7724 @option{-O3}, @option{-Os}.
7726 @item -flive-range-shrinkage
7727 @opindex flive-range-shrinkage
7728 Attempt to decrease register pressure through register live range
7729 shrinkage.  This is helpful for fast processors with small or moderate
7730 size register sets.
7732 @item -fira-algorithm=@var{algorithm}
7733 Use the specified coloring algorithm for the integrated register
7734 allocator.  The @var{algorithm} argument can be @samp{priority}, which
7735 specifies Chow's priority coloring, or @samp{CB}, which specifies
7736 Chaitin-Briggs coloring.  Chaitin-Briggs coloring is not implemented
7737 for all architectures, but for those targets that do support it, it is
7738 the default because it generates better code.
7740 @item -fira-region=@var{region}
7741 Use specified regions for the integrated register allocator.  The
7742 @var{region} argument should be one of the following:
7744 @table @samp
7746 @item all
7747 Use all loops as register allocation regions.
7748 This can give the best results for machines with a small and/or
7749 irregular register set.
7751 @item mixed
7752 Use all loops except for loops with small register pressure 
7753 as the regions.  This value usually gives
7754 the best results in most cases and for most architectures,
7755 and is enabled by default when compiling with optimization for speed
7756 (@option{-O}, @option{-O2}, @dots{}).
7758 @item one
7759 Use all functions as a single region.  
7760 This typically results in the smallest code size, and is enabled by default for
7761 @option{-Os} or @option{-O0}.
7763 @end table
7765 @item -fira-hoist-pressure
7766 @opindex fira-hoist-pressure
7767 Use IRA to evaluate register pressure in the code hoisting pass for
7768 decisions to hoist expressions.  This option usually results in smaller
7769 code, but it can slow the compiler down.
7771 This option is enabled at level @option{-Os} for all targets.
7773 @item -fira-loop-pressure
7774 @opindex fira-loop-pressure
7775 Use IRA to evaluate register pressure in loops for decisions to move
7776 loop invariants.  This option usually results in generation
7777 of faster and smaller code on machines with large register files (>= 32
7778 registers), but it can slow the compiler down.
7780 This option is enabled at level @option{-O3} for some targets.
7782 @item -fno-ira-share-save-slots
7783 @opindex fno-ira-share-save-slots
7784 Disable sharing of stack slots used for saving call-used hard
7785 registers living through a call.  Each hard register gets a
7786 separate stack slot, and as a result function stack frames are
7787 larger.
7789 @item -fno-ira-share-spill-slots
7790 @opindex fno-ira-share-spill-slots
7791 Disable sharing of stack slots allocated for pseudo-registers.  Each
7792 pseudo-register that does not get a hard register gets a separate
7793 stack slot, and as a result function stack frames are larger.
7795 @item -fira-verbose=@var{n}
7796 @opindex fira-verbose
7797 Control the verbosity of the dump file for the integrated register allocator.
7798 The default value is 5.  If the value @var{n} is greater or equal to 10,
7799 the dump output is sent to stderr using the same format as @var{n} minus 10.
7801 @item -fdelayed-branch
7802 @opindex fdelayed-branch
7803 If supported for the target machine, attempt to reorder instructions
7804 to exploit instruction slots available after delayed branch
7805 instructions.
7807 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
7809 @item -fschedule-insns
7810 @opindex fschedule-insns
7811 If supported for the target machine, attempt to reorder instructions to
7812 eliminate execution stalls due to required data being unavailable.  This
7813 helps machines that have slow floating point or memory load instructions
7814 by allowing other instructions to be issued until the result of the load
7815 or floating-point instruction is required.
7817 Enabled at levels @option{-O2}, @option{-O3}.
7819 @item -fschedule-insns2
7820 @opindex fschedule-insns2
7821 Similar to @option{-fschedule-insns}, but requests an additional pass of
7822 instruction scheduling after register allocation has been done.  This is
7823 especially useful on machines with a relatively small number of
7824 registers and where memory load instructions take more than one cycle.
7826 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
7828 @item -fno-sched-interblock
7829 @opindex fno-sched-interblock
7830 Don't schedule instructions across basic blocks.  This is normally
7831 enabled by default when scheduling before register allocation, i.e.@:
7832 with @option{-fschedule-insns} or at @option{-O2} or higher.
7834 @item -fno-sched-spec
7835 @opindex fno-sched-spec
7836 Don't allow speculative motion of non-load instructions.  This is normally
7837 enabled by default when scheduling before register allocation, i.e.@:
7838 with @option{-fschedule-insns} or at @option{-O2} or higher.
7840 @item -fsched-pressure
7841 @opindex fsched-pressure
7842 Enable register pressure sensitive insn scheduling before register
7843 allocation.  This only makes sense when scheduling before register
7844 allocation is enabled, i.e.@: with @option{-fschedule-insns} or at
7845 @option{-O2} or higher.  Usage of this option can improve the
7846 generated code and decrease its size by preventing register pressure
7847 increase above the number of available hard registers and subsequent
7848 spills in register allocation.
7850 @item -fsched-spec-load
7851 @opindex fsched-spec-load
7852 Allow speculative motion of some load instructions.  This only makes
7853 sense when scheduling before register allocation, i.e.@: with
7854 @option{-fschedule-insns} or at @option{-O2} or higher.
7856 @item -fsched-spec-load-dangerous
7857 @opindex fsched-spec-load-dangerous
7858 Allow speculative motion of more load instructions.  This only makes
7859 sense when scheduling before register allocation, i.e.@: with
7860 @option{-fschedule-insns} or at @option{-O2} or higher.
7862 @item -fsched-stalled-insns
7863 @itemx -fsched-stalled-insns=@var{n}
7864 @opindex fsched-stalled-insns
7865 Define how many insns (if any) can be moved prematurely from the queue
7866 of stalled insns into the ready list during the second scheduling pass.
7867 @option{-fno-sched-stalled-insns} means that no insns are moved
7868 prematurely, @option{-fsched-stalled-insns=0} means there is no limit
7869 on how many queued insns can be moved prematurely.
7870 @option{-fsched-stalled-insns} without a value is equivalent to
7871 @option{-fsched-stalled-insns=1}.
7873 @item -fsched-stalled-insns-dep
7874 @itemx -fsched-stalled-insns-dep=@var{n}
7875 @opindex fsched-stalled-insns-dep
7876 Define how many insn groups (cycles) are examined for a dependency
7877 on a stalled insn that is a candidate for premature removal from the queue
7878 of stalled insns.  This has an effect only during the second scheduling pass,
7879 and only if @option{-fsched-stalled-insns} is used.
7880 @option{-fno-sched-stalled-insns-dep} is equivalent to
7881 @option{-fsched-stalled-insns-dep=0}.
7882 @option{-fsched-stalled-insns-dep} without a value is equivalent to
7883 @option{-fsched-stalled-insns-dep=1}.
7885 @item -fsched2-use-superblocks
7886 @opindex fsched2-use-superblocks
7887 When scheduling after register allocation, use superblock scheduling.
7888 This allows motion across basic block boundaries,
7889 resulting in faster schedules.  This option is experimental, as not all machine
7890 descriptions used by GCC model the CPU closely enough to avoid unreliable
7891 results from the algorithm.
7893 This only makes sense when scheduling after register allocation, i.e.@: with
7894 @option{-fschedule-insns2} or at @option{-O2} or higher.
7896 @item -fsched-group-heuristic
7897 @opindex fsched-group-heuristic
7898 Enable the group heuristic in the scheduler.  This heuristic favors
7899 the instruction that belongs to a schedule group.  This is enabled
7900 by default when scheduling is enabled, i.e.@: with @option{-fschedule-insns}
7901 or @option{-fschedule-insns2} or at @option{-O2} or higher.
7903 @item -fsched-critical-path-heuristic
7904 @opindex fsched-critical-path-heuristic
7905 Enable the critical-path heuristic in the scheduler.  This heuristic favors
7906 instructions on the critical path.  This is enabled by default when
7907 scheduling is enabled, i.e.@: with @option{-fschedule-insns}
7908 or @option{-fschedule-insns2} or at @option{-O2} or higher.
7910 @item -fsched-spec-insn-heuristic
7911 @opindex fsched-spec-insn-heuristic
7912 Enable the speculative instruction heuristic in the scheduler.  This
7913 heuristic favors speculative instructions with greater dependency weakness.
7914 This is enabled by default when scheduling is enabled, i.e.@:
7915 with @option{-fschedule-insns} or @option{-fschedule-insns2}
7916 or at @option{-O2} or higher.
7918 @item -fsched-rank-heuristic
7919 @opindex fsched-rank-heuristic
7920 Enable the rank heuristic in the scheduler.  This heuristic favors
7921 the instruction belonging to a basic block with greater size or frequency.
7922 This is enabled by default when scheduling is enabled, i.e.@:
7923 with @option{-fschedule-insns} or @option{-fschedule-insns2} or
7924 at @option{-O2} or higher.
7926 @item -fsched-last-insn-heuristic
7927 @opindex fsched-last-insn-heuristic
7928 Enable the last-instruction heuristic in the scheduler.  This heuristic
7929 favors the instruction that is less dependent on the last instruction
7930 scheduled.  This is enabled by default when scheduling is enabled,
7931 i.e.@: with @option{-fschedule-insns} or @option{-fschedule-insns2} or
7932 at @option{-O2} or higher.
7934 @item -fsched-dep-count-heuristic
7935 @opindex fsched-dep-count-heuristic
7936 Enable the dependent-count heuristic in the scheduler.  This heuristic
7937 favors the instruction that has more instructions depending on it.
7938 This is enabled by default when scheduling is enabled, i.e.@:
7939 with @option{-fschedule-insns} or @option{-fschedule-insns2} or
7940 at @option{-O2} or higher.
7942 @item -freschedule-modulo-scheduled-loops
7943 @opindex freschedule-modulo-scheduled-loops
7944 Modulo scheduling is performed before traditional scheduling.  If a loop
7945 is modulo scheduled, later scheduling passes may change its schedule.  
7946 Use this option to control that behavior.
7948 @item -fselective-scheduling
7949 @opindex fselective-scheduling
7950 Schedule instructions using selective scheduling algorithm.  Selective
7951 scheduling runs instead of the first scheduler pass.
7953 @item -fselective-scheduling2
7954 @opindex fselective-scheduling2
7955 Schedule instructions using selective scheduling algorithm.  Selective
7956 scheduling runs instead of the second scheduler pass.
7958 @item -fsel-sched-pipelining
7959 @opindex fsel-sched-pipelining
7960 Enable software pipelining of innermost loops during selective scheduling.
7961 This option has no effect unless one of @option{-fselective-scheduling} or
7962 @option{-fselective-scheduling2} is turned on.
7964 @item -fsel-sched-pipelining-outer-loops
7965 @opindex fsel-sched-pipelining-outer-loops
7966 When pipelining loops during selective scheduling, also pipeline outer loops.
7967 This option has no effect unless @option{-fsel-sched-pipelining} is turned on.
7969 @item -fsemantic-interposition
7970 @opindex fsemantic-interposition
7971 Some object formats, like ELF, allow interposing of symbols by dynamic linker.
7972 This means that for symbols exported from the DSO compiler can not perform
7973 inter-procedural propagation, inlining and other optimizations in anticipation
7974 that the function or variable in question may change. While this feature is
7975 useful, for example, to rewrite memory allocation functions by a debugging
7976 implementation, it is expensive in the terms of code quality.
7977 With @option{-fno-semantic-inteposition} compiler assumest that if interposition
7978 happens for functions the overwritting function will have
7979 precisely same semantics (and side effects). Similarly if interposition happens
7980 for variables, the constructor of the variable will be the same. The flag
7981 has no effect for functions explicitly declared inline, where
7982 interposition changing semantic is never allowed and for symbols explicitly
7983 declared weak.
7985 @item -fshrink-wrap
7986 @opindex fshrink-wrap
7987 Emit function prologues only before parts of the function that need it,
7988 rather than at the top of the function.  This flag is enabled by default at
7989 @option{-O} and higher.
7991 @item -fcaller-saves
7992 @opindex fcaller-saves
7993 Enable allocation of values to registers that are clobbered by
7994 function calls, by emitting extra instructions to save and restore the
7995 registers around such calls.  Such allocation is done only when it
7996 seems to result in better code.
7998 This option is always enabled by default on certain machines, usually
7999 those which have no call-preserved registers to use instead.
8001 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
8003 @item -fcombine-stack-adjustments
8004 @opindex fcombine-stack-adjustments
8005 Tracks stack adjustments (pushes and pops) and stack memory references
8006 and then tries to find ways to combine them.
8008 Enabled by default at @option{-O1} and higher.
8010 @item -fuse-caller-save
8011 Use caller save registers for allocation if those registers are not used by
8012 any called function.  In that case it is not necessary to save and restore
8013 them around calls.  This is only possible if called functions are part of
8014 same compilation unit as current function and they are compiled before it.
8016 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
8018 @item -fconserve-stack
8019 @opindex fconserve-stack
8020 Attempt to minimize stack usage.  The compiler attempts to use less
8021 stack space, even if that makes the program slower.  This option
8022 implies setting the @option{large-stack-frame} parameter to 100
8023 and the @option{large-stack-frame-growth} parameter to 400.
8025 @item -ftree-reassoc
8026 @opindex ftree-reassoc
8027 Perform reassociation on trees.  This flag is enabled by default
8028 at @option{-O} and higher.
8030 @item -ftree-pre
8031 @opindex ftree-pre
8032 Perform partial redundancy elimination (PRE) on trees.  This flag is
8033 enabled by default at @option{-O2} and @option{-O3}.
8035 @item -ftree-partial-pre
8036 @opindex ftree-partial-pre
8037 Make partial redundancy elimination (PRE) more aggressive.  This flag is
8038 enabled by default at @option{-O3}.
8040 @item -ftree-forwprop
8041 @opindex ftree-forwprop
8042 Perform forward propagation on trees.  This flag is enabled by default
8043 at @option{-O} and higher.
8045 @item -ftree-fre
8046 @opindex ftree-fre
8047 Perform full redundancy elimination (FRE) on trees.  The difference
8048 between FRE and PRE is that FRE only considers expressions
8049 that are computed on all paths leading to the redundant computation.
8050 This analysis is faster than PRE, though it exposes fewer redundancies.
8051 This flag is enabled by default at @option{-O} and higher.
8053 @item -ftree-phiprop
8054 @opindex ftree-phiprop
8055 Perform hoisting of loads from conditional pointers on trees.  This
8056 pass is enabled by default at @option{-O} and higher.
8058 @item -fhoist-adjacent-loads
8059 @opindex hoist-adjacent-loads
8060 Speculatively hoist loads from both branches of an if-then-else if the
8061 loads are from adjacent locations in the same structure and the target
8062 architecture has a conditional move instruction.  This flag is enabled
8063 by default at @option{-O2} and higher.
8065 @item -ftree-copy-prop
8066 @opindex ftree-copy-prop
8067 Perform copy propagation on trees.  This pass eliminates unnecessary
8068 copy operations.  This flag is enabled by default at @option{-O} and
8069 higher.
8071 @item -fipa-pure-const
8072 @opindex fipa-pure-const
8073 Discover which functions are pure or constant.
8074 Enabled by default at @option{-O} and higher.
8076 @item -fipa-reference
8077 @opindex fipa-reference
8078 Discover which static variables do not escape the
8079 compilation unit.
8080 Enabled by default at @option{-O} and higher.
8082 @item -fipa-pta
8083 @opindex fipa-pta
8084 Perform interprocedural pointer analysis and interprocedural modification
8085 and reference analysis.  This option can cause excessive memory and
8086 compile-time usage on large compilation units.  It is not enabled by
8087 default at any optimization level.
8089 @item -fipa-profile
8090 @opindex fipa-profile
8091 Perform interprocedural profile propagation.  The functions called only from
8092 cold functions are marked as cold. Also functions executed once (such as
8093 @code{cold}, @code{noreturn}, static constructors or destructors) are identified. Cold
8094 functions and loop less parts of functions executed once are then optimized for
8095 size.
8096 Enabled by default at @option{-O} and higher.
8098 @item -fipa-cp
8099 @opindex fipa-cp
8100 Perform interprocedural constant propagation.
8101 This optimization analyzes the program to determine when values passed
8102 to functions are constants and then optimizes accordingly.
8103 This optimization can substantially increase performance
8104 if the application has constants passed to functions.
8105 This flag is enabled by default at @option{-O2}, @option{-Os} and @option{-O3}.
8107 @item -fipa-cp-clone
8108 @opindex fipa-cp-clone
8109 Perform function cloning to make interprocedural constant propagation stronger.
8110 When enabled, interprocedural constant propagation performs function cloning
8111 when externally visible function can be called with constant arguments.
8112 Because this optimization can create multiple copies of functions,
8113 it may significantly increase code size
8114 (see @option{--param ipcp-unit-growth=@var{value}}).
8115 This flag is enabled by default at @option{-O3}.
8117 @item -fipa-icf
8118 @opindex fipa-icf
8119 Perform Identical Code Folding for functions and read-only variables.
8120 The optimization reduces code size and may disturb unwind stacks by replacing
8121 a function by equivalent one with a different name. The optimization works
8122 more effectively with link time optimization enabled.
8124 Nevertheless the behavior is similar to Gold Linker ICF optimization, GCC ICF
8125 works on different levels and thus the optimizations are not same - there are
8126 equivalences that are found only by GCC and equivalences found only by Gold.
8128 This flag is enabled by default at @option{-O2} and @option{-Os}.
8130 @item -fisolate-erroneous-paths-dereference
8131 Detect paths which trigger erroneous or undefined behaviour due to
8132 dereferencing a NULL pointer.  Isolate those paths from the main control
8133 flow and turn the statement with erroneous or undefined behaviour into a trap.
8135 @item -fisolate-erroneous-paths-attribute
8136 Detect paths which trigger erroneous or undefined behaviour due a NULL value
8137 being used in a way which is forbidden by a @code{returns_nonnull} or @code{nonnull}
8138 attribute.  Isolate those paths from the main control flow and turn the
8139 statement with erroneous or undefined behaviour into a trap.  This is not
8140 currently enabled, but may be enabled by @code{-O2} in the future.
8142 @item -ftree-sink
8143 @opindex ftree-sink
8144 Perform forward store motion  on trees.  This flag is
8145 enabled by default at @option{-O} and higher.
8147 @item -ftree-bit-ccp
8148 @opindex ftree-bit-ccp
8149 Perform sparse conditional bit constant propagation on trees and propagate
8150 pointer alignment information.
8151 This pass only operates on local scalar variables and is enabled by default
8152 at @option{-O} and higher.  It requires that @option{-ftree-ccp} is enabled.
8154 @item -ftree-ccp
8155 @opindex ftree-ccp
8156 Perform sparse conditional constant propagation (CCP) on trees.  This
8157 pass only operates on local scalar variables and is enabled by default
8158 at @option{-O} and higher.
8160 @item -fssa-phiopt
8161 @opindex fssa-phiopt
8162 Perform pattern matching on SSA PHI nodes to optimize conditional
8163 code.  This pass is enabled by default at @option{-O} and higher.
8165 @item -ftree-switch-conversion
8166 Perform conversion of simple initializations in a switch to
8167 initializations from a scalar array.  This flag is enabled by default
8168 at @option{-O2} and higher.
8170 @item -ftree-tail-merge
8171 Look for identical code sequences.  When found, replace one with a jump to the
8172 other.  This optimization is known as tail merging or cross jumping.  This flag
8173 is enabled by default at @option{-O2} and higher.  The compilation time
8174 in this pass can
8175 be limited using @option{max-tail-merge-comparisons} parameter and
8176 @option{max-tail-merge-iterations} parameter.
8178 @item -ftree-dce
8179 @opindex ftree-dce
8180 Perform dead code elimination (DCE) on trees.  This flag is enabled by
8181 default at @option{-O} and higher.
8183 @item -ftree-builtin-call-dce
8184 @opindex ftree-builtin-call-dce
8185 Perform conditional dead code elimination (DCE) for calls to built-in functions
8186 that may set @code{errno} but are otherwise side-effect free.  This flag is
8187 enabled by default at @option{-O2} and higher if @option{-Os} is not also
8188 specified.
8190 @item -ftree-dominator-opts
8191 @opindex ftree-dominator-opts
8192 Perform a variety of simple scalar cleanups (constant/copy
8193 propagation, redundancy elimination, range propagation and expression
8194 simplification) based on a dominator tree traversal.  This also
8195 performs jump threading (to reduce jumps to jumps). This flag is
8196 enabled by default at @option{-O} and higher.
8198 @item -ftree-dse
8199 @opindex ftree-dse
8200 Perform dead store elimination (DSE) on trees.  A dead store is a store into
8201 a memory location that is later overwritten by another store without
8202 any intervening loads.  In this case the earlier store can be deleted.  This
8203 flag is enabled by default at @option{-O} and higher.
8205 @item -ftree-ch
8206 @opindex ftree-ch
8207 Perform loop header copying on trees.  This is beneficial since it increases
8208 effectiveness of code motion optimizations.  It also saves one jump.  This flag
8209 is enabled by default at @option{-O} and higher.  It is not enabled
8210 for @option{-Os}, since it usually increases code size.
8212 @item -ftree-loop-optimize
8213 @opindex ftree-loop-optimize
8214 Perform loop optimizations on trees.  This flag is enabled by default
8215 at @option{-O} and higher.
8217 @item -ftree-loop-linear
8218 @opindex ftree-loop-linear
8219 Perform loop interchange transformations on tree.  Same as
8220 @option{-floop-interchange}.  To use this code transformation, GCC has
8221 to be configured with @option{--with-ppl} and @option{--with-cloog} to
8222 enable the Graphite loop transformation infrastructure.
8224 @item -floop-interchange
8225 @opindex floop-interchange
8226 Perform loop interchange transformations on loops.  Interchanging two
8227 nested loops switches the inner and outer loops.  For example, given a
8228 loop like:
8229 @smallexample
8230 DO J = 1, M
8231   DO I = 1, N
8232     A(J, I) = A(J, I) * C
8233   ENDDO
8234 ENDDO
8235 @end smallexample
8236 loop interchange transforms the loop as if it were written:
8237 @smallexample
8238 DO I = 1, N
8239   DO J = 1, M
8240     A(J, I) = A(J, I) * C
8241   ENDDO
8242 ENDDO
8243 @end smallexample
8244 which can be beneficial when @code{N} is larger than the caches,
8245 because in Fortran, the elements of an array are stored in memory
8246 contiguously by column, and the original loop iterates over rows,
8247 potentially creating at each access a cache miss.  This optimization
8248 applies to all the languages supported by GCC and is not limited to
8249 Fortran.  To use this code transformation, GCC has to be configured
8250 with @option{--with-ppl} and @option{--with-cloog} to enable the
8251 Graphite loop transformation infrastructure.
8253 @item -floop-strip-mine
8254 @opindex floop-strip-mine
8255 Perform loop strip mining transformations on loops.  Strip mining
8256 splits a loop into two nested loops.  The outer loop has strides
8257 equal to the strip size and the inner loop has strides of the
8258 original loop within a strip.  The strip length can be changed
8259 using the @option{loop-block-tile-size} parameter.  For example,
8260 given a loop like:
8261 @smallexample
8262 DO I = 1, N
8263   A(I) = A(I) + C
8264 ENDDO
8265 @end smallexample
8266 loop strip mining transforms the loop as if it were written:
8267 @smallexample
8268 DO II = 1, N, 51
8269   DO I = II, min (II + 50, N)
8270     A(I) = A(I) + C
8271   ENDDO
8272 ENDDO
8273 @end smallexample
8274 This optimization applies to all the languages supported by GCC and is
8275 not limited to Fortran.  To use this code transformation, GCC has to
8276 be configured with @option{--with-ppl} and @option{--with-cloog} to
8277 enable the Graphite loop transformation infrastructure.
8279 @item -floop-block
8280 @opindex floop-block
8281 Perform loop blocking transformations on loops.  Blocking strip mines
8282 each loop in the loop nest such that the memory accesses of the
8283 element loops fit inside caches.  The strip length can be changed
8284 using the @option{loop-block-tile-size} parameter.  For example, given
8285 a loop like:
8286 @smallexample
8287 DO I = 1, N
8288   DO J = 1, M
8289     A(J, I) = B(I) + C(J)
8290   ENDDO
8291 ENDDO
8292 @end smallexample
8293 loop blocking transforms the loop as if it were written:
8294 @smallexample
8295 DO II = 1, N, 51
8296   DO JJ = 1, M, 51
8297     DO I = II, min (II + 50, N)
8298       DO J = JJ, min (JJ + 50, M)
8299         A(J, I) = B(I) + C(J)
8300       ENDDO
8301     ENDDO
8302   ENDDO
8303 ENDDO
8304 @end smallexample
8305 which can be beneficial when @code{M} is larger than the caches,
8306 because the innermost loop iterates over a smaller amount of data
8307 which can be kept in the caches.  This optimization applies to all the
8308 languages supported by GCC and is not limited to Fortran.  To use this
8309 code transformation, GCC has to be configured with @option{--with-ppl}
8310 and @option{--with-cloog} to enable the Graphite loop transformation
8311 infrastructure.
8313 @item -fgraphite-identity
8314 @opindex fgraphite-identity
8315 Enable the identity transformation for graphite.  For every SCoP we generate
8316 the polyhedral representation and transform it back to gimple.  Using
8317 @option{-fgraphite-identity} we can check the costs or benefits of the
8318 GIMPLE -> GRAPHITE -> GIMPLE transformation.  Some minimal optimizations
8319 are also performed by the code generator CLooG, like index splitting and
8320 dead code elimination in loops.
8322 @item -floop-nest-optimize
8323 @opindex floop-nest-optimize
8324 Enable the ISL based loop nest optimizer.  This is a generic loop nest
8325 optimizer based on the Pluto optimization algorithms.  It calculates a loop
8326 structure optimized for data-locality and parallelism.  This option
8327 is experimental.
8329 @item -floop-parallelize-all
8330 @opindex floop-parallelize-all
8331 Use the Graphite data dependence analysis to identify loops that can
8332 be parallelized.  Parallelize all the loops that can be analyzed to
8333 not contain loop carried dependences without checking that it is
8334 profitable to parallelize the loops.
8336 @item -fcheck-data-deps
8337 @opindex fcheck-data-deps
8338 Compare the results of several data dependence analyzers.  This option
8339 is used for debugging the data dependence analyzers.
8341 @item -ftree-loop-if-convert
8342 Attempt to transform conditional jumps in the innermost loops to
8343 branch-less equivalents.  The intent is to remove control-flow from
8344 the innermost loops in order to improve the ability of the
8345 vectorization pass to handle these loops.  This is enabled by default
8346 if vectorization is enabled.
8348 @item -ftree-loop-if-convert-stores
8349 Attempt to also if-convert conditional jumps containing memory writes.
8350 This transformation can be unsafe for multi-threaded programs as it
8351 transforms conditional memory writes into unconditional memory writes.
8352 For example,
8353 @smallexample
8354 for (i = 0; i < N; i++)
8355   if (cond)
8356     A[i] = expr;
8357 @end smallexample
8358 is transformed to
8359 @smallexample
8360 for (i = 0; i < N; i++)
8361   A[i] = cond ? expr : A[i];
8362 @end smallexample
8363 potentially producing data races.
8365 @item -ftree-loop-distribution
8366 Perform loop distribution.  This flag can improve cache performance on
8367 big loop bodies and allow further loop optimizations, like
8368 parallelization or vectorization, to take place.  For example, the loop
8369 @smallexample
8370 DO I = 1, N
8371   A(I) = B(I) + C
8372   D(I) = E(I) * F
8373 ENDDO
8374 @end smallexample
8375 is transformed to
8376 @smallexample
8377 DO I = 1, N
8378    A(I) = B(I) + C
8379 ENDDO
8380 DO I = 1, N
8381    D(I) = E(I) * F
8382 ENDDO
8383 @end smallexample
8385 @item -ftree-loop-distribute-patterns
8386 Perform loop distribution of patterns that can be code generated with
8387 calls to a library.  This flag is enabled by default at @option{-O3}.
8389 This pass distributes the initialization loops and generates a call to
8390 memset zero.  For example, the loop
8391 @smallexample
8392 DO I = 1, N
8393   A(I) = 0
8394   B(I) = A(I) + I
8395 ENDDO
8396 @end smallexample
8397 is transformed to
8398 @smallexample
8399 DO I = 1, N
8400    A(I) = 0
8401 ENDDO
8402 DO I = 1, N
8403    B(I) = A(I) + I
8404 ENDDO
8405 @end smallexample
8406 and the initialization loop is transformed into a call to memset zero.
8408 @item -ftree-loop-im
8409 @opindex ftree-loop-im
8410 Perform loop invariant motion on trees.  This pass moves only invariants that
8411 are hard to handle at RTL level (function calls, operations that expand to
8412 nontrivial sequences of insns).  With @option{-funswitch-loops} it also moves
8413 operands of conditions that are invariant out of the loop, so that we can use
8414 just trivial invariantness analysis in loop unswitching.  The pass also includes
8415 store motion.
8417 @item -ftree-loop-ivcanon
8418 @opindex ftree-loop-ivcanon
8419 Create a canonical counter for number of iterations in loops for which
8420 determining number of iterations requires complicated analysis.  Later
8421 optimizations then may determine the number easily.  Useful especially
8422 in connection with unrolling.
8424 @item -fivopts
8425 @opindex fivopts
8426 Perform induction variable optimizations (strength reduction, induction
8427 variable merging and induction variable elimination) on trees.
8429 @item -ftree-parallelize-loops=n
8430 @opindex ftree-parallelize-loops
8431 Parallelize loops, i.e., split their iteration space to run in n threads.
8432 This is only possible for loops whose iterations are independent
8433 and can be arbitrarily reordered.  The optimization is only
8434 profitable on multiprocessor machines, for loops that are CPU-intensive,
8435 rather than constrained e.g.@: by memory bandwidth.  This option
8436 implies @option{-pthread}, and thus is only supported on targets
8437 that have support for @option{-pthread}.
8439 @item -ftree-pta
8440 @opindex ftree-pta
8441 Perform function-local points-to analysis on trees.  This flag is
8442 enabled by default at @option{-O} and higher.
8444 @item -ftree-sra
8445 @opindex ftree-sra
8446 Perform scalar replacement of aggregates.  This pass replaces structure
8447 references with scalars to prevent committing structures to memory too
8448 early.  This flag is enabled by default at @option{-O} and higher.
8450 @item -ftree-copyrename
8451 @opindex ftree-copyrename
8452 Perform copy renaming on trees.  This pass attempts to rename compiler
8453 temporaries to other variables at copy locations, usually resulting in
8454 variable names which more closely resemble the original variables.  This flag
8455 is enabled by default at @option{-O} and higher.
8457 @item -ftree-coalesce-inlined-vars
8458 @opindex ftree-coalesce-inlined-vars
8459 Tell the copyrename pass (see @option{-ftree-copyrename}) to attempt to
8460 combine small user-defined variables too, but only if they were inlined
8461 from other functions.  It is a more limited form of
8462 @option{-ftree-coalesce-vars}.  This may harm debug information of such
8463 inlined variables, but it will keep variables of the inlined-into
8464 function apart from each other, such that they are more likely to
8465 contain the expected values in a debugging session.  This was the
8466 default in GCC versions older than 4.7.
8468 @item -ftree-coalesce-vars
8469 @opindex ftree-coalesce-vars
8470 Tell the copyrename pass (see @option{-ftree-copyrename}) to attempt to
8471 combine small user-defined variables too, instead of just compiler
8472 temporaries.  This may severely limit the ability to debug an optimized
8473 program compiled with @option{-fno-var-tracking-assignments}.  In the
8474 negated form, this flag prevents SSA coalescing of user variables,
8475 including inlined ones.  This option is enabled by default.
8477 @item -ftree-ter
8478 @opindex ftree-ter
8479 Perform temporary expression replacement during the SSA->normal phase.  Single
8480 use/single def temporaries are replaced at their use location with their
8481 defining expression.  This results in non-GIMPLE code, but gives the expanders
8482 much more complex trees to work on resulting in better RTL generation.  This is
8483 enabled by default at @option{-O} and higher.
8485 @item -ftree-slsr
8486 @opindex ftree-slsr
8487 Perform straight-line strength reduction on trees.  This recognizes related
8488 expressions involving multiplications and replaces them by less expensive
8489 calculations when possible.  This is enabled by default at @option{-O} and
8490 higher.
8492 @item -ftree-vectorize
8493 @opindex ftree-vectorize
8494 Perform vectorization on trees. This flag enables @option{-ftree-loop-vectorize}
8495 and @option{-ftree-slp-vectorize} if not explicitly specified.
8497 @item -ftree-loop-vectorize
8498 @opindex ftree-loop-vectorize
8499 Perform loop vectorization on trees. This flag is enabled by default at
8500 @option{-O3} and when @option{-ftree-vectorize} is enabled.
8502 @item -ftree-slp-vectorize
8503 @opindex ftree-slp-vectorize
8504 Perform basic block vectorization on trees. This flag is enabled by default at
8505 @option{-O3} and when @option{-ftree-vectorize} is enabled.
8507 @item -fvect-cost-model=@var{model}
8508 @opindex fvect-cost-model
8509 Alter the cost model used for vectorization.  The @var{model} argument
8510 should be one of @code{unlimited}, @code{dynamic} or @code{cheap}.
8511 With the @code{unlimited} model the vectorized code-path is assumed
8512 to be profitable while with the @code{dynamic} model a runtime check
8513 will guard the vectorized code-path to enable it only for iteration
8514 counts that will likely execute faster than when executing the original
8515 scalar loop.  The @code{cheap} model will disable vectorization of
8516 loops where doing so would be cost prohibitive for example due to
8517 required runtime checks for data dependence or alignment but otherwise
8518 is equal to the @code{dynamic} model.
8519 The default cost model depends on other optimization flags and is
8520 either @code{dynamic} or @code{cheap}.
8522 @item -fsimd-cost-model=@var{model}
8523 @opindex fsimd-cost-model
8524 Alter the cost model used for vectorization of loops marked with the OpenMP
8525 or Cilk Plus simd directive.  The @var{model} argument should be one of
8526 @code{unlimited}, @code{dynamic}, @code{cheap}.  All values of @var{model}
8527 have the same meaning as described in @option{-fvect-cost-model} and by
8528 default a cost model defined with @option{-fvect-cost-model} is used.
8530 @item -ftree-vrp
8531 @opindex ftree-vrp
8532 Perform Value Range Propagation on trees.  This is similar to the
8533 constant propagation pass, but instead of values, ranges of values are
8534 propagated.  This allows the optimizers to remove unnecessary range
8535 checks like array bound checks and null pointer checks.  This is
8536 enabled by default at @option{-O2} and higher.  Null pointer check
8537 elimination is only done if @option{-fdelete-null-pointer-checks} is
8538 enabled.
8540 @item -ftracer
8541 @opindex ftracer
8542 Perform tail duplication to enlarge superblock size.  This transformation
8543 simplifies the control flow of the function allowing other optimizations to do
8544 a better job.
8546 @item -funroll-loops
8547 @opindex funroll-loops
8548 Unroll loops whose number of iterations can be determined at compile
8549 time or upon entry to the loop.  @option{-funroll-loops} implies
8550 @option{-frerun-cse-after-loop}.  This option makes code larger,
8551 and may or may not make it run faster.
8553 @item -funroll-all-loops
8554 @opindex funroll-all-loops
8555 Unroll all loops, even if their number of iterations is uncertain when
8556 the loop is entered.  This usually makes programs run more slowly.
8557 @option{-funroll-all-loops} implies the same options as
8558 @option{-funroll-loops},
8560 @item -fsplit-ivs-in-unroller
8561 @opindex fsplit-ivs-in-unroller
8562 Enables expression of values of induction variables in later iterations
8563 of the unrolled loop using the value in the first iteration.  This breaks
8564 long dependency chains, thus improving efficiency of the scheduling passes.
8566 A combination of @option{-fweb} and CSE is often sufficient to obtain the
8567 same effect.  However, that is not reliable in cases where the loop body
8568 is more complicated than a single basic block.  It also does not work at all
8569 on some architectures due to restrictions in the CSE pass.
8571 This optimization is enabled by default.
8573 @item -fvariable-expansion-in-unroller
8574 @opindex fvariable-expansion-in-unroller
8575 With this option, the compiler creates multiple copies of some
8576 local variables when unrolling a loop, which can result in superior code.
8578 @item -fpartial-inlining
8579 @opindex fpartial-inlining
8580 Inline parts of functions.  This option has any effect only
8581 when inlining itself is turned on by the @option{-finline-functions}
8582 or @option{-finline-small-functions} options.
8584 Enabled at level @option{-O2}.
8586 @item -fpredictive-commoning
8587 @opindex fpredictive-commoning
8588 Perform predictive commoning optimization, i.e., reusing computations
8589 (especially memory loads and stores) performed in previous
8590 iterations of loops.
8592 This option is enabled at level @option{-O3}.
8594 @item -fprefetch-loop-arrays
8595 @opindex fprefetch-loop-arrays
8596 If supported by the target machine, generate instructions to prefetch
8597 memory to improve the performance of loops that access large arrays.
8599 This option may generate better or worse code; results are highly
8600 dependent on the structure of loops within the source code.
8602 Disabled at level @option{-Os}.
8604 @item -fno-peephole
8605 @itemx -fno-peephole2
8606 @opindex fno-peephole
8607 @opindex fno-peephole2
8608 Disable any machine-specific peephole optimizations.  The difference
8609 between @option{-fno-peephole} and @option{-fno-peephole2} is in how they
8610 are implemented in the compiler; some targets use one, some use the
8611 other, a few use both.
8613 @option{-fpeephole} is enabled by default.
8614 @option{-fpeephole2} enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
8616 @item -fno-guess-branch-probability
8617 @opindex fno-guess-branch-probability
8618 Do not guess branch probabilities using heuristics.
8620 GCC uses heuristics to guess branch probabilities if they are
8621 not provided by profiling feedback (@option{-fprofile-arcs}).  These
8622 heuristics are based on the control flow graph.  If some branch probabilities
8623 are specified by @samp{__builtin_expect}, then the heuristics are
8624 used to guess branch probabilities for the rest of the control flow graph,
8625 taking the @samp{__builtin_expect} info into account.  The interactions
8626 between the heuristics and @samp{__builtin_expect} can be complex, and in
8627 some cases, it may be useful to disable the heuristics so that the effects
8628 of @samp{__builtin_expect} are easier to understand.
8630 The default is @option{-fguess-branch-probability} at levels
8631 @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
8633 @item -freorder-blocks
8634 @opindex freorder-blocks
8635 Reorder basic blocks in the compiled function in order to reduce number of
8636 taken branches and improve code locality.
8638 Enabled at levels @option{-O2}, @option{-O3}.
8640 @item -freorder-blocks-and-partition
8641 @opindex freorder-blocks-and-partition
8642 In addition to reordering basic blocks in the compiled function, in order
8643 to reduce number of taken branches, partitions hot and cold basic blocks
8644 into separate sections of the assembly and .o files, to improve
8645 paging and cache locality performance.
8647 This optimization is automatically turned off in the presence of
8648 exception handling, for linkonce sections, for functions with a user-defined
8649 section attribute and on any architecture that does not support named
8650 sections.
8652 Enabled for x86 at levels @option{-O2}, @option{-O3}.
8654 @item -freorder-functions
8655 @opindex freorder-functions
8656 Reorder functions in the object file in order to
8657 improve code locality.  This is implemented by using special
8658 subsections @code{.text.hot} for most frequently executed functions and
8659 @code{.text.unlikely} for unlikely executed functions.  Reordering is done by
8660 the linker so object file format must support named sections and linker must
8661 place them in a reasonable way.
8663 Also profile feedback must be available to make this option effective.  See
8664 @option{-fprofile-arcs} for details.
8666 Enabled at levels @option{-O2}, @option{-O3}, @option{-Os}.
8668 @item -fstrict-aliasing
8669 @opindex fstrict-aliasing
8670 Allow the compiler to assume the strictest aliasing rules applicable to
8671 the language being compiled.  For C (and C++), this activates
8672 optimizations based on the type of expressions.  In particular, an
8673 object of one type is assumed never to reside at the same address as an
8674 object of a different type, unless the types are almost the same.  For
8675 example, an @code{unsigned int} can alias an @code{int}, but not a
8676 @code{void*} or a @code{double}.  A character type may alias any other
8677 type.
8679 @anchor{Type-punning}Pay special attention to code like this:
8680 @smallexample
8681 union a_union @{
8682   int i;
8683   double d;
8686 int f() @{
8687   union a_union t;
8688   t.d = 3.0;
8689   return t.i;
8691 @end smallexample
8692 The practice of reading from a different union member than the one most
8693 recently written to (called ``type-punning'') is common.  Even with
8694 @option{-fstrict-aliasing}, type-punning is allowed, provided the memory
8695 is accessed through the union type.  So, the code above works as
8696 expected.  @xref{Structures unions enumerations and bit-fields
8697 implementation}.  However, this code might not:
8698 @smallexample
8699 int f() @{
8700   union a_union t;
8701   int* ip;
8702   t.d = 3.0;
8703   ip = &t.i;
8704   return *ip;
8706 @end smallexample
8708 Similarly, access by taking the address, casting the resulting pointer
8709 and dereferencing the result has undefined behavior, even if the cast
8710 uses a union type, e.g.:
8711 @smallexample
8712 int f() @{
8713   double d = 3.0;
8714   return ((union a_union *) &d)->i;
8716 @end smallexample
8718 The @option{-fstrict-aliasing} option is enabled at levels
8719 @option{-O2}, @option{-O3}, @option{-Os}.
8721 @item -fstrict-overflow
8722 @opindex fstrict-overflow
8723 Allow the compiler to assume strict signed overflow rules, depending
8724 on the language being compiled.  For C (and C++) this means that
8725 overflow when doing arithmetic with signed numbers is undefined, which
8726 means that the compiler may assume that it does not happen.  This
8727 permits various optimizations.  For example, the compiler assumes
8728 that an expression like @code{i + 10 > i} is always true for
8729 signed @code{i}.  This assumption is only valid if signed overflow is
8730 undefined, as the expression is false if @code{i + 10} overflows when
8731 using twos complement arithmetic.  When this option is in effect any
8732 attempt to determine whether an operation on signed numbers 
8733 overflows must be written carefully to not actually involve overflow.
8735 This option also allows the compiler to assume strict pointer
8736 semantics: given a pointer to an object, if adding an offset to that
8737 pointer does not produce a pointer to the same object, the addition is
8738 undefined.  This permits the compiler to conclude that @code{p + u >
8739 p} is always true for a pointer @code{p} and unsigned integer
8740 @code{u}.  This assumption is only valid because pointer wraparound is
8741 undefined, as the expression is false if @code{p + u} overflows using
8742 twos complement arithmetic.
8744 See also the @option{-fwrapv} option.  Using @option{-fwrapv} means
8745 that integer signed overflow is fully defined: it wraps.  When
8746 @option{-fwrapv} is used, there is no difference between
8747 @option{-fstrict-overflow} and @option{-fno-strict-overflow} for
8748 integers.  With @option{-fwrapv} certain types of overflow are
8749 permitted.  For example, if the compiler gets an overflow when doing
8750 arithmetic on constants, the overflowed value can still be used with
8751 @option{-fwrapv}, but not otherwise.
8753 The @option{-fstrict-overflow} option is enabled at levels
8754 @option{-O2}, @option{-O3}, @option{-Os}.
8756 @item -falign-functions
8757 @itemx -falign-functions=@var{n}
8758 @opindex falign-functions
8759 Align the start of functions to the next power-of-two greater than
8760 @var{n}, skipping up to @var{n} bytes.  For instance,
8761 @option{-falign-functions=32} aligns functions to the next 32-byte
8762 boundary, but @option{-falign-functions=24} aligns to the next
8763 32-byte boundary only if this can be done by skipping 23 bytes or less.
8765 @option{-fno-align-functions} and @option{-falign-functions=1} are
8766 equivalent and mean that functions are not aligned.
8768 Some assemblers only support this flag when @var{n} is a power of two;
8769 in that case, it is rounded up.
8771 If @var{n} is not specified or is zero, use a machine-dependent default.
8773 Enabled at levels @option{-O2}, @option{-O3}.
8775 @item -falign-labels
8776 @itemx -falign-labels=@var{n}
8777 @opindex falign-labels
8778 Align all branch targets to a power-of-two boundary, skipping up to
8779 @var{n} bytes like @option{-falign-functions}.  This option can easily
8780 make code slower, because it must insert dummy operations for when the
8781 branch target is reached in the usual flow of the code.
8783 @option{-fno-align-labels} and @option{-falign-labels=1} are
8784 equivalent and mean that labels are not aligned.
8786 If @option{-falign-loops} or @option{-falign-jumps} are applicable and
8787 are greater than this value, then their values are used instead.
8789 If @var{n} is not specified or is zero, use a machine-dependent default
8790 which is very likely to be @samp{1}, meaning no alignment.
8792 Enabled at levels @option{-O2}, @option{-O3}.
8794 @item -falign-loops
8795 @itemx -falign-loops=@var{n}
8796 @opindex falign-loops
8797 Align loops to a power-of-two boundary, skipping up to @var{n} bytes
8798 like @option{-falign-functions}.  If the loops are
8799 executed many times, this makes up for any execution of the dummy
8800 operations.
8802 @option{-fno-align-loops} and @option{-falign-loops=1} are
8803 equivalent and mean that loops are not aligned.
8805 If @var{n} is not specified or is zero, use a machine-dependent default.
8807 Enabled at levels @option{-O2}, @option{-O3}.
8809 @item -falign-jumps
8810 @itemx -falign-jumps=@var{n}
8811 @opindex falign-jumps
8812 Align branch targets to a power-of-two boundary, for branch targets
8813 where the targets can only be reached by jumping, skipping up to @var{n}
8814 bytes like @option{-falign-functions}.  In this case, no dummy operations
8815 need be executed.
8817 @option{-fno-align-jumps} and @option{-falign-jumps=1} are
8818 equivalent and mean that loops are not aligned.
8820 If @var{n} is not specified or is zero, use a machine-dependent default.
8822 Enabled at levels @option{-O2}, @option{-O3}.
8824 @item -funit-at-a-time
8825 @opindex funit-at-a-time
8826 This option is left for compatibility reasons. @option{-funit-at-a-time}
8827 has no effect, while @option{-fno-unit-at-a-time} implies
8828 @option{-fno-toplevel-reorder} and @option{-fno-section-anchors}.
8830 Enabled by default.
8832 @item -fno-toplevel-reorder
8833 @opindex fno-toplevel-reorder
8834 Do not reorder top-level functions, variables, and @code{asm}
8835 statements.  Output them in the same order that they appear in the
8836 input file.  When this option is used, unreferenced static variables
8837 are not removed.  This option is intended to support existing code
8838 that relies on a particular ordering.  For new code, it is better to
8839 use attributes when possible.
8841 Enabled at level @option{-O0}.  When disabled explicitly, it also implies
8842 @option{-fno-section-anchors}, which is otherwise enabled at @option{-O0} on some
8843 targets.
8845 @item -fweb
8846 @opindex fweb
8847 Constructs webs as commonly used for register allocation purposes and assign
8848 each web individual pseudo register.  This allows the register allocation pass
8849 to operate on pseudos directly, but also strengthens several other optimization
8850 passes, such as CSE, loop optimizer and trivial dead code remover.  It can,
8851 however, make debugging impossible, since variables no longer stay in a
8852 ``home register''.
8854 Enabled by default with @option{-funroll-loops}.
8856 @item -fwhole-program
8857 @opindex fwhole-program
8858 Assume that the current compilation unit represents the whole program being
8859 compiled.  All public functions and variables with the exception of @code{main}
8860 and those merged by attribute @code{externally_visible} become static functions
8861 and in effect are optimized more aggressively by interprocedural optimizers.
8863 This option should not be used in combination with @code{-flto}.
8864 Instead relying on a linker plugin should provide safer and more precise
8865 information.
8867 @item -flto[=@var{n}]
8868 @opindex flto
8869 This option runs the standard link-time optimizer.  When invoked
8870 with source code, it generates GIMPLE (one of GCC's internal
8871 representations) and writes it to special ELF sections in the object
8872 file.  When the object files are linked together, all the function
8873 bodies are read from these ELF sections and instantiated as if they
8874 had been part of the same translation unit.
8876 To use the link-time optimizer, @option{-flto} and optimization
8877 options should be specified at compile time and during the final link.
8878 For example:
8880 @smallexample
8881 gcc -c -O2 -flto foo.c
8882 gcc -c -O2 -flto bar.c
8883 gcc -o myprog -flto -O2 foo.o bar.o
8884 @end smallexample
8886 The first two invocations to GCC save a bytecode representation
8887 of GIMPLE into special ELF sections inside @file{foo.o} and
8888 @file{bar.o}.  The final invocation reads the GIMPLE bytecode from
8889 @file{foo.o} and @file{bar.o}, merges the two files into a single
8890 internal image, and compiles the result as usual.  Since both
8891 @file{foo.o} and @file{bar.o} are merged into a single image, this
8892 causes all the interprocedural analyses and optimizations in GCC to
8893 work across the two files as if they were a single one.  This means,
8894 for example, that the inliner is able to inline functions in
8895 @file{bar.o} into functions in @file{foo.o} and vice-versa.
8897 Another (simpler) way to enable link-time optimization is:
8899 @smallexample
8900 gcc -o myprog -flto -O2 foo.c bar.c
8901 @end smallexample
8903 The above generates bytecode for @file{foo.c} and @file{bar.c},
8904 merges them together into a single GIMPLE representation and optimizes
8905 them as usual to produce @file{myprog}.
8907 The only important thing to keep in mind is that to enable link-time
8908 optimizations you need to use the GCC driver to perform the link-step.
8909 GCC then automatically performs link-time optimization if any of the
8910 objects involved were compiled with the @option{-flto}.  You generally
8911 should specify the optimization options to be used for link-time
8912 optimization though GCC will try to be clever at guessing an
8913 optimization level to use from the options used at compile-time
8914 if you fail to specify one at link-time.  You can always override
8915 the automatic decision to do link-time optimization at link-time
8916 by passing @option{-fno-lto} to the link command.
8918 To make whole program optimization effective, it is necessary to make
8919 certain whole program assumptions.  The compiler needs to know
8920 what functions and variables can be accessed by libraries and runtime
8921 outside of the link-time optimized unit.  When supported by the linker,
8922 the linker plugin (see @option{-fuse-linker-plugin}) passes information
8923 to the compiler about used and externally visible symbols.  When
8924 the linker plugin is not available, @option{-fwhole-program} should be
8925 used to allow the compiler to make these assumptions, which leads
8926 to more aggressive optimization decisions.
8928 When @option{-fuse-linker-plugin} is not enabled then, when a file is
8929 compiled with @option{-flto}, the generated object file is larger than
8930 a regular object file because it contains GIMPLE bytecodes and the usual
8931 final code (see @option{-ffat-lto-objects}.  This means that
8932 object files with LTO information can be linked as normal object
8933 files; if @option{-fno-lto} is passed to the linker, no
8934 interprocedural optimizations are applied.  Note that when
8935 @option{-fno-fat-lto-objects} is enabled the compile-stage is faster
8936 but you cannot perform a regular, non-LTO link on them.
8938 Additionally, the optimization flags used to compile individual files
8939 are not necessarily related to those used at link time.  For instance,
8941 @smallexample
8942 gcc -c -O0 -ffat-lto-objects -flto foo.c
8943 gcc -c -O0 -ffat-lto-objects -flto bar.c
8944 gcc -o myprog -O3 foo.o bar.o
8945 @end smallexample
8947 This produces individual object files with unoptimized assembler
8948 code, but the resulting binary @file{myprog} is optimized at
8949 @option{-O3}.  If, instead, the final binary is generated with
8950 @option{-fno-lto}, then @file{myprog} is not optimized.
8952 When producing the final binary, GCC only
8953 applies link-time optimizations to those files that contain bytecode.
8954 Therefore, you can mix and match object files and libraries with
8955 GIMPLE bytecodes and final object code.  GCC automatically selects
8956 which files to optimize in LTO mode and which files to link without
8957 further processing.
8959 There are some code generation flags preserved by GCC when
8960 generating bytecodes, as they need to be used during the final link
8961 stage.  Generally options specified at link-time override those
8962 specified at compile-time.
8964 If you do not specify an optimization level option @option{-O} at
8965 link-time then GCC will compute one based on the optimization levels
8966 used when compiling the object files.  The highest optimization
8967 level will win here.
8969 Currently, the following options and their setting are take from
8970 the first object file that explicitely specified it: 
8971 @option{-fPIC}, @option{-fpic}, @option{-fpie}, @option{-fcommon},
8972 @option{-fexceptions}, @option{-fnon-call-exceptions}, @option{-fgnu-tm}
8973 and all the @option{-m} target flags.
8975 Certain ABI changing flags are required to match in all compilation-units
8976 and trying to override this at link-time with a conflicting value
8977 is ignored.  This includes options such as @option{-freg-struct-return}
8978 and @option{-fpcc-struct-return}. 
8980 Other options such as @option{-ffp-contract}, @option{-fno-strict-overflow},
8981 @option{-fwrapv}, @option{-fno-trapv} or @option{-fno-strict-aliasing}
8982 are passed through to the link stage and merged conservatively for
8983 conflicting translation units.  Specifically
8984 @option{-fno-strict-overflow}, @option{-fwrapv} and @option{-fno-trapv} take
8985 precedence and for example @option{-ffp-contract=off} takes precedence
8986 over @option{-ffp-contract=fast}.  You can override them at linke-time.
8988 It is recommended that you compile all the files participating in the
8989 same link with the same options and also specify those options at
8990 link time.
8992 If LTO encounters objects with C linkage declared with incompatible
8993 types in separate translation units to be linked together (undefined
8994 behavior according to ISO C99 6.2.7), a non-fatal diagnostic may be
8995 issued.  The behavior is still undefined at run time.  Similar
8996 diagnostics may be raised for other languages.
8998 Another feature of LTO is that it is possible to apply interprocedural
8999 optimizations on files written in different languages:
9001 @smallexample
9002 gcc -c -flto foo.c
9003 g++ -c -flto bar.cc
9004 gfortran -c -flto baz.f90
9005 g++ -o myprog -flto -O3 foo.o bar.o baz.o -lgfortran
9006 @end smallexample
9008 Notice that the final link is done with @command{g++} to get the C++
9009 runtime libraries and @option{-lgfortran} is added to get the Fortran
9010 runtime libraries.  In general, when mixing languages in LTO mode, you
9011 should use the same link command options as when mixing languages in a
9012 regular (non-LTO) compilation.
9014 If object files containing GIMPLE bytecode are stored in a library archive, say
9015 @file{libfoo.a}, it is possible to extract and use them in an LTO link if you
9016 are using a linker with plugin support.  To create static libraries suitable
9017 for LTO, use @command{gcc-ar} and @command{gcc-ranlib} instead of @command{ar}
9018 and @code{ranlib}; to show the symbols of object files with GIMPLE bytecode, use
9019 @command{gcc-nm}.  Those commands require that @command{ar}, @command{ranlib}
9020 and @command{nm} have been compiled with plugin support.  At link time, use the the
9021 flag @option{-fuse-linker-plugin} to ensure that the library participates in
9022 the LTO optimization process:
9024 @smallexample
9025 gcc -o myprog -O2 -flto -fuse-linker-plugin a.o b.o -lfoo
9026 @end smallexample
9028 With the linker plugin enabled, the linker extracts the needed
9029 GIMPLE files from @file{libfoo.a} and passes them on to the running GCC
9030 to make them part of the aggregated GIMPLE image to be optimized.
9032 If you are not using a linker with plugin support and/or do not
9033 enable the linker plugin, then the objects inside @file{libfoo.a}
9034 are extracted and linked as usual, but they do not participate
9035 in the LTO optimization process.  In order to make a static library suitable
9036 for both LTO optimization and usual linkage, compile its object files with
9037 @option{-flto} @code{-ffat-lto-objects}.
9039 Link-time optimizations do not require the presence of the whole program to
9040 operate.  If the program does not require any symbols to be exported, it is
9041 possible to combine @option{-flto} and @option{-fwhole-program} to allow
9042 the interprocedural optimizers to use more aggressive assumptions which may
9043 lead to improved optimization opportunities.
9044 Use of @option{-fwhole-program} is not needed when linker plugin is
9045 active (see @option{-fuse-linker-plugin}).
9047 The current implementation of LTO makes no
9048 attempt to generate bytecode that is portable between different
9049 types of hosts.  The bytecode files are versioned and there is a
9050 strict version check, so bytecode files generated in one version of
9051 GCC will not work with an older or newer version of GCC.
9053 Link-time optimization does not work well with generation of debugging
9054 information.  Combining @option{-flto} with
9055 @option{-g} is currently experimental and expected to produce unexpected
9056 results.
9058 If you specify the optional @var{n}, the optimization and code
9059 generation done at link time is executed in parallel using @var{n}
9060 parallel jobs by utilizing an installed @command{make} program.  The
9061 environment variable @env{MAKE} may be used to override the program
9062 used.  The default value for @var{n} is 1.
9064 You can also specify @option{-flto=jobserver} to use GNU make's
9065 job server mode to determine the number of parallel jobs. This
9066 is useful when the Makefile calling GCC is already executing in parallel.
9067 You must prepend a @samp{+} to the command recipe in the parent Makefile
9068 for this to work.  This option likely only works if @env{MAKE} is
9069 GNU make.
9071 @item -flto-partition=@var{alg}
9072 @opindex flto-partition
9073 Specify the partitioning algorithm used by the link-time optimizer.
9074 The value is either @code{1to1} to specify a partitioning mirroring
9075 the original source files or @code{balanced} to specify partitioning
9076 into equally sized chunks (whenever possible) or @code{max} to create
9077 new partition for every symbol where possible.  Specifying @code{none}
9078 as an algorithm disables partitioning and streaming completely. 
9079 The default value is @code{balanced}. While @code{1to1} can be used
9080 as an workaround for various code ordering issues, the @code{max}
9081 partitioning is intended for internal testing only.
9082 The value @code{one} specifies that exactly one partition should be
9083 used while the value @code{none} bypasses partitioning and executes
9084 the link-time optimization step directly from the WPA phase.
9086 @item -flto-odr-type-merging
9087 @opindex flto-odr-type-merging
9088 Enable streaming of mangled types names of C++ types and their unification
9089 at linktime.  This increases size of LTO object files, but enable
9090 diagnostics about One Definition Rule violations.
9092 @item -flto-compression-level=@var{n}
9093 This option specifies the level of compression used for intermediate
9094 language written to LTO object files, and is only meaningful in
9095 conjunction with LTO mode (@option{-flto}).  Valid
9096 values are 0 (no compression) to 9 (maximum compression).  Values
9097 outside this range are clamped to either 0 or 9.  If the option is not
9098 given, a default balanced compression setting is used.
9100 @item -flto-report
9101 Prints a report with internal details on the workings of the link-time
9102 optimizer.  The contents of this report vary from version to version.
9103 It is meant to be useful to GCC developers when processing object
9104 files in LTO mode (via @option{-flto}).
9106 Disabled by default.
9108 @item -flto-report-wpa
9109 Like @option{-flto-report}, but only print for the WPA phase of Link
9110 Time Optimization.
9112 @item -fuse-linker-plugin
9113 Enables the use of a linker plugin during link-time optimization.  This
9114 option relies on plugin support in the linker, which is available in gold
9115 or in GNU ld 2.21 or newer.
9117 This option enables the extraction of object files with GIMPLE bytecode out
9118 of library archives. This improves the quality of optimization by exposing
9119 more code to the link-time optimizer.  This information specifies what
9120 symbols can be accessed externally (by non-LTO object or during dynamic
9121 linking).  Resulting code quality improvements on binaries (and shared
9122 libraries that use hidden visibility) are similar to @code{-fwhole-program}.
9123 See @option{-flto} for a description of the effect of this flag and how to
9124 use it.
9126 This option is enabled by default when LTO support in GCC is enabled
9127 and GCC was configured for use with
9128 a linker supporting plugins (GNU ld 2.21 or newer or gold).
9130 @item -ffat-lto-objects
9131 @opindex ffat-lto-objects
9132 Fat LTO objects are object files that contain both the intermediate language
9133 and the object code. This makes them usable for both LTO linking and normal
9134 linking. This option is effective only when compiling with @option{-flto}
9135 and is ignored at link time.
9137 @option{-fno-fat-lto-objects} improves compilation time over plain LTO, but
9138 requires the complete toolchain to be aware of LTO. It requires a linker with
9139 linker plugin support for basic functionality.  Additionally,
9140 @command{nm}, @command{ar} and @command{ranlib}
9141 need to support linker plugins to allow a full-featured build environment
9142 (capable of building static libraries etc).  GCC provides the @command{gcc-ar},
9143 @command{gcc-nm}, @command{gcc-ranlib} wrappers to pass the right options
9144 to these tools. With non fat LTO makefiles need to be modified to use them.
9146 The default is @option{-fno-fat-lto-objects} on targets with linker plugin
9147 support.
9149 @item -fcompare-elim
9150 @opindex fcompare-elim
9151 After register allocation and post-register allocation instruction splitting,
9152 identify arithmetic instructions that compute processor flags similar to a
9153 comparison operation based on that arithmetic.  If possible, eliminate the
9154 explicit comparison operation.
9156 This pass only applies to certain targets that cannot explicitly represent
9157 the comparison operation before register allocation is complete.
9159 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
9161 @item -fuse-ld=bfd
9162 @opindex fuse-ld=bfd
9163 Use the @command{bfd} linker instead of the default linker.
9165 @item -fuse-ld=gold
9166 @opindex fuse-ld=gold
9167 Use the @command{gold} linker instead of the default linker.
9169 @item -fcprop-registers
9170 @opindex fcprop-registers
9171 After register allocation and post-register allocation instruction splitting,
9172 perform a copy-propagation pass to try to reduce scheduling dependencies
9173 and occasionally eliminate the copy.
9175 Enabled at levels @option{-O}, @option{-O2}, @option{-O3}, @option{-Os}.
9177 @item -fprofile-correction
9178 @opindex fprofile-correction
9179 Profiles collected using an instrumented binary for multi-threaded programs may
9180 be inconsistent due to missed counter updates. When this option is specified,
9181 GCC uses heuristics to correct or smooth out such inconsistencies. By
9182 default, GCC emits an error message when an inconsistent profile is detected.
9184 @item -fprofile-dir=@var{path}
9185 @opindex fprofile-dir
9187 Set the directory to search for the profile data files in to @var{path}.
9188 This option affects only the profile data generated by
9189 @option{-fprofile-generate}, @option{-ftest-coverage}, @option{-fprofile-arcs}
9190 and used by @option{-fprofile-use} and @option{-fbranch-probabilities}
9191 and its related options.  Both absolute and relative paths can be used.
9192 By default, GCC uses the current directory as @var{path}, thus the
9193 profile data file appears in the same directory as the object file.
9195 @item -fprofile-generate
9196 @itemx -fprofile-generate=@var{path}
9197 @opindex fprofile-generate
9199 Enable options usually used for instrumenting application to produce
9200 profile useful for later recompilation with profile feedback based
9201 optimization.  You must use @option{-fprofile-generate} both when
9202 compiling and when linking your program.
9204 The following options are enabled: @code{-fprofile-arcs}, @code{-fprofile-values}, @code{-fvpt}.
9206 If @var{path} is specified, GCC looks at the @var{path} to find
9207 the profile feedback data files. See @option{-fprofile-dir}.
9209 @item -fprofile-use
9210 @itemx -fprofile-use=@var{path}
9211 @opindex fprofile-use
9212 Enable profile feedback directed optimizations, and optimizations
9213 generally profitable only with profile feedback available.
9215 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
9216 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}, @code{-ftree-vectorize},
9217 @code{ftree-loop-distribute-patterns}
9219 By default, GCC emits an error message if the feedback profiles do not
9220 match the source code.  This error can be turned into a warning by using
9221 @option{-Wcoverage-mismatch}.  Note this may result in poorly optimized
9222 code.
9224 If @var{path} is specified, GCC looks at the @var{path} to find
9225 the profile feedback data files. See @option{-fprofile-dir}.
9227 @item -fauto-profile
9228 @itemx -fauto-profile=@var{path}
9229 @opindex fauto-profile
9230 Enable sampling based feedback directed optimizations, and optimizations
9231 generally profitable only with profile feedback available.
9233 The following options are enabled: @code{-fbranch-probabilities}, @code{-fvpt},
9234 @code{-funroll-loops}, @code{-fpeel-loops}, @code{-ftracer}, @code{-ftree-vectorize},
9235 @code{-finline-functions}, @code{-fipa-cp}, @code{-fipa-cp-clone},
9236 @code{-fpredictive-commoning}, @code{-funswitch-loops},
9237 @code{-fgcse-after-reload}, @code{-ftree-loop-distribute-patterns},
9239 If @var{path} is specified, GCC looks at the @var{path} to find
9240 the profile feedback data files.
9242 In order to collect AutoFDO profile, you need to have:
9244 1. A linux system with linux perf support
9245 2. (optional) An Intel processor with last branch record (LBR) support. This is
9246    to guarantee accurate instruction level profile, which is important for
9247    AutoFDO performance.
9249 To collect the profile, first use linux perf to collect raw profile
9250 (see @uref{https://perf.wiki.kernel.org/}).
9252 E.g.
9253 @code{perf record -e br_inst_retired:near_taken -b -o perf.data -- your_program}
9255 Then use create_gcov tool, which takes raw profile and unstripped binary to
9256 generate AutoFDO profile that can be used by GCC.
9257 (see @uref{https://github.com/google/autofdo}).
9259 E.g.
9260 @code{create_gcov --binary=your_program.unstripped --profile=perf.data --gcov=profile.afdo}
9261 @end table
9263 The following options control compiler behavior regarding floating-point 
9264 arithmetic.  These options trade off between speed and
9265 correctness.  All must be specifically enabled.
9267 @table @gcctabopt
9268 @item -ffloat-store
9269 @opindex ffloat-store
9270 Do not store floating-point variables in registers, and inhibit other
9271 options that might change whether a floating-point value is taken from a
9272 register or memory.
9274 @cindex floating-point precision
9275 This option prevents undesirable excess precision on machines such as
9276 the 68000 where the floating registers (of the 68881) keep more
9277 precision than a @code{double} is supposed to have.  Similarly for the
9278 x86 architecture.  For most programs, the excess precision does only
9279 good, but a few programs rely on the precise definition of IEEE floating
9280 point.  Use @option{-ffloat-store} for such programs, after modifying
9281 them to store all pertinent intermediate computations into variables.
9283 @item -fexcess-precision=@var{style}
9284 @opindex fexcess-precision
9285 This option allows further control over excess precision on machines
9286 where floating-point registers have more precision than the IEEE
9287 @code{float} and @code{double} types and the processor does not
9288 support operations rounding to those types.  By default,
9289 @option{-fexcess-precision=fast} is in effect; this means that
9290 operations are carried out in the precision of the registers and that
9291 it is unpredictable when rounding to the types specified in the source
9292 code takes place.  When compiling C, if
9293 @option{-fexcess-precision=standard} is specified then excess
9294 precision follows the rules specified in ISO C99; in particular,
9295 both casts and assignments cause values to be rounded to their
9296 semantic types (whereas @option{-ffloat-store} only affects
9297 assignments).  This option is enabled by default for C if a strict
9298 conformance option such as @option{-std=c99} is used.
9300 @opindex mfpmath
9301 @option{-fexcess-precision=standard} is not implemented for languages
9302 other than C, and has no effect if
9303 @option{-funsafe-math-optimizations} or @option{-ffast-math} is
9304 specified.  On the x86, it also has no effect if @option{-mfpmath=sse}
9305 or @option{-mfpmath=sse+387} is specified; in the former case, IEEE
9306 semantics apply without excess precision, and in the latter, rounding
9307 is unpredictable.
9309 @item -ffast-math
9310 @opindex ffast-math
9311 Sets @option{-fno-math-errno}, @option{-funsafe-math-optimizations},
9312 @option{-ffinite-math-only}, @option{-fno-rounding-math},
9313 @option{-fno-signaling-nans} and @option{-fcx-limited-range}.
9315 This option causes the preprocessor macro @code{__FAST_MATH__} to be defined.
9317 This option is not turned on by any @option{-O} option besides
9318 @option{-Ofast} since it can result in incorrect output for programs
9319 that depend on an exact implementation of IEEE or ISO rules/specifications
9320 for math functions. It may, however, yield faster code for programs
9321 that do not require the guarantees of these specifications.
9323 @item -fno-math-errno
9324 @opindex fno-math-errno
9325 Do not set @code{errno} after calling math functions that are executed
9326 with a single instruction, e.g., @code{sqrt}.  A program that relies on
9327 IEEE exceptions for math error handling may want to use this flag
9328 for speed while maintaining IEEE arithmetic compatibility.
9330 This option is not turned on by any @option{-O} option since
9331 it can result in incorrect output for programs that depend on
9332 an exact implementation of IEEE or ISO rules/specifications for
9333 math functions. It may, however, yield faster code for programs
9334 that do not require the guarantees of these specifications.
9336 The default is @option{-fmath-errno}.
9338 On Darwin systems, the math library never sets @code{errno}.  There is
9339 therefore no reason for the compiler to consider the possibility that
9340 it might, and @option{-fno-math-errno} is the default.
9342 @item -funsafe-math-optimizations
9343 @opindex funsafe-math-optimizations
9345 Allow optimizations for floating-point arithmetic that (a) assume
9346 that arguments and results are valid and (b) may violate IEEE or
9347 ANSI standards.  When used at link-time, it may include libraries
9348 or startup files that change the default FPU control word or other
9349 similar optimizations.
9351 This option is not turned on by any @option{-O} option since
9352 it can result in incorrect output for programs that depend on
9353 an exact implementation of IEEE or ISO rules/specifications for
9354 math functions. It may, however, yield faster code for programs
9355 that do not require the guarantees of these specifications.
9356 Enables @option{-fno-signed-zeros}, @option{-fno-trapping-math},
9357 @option{-fassociative-math} and @option{-freciprocal-math}.
9359 The default is @option{-fno-unsafe-math-optimizations}.
9361 @item -fassociative-math
9362 @opindex fassociative-math
9364 Allow re-association of operands in series of floating-point operations.
9365 This violates the ISO C and C++ language standard by possibly changing
9366 computation result.  NOTE: re-ordering may change the sign of zero as
9367 well as ignore NaNs and inhibit or create underflow or overflow (and
9368 thus cannot be used on code that relies on rounding behavior like
9369 @code{(x + 2**52) - 2**52}.  May also reorder floating-point comparisons
9370 and thus may not be used when ordered comparisons are required.
9371 This option requires that both @option{-fno-signed-zeros} and
9372 @option{-fno-trapping-math} be in effect.  Moreover, it doesn't make
9373 much sense with @option{-frounding-math}. For Fortran the option
9374 is automatically enabled when both @option{-fno-signed-zeros} and
9375 @option{-fno-trapping-math} are in effect.
9377 The default is @option{-fno-associative-math}.
9379 @item -freciprocal-math
9380 @opindex freciprocal-math
9382 Allow the reciprocal of a value to be used instead of dividing by
9383 the value if this enables optimizations.  For example @code{x / y}
9384 can be replaced with @code{x * (1/y)}, which is useful if @code{(1/y)}
9385 is subject to common subexpression elimination.  Note that this loses
9386 precision and increases the number of flops operating on the value.
9388 The default is @option{-fno-reciprocal-math}.
9390 @item -ffinite-math-only
9391 @opindex ffinite-math-only
9392 Allow optimizations for floating-point arithmetic that assume
9393 that arguments and results are not NaNs or +-Infs.
9395 This option is not turned on by any @option{-O} option since
9396 it can result in incorrect output for programs that depend on
9397 an exact implementation of IEEE or ISO rules/specifications for
9398 math functions. It may, however, yield faster code for programs
9399 that do not require the guarantees of these specifications.
9401 The default is @option{-fno-finite-math-only}.
9403 @item -fno-signed-zeros
9404 @opindex fno-signed-zeros
9405 Allow optimizations for floating-point arithmetic that ignore the
9406 signedness of zero.  IEEE arithmetic specifies the behavior of
9407 distinct +0.0 and @minus{}0.0 values, which then prohibits simplification
9408 of expressions such as x+0.0 or 0.0*x (even with @option{-ffinite-math-only}).
9409 This option implies that the sign of a zero result isn't significant.
9411 The default is @option{-fsigned-zeros}.
9413 @item -fno-trapping-math
9414 @opindex fno-trapping-math
9415 Compile code assuming that floating-point operations cannot generate
9416 user-visible traps.  These traps include division by zero, overflow,
9417 underflow, inexact result and invalid operation.  This option requires
9418 that @option{-fno-signaling-nans} be in effect.  Setting this option may
9419 allow faster code if one relies on ``non-stop'' IEEE arithmetic, for example.
9421 This option should never be turned on by any @option{-O} option since
9422 it can result in incorrect output for programs that depend on
9423 an exact implementation of IEEE or ISO rules/specifications for
9424 math functions.
9426 The default is @option{-ftrapping-math}.
9428 @item -frounding-math
9429 @opindex frounding-math
9430 Disable transformations and optimizations that assume default floating-point
9431 rounding behavior.  This is round-to-zero for all floating point
9432 to integer conversions, and round-to-nearest for all other arithmetic
9433 truncations.  This option should be specified for programs that change
9434 the FP rounding mode dynamically, or that may be executed with a
9435 non-default rounding mode.  This option disables constant folding of
9436 floating-point expressions at compile time (which may be affected by
9437 rounding mode) and arithmetic transformations that are unsafe in the
9438 presence of sign-dependent rounding modes.
9440 The default is @option{-fno-rounding-math}.
9442 This option is experimental and does not currently guarantee to
9443 disable all GCC optimizations that are affected by rounding mode.
9444 Future versions of GCC may provide finer control of this setting
9445 using C99's @code{FENV_ACCESS} pragma.  This command-line option
9446 will be used to specify the default state for @code{FENV_ACCESS}.
9448 @item -fsignaling-nans
9449 @opindex fsignaling-nans
9450 Compile code assuming that IEEE signaling NaNs may generate user-visible
9451 traps during floating-point operations.  Setting this option disables
9452 optimizations that may change the number of exceptions visible with
9453 signaling NaNs.  This option implies @option{-ftrapping-math}.
9455 This option causes the preprocessor macro @code{__SUPPORT_SNAN__} to
9456 be defined.
9458 The default is @option{-fno-signaling-nans}.
9460 This option is experimental and does not currently guarantee to
9461 disable all GCC optimizations that affect signaling NaN behavior.
9463 @item -fsingle-precision-constant
9464 @opindex fsingle-precision-constant
9465 Treat floating-point constants as single precision instead of
9466 implicitly converting them to double-precision constants.
9468 @item -fcx-limited-range
9469 @opindex fcx-limited-range
9470 When enabled, this option states that a range reduction step is not
9471 needed when performing complex division.  Also, there is no checking
9472 whether the result of a complex multiplication or division is @code{NaN
9473 + I*NaN}, with an attempt to rescue the situation in that case.  The
9474 default is @option{-fno-cx-limited-range}, but is enabled by
9475 @option{-ffast-math}.
9477 This option controls the default setting of the ISO C99
9478 @code{CX_LIMITED_RANGE} pragma.  Nevertheless, the option applies to
9479 all languages.
9481 @item -fcx-fortran-rules
9482 @opindex fcx-fortran-rules
9483 Complex multiplication and division follow Fortran rules.  Range
9484 reduction is done as part of complex division, but there is no checking
9485 whether the result of a complex multiplication or division is @code{NaN
9486 + I*NaN}, with an attempt to rescue the situation in that case.
9488 The default is @option{-fno-cx-fortran-rules}.
9490 @end table
9492 The following options control optimizations that may improve
9493 performance, but are not enabled by any @option{-O} options.  This
9494 section includes experimental options that may produce broken code.
9496 @table @gcctabopt
9497 @item -fbranch-probabilities
9498 @opindex fbranch-probabilities
9499 After running a program compiled with @option{-fprofile-arcs}
9500 (@pxref{Debugging Options,, Options for Debugging Your Program or
9501 @command{gcc}}), you can compile it a second time using
9502 @option{-fbranch-probabilities}, to improve optimizations based on
9503 the number of times each branch was taken.  When a program
9504 compiled with @option{-fprofile-arcs} exits, it saves arc execution
9505 counts to a file called @file{@var{sourcename}.gcda} for each source
9506 file.  The information in this data file is very dependent on the
9507 structure of the generated code, so you must use the same source code
9508 and the same optimization options for both compilations.
9510 With @option{-fbranch-probabilities}, GCC puts a
9511 @samp{REG_BR_PROB} note on each @samp{JUMP_INSN} and @samp{CALL_INSN}.
9512 These can be used to improve optimization.  Currently, they are only
9513 used in one place: in @file{reorg.c}, instead of guessing which path a
9514 branch is most likely to take, the @samp{REG_BR_PROB} values are used to
9515 exactly determine which path is taken more often.
9517 @item -fprofile-values
9518 @opindex fprofile-values
9519 If combined with @option{-fprofile-arcs}, it adds code so that some
9520 data about values of expressions in the program is gathered.
9522 With @option{-fbranch-probabilities}, it reads back the data gathered
9523 from profiling values of expressions for usage in optimizations.
9525 Enabled with @option{-fprofile-generate} and @option{-fprofile-use}.
9527 @item -fprofile-reorder-functions
9528 @opindex fprofile-reorder-functions
9529 Function reordering based on profile instrumentation collects
9530 first time of execution of a function and orders these functions
9531 in ascending order.
9533 Enabled with @option{-fprofile-use}.
9535 @item -fvpt
9536 @opindex fvpt
9537 If combined with @option{-fprofile-arcs}, this option instructs the compiler
9538 to add code to gather information about values of expressions.
9540 With @option{-fbranch-probabilities}, it reads back the data gathered
9541 and actually performs the optimizations based on them.
9542 Currently the optimizations include specialization of division operations
9543 using the knowledge about the value of the denominator.
9545 @item -frename-registers
9546 @opindex frename-registers
9547 Attempt to avoid false dependencies in scheduled code by making use
9548 of registers left over after register allocation.  This optimization
9549 most benefits processors with lots of registers.  Depending on the
9550 debug information format adopted by the target, however, it can
9551 make debugging impossible, since variables no longer stay in
9552 a ``home register''.
9554 Enabled by default with @option{-funroll-loops} and @option{-fpeel-loops}.
9556 @item -ftracer
9557 @opindex ftracer
9558 Perform tail duplication to enlarge superblock size.  This transformation
9559 simplifies the control flow of the function allowing other optimizations to do
9560 a better job.
9562 Enabled with @option{-fprofile-use}.
9564 @item -funroll-loops
9565 @opindex funroll-loops
9566 Unroll loops whose number of iterations can be determined at compile time or
9567 upon entry to the loop.  @option{-funroll-loops} implies
9568 @option{-frerun-cse-after-loop}, @option{-fweb} and @option{-frename-registers}.
9569 It also turns on complete loop peeling (i.e.@: complete removal of loops with
9570 a small constant number of iterations).  This option makes code larger, and may
9571 or may not make it run faster.
9573 Enabled with @option{-fprofile-use}.
9575 @item -funroll-all-loops
9576 @opindex funroll-all-loops
9577 Unroll all loops, even if their number of iterations is uncertain when
9578 the loop is entered.  This usually makes programs run more slowly.
9579 @option{-funroll-all-loops} implies the same options as
9580 @option{-funroll-loops}.
9582 @item -fpeel-loops
9583 @opindex fpeel-loops
9584 Peels loops for which there is enough information that they do not
9585 roll much (from profile feedback).  It also turns on complete loop peeling
9586 (i.e.@: complete removal of loops with small constant number of iterations).
9588 Enabled with @option{-fprofile-use}.
9590 @item -fmove-loop-invariants
9591 @opindex fmove-loop-invariants
9592 Enables the loop invariant motion pass in the RTL loop optimizer.  Enabled
9593 at level @option{-O1}
9595 @item -funswitch-loops
9596 @opindex funswitch-loops
9597 Move branches with loop invariant conditions out of the loop, with duplicates
9598 of the loop on both branches (modified according to result of the condition).
9600 @item -ffunction-sections
9601 @itemx -fdata-sections
9602 @opindex ffunction-sections
9603 @opindex fdata-sections
9604 Place each function or data item into its own section in the output
9605 file if the target supports arbitrary sections.  The name of the
9606 function or the name of the data item determines the section's name
9607 in the output file.
9609 Use these options on systems where the linker can perform optimizations
9610 to improve locality of reference in the instruction space.  Most systems
9611 using the ELF object format and SPARC processors running Solaris 2 have
9612 linkers with such optimizations.  AIX may have these optimizations in
9613 the future.
9615 Only use these options when there are significant benefits from doing
9616 so.  When you specify these options, the assembler and linker
9617 create larger object and executable files and are also slower.
9618 You cannot use @code{gprof} on all systems if you
9619 specify this option, and you may have problems with debugging if
9620 you specify both this option and @option{-g}.
9622 @item -fbranch-target-load-optimize
9623 @opindex fbranch-target-load-optimize
9624 Perform branch target register load optimization before prologue / epilogue
9625 threading.
9626 The use of target registers can typically be exposed only during reload,
9627 thus hoisting loads out of loops and doing inter-block scheduling needs
9628 a separate optimization pass.
9630 @item -fbranch-target-load-optimize2
9631 @opindex fbranch-target-load-optimize2
9632 Perform branch target register load optimization after prologue / epilogue
9633 threading.
9635 @item -fbtr-bb-exclusive
9636 @opindex fbtr-bb-exclusive
9637 When performing branch target register load optimization, don't reuse
9638 branch target registers within any basic block.
9640 @item -fstack-protector
9641 @opindex fstack-protector
9642 Emit extra code to check for buffer overflows, such as stack smashing
9643 attacks.  This is done by adding a guard variable to functions with
9644 vulnerable objects.  This includes functions that call @code{alloca}, and
9645 functions with buffers larger than 8 bytes.  The guards are initialized
9646 when a function is entered and then checked when the function exits.
9647 If a guard check fails, an error message is printed and the program exits.
9649 @item -fstack-protector-all
9650 @opindex fstack-protector-all
9651 Like @option{-fstack-protector} except that all functions are protected.
9653 @item -fstack-protector-strong
9654 @opindex fstack-protector-strong
9655 Like @option{-fstack-protector} but includes additional functions to
9656 be protected --- those that have local array definitions, or have
9657 references to local frame addresses.
9659 @item -fsection-anchors
9660 @opindex fsection-anchors
9661 Try to reduce the number of symbolic address calculations by using
9662 shared ``anchor'' symbols to address nearby objects.  This transformation
9663 can help to reduce the number of GOT entries and GOT accesses on some
9664 targets.
9666 For example, the implementation of the following function @code{foo}:
9668 @smallexample
9669 static int a, b, c;
9670 int foo (void) @{ return a + b + c; @}
9671 @end smallexample
9673 @noindent
9674 usually calculates the addresses of all three variables, but if you
9675 compile it with @option{-fsection-anchors}, it accesses the variables
9676 from a common anchor point instead.  The effect is similar to the
9677 following pseudocode (which isn't valid C):
9679 @smallexample
9680 int foo (void)
9682   register int *xr = &x;
9683   return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
9685 @end smallexample
9687 Not all targets support this option.
9689 @item --param @var{name}=@var{value}
9690 @opindex param
9691 In some places, GCC uses various constants to control the amount of
9692 optimization that is done.  For example, GCC does not inline functions
9693 that contain more than a certain number of instructions.  You can
9694 control some of these constants on the command line using the
9695 @option{--param} option.
9697 The names of specific parameters, and the meaning of the values, are
9698 tied to the internals of the compiler, and are subject to change
9699 without notice in future releases.
9701 In each case, the @var{value} is an integer.  The allowable choices for
9702 @var{name} are:
9704 @table @gcctabopt
9705 @item predictable-branch-outcome
9706 When branch is predicted to be taken with probability lower than this threshold
9707 (in percent), then it is considered well predictable. The default is 10.
9709 @item max-crossjump-edges
9710 The maximum number of incoming edges to consider for cross-jumping.
9711 The algorithm used by @option{-fcrossjumping} is @math{O(N^2)} in
9712 the number of edges incoming to each block.  Increasing values mean
9713 more aggressive optimization, making the compilation time increase with
9714 probably small improvement in executable size.
9716 @item min-crossjump-insns
9717 The minimum number of instructions that must be matched at the end
9718 of two blocks before cross-jumping is performed on them.  This
9719 value is ignored in the case where all instructions in the block being
9720 cross-jumped from are matched.  The default value is 5.
9722 @item max-grow-copy-bb-insns
9723 The maximum code size expansion factor when copying basic blocks
9724 instead of jumping.  The expansion is relative to a jump instruction.
9725 The default value is 8.
9727 @item max-goto-duplication-insns
9728 The maximum number of instructions to duplicate to a block that jumps
9729 to a computed goto.  To avoid @math{O(N^2)} behavior in a number of
9730 passes, GCC factors computed gotos early in the compilation process,
9731 and unfactors them as late as possible.  Only computed jumps at the
9732 end of a basic blocks with no more than max-goto-duplication-insns are
9733 unfactored.  The default value is 8.
9735 @item max-delay-slot-insn-search
9736 The maximum number of instructions to consider when looking for an
9737 instruction to fill a delay slot.  If more than this arbitrary number of
9738 instructions are searched, the time savings from filling the delay slot
9739 are minimal, so stop searching.  Increasing values mean more
9740 aggressive optimization, making the compilation time increase with probably
9741 small improvement in execution time.
9743 @item max-delay-slot-live-search
9744 When trying to fill delay slots, the maximum number of instructions to
9745 consider when searching for a block with valid live register
9746 information.  Increasing this arbitrarily chosen value means more
9747 aggressive optimization, increasing the compilation time.  This parameter
9748 should be removed when the delay slot code is rewritten to maintain the
9749 control-flow graph.
9751 @item max-gcse-memory
9752 The approximate maximum amount of memory that can be allocated in
9753 order to perform the global common subexpression elimination
9754 optimization.  If more memory than specified is required, the
9755 optimization is not done.
9757 @item max-gcse-insertion-ratio
9758 If the ratio of expression insertions to deletions is larger than this value
9759 for any expression, then RTL PRE inserts or removes the expression and thus
9760 leaves partially redundant computations in the instruction stream.  The default value is 20.
9762 @item max-pending-list-length
9763 The maximum number of pending dependencies scheduling allows
9764 before flushing the current state and starting over.  Large functions
9765 with few branches or calls can create excessively large lists which
9766 needlessly consume memory and resources.
9768 @item max-modulo-backtrack-attempts
9769 The maximum number of backtrack attempts the scheduler should make
9770 when modulo scheduling a loop.  Larger values can exponentially increase
9771 compilation time.
9773 @item max-inline-insns-single
9774 Several parameters control the tree inliner used in GCC@.
9775 This number sets the maximum number of instructions (counted in GCC's
9776 internal representation) in a single function that the tree inliner
9777 considers for inlining.  This only affects functions declared
9778 inline and methods implemented in a class declaration (C++).
9779 The default value is 400.
9781 @item max-inline-insns-auto
9782 When you use @option{-finline-functions} (included in @option{-O3}),
9783 a lot of functions that would otherwise not be considered for inlining
9784 by the compiler are investigated.  To those functions, a different
9785 (more restrictive) limit compared to functions declared inline can
9786 be applied.
9787 The default value is 40.
9789 @item inline-min-speedup
9790 When estimated performance improvement of caller + callee runtime exceeds this
9791 threshold (in precent), the function can be inlined regardless the limit on
9792 @option{--param max-inline-insns-single} and @option{--param
9793 max-inline-insns-auto}.
9795 @item large-function-insns
9796 The limit specifying really large functions.  For functions larger than this
9797 limit after inlining, inlining is constrained by
9798 @option{--param large-function-growth}.  This parameter is useful primarily
9799 to avoid extreme compilation time caused by non-linear algorithms used by the
9800 back end.
9801 The default value is 2700.
9803 @item large-function-growth
9804 Specifies maximal growth of large function caused by inlining in percents.
9805 The default value is 100 which limits large function growth to 2.0 times
9806 the original size.
9808 @item large-unit-insns
9809 The limit specifying large translation unit.  Growth caused by inlining of
9810 units larger than this limit is limited by @option{--param inline-unit-growth}.
9811 For small units this might be too tight.
9812 For example, consider a unit consisting of function A
9813 that is inline and B that just calls A three times.  If B is small relative to
9814 A, the growth of unit is 300\% and yet such inlining is very sane.  For very
9815 large units consisting of small inlineable functions, however, the overall unit
9816 growth limit is needed to avoid exponential explosion of code size.  Thus for
9817 smaller units, the size is increased to @option{--param large-unit-insns}
9818 before applying @option{--param inline-unit-growth}.  The default is 10000.
9820 @item inline-unit-growth
9821 Specifies maximal overall growth of the compilation unit caused by inlining.
9822 The default value is 30 which limits unit growth to 1.3 times the original
9823 size. Cold functions (either marked cold via an attribute or by profile
9824 feedback) are not accounted into the unit size.
9826 @item ipcp-unit-growth
9827 Specifies maximal overall growth of the compilation unit caused by
9828 interprocedural constant propagation.  The default value is 10 which limits
9829 unit growth to 1.1 times the original size.
9831 @item large-stack-frame
9832 The limit specifying large stack frames.  While inlining the algorithm is trying
9833 to not grow past this limit too much.  The default value is 256 bytes.
9835 @item large-stack-frame-growth
9836 Specifies maximal growth of large stack frames caused by inlining in percents.
9837 The default value is 1000 which limits large stack frame growth to 11 times
9838 the original size.
9840 @item max-inline-insns-recursive
9841 @itemx max-inline-insns-recursive-auto
9842 Specifies the maximum number of instructions an out-of-line copy of a
9843 self-recursive inline
9844 function can grow into by performing recursive inlining.
9846 For functions declared inline, @option{--param max-inline-insns-recursive} is
9847 taken into account.  For functions not declared inline, recursive inlining
9848 happens only when @option{-finline-functions} (included in @option{-O3}) is
9849 enabled and @option{--param max-inline-insns-recursive-auto} is used.  The
9850 default value is 450.
9852 @item max-inline-recursive-depth
9853 @itemx max-inline-recursive-depth-auto
9854 Specifies the maximum recursion depth used for recursive inlining.
9856 For functions declared inline, @option{--param max-inline-recursive-depth} is
9857 taken into account.  For functions not declared inline, recursive inlining
9858 happens only when @option{-finline-functions} (included in @option{-O3}) is
9859 enabled and @option{--param max-inline-recursive-depth-auto} is used.  The
9860 default value is 8.
9862 @item min-inline-recursive-probability
9863 Recursive inlining is profitable only for function having deep recursion
9864 in average and can hurt for function having little recursion depth by
9865 increasing the prologue size or complexity of function body to other
9866 optimizers.
9868 When profile feedback is available (see @option{-fprofile-generate}) the actual
9869 recursion depth can be guessed from probability that function recurses via a
9870 given call expression.  This parameter limits inlining only to call expressions
9871 whose probability exceeds the given threshold (in percents).
9872 The default value is 10.
9874 @item early-inlining-insns
9875 Specify growth that the early inliner can make.  In effect it increases
9876 the amount of inlining for code having a large abstraction penalty.
9877 The default value is 10.
9879 @item max-early-inliner-iterations
9880 @itemx max-early-inliner-iterations
9881 Limit of iterations of the early inliner.  This basically bounds
9882 the number of nested indirect calls the early inliner can resolve.
9883 Deeper chains are still handled by late inlining.
9885 @item comdat-sharing-probability
9886 @itemx comdat-sharing-probability
9887 Probability (in percent) that C++ inline function with comdat visibility
9888 are shared across multiple compilation units.  The default value is 20.
9890 @item profile-func-internal-id
9891 @itemx profile-func-internal-id
9892 A parameter to control whether to use function internal id in profile
9893 database lookup. If the value is 0, the compiler will use id that
9894 is based on function assembler name and filename, which makes old profile
9895 data more tolerant to source changes such as function reordering etc.
9896 The default value is 0.
9898 @item min-vect-loop-bound
9899 The minimum number of iterations under which loops are not vectorized
9900 when @option{-ftree-vectorize} is used.  The number of iterations after
9901 vectorization needs to be greater than the value specified by this option
9902 to allow vectorization.  The default value is 0.
9904 @item gcse-cost-distance-ratio
9905 Scaling factor in calculation of maximum distance an expression
9906 can be moved by GCSE optimizations.  This is currently supported only in the
9907 code hoisting pass.  The bigger the ratio, the more aggressive code hoisting
9908 is with simple expressions, i.e., the expressions that have cost
9909 less than @option{gcse-unrestricted-cost}.  Specifying 0 disables
9910 hoisting of simple expressions.  The default value is 10.
9912 @item gcse-unrestricted-cost
9913 Cost, roughly measured as the cost of a single typical machine
9914 instruction, at which GCSE optimizations do not constrain
9915 the distance an expression can travel.  This is currently
9916 supported only in the code hoisting pass.  The lesser the cost,
9917 the more aggressive code hoisting is.  Specifying 0 
9918 allows all expressions to travel unrestricted distances.
9919 The default value is 3.
9921 @item max-hoist-depth
9922 The depth of search in the dominator tree for expressions to hoist.
9923 This is used to avoid quadratic behavior in hoisting algorithm.
9924 The value of 0 does not limit on the search, but may slow down compilation
9925 of huge functions.  The default value is 30.
9927 @item max-tail-merge-comparisons
9928 The maximum amount of similar bbs to compare a bb with.  This is used to
9929 avoid quadratic behavior in tree tail merging.  The default value is 10.
9931 @item max-tail-merge-iterations
9932 The maximum amount of iterations of the pass over the function.  This is used to
9933 limit compilation time in tree tail merging.  The default value is 2.
9935 @item max-unrolled-insns
9936 The maximum number of instructions that a loop may have to be unrolled.
9937 If a loop is unrolled, this parameter also determines how many times
9938 the loop code is unrolled.
9940 @item max-average-unrolled-insns
9941 The maximum number of instructions biased by probabilities of their execution
9942 that a loop may have to be unrolled.  If a loop is unrolled,
9943 this parameter also determines how many times the loop code is unrolled.
9945 @item max-unroll-times
9946 The maximum number of unrollings of a single loop.
9948 @item max-peeled-insns
9949 The maximum number of instructions that a loop may have to be peeled.
9950 If a loop is peeled, this parameter also determines how many times
9951 the loop code is peeled.
9953 @item max-peel-times
9954 The maximum number of peelings of a single loop.
9956 @item max-peel-branches
9957 The maximum number of branches on the hot path through the peeled sequence.
9959 @item max-completely-peeled-insns
9960 The maximum number of insns of a completely peeled loop.
9962 @item max-completely-peel-times
9963 The maximum number of iterations of a loop to be suitable for complete peeling.
9965 @item max-completely-peel-loop-nest-depth
9966 The maximum depth of a loop nest suitable for complete peeling.
9968 @item max-unswitch-insns
9969 The maximum number of insns of an unswitched loop.
9971 @item max-unswitch-level
9972 The maximum number of branches unswitched in a single loop.
9974 @item lim-expensive
9975 The minimum cost of an expensive expression in the loop invariant motion.
9977 @item iv-consider-all-candidates-bound
9978 Bound on number of candidates for induction variables, below which
9979 all candidates are considered for each use in induction variable
9980 optimizations.  If there are more candidates than this,
9981 only the most relevant ones are considered to avoid quadratic time complexity.
9983 @item iv-max-considered-uses
9984 The induction variable optimizations give up on loops that contain more
9985 induction variable uses.
9987 @item iv-always-prune-cand-set-bound
9988 If the number of candidates in the set is smaller than this value,
9989 always try to remove unnecessary ivs from the set
9990 when adding a new one.
9992 @item scev-max-expr-size
9993 Bound on size of expressions used in the scalar evolutions analyzer.
9994 Large expressions slow the analyzer.
9996 @item scev-max-expr-complexity
9997 Bound on the complexity of the expressions in the scalar evolutions analyzer.
9998 Complex expressions slow the analyzer.
10000 @item omega-max-vars
10001 The maximum number of variables in an Omega constraint system.
10002 The default value is 128.
10004 @item omega-max-geqs
10005 The maximum number of inequalities in an Omega constraint system.
10006 The default value is 256.
10008 @item omega-max-eqs
10009 The maximum number of equalities in an Omega constraint system.
10010 The default value is 128.
10012 @item omega-max-wild-cards
10013 The maximum number of wildcard variables that the Omega solver is
10014 able to insert.  The default value is 18.
10016 @item omega-hash-table-size
10017 The size of the hash table in the Omega solver.  The default value is
10018 550.
10020 @item omega-max-keys
10021 The maximal number of keys used by the Omega solver.  The default
10022 value is 500.
10024 @item omega-eliminate-redundant-constraints
10025 When set to 1, use expensive methods to eliminate all redundant
10026 constraints.  The default value is 0.
10028 @item vect-max-version-for-alignment-checks
10029 The maximum number of run-time checks that can be performed when
10030 doing loop versioning for alignment in the vectorizer.
10032 @item vect-max-version-for-alias-checks
10033 The maximum number of run-time checks that can be performed when
10034 doing loop versioning for alias in the vectorizer.
10036 @item vect-max-peeling-for-alignment
10037 The maximum number of loop peels to enhance access alignment
10038 for vectorizer. Value -1 means 'no limit'.
10040 @item max-iterations-to-track
10041 The maximum number of iterations of a loop the brute-force algorithm
10042 for analysis of the number of iterations of the loop tries to evaluate.
10044 @item hot-bb-count-ws-permille
10045 A basic block profile count is considered hot if it contributes to 
10046 the given permillage (i.e. 0...1000) of the entire profiled execution.
10048 @item hot-bb-frequency-fraction
10049 Select fraction of the entry block frequency of executions of basic block in
10050 function given basic block needs to have to be considered hot.
10052 @item max-predicted-iterations
10053 The maximum number of loop iterations we predict statically.  This is useful
10054 in cases where a function contains a single loop with known bound and
10055 another loop with unknown bound.
10056 The known number of iterations is predicted correctly, while
10057 the unknown number of iterations average to roughly 10.  This means that the
10058 loop without bounds appears artificially cold relative to the other one.
10060 @item builtin-expect-probability
10061 Control the probability of the expression having the specified value. This
10062 parameter takes a percentage (i.e. 0 ... 100) as input.
10063 The default probability of 90 is obtained empirically.
10065 @item align-threshold
10067 Select fraction of the maximal frequency of executions of a basic block in
10068 a function to align the basic block.
10070 @item align-loop-iterations
10072 A loop expected to iterate at least the selected number of iterations is
10073 aligned.
10075 @item tracer-dynamic-coverage
10076 @itemx tracer-dynamic-coverage-feedback
10078 This value is used to limit superblock formation once the given percentage of
10079 executed instructions is covered.  This limits unnecessary code size
10080 expansion.
10082 The @option{tracer-dynamic-coverage-feedback} is used only when profile
10083 feedback is available.  The real profiles (as opposed to statically estimated
10084 ones) are much less balanced allowing the threshold to be larger value.
10086 @item tracer-max-code-growth
10087 Stop tail duplication once code growth has reached given percentage.  This is
10088 a rather artificial limit, as most of the duplicates are eliminated later in
10089 cross jumping, so it may be set to much higher values than is the desired code
10090 growth.
10092 @item tracer-min-branch-ratio
10094 Stop reverse growth when the reverse probability of best edge is less than this
10095 threshold (in percent).
10097 @item tracer-min-branch-ratio
10098 @itemx tracer-min-branch-ratio-feedback
10100 Stop forward growth if the best edge has probability lower than this
10101 threshold.
10103 Similarly to @option{tracer-dynamic-coverage} two values are present, one for
10104 compilation for profile feedback and one for compilation without.  The value
10105 for compilation with profile feedback needs to be more conservative (higher) in
10106 order to make tracer effective.
10108 @item max-cse-path-length
10110 The maximum number of basic blocks on path that CSE considers.
10111 The default is 10.
10113 @item max-cse-insns
10114 The maximum number of instructions CSE processes before flushing.
10115 The default is 1000.
10117 @item ggc-min-expand
10119 GCC uses a garbage collector to manage its own memory allocation.  This
10120 parameter specifies the minimum percentage by which the garbage
10121 collector's heap should be allowed to expand between collections.
10122 Tuning this may improve compilation speed; it has no effect on code
10123 generation.
10125 The default is 30% + 70% * (RAM/1GB) with an upper bound of 100% when
10126 RAM >= 1GB@.  If @code{getrlimit} is available, the notion of ``RAM'' is
10127 the smallest of actual RAM and @code{RLIMIT_DATA} or @code{RLIMIT_AS}.  If
10128 GCC is not able to calculate RAM on a particular platform, the lower
10129 bound of 30% is used.  Setting this parameter and
10130 @option{ggc-min-heapsize} to zero causes a full collection to occur at
10131 every opportunity.  This is extremely slow, but can be useful for
10132 debugging.
10134 @item ggc-min-heapsize
10136 Minimum size of the garbage collector's heap before it begins bothering
10137 to collect garbage.  The first collection occurs after the heap expands
10138 by @option{ggc-min-expand}% beyond @option{ggc-min-heapsize}.  Again,
10139 tuning this may improve compilation speed, and has no effect on code
10140 generation.
10142 The default is the smaller of RAM/8, RLIMIT_RSS, or a limit that
10143 tries to ensure that RLIMIT_DATA or RLIMIT_AS are not exceeded, but
10144 with a lower bound of 4096 (four megabytes) and an upper bound of
10145 131072 (128 megabytes).  If GCC is not able to calculate RAM on a
10146 particular platform, the lower bound is used.  Setting this parameter
10147 very large effectively disables garbage collection.  Setting this
10148 parameter and @option{ggc-min-expand} to zero causes a full collection
10149 to occur at every opportunity.
10151 @item max-reload-search-insns
10152 The maximum number of instruction reload should look backward for equivalent
10153 register.  Increasing values mean more aggressive optimization, making the
10154 compilation time increase with probably slightly better performance.
10155 The default value is 100.
10157 @item max-cselib-memory-locations
10158 The maximum number of memory locations cselib should take into account.
10159 Increasing values mean more aggressive optimization, making the compilation time
10160 increase with probably slightly better performance.  The default value is 500.
10162 @item reorder-blocks-duplicate
10163 @itemx reorder-blocks-duplicate-feedback
10165 Used by the basic block reordering pass to decide whether to use unconditional
10166 branch or duplicate the code on its destination.  Code is duplicated when its
10167 estimated size is smaller than this value multiplied by the estimated size of
10168 unconditional jump in the hot spots of the program.
10170 The @option{reorder-block-duplicate-feedback} is used only when profile
10171 feedback is available.  It may be set to higher values than
10172 @option{reorder-block-duplicate} since information about the hot spots is more
10173 accurate.
10175 @item max-sched-ready-insns
10176 The maximum number of instructions ready to be issued the scheduler should
10177 consider at any given time during the first scheduling pass.  Increasing
10178 values mean more thorough searches, making the compilation time increase
10179 with probably little benefit.  The default value is 100.
10181 @item max-sched-region-blocks
10182 The maximum number of blocks in a region to be considered for
10183 interblock scheduling.  The default value is 10.
10185 @item max-pipeline-region-blocks
10186 The maximum number of blocks in a region to be considered for
10187 pipelining in the selective scheduler.  The default value is 15.
10189 @item max-sched-region-insns
10190 The maximum number of insns in a region to be considered for
10191 interblock scheduling.  The default value is 100.
10193 @item max-pipeline-region-insns
10194 The maximum number of insns in a region to be considered for
10195 pipelining in the selective scheduler.  The default value is 200.
10197 @item min-spec-prob
10198 The minimum probability (in percents) of reaching a source block
10199 for interblock speculative scheduling.  The default value is 40.
10201 @item max-sched-extend-regions-iters
10202 The maximum number of iterations through CFG to extend regions.
10203 A value of 0 (the default) disables region extensions.
10205 @item max-sched-insn-conflict-delay
10206 The maximum conflict delay for an insn to be considered for speculative motion.
10207 The default value is 3.
10209 @item sched-spec-prob-cutoff
10210 The minimal probability of speculation success (in percents), so that
10211 speculative insns are scheduled.
10212 The default value is 40.
10214 @item sched-spec-state-edge-prob-cutoff
10215 The minimum probability an edge must have for the scheduler to save its
10216 state across it.
10217 The default value is 10.
10219 @item sched-mem-true-dep-cost
10220 Minimal distance (in CPU cycles) between store and load targeting same
10221 memory locations.  The default value is 1.
10223 @item selsched-max-lookahead
10224 The maximum size of the lookahead window of selective scheduling.  It is a
10225 depth of search for available instructions.
10226 The default value is 50.
10228 @item selsched-max-sched-times
10229 The maximum number of times that an instruction is scheduled during
10230 selective scheduling.  This is the limit on the number of iterations
10231 through which the instruction may be pipelined.  The default value is 2.
10233 @item selsched-max-insns-to-rename
10234 The maximum number of best instructions in the ready list that are considered
10235 for renaming in the selective scheduler.  The default value is 2.
10237 @item sms-min-sc
10238 The minimum value of stage count that swing modulo scheduler
10239 generates.  The default value is 2.
10241 @item max-last-value-rtl
10242 The maximum size measured as number of RTLs that can be recorded in an expression
10243 in combiner for a pseudo register as last known value of that register.  The default
10244 is 10000.
10246 @item max-combine-insns
10247 The maximum number of instructions the RTL combiner tries to combine.
10248 The default value is 2 at @option{-Og} and 4 otherwise.
10250 @item integer-share-limit
10251 Small integer constants can use a shared data structure, reducing the
10252 compiler's memory usage and increasing its speed.  This sets the maximum
10253 value of a shared integer constant.  The default value is 256.
10255 @item ssp-buffer-size
10256 The minimum size of buffers (i.e.@: arrays) that receive stack smashing
10257 protection when @option{-fstack-protection} is used.
10259 @item min-size-for-stack-sharing
10260 The minimum size of variables taking part in stack slot sharing when not
10261 optimizing. The default value is 32.
10263 @item max-jump-thread-duplication-stmts
10264 Maximum number of statements allowed in a block that needs to be
10265 duplicated when threading jumps.
10267 @item max-fields-for-field-sensitive
10268 Maximum number of fields in a structure treated in
10269 a field sensitive manner during pointer analysis.  The default is zero
10270 for @option{-O0} and @option{-O1},
10271 and 100 for @option{-Os}, @option{-O2}, and @option{-O3}.
10273 @item prefetch-latency
10274 Estimate on average number of instructions that are executed before
10275 prefetch finishes.  The distance prefetched ahead is proportional
10276 to this constant.  Increasing this number may also lead to less
10277 streams being prefetched (see @option{simultaneous-prefetches}).
10279 @item simultaneous-prefetches
10280 Maximum number of prefetches that can run at the same time.
10282 @item l1-cache-line-size
10283 The size of cache line in L1 cache, in bytes.
10285 @item l1-cache-size
10286 The size of L1 cache, in kilobytes.
10288 @item l2-cache-size
10289 The size of L2 cache, in kilobytes.
10291 @item min-insn-to-prefetch-ratio
10292 The minimum ratio between the number of instructions and the
10293 number of prefetches to enable prefetching in a loop.
10295 @item prefetch-min-insn-to-mem-ratio
10296 The minimum ratio between the number of instructions and the
10297 number of memory references to enable prefetching in a loop.
10299 @item use-canonical-types
10300 Whether the compiler should use the ``canonical'' type system.  By
10301 default, this should always be 1, which uses a more efficient internal
10302 mechanism for comparing types in C++ and Objective-C++.  However, if
10303 bugs in the canonical type system are causing compilation failures,
10304 set this value to 0 to disable canonical types.
10306 @item switch-conversion-max-branch-ratio
10307 Switch initialization conversion refuses to create arrays that are
10308 bigger than @option{switch-conversion-max-branch-ratio} times the number of
10309 branches in the switch.
10311 @item max-partial-antic-length
10312 Maximum length of the partial antic set computed during the tree
10313 partial redundancy elimination optimization (@option{-ftree-pre}) when
10314 optimizing at @option{-O3} and above.  For some sorts of source code
10315 the enhanced partial redundancy elimination optimization can run away,
10316 consuming all of the memory available on the host machine.  This
10317 parameter sets a limit on the length of the sets that are computed,
10318 which prevents the runaway behavior.  Setting a value of 0 for
10319 this parameter allows an unlimited set length.
10321 @item sccvn-max-scc-size
10322 Maximum size of a strongly connected component (SCC) during SCCVN
10323 processing.  If this limit is hit, SCCVN processing for the whole
10324 function is not done and optimizations depending on it are
10325 disabled.  The default maximum SCC size is 10000.
10327 @item sccvn-max-alias-queries-per-access
10328 Maximum number of alias-oracle queries we perform when looking for
10329 redundancies for loads and stores.  If this limit is hit the search
10330 is aborted and the load or store is not considered redundant.  The
10331 number of queries is algorithmically limited to the number of
10332 stores on all paths from the load to the function entry.
10333 The default maxmimum number of queries is 1000.
10335 @item ira-max-loops-num
10336 IRA uses regional register allocation by default.  If a function
10337 contains more loops than the number given by this parameter, only at most
10338 the given number of the most frequently-executed loops form regions
10339 for regional register allocation.  The default value of the
10340 parameter is 100.
10342 @item ira-max-conflict-table-size 
10343 Although IRA uses a sophisticated algorithm to compress the conflict
10344 table, the table can still require excessive amounts of memory for
10345 huge functions.  If the conflict table for a function could be more
10346 than the size in MB given by this parameter, the register allocator
10347 instead uses a faster, simpler, and lower-quality
10348 algorithm that does not require building a pseudo-register conflict table.  
10349 The default value of the parameter is 2000.
10351 @item ira-loop-reserved-regs
10352 IRA can be used to evaluate more accurate register pressure in loops
10353 for decisions to move loop invariants (see @option{-O3}).  The number
10354 of available registers reserved for some other purposes is given
10355 by this parameter.  The default value of the parameter is 2, which is
10356 the minimal number of registers needed by typical instructions.
10357 This value is the best found from numerous experiments.
10359 @item loop-invariant-max-bbs-in-loop
10360 Loop invariant motion can be very expensive, both in compilation time and
10361 in amount of needed compile-time memory, with very large loops.  Loops
10362 with more basic blocks than this parameter won't have loop invariant
10363 motion optimization performed on them.  The default value of the
10364 parameter is 1000 for @option{-O1} and 10000 for @option{-O2} and above.
10366 @item loop-max-datarefs-for-datadeps
10367 Building data dapendencies is expensive for very large loops.  This
10368 parameter limits the number of data references in loops that are
10369 considered for data dependence analysis.  These large loops are no
10370 handled by the optimizations using loop data dependencies.
10371 The default value is 1000.
10373 @item max-vartrack-size
10374 Sets a maximum number of hash table slots to use during variable
10375 tracking dataflow analysis of any function.  If this limit is exceeded
10376 with variable tracking at assignments enabled, analysis for that
10377 function is retried without it, after removing all debug insns from
10378 the function.  If the limit is exceeded even without debug insns, var
10379 tracking analysis is completely disabled for the function.  Setting
10380 the parameter to zero makes it unlimited.
10382 @item max-vartrack-expr-depth
10383 Sets a maximum number of recursion levels when attempting to map
10384 variable names or debug temporaries to value expressions.  This trades
10385 compilation time for more complete debug information.  If this is set too
10386 low, value expressions that are available and could be represented in
10387 debug information may end up not being used; setting this higher may
10388 enable the compiler to find more complex debug expressions, but compile
10389 time and memory use may grow.  The default is 12.
10391 @item min-nondebug-insn-uid
10392 Use uids starting at this parameter for nondebug insns.  The range below
10393 the parameter is reserved exclusively for debug insns created by
10394 @option{-fvar-tracking-assignments}, but debug insns may get
10395 (non-overlapping) uids above it if the reserved range is exhausted.
10397 @item ipa-sra-ptr-growth-factor
10398 IPA-SRA replaces a pointer to an aggregate with one or more new
10399 parameters only when their cumulative size is less or equal to
10400 @option{ipa-sra-ptr-growth-factor} times the size of the original
10401 pointer parameter.
10403 @item sra-max-scalarization-size-Ospeed
10404 @item sra-max-scalarization-size-Osize
10405 The two Scalar Reduction of Aggregates passes (SRA and IPA-SRA) aim to
10406 replace scalar parts of aggregates with uses of independent scalar
10407 variables.  These parameters control the maximum size, in storage units,
10408 of aggregate which will be considered for replacement when compiling for
10409 speed
10410 (@option{sra-max-scalarization-size-Ospeed}) or size
10411 (@option{sra-max-scalarization-size-Osize}) respectively.
10413 @item tm-max-aggregate-size
10414 When making copies of thread-local variables in a transaction, this
10415 parameter specifies the size in bytes after which variables are
10416 saved with the logging functions as opposed to save/restore code
10417 sequence pairs.  This option only applies when using
10418 @option{-fgnu-tm}.
10420 @item graphite-max-nb-scop-params
10421 To avoid exponential effects in the Graphite loop transforms, the
10422 number of parameters in a Static Control Part (SCoP) is bounded.  The
10423 default value is 10 parameters.  A variable whose value is unknown at
10424 compilation time and defined outside a SCoP is a parameter of the SCoP.
10426 @item graphite-max-bbs-per-function
10427 To avoid exponential effects in the detection of SCoPs, the size of
10428 the functions analyzed by Graphite is bounded.  The default value is
10429 100 basic blocks.
10431 @item loop-block-tile-size
10432 Loop blocking or strip mining transforms, enabled with
10433 @option{-floop-block} or @option{-floop-strip-mine}, strip mine each
10434 loop in the loop nest by a given number of iterations.  The strip
10435 length can be changed using the @option{loop-block-tile-size}
10436 parameter.  The default value is 51 iterations.
10438 @item ipa-cp-value-list-size
10439 IPA-CP attempts to track all possible values and types passed to a function's
10440 parameter in order to propagate them and perform devirtualization.
10441 @option{ipa-cp-value-list-size} is the maximum number of values and types it
10442 stores per one formal parameter of a function.
10444 @item ipa-cp-eval-threshold
10445 IPA-CP calculates its own score of cloning profitability heuristics
10446 and performs those cloning opportunities with scores that exceed
10447 @option{ipa-cp-eval-threshold}.
10449 @item ipa-max-agg-items
10450 IPA-CP is also capable to propagate a number of scalar values passed
10451 in an aggregate. @option{ipa-max-agg-items} controls the maximum
10452 number of such values per one parameter.
10454 @item ipa-cp-loop-hint-bonus
10455 When IPA-CP determines that a cloning candidate would make the number
10456 of iterations of a loop known, it adds a bonus of
10457 @option{ipa-cp-loop-hint-bonus} to the profitability score of
10458 the candidate.
10460 @item ipa-cp-array-index-hint-bonus
10461 When IPA-CP determines that a cloning candidate would make the index of
10462 an array access known, it adds a bonus of
10463 @option{ipa-cp-array-index-hint-bonus} to the profitability
10464 score of the candidate.
10466 @item ipa-max-aa-steps
10467 During its analysis of function bodies, IPA-CP employs alias analysis
10468 in order to track values pointed to by function parameters.  In order
10469 not spend too much time analyzing huge functions, it will give up and
10470 consider all memory clobbered after examining
10471 @option{ipa-max-aa-steps} statements modifying memory.
10473 @item lto-partitions
10474 Specify desired number of partitions produced during WHOPR compilation.
10475 The number of partitions should exceed the number of CPUs used for compilation.
10476 The default value is 32.
10478 @item lto-minpartition
10479 Size of minimal partition for WHOPR (in estimated instructions).
10480 This prevents expenses of splitting very small programs into too many
10481 partitions.
10483 @item cxx-max-namespaces-for-diagnostic-help
10484 The maximum number of namespaces to consult for suggestions when C++
10485 name lookup fails for an identifier.  The default is 1000.
10487 @item sink-frequency-threshold
10488 The maximum relative execution frequency (in percents) of the target block
10489 relative to a statement's original block to allow statement sinking of a
10490 statement.  Larger numbers result in more aggressive statement sinking.
10491 The default value is 75.  A small positive adjustment is applied for
10492 statements with memory operands as those are even more profitable so sink.
10494 @item max-stores-to-sink
10495 The maximum number of conditional stores paires that can be sunk.  Set to 0
10496 if either vectorization (@option{-ftree-vectorize}) or if-conversion
10497 (@option{-ftree-loop-if-convert}) is disabled.  The default is 2.
10499 @item allow-store-data-races
10500 Allow optimizers to introduce new data races on stores.
10501 Set to 1 to allow, otherwise to 0.  This option is enabled by default
10502 at optimization level @option{-Ofast}.
10504 @item case-values-threshold
10505 The smallest number of different values for which it is best to use a
10506 jump-table instead of a tree of conditional branches.  If the value is
10507 0, use the default for the machine.  The default is 0.
10509 @item tree-reassoc-width
10510 Set the maximum number of instructions executed in parallel in
10511 reassociated tree. This parameter overrides target dependent
10512 heuristics used by default if has non zero value.
10514 @item sched-pressure-algorithm
10515 Choose between the two available implementations of
10516 @option{-fsched-pressure}.  Algorithm 1 is the original implementation
10517 and is the more likely to prevent instructions from being reordered.
10518 Algorithm 2 was designed to be a compromise between the relatively
10519 conservative approach taken by algorithm 1 and the rather aggressive
10520 approach taken by the default scheduler.  It relies more heavily on
10521 having a regular register file and accurate register pressure classes.
10522 See @file{haifa-sched.c} in the GCC sources for more details.
10524 The default choice depends on the target.
10526 @item max-slsr-cand-scan
10527 Set the maximum number of existing candidates that will be considered when
10528 seeking a basis for a new straight-line strength reduction candidate.
10530 @item asan-globals
10531 Enable buffer overflow detection for global objects.  This kind
10532 of protection is enabled by default if you are using
10533 @option{-fsanitize=address} option.
10534 To disable global objects protection use @option{--param asan-globals=0}.
10536 @item asan-stack
10537 Enable buffer overflow detection for stack objects.  This kind of
10538 protection is enabled by default when using@option{-fsanitize=address}.
10539 To disable stack protection use @option{--param asan-stack=0} option.
10541 @item asan-instrument-reads
10542 Enable buffer overflow detection for memory reads.  This kind of
10543 protection is enabled by default when using @option{-fsanitize=address}.
10544 To disable memory reads protection use
10545 @option{--param asan-instrument-reads=0}.
10547 @item asan-instrument-writes
10548 Enable buffer overflow detection for memory writes.  This kind of
10549 protection is enabled by default when using @option{-fsanitize=address}.
10550 To disable memory writes protection use
10551 @option{--param asan-instrument-writes=0} option.
10553 @item asan-memintrin
10554 Enable detection for built-in functions.  This kind of protection
10555 is enabled by default when using @option{-fsanitize=address}.
10556 To disable built-in functions protection use
10557 @option{--param asan-memintrin=0}.
10559 @item asan-use-after-return
10560 Enable detection of use-after-return.  This kind of protection
10561 is enabled by default when using @option{-fsanitize=address} option.
10562 To disable use-after-return detection use 
10563 @option{--param asan-use-after-return=0}.
10565 @item asan-instrumentation-with-call-threshold
10566 If number of memory accesses in function being instrumented
10567 is greater or equal to this number, use callbacks instead of inline checks.
10568 E.g. to disable inline code use
10569 @option{--param asan-instrumentation-with-call-threshold=0}.
10571 @item chkp-max-ctor-size
10572 Static constructors generated by Pointer Bounds Checker may become very
10573 large and significantly increase compile time at optimization level
10574 @option{-O1} and higher.  This parameter is a maximum nubmer of statements
10575 in a single generated constructor.  Default value is 5000.
10577 @end table
10578 @end table
10580 @node Preprocessor Options
10581 @section Options Controlling the Preprocessor
10582 @cindex preprocessor options
10583 @cindex options, preprocessor
10585 These options control the C preprocessor, which is run on each C source
10586 file before actual compilation.
10588 If you use the @option{-E} option, nothing is done except preprocessing.
10589 Some of these options make sense only together with @option{-E} because
10590 they cause the preprocessor output to be unsuitable for actual
10591 compilation.
10593 @table @gcctabopt
10594 @item -Wp,@var{option}
10595 @opindex Wp
10596 You can use @option{-Wp,@var{option}} to bypass the compiler driver
10597 and pass @var{option} directly through to the preprocessor.  If
10598 @var{option} contains commas, it is split into multiple options at the
10599 commas.  However, many options are modified, translated or interpreted
10600 by the compiler driver before being passed to the preprocessor, and
10601 @option{-Wp} forcibly bypasses this phase.  The preprocessor's direct
10602 interface is undocumented and subject to change, so whenever possible
10603 you should avoid using @option{-Wp} and let the driver handle the
10604 options instead.
10606 @item -Xpreprocessor @var{option}
10607 @opindex Xpreprocessor
10608 Pass @var{option} as an option to the preprocessor.  You can use this to
10609 supply system-specific preprocessor options that GCC does not 
10610 recognize.
10612 If you want to pass an option that takes an argument, you must use
10613 @option{-Xpreprocessor} twice, once for the option and once for the argument.
10615 @item -no-integrated-cpp
10616 @opindex no-integrated-cpp
10617 Perform preprocessing as a separate pass before compilation.
10618 By default, GCC performs preprocessing as an integrated part of
10619 input tokenization and parsing.
10620 If this option is provided, the appropriate language front end
10621 (@command{cc1}, @command{cc1plus}, or @command{cc1obj} for C, C++,
10622 and Objective-C, respectively) is instead invoked twice,
10623 once for preprocessing only and once for actual compilation
10624 of the preprocessed input.
10625 This option may be useful in conjunction with the @option{-B} or
10626 @option{-wrapper} options to specify an alternate preprocessor or
10627 perform additional processing of the program source between
10628 normal preprocessing and compilation.
10629 @end table
10631 @include cppopts.texi
10633 @node Assembler Options
10634 @section Passing Options to the Assembler
10636 @c prevent bad page break with this line
10637 You can pass options to the assembler.
10639 @table @gcctabopt
10640 @item -Wa,@var{option}
10641 @opindex Wa
10642 Pass @var{option} as an option to the assembler.  If @var{option}
10643 contains commas, it is split into multiple options at the commas.
10645 @item -Xassembler @var{option}
10646 @opindex Xassembler
10647 Pass @var{option} as an option to the assembler.  You can use this to
10648 supply system-specific assembler options that GCC does not
10649 recognize.
10651 If you want to pass an option that takes an argument, you must use
10652 @option{-Xassembler} twice, once for the option and once for the argument.
10654 @end table
10656 @node Link Options
10657 @section Options for Linking
10658 @cindex link options
10659 @cindex options, linking
10661 These options come into play when the compiler links object files into
10662 an executable output file.  They are meaningless if the compiler is
10663 not doing a link step.
10665 @table @gcctabopt
10666 @cindex file names
10667 @item @var{object-file-name}
10668 A file name that does not end in a special recognized suffix is
10669 considered to name an object file or library.  (Object files are
10670 distinguished from libraries by the linker according to the file
10671 contents.)  If linking is done, these object files are used as input
10672 to the linker.
10674 @item -c
10675 @itemx -S
10676 @itemx -E
10677 @opindex c
10678 @opindex S
10679 @opindex E
10680 If any of these options is used, then the linker is not run, and
10681 object file names should not be used as arguments.  @xref{Overall
10682 Options}.
10684 @cindex Libraries
10685 @item -l@var{library}
10686 @itemx -l @var{library}
10687 @opindex l
10688 Search the library named @var{library} when linking.  (The second
10689 alternative with the library as a separate argument is only for
10690 POSIX compliance and is not recommended.)
10692 It makes a difference where in the command you write this option; the
10693 linker searches and processes libraries and object files in the order they
10694 are specified.  Thus, @samp{foo.o -lz bar.o} searches library @samp{z}
10695 after file @file{foo.o} but before @file{bar.o}.  If @file{bar.o} refers
10696 to functions in @samp{z}, those functions may not be loaded.
10698 The linker searches a standard list of directories for the library,
10699 which is actually a file named @file{lib@var{library}.a}.  The linker
10700 then uses this file as if it had been specified precisely by name.
10702 The directories searched include several standard system directories
10703 plus any that you specify with @option{-L}.
10705 Normally the files found this way are library files---archive files
10706 whose members are object files.  The linker handles an archive file by
10707 scanning through it for members which define symbols that have so far
10708 been referenced but not defined.  But if the file that is found is an
10709 ordinary object file, it is linked in the usual fashion.  The only
10710 difference between using an @option{-l} option and specifying a file name
10711 is that @option{-l} surrounds @var{library} with @samp{lib} and @samp{.a}
10712 and searches several directories.
10714 @item -lobjc
10715 @opindex lobjc
10716 You need this special case of the @option{-l} option in order to
10717 link an Objective-C or Objective-C++ program.
10719 @item -nostartfiles
10720 @opindex nostartfiles
10721 Do not use the standard system startup files when linking.
10722 The standard system libraries are used normally, unless @option{-nostdlib}
10723 or @option{-nodefaultlibs} is used.
10725 @item -nodefaultlibs
10726 @opindex nodefaultlibs
10727 Do not use the standard system libraries when linking.
10728 Only the libraries you specify are passed to the linker, and options
10729 specifying linkage of the system libraries, such as @code{-static-libgcc}
10730 or @code{-shared-libgcc}, are ignored.  
10731 The standard startup files are used normally, unless @option{-nostartfiles}
10732 is used.  
10734 The compiler may generate calls to @code{memcmp},
10735 @code{memset}, @code{memcpy} and @code{memmove}.
10736 These entries are usually resolved by entries in
10737 libc.  These entry points should be supplied through some other
10738 mechanism when this option is specified.
10740 @item -nostdlib
10741 @opindex nostdlib
10742 Do not use the standard system startup files or libraries when linking.
10743 No startup files and only the libraries you specify are passed to
10744 the linker, and options specifying linkage of the system libraries, such as
10745 @code{-static-libgcc} or @code{-shared-libgcc}, are ignored.
10747 The compiler may generate calls to @code{memcmp}, @code{memset},
10748 @code{memcpy} and @code{memmove}.
10749 These entries are usually resolved by entries in
10750 libc.  These entry points should be supplied through some other
10751 mechanism when this option is specified.
10753 @cindex @option{-lgcc}, use with @option{-nostdlib}
10754 @cindex @option{-nostdlib} and unresolved references
10755 @cindex unresolved references and @option{-nostdlib}
10756 @cindex @option{-lgcc}, use with @option{-nodefaultlibs}
10757 @cindex @option{-nodefaultlibs} and unresolved references
10758 @cindex unresolved references and @option{-nodefaultlibs}
10759 One of the standard libraries bypassed by @option{-nostdlib} and
10760 @option{-nodefaultlibs} is @file{libgcc.a}, a library of internal subroutines
10761 which GCC uses to overcome shortcomings of particular machines, or special
10762 needs for some languages.
10763 (@xref{Interface,,Interfacing to GCC Output,gccint,GNU Compiler
10764 Collection (GCC) Internals},
10765 for more discussion of @file{libgcc.a}.)
10766 In most cases, you need @file{libgcc.a} even when you want to avoid
10767 other standard libraries.  In other words, when you specify @option{-nostdlib}
10768 or @option{-nodefaultlibs} you should usually specify @option{-lgcc} as well.
10769 This ensures that you have no unresolved references to internal GCC
10770 library subroutines.
10771 (An example of such an internal subroutine is @samp{__main}, used to ensure C++
10772 constructors are called; @pxref{Collect2,,@code{collect2}, gccint,
10773 GNU Compiler Collection (GCC) Internals}.)
10775 @item -pie
10776 @opindex pie
10777 Produce a position independent executable on targets that support it.
10778 For predictable results, you must also specify the same set of options
10779 used for compilation (@option{-fpie}, @option{-fPIE},
10780 or model suboptions) when you specify this linker option.
10782 @item -rdynamic
10783 @opindex rdynamic
10784 Pass the flag @option{-export-dynamic} to the ELF linker, on targets
10785 that support it. This instructs the linker to add all symbols, not
10786 only used ones, to the dynamic symbol table. This option is needed
10787 for some uses of @code{dlopen} or to allow obtaining backtraces
10788 from within a program.
10790 @item -s
10791 @opindex s
10792 Remove all symbol table and relocation information from the executable.
10794 @item -static
10795 @opindex static
10796 On systems that support dynamic linking, this prevents linking with the shared
10797 libraries.  On other systems, this option has no effect.
10799 @item -shared
10800 @opindex shared
10801 Produce a shared object which can then be linked with other objects to
10802 form an executable.  Not all systems support this option.  For predictable
10803 results, you must also specify the same set of options used for compilation
10804 (@option{-fpic}, @option{-fPIC}, or model suboptions) when
10805 you specify this linker option.@footnote{On some systems, @samp{gcc -shared}
10806 needs to build supplementary stub code for constructors to work.  On
10807 multi-libbed systems, @samp{gcc -shared} must select the correct support
10808 libraries to link against.  Failing to supply the correct flags may lead
10809 to subtle defects.  Supplying them in cases where they are not necessary
10810 is innocuous.}
10812 @item -shared-libgcc
10813 @itemx -static-libgcc
10814 @opindex shared-libgcc
10815 @opindex static-libgcc
10816 On systems that provide @file{libgcc} as a shared library, these options
10817 force the use of either the shared or static version, respectively.
10818 If no shared version of @file{libgcc} was built when the compiler was
10819 configured, these options have no effect.
10821 There are several situations in which an application should use the
10822 shared @file{libgcc} instead of the static version.  The most common
10823 of these is when the application wishes to throw and catch exceptions
10824 across different shared libraries.  In that case, each of the libraries
10825 as well as the application itself should use the shared @file{libgcc}.
10827 Therefore, the G++ and GCJ drivers automatically add
10828 @option{-shared-libgcc} whenever you build a shared library or a main
10829 executable, because C++ and Java programs typically use exceptions, so
10830 this is the right thing to do.
10832 If, instead, you use the GCC driver to create shared libraries, you may
10833 find that they are not always linked with the shared @file{libgcc}.
10834 If GCC finds, at its configuration time, that you have a non-GNU linker
10835 or a GNU linker that does not support option @option{--eh-frame-hdr},
10836 it links the shared version of @file{libgcc} into shared libraries
10837 by default.  Otherwise, it takes advantage of the linker and optimizes
10838 away the linking with the shared version of @file{libgcc}, linking with
10839 the static version of libgcc by default.  This allows exceptions to
10840 propagate through such shared libraries, without incurring relocation
10841 costs at library load time.
10843 However, if a library or main executable is supposed to throw or catch
10844 exceptions, you must link it using the G++ or GCJ driver, as appropriate
10845 for the languages used in the program, or using the option
10846 @option{-shared-libgcc}, such that it is linked with the shared
10847 @file{libgcc}.
10849 @item -static-libasan
10850 @opindex static-libasan
10851 When the @option{-fsanitize=address} option is used to link a program,
10852 the GCC driver automatically links against @option{libasan}.  If
10853 @file{libasan} is available as a shared library, and the @option{-static}
10854 option is not used, then this links against the shared version of
10855 @file{libasan}.  The @option{-static-libasan} option directs the GCC
10856 driver to link @file{libasan} statically, without necessarily linking
10857 other libraries statically.
10859 @item -static-libtsan
10860 @opindex static-libtsan
10861 When the @option{-fsanitize=thread} option is used to link a program,
10862 the GCC driver automatically links against @option{libtsan}.  If
10863 @file{libtsan} is available as a shared library, and the @option{-static}
10864 option is not used, then this links against the shared version of
10865 @file{libtsan}.  The @option{-static-libtsan} option directs the GCC
10866 driver to link @file{libtsan} statically, without necessarily linking
10867 other libraries statically.
10869 @item -static-liblsan
10870 @opindex static-liblsan
10871 When the @option{-fsanitize=leak} option is used to link a program,
10872 the GCC driver automatically links against @option{liblsan}.  If
10873 @file{liblsan} is available as a shared library, and the @option{-static}
10874 option is not used, then this links against the shared version of
10875 @file{liblsan}.  The @option{-static-liblsan} option directs the GCC
10876 driver to link @file{liblsan} statically, without necessarily linking
10877 other libraries statically.
10879 @item -static-libubsan
10880 @opindex static-libubsan
10881 When the @option{-fsanitize=undefined} option is used to link a program,
10882 the GCC driver automatically links against @option{libubsan}.  If
10883 @file{libubsan} is available as a shared library, and the @option{-static}
10884 option is not used, then this links against the shared version of
10885 @file{libubsan}.  The @option{-static-libubsan} option directs the GCC
10886 driver to link @file{libubsan} statically, without necessarily linking
10887 other libraries statically.
10889 @item -static-libstdc++
10890 @opindex static-libstdc++
10891 When the @command{g++} program is used to link a C++ program, it
10892 normally automatically links against @option{libstdc++}.  If
10893 @file{libstdc++} is available as a shared library, and the
10894 @option{-static} option is not used, then this links against the
10895 shared version of @file{libstdc++}.  That is normally fine.  However, it
10896 is sometimes useful to freeze the version of @file{libstdc++} used by
10897 the program without going all the way to a fully static link.  The
10898 @option{-static-libstdc++} option directs the @command{g++} driver to
10899 link @file{libstdc++} statically, without necessarily linking other
10900 libraries statically.
10902 @item -symbolic
10903 @opindex symbolic
10904 Bind references to global symbols when building a shared object.  Warn
10905 about any unresolved references (unless overridden by the link editor
10906 option @option{-Xlinker -z -Xlinker defs}).  Only a few systems support
10907 this option.
10909 @item -T @var{script}
10910 @opindex T
10911 @cindex linker script
10912 Use @var{script} as the linker script.  This option is supported by most
10913 systems using the GNU linker.  On some targets, such as bare-board
10914 targets without an operating system, the @option{-T} option may be required
10915 when linking to avoid references to undefined symbols.
10917 @item -Xlinker @var{option}
10918 @opindex Xlinker
10919 Pass @var{option} as an option to the linker.  You can use this to
10920 supply system-specific linker options that GCC does not recognize.
10922 If you want to pass an option that takes a separate argument, you must use
10923 @option{-Xlinker} twice, once for the option and once for the argument.
10924 For example, to pass @option{-assert definitions}, you must write
10925 @option{-Xlinker -assert -Xlinker definitions}.  It does not work to write
10926 @option{-Xlinker "-assert definitions"}, because this passes the entire
10927 string as a single argument, which is not what the linker expects.
10929 When using the GNU linker, it is usually more convenient to pass
10930 arguments to linker options using the @option{@var{option}=@var{value}}
10931 syntax than as separate arguments.  For example, you can specify
10932 @option{-Xlinker -Map=output.map} rather than
10933 @option{-Xlinker -Map -Xlinker output.map}.  Other linkers may not support
10934 this syntax for command-line options.
10936 @item -Wl,@var{option}
10937 @opindex Wl
10938 Pass @var{option} as an option to the linker.  If @var{option} contains
10939 commas, it is split into multiple options at the commas.  You can use this
10940 syntax to pass an argument to the option.
10941 For example, @option{-Wl,-Map,output.map} passes @option{-Map output.map} to the
10942 linker.  When using the GNU linker, you can also get the same effect with
10943 @option{-Wl,-Map=output.map}.
10945 @item -u @var{symbol}
10946 @opindex u
10947 Pretend the symbol @var{symbol} is undefined, to force linking of
10948 library modules to define it.  You can use @option{-u} multiple times with
10949 different symbols to force loading of additional library modules.
10951 @item -z @var{keyword}
10952 @opindex z
10953 @option{-z} is passed directly on to the linker along with the keyword
10954 @var{keyword}. See the section in the documentation of your linker for
10955 permitted values and their meanings.
10956 @end table
10958 @node Directory Options
10959 @section Options for Directory Search
10960 @cindex directory options
10961 @cindex options, directory search
10962 @cindex search path
10964 These options specify directories to search for header files, for
10965 libraries and for parts of the compiler:
10967 @table @gcctabopt
10968 @item -I@var{dir}
10969 @opindex I
10970 Add the directory @var{dir} to the head of the list of directories to be
10971 searched for header files.  This can be used to override a system header
10972 file, substituting your own version, since these directories are
10973 searched before the system header file directories.  However, you should
10974 not use this option to add directories that contain vendor-supplied
10975 system header files (use @option{-isystem} for that).  If you use more than
10976 one @option{-I} option, the directories are scanned in left-to-right
10977 order; the standard system directories come after.
10979 If a standard system include directory, or a directory specified with
10980 @option{-isystem}, is also specified with @option{-I}, the @option{-I}
10981 option is ignored.  The directory is still searched but as a
10982 system directory at its normal position in the system include chain.
10983 This is to ensure that GCC's procedure to fix buggy system headers and
10984 the ordering for the @code{include_next} directive are not inadvertently changed.
10985 If you really need to change the search order for system directories,
10986 use the @option{-nostdinc} and/or @option{-isystem} options.
10988 @item -iplugindir=@var{dir}
10989 @opindex iplugindir=
10990 Set the directory to search for plugins that are passed
10991 by @option{-fplugin=@var{name}} instead of
10992 @option{-fplugin=@var{path}/@var{name}.so}.  This option is not meant
10993 to be used by the user, but only passed by the driver.
10995 @item -iquote@var{dir}
10996 @opindex iquote
10997 Add the directory @var{dir} to the head of the list of directories to
10998 be searched for header files only for the case of @samp{#include
10999 "@var{file}"}; they are not searched for @samp{#include <@var{file}>},
11000 otherwise just like @option{-I}.
11002 @item -L@var{dir}
11003 @opindex L
11004 Add directory @var{dir} to the list of directories to be searched
11005 for @option{-l}.
11007 @item -B@var{prefix}
11008 @opindex B
11009 This option specifies where to find the executables, libraries,
11010 include files, and data files of the compiler itself.
11012 The compiler driver program runs one or more of the subprograms
11013 @command{cpp}, @command{cc1}, @command{as} and @command{ld}.  It tries
11014 @var{prefix} as a prefix for each program it tries to run, both with and
11015 without @samp{@var{machine}/@var{version}/} (@pxref{Target Options}).
11017 For each subprogram to be run, the compiler driver first tries the
11018 @option{-B} prefix, if any.  If that name is not found, or if @option{-B}
11019 is not specified, the driver tries two standard prefixes, 
11020 @file{/usr/lib/gcc/} and @file{/usr/local/lib/gcc/}.  If neither of
11021 those results in a file name that is found, the unmodified program
11022 name is searched for using the directories specified in your
11023 @env{PATH} environment variable.
11025 The compiler checks to see if the path provided by the @option{-B}
11026 refers to a directory, and if necessary it adds a directory
11027 separator character at the end of the path.
11029 @option{-B} prefixes that effectively specify directory names also apply
11030 to libraries in the linker, because the compiler translates these
11031 options into @option{-L} options for the linker.  They also apply to
11032 include files in the preprocessor, because the compiler translates these
11033 options into @option{-isystem} options for the preprocessor.  In this case,
11034 the compiler appends @samp{include} to the prefix.
11036 The runtime support file @file{libgcc.a} can also be searched for using
11037 the @option{-B} prefix, if needed.  If it is not found there, the two
11038 standard prefixes above are tried, and that is all.  The file is left
11039 out of the link if it is not found by those means.
11041 Another way to specify a prefix much like the @option{-B} prefix is to use
11042 the environment variable @env{GCC_EXEC_PREFIX}.  @xref{Environment
11043 Variables}.
11045 As a special kludge, if the path provided by @option{-B} is
11046 @file{[dir/]stage@var{N}/}, where @var{N} is a number in the range 0 to
11047 9, then it is replaced by @file{[dir/]include}.  This is to help
11048 with boot-strapping the compiler.
11050 @item -specs=@var{file}
11051 @opindex specs
11052 Process @var{file} after the compiler reads in the standard @file{specs}
11053 file, in order to override the defaults which the @command{gcc} driver
11054 program uses when determining what switches to pass to @command{cc1},
11055 @command{cc1plus}, @command{as}, @command{ld}, etc.  More than one
11056 @option{-specs=@var{file}} can be specified on the command line, and they
11057 are processed in order, from left to right.
11059 @item --sysroot=@var{dir}
11060 @opindex sysroot
11061 Use @var{dir} as the logical root directory for headers and libraries.
11062 For example, if the compiler normally searches for headers in
11063 @file{/usr/include} and libraries in @file{/usr/lib}, it instead
11064 searches @file{@var{dir}/usr/include} and @file{@var{dir}/usr/lib}.
11066 If you use both this option and the @option{-isysroot} option, then
11067 the @option{--sysroot} option applies to libraries, but the
11068 @option{-isysroot} option applies to header files.
11070 The GNU linker (beginning with version 2.16) has the necessary support
11071 for this option.  If your linker does not support this option, the
11072 header file aspect of @option{--sysroot} still works, but the
11073 library aspect does not.
11075 @item --no-sysroot-suffix
11076 @opindex no-sysroot-suffix
11077 For some targets, a suffix is added to the root directory specified
11078 with @option{--sysroot}, depending on the other options used, so that
11079 headers may for example be found in
11080 @file{@var{dir}/@var{suffix}/usr/include} instead of
11081 @file{@var{dir}/usr/include}.  This option disables the addition of
11082 such a suffix.
11084 @item -I-
11085 @opindex I-
11086 This option has been deprecated.  Please use @option{-iquote} instead for
11087 @option{-I} directories before the @option{-I-} and remove the @option{-I-}.
11088 Any directories you specify with @option{-I} options before the @option{-I-}
11089 option are searched only for the case of @samp{#include "@var{file}"};
11090 they are not searched for @samp{#include <@var{file}>}.
11092 If additional directories are specified with @option{-I} options after
11093 the @option{-I-}, these directories are searched for all @samp{#include}
11094 directives.  (Ordinarily @emph{all} @option{-I} directories are used
11095 this way.)
11097 In addition, the @option{-I-} option inhibits the use of the current
11098 directory (where the current input file came from) as the first search
11099 directory for @samp{#include "@var{file}"}.  There is no way to
11100 override this effect of @option{-I-}.  With @option{-I.} you can specify
11101 searching the directory that is current when the compiler is
11102 invoked.  That is not exactly the same as what the preprocessor does
11103 by default, but it is often satisfactory.
11105 @option{-I-} does not inhibit the use of the standard system directories
11106 for header files.  Thus, @option{-I-} and @option{-nostdinc} are
11107 independent.
11108 @end table
11110 @c man end
11112 @node Spec Files
11113 @section Specifying subprocesses and the switches to pass to them
11114 @cindex Spec Files
11116 @command{gcc} is a driver program.  It performs its job by invoking a
11117 sequence of other programs to do the work of compiling, assembling and
11118 linking.  GCC interprets its command-line parameters and uses these to
11119 deduce which programs it should invoke, and which command-line options
11120 it ought to place on their command lines.  This behavior is controlled
11121 by @dfn{spec strings}.  In most cases there is one spec string for each
11122 program that GCC can invoke, but a few programs have multiple spec
11123 strings to control their behavior.  The spec strings built into GCC can
11124 be overridden by using the @option{-specs=} command-line switch to specify
11125 a spec file.
11127 @dfn{Spec files} are plaintext files that are used to construct spec
11128 strings.  They consist of a sequence of directives separated by blank
11129 lines.  The type of directive is determined by the first non-whitespace
11130 character on the line, which can be one of the following:
11132 @table @code
11133 @item %@var{command}
11134 Issues a @var{command} to the spec file processor.  The commands that can
11135 appear here are:
11137 @table @code
11138 @item %include <@var{file}>
11139 @cindex @code{%include}
11140 Search for @var{file} and insert its text at the current point in the
11141 specs file.
11143 @item %include_noerr <@var{file}>
11144 @cindex @code{%include_noerr}
11145 Just like @samp{%include}, but do not generate an error message if the include
11146 file cannot be found.
11148 @item %rename @var{old_name} @var{new_name}
11149 @cindex @code{%rename}
11150 Rename the spec string @var{old_name} to @var{new_name}.
11152 @end table
11154 @item *[@var{spec_name}]:
11155 This tells the compiler to create, override or delete the named spec
11156 string.  All lines after this directive up to the next directive or
11157 blank line are considered to be the text for the spec string.  If this
11158 results in an empty string then the spec is deleted.  (Or, if the
11159 spec did not exist, then nothing happens.)  Otherwise, if the spec
11160 does not currently exist a new spec is created.  If the spec does
11161 exist then its contents are overridden by the text of this
11162 directive, unless the first character of that text is the @samp{+}
11163 character, in which case the text is appended to the spec.
11165 @item [@var{suffix}]:
11166 Creates a new @samp{[@var{suffix}] spec} pair.  All lines after this directive
11167 and up to the next directive or blank line are considered to make up the
11168 spec string for the indicated suffix.  When the compiler encounters an
11169 input file with the named suffix, it processes the spec string in
11170 order to work out how to compile that file.  For example:
11172 @smallexample
11173 .ZZ:
11174 z-compile -input %i
11175 @end smallexample
11177 This says that any input file whose name ends in @samp{.ZZ} should be
11178 passed to the program @samp{z-compile}, which should be invoked with the
11179 command-line switch @option{-input} and with the result of performing the
11180 @samp{%i} substitution.  (See below.)
11182 As an alternative to providing a spec string, the text following a
11183 suffix directive can be one of the following:
11185 @table @code
11186 @item @@@var{language}
11187 This says that the suffix is an alias for a known @var{language}.  This is
11188 similar to using the @option{-x} command-line switch to GCC to specify a
11189 language explicitly.  For example:
11191 @smallexample
11192 .ZZ:
11193 @@c++
11194 @end smallexample
11196 Says that .ZZ files are, in fact, C++ source files.
11198 @item #@var{name}
11199 This causes an error messages saying:
11201 @smallexample
11202 @var{name} compiler not installed on this system.
11203 @end smallexample
11204 @end table
11206 GCC already has an extensive list of suffixes built into it.
11207 This directive adds an entry to the end of the list of suffixes, but
11208 since the list is searched from the end backwards, it is effectively
11209 possible to override earlier entries using this technique.
11211 @end table
11213 GCC has the following spec strings built into it.  Spec files can
11214 override these strings or create their own.  Note that individual
11215 targets can also add their own spec strings to this list.
11217 @smallexample
11218 asm          Options to pass to the assembler
11219 asm_final    Options to pass to the assembler post-processor
11220 cpp          Options to pass to the C preprocessor
11221 cc1          Options to pass to the C compiler
11222 cc1plus      Options to pass to the C++ compiler
11223 endfile      Object files to include at the end of the link
11224 link         Options to pass to the linker
11225 lib          Libraries to include on the command line to the linker
11226 libgcc       Decides which GCC support library to pass to the linker
11227 linker       Sets the name of the linker
11228 predefines   Defines to be passed to the C preprocessor
11229 signed_char  Defines to pass to CPP to say whether @code{char} is signed
11230              by default
11231 startfile    Object files to include at the start of the link
11232 @end smallexample
11234 Here is a small example of a spec file:
11236 @smallexample
11237 %rename lib                 old_lib
11239 *lib:
11240 --start-group -lgcc -lc -leval1 --end-group %(old_lib)
11241 @end smallexample
11243 This example renames the spec called @samp{lib} to @samp{old_lib} and
11244 then overrides the previous definition of @samp{lib} with a new one.
11245 The new definition adds in some extra command-line options before
11246 including the text of the old definition.
11248 @dfn{Spec strings} are a list of command-line options to be passed to their
11249 corresponding program.  In addition, the spec strings can contain
11250 @samp{%}-prefixed sequences to substitute variable text or to
11251 conditionally insert text into the command line.  Using these constructs
11252 it is possible to generate quite complex command lines.
11254 Here is a table of all defined @samp{%}-sequences for spec
11255 strings.  Note that spaces are not generated automatically around the
11256 results of expanding these sequences.  Therefore you can concatenate them
11257 together or combine them with constant text in a single argument.
11259 @table @code
11260 @item %%
11261 Substitute one @samp{%} into the program name or argument.
11263 @item %i
11264 Substitute the name of the input file being processed.
11266 @item %b
11267 Substitute the basename of the input file being processed.
11268 This is the substring up to (and not including) the last period
11269 and not including the directory.
11271 @item %B
11272 This is the same as @samp{%b}, but include the file suffix (text after
11273 the last period).
11275 @item %d
11276 Marks the argument containing or following the @samp{%d} as a
11277 temporary file name, so that that file is deleted if GCC exits
11278 successfully.  Unlike @samp{%g}, this contributes no text to the
11279 argument.
11281 @item %g@var{suffix}
11282 Substitute a file name that has suffix @var{suffix} and is chosen
11283 once per compilation, and mark the argument in the same way as
11284 @samp{%d}.  To reduce exposure to denial-of-service attacks, the file
11285 name is now chosen in a way that is hard to predict even when previously
11286 chosen file names are known.  For example, @samp{%g.s @dots{} %g.o @dots{} %g.s}
11287 might turn into @samp{ccUVUUAU.s ccXYAXZ12.o ccUVUUAU.s}.  @var{suffix} matches
11288 the regexp @samp{[.A-Za-z]*} or the special string @samp{%O}, which is
11289 treated exactly as if @samp{%O} had been preprocessed.  Previously, @samp{%g}
11290 was simply substituted with a file name chosen once per compilation,
11291 without regard to any appended suffix (which was therefore treated
11292 just like ordinary text), making such attacks more likely to succeed.
11294 @item %u@var{suffix}
11295 Like @samp{%g}, but generates a new temporary file name
11296 each time it appears instead of once per compilation.
11298 @item %U@var{suffix}
11299 Substitutes the last file name generated with @samp{%u@var{suffix}}, generating a
11300 new one if there is no such last file name.  In the absence of any
11301 @samp{%u@var{suffix}}, this is just like @samp{%g@var{suffix}}, except they don't share
11302 the same suffix @emph{space}, so @samp{%g.s @dots{} %U.s @dots{} %g.s @dots{} %U.s}
11303 involves the generation of two distinct file names, one
11304 for each @samp{%g.s} and another for each @samp{%U.s}.  Previously, @samp{%U} was
11305 simply substituted with a file name chosen for the previous @samp{%u},
11306 without regard to any appended suffix.
11308 @item %j@var{suffix}
11309 Substitutes the name of the @code{HOST_BIT_BUCKET}, if any, and if it is
11310 writable, and if @option{-save-temps} is not used; 
11311 otherwise, substitute the name
11312 of a temporary file, just like @samp{%u}.  This temporary file is not
11313 meant for communication between processes, but rather as a junk
11314 disposal mechanism.
11316 @item %|@var{suffix}
11317 @itemx %m@var{suffix}
11318 Like @samp{%g}, except if @option{-pipe} is in effect.  In that case
11319 @samp{%|} substitutes a single dash and @samp{%m} substitutes nothing at
11320 all.  These are the two most common ways to instruct a program that it
11321 should read from standard input or write to standard output.  If you
11322 need something more elaborate you can use an @samp{%@{pipe:@code{X}@}}
11323 construct: see for example @file{f/lang-specs.h}.
11325 @item %.@var{SUFFIX}
11326 Substitutes @var{.SUFFIX} for the suffixes of a matched switch's args
11327 when it is subsequently output with @samp{%*}.  @var{SUFFIX} is
11328 terminated by the next space or %.
11330 @item %w
11331 Marks the argument containing or following the @samp{%w} as the
11332 designated output file of this compilation.  This puts the argument
11333 into the sequence of arguments that @samp{%o} substitutes.
11335 @item %o
11336 Substitutes the names of all the output files, with spaces
11337 automatically placed around them.  You should write spaces
11338 around the @samp{%o} as well or the results are undefined.
11339 @samp{%o} is for use in the specs for running the linker.
11340 Input files whose names have no recognized suffix are not compiled
11341 at all, but they are included among the output files, so they are
11342 linked.
11344 @item %O
11345 Substitutes the suffix for object files.  Note that this is
11346 handled specially when it immediately follows @samp{%g, %u, or %U},
11347 because of the need for those to form complete file names.  The
11348 handling is such that @samp{%O} is treated exactly as if it had already
11349 been substituted, except that @samp{%g, %u, and %U} do not currently
11350 support additional @var{suffix} characters following @samp{%O} as they do
11351 following, for example, @samp{.o}.
11353 @item %p
11354 Substitutes the standard macro predefinitions for the
11355 current target machine.  Use this when running @code{cpp}.
11357 @item %P
11358 Like @samp{%p}, but puts @samp{__} before and after the name of each
11359 predefined macro, except for macros that start with @samp{__} or with
11360 @samp{_@var{L}}, where @var{L} is an uppercase letter.  This is for ISO
11363 @item %I
11364 Substitute any of @option{-iprefix} (made from @env{GCC_EXEC_PREFIX}),
11365 @option{-isysroot} (made from @env{TARGET_SYSTEM_ROOT}),
11366 @option{-isystem} (made from @env{COMPILER_PATH} and @option{-B} options)
11367 and @option{-imultilib} as necessary.
11369 @item %s
11370 Current argument is the name of a library or startup file of some sort.
11371 Search for that file in a standard list of directories and substitute
11372 the full name found.  The current working directory is included in the
11373 list of directories scanned.
11375 @item %T
11376 Current argument is the name of a linker script.  Search for that file
11377 in the current list of directories to scan for libraries. If the file
11378 is located insert a @option{--script} option into the command line
11379 followed by the full path name found.  If the file is not found then
11380 generate an error message.  Note: the current working directory is not
11381 searched.
11383 @item %e@var{str}
11384 Print @var{str} as an error message.  @var{str} is terminated by a newline.
11385 Use this when inconsistent options are detected.
11387 @item %(@var{name})
11388 Substitute the contents of spec string @var{name} at this point.
11390 @item %x@{@var{option}@}
11391 Accumulate an option for @samp{%X}.
11393 @item %X
11394 Output the accumulated linker options specified by @option{-Wl} or a @samp{%x}
11395 spec string.
11397 @item %Y
11398 Output the accumulated assembler options specified by @option{-Wa}.
11400 @item %Z
11401 Output the accumulated preprocessor options specified by @option{-Wp}.
11403 @item %a
11404 Process the @code{asm} spec.  This is used to compute the
11405 switches to be passed to the assembler.
11407 @item %A
11408 Process the @code{asm_final} spec.  This is a spec string for
11409 passing switches to an assembler post-processor, if such a program is
11410 needed.
11412 @item %l
11413 Process the @code{link} spec.  This is the spec for computing the
11414 command line passed to the linker.  Typically it makes use of the
11415 @samp{%L %G %S %D and %E} sequences.
11417 @item %D
11418 Dump out a @option{-L} option for each directory that GCC believes might
11419 contain startup files.  If the target supports multilibs then the
11420 current multilib directory is prepended to each of these paths.
11422 @item %L
11423 Process the @code{lib} spec.  This is a spec string for deciding which
11424 libraries are included on the command line to the linker.
11426 @item %G
11427 Process the @code{libgcc} spec.  This is a spec string for deciding
11428 which GCC support library is included on the command line to the linker.
11430 @item %S
11431 Process the @code{startfile} spec.  This is a spec for deciding which
11432 object files are the first ones passed to the linker.  Typically
11433 this might be a file named @file{crt0.o}.
11435 @item %E
11436 Process the @code{endfile} spec.  This is a spec string that specifies
11437 the last object files that are passed to the linker.
11439 @item %C
11440 Process the @code{cpp} spec.  This is used to construct the arguments
11441 to be passed to the C preprocessor.
11443 @item %1
11444 Process the @code{cc1} spec.  This is used to construct the options to be
11445 passed to the actual C compiler (@samp{cc1}).
11447 @item %2
11448 Process the @code{cc1plus} spec.  This is used to construct the options to be
11449 passed to the actual C++ compiler (@samp{cc1plus}).
11451 @item %*
11452 Substitute the variable part of a matched option.  See below.
11453 Note that each comma in the substituted string is replaced by
11454 a single space.
11456 @item %<@code{S}
11457 Remove all occurrences of @code{-S} from the command line.  Note---this
11458 command is position dependent.  @samp{%} commands in the spec string
11459 before this one see @code{-S}, @samp{%} commands in the spec string
11460 after this one do not.
11462 @item %:@var{function}(@var{args})
11463 Call the named function @var{function}, passing it @var{args}.
11464 @var{args} is first processed as a nested spec string, then split
11465 into an argument vector in the usual fashion.  The function returns
11466 a string which is processed as if it had appeared literally as part
11467 of the current spec.
11469 The following built-in spec functions are provided:
11471 @table @code
11472 @item @code{getenv}
11473 The @code{getenv} spec function takes two arguments: an environment
11474 variable name and a string.  If the environment variable is not
11475 defined, a fatal error is issued.  Otherwise, the return value is the
11476 value of the environment variable concatenated with the string.  For
11477 example, if @env{TOPDIR} is defined as @file{/path/to/top}, then:
11479 @smallexample
11480 %:getenv(TOPDIR /include)
11481 @end smallexample
11483 expands to @file{/path/to/top/include}.
11485 @item @code{if-exists}
11486 The @code{if-exists} spec function takes one argument, an absolute
11487 pathname to a file.  If the file exists, @code{if-exists} returns the
11488 pathname.  Here is a small example of its usage:
11490 @smallexample
11491 *startfile:
11492 crt0%O%s %:if-exists(crti%O%s) crtbegin%O%s
11493 @end smallexample
11495 @item @code{if-exists-else}
11496 The @code{if-exists-else} spec function is similar to the @code{if-exists}
11497 spec function, except that it takes two arguments.  The first argument is
11498 an absolute pathname to a file.  If the file exists, @code{if-exists-else}
11499 returns the pathname.  If it does not exist, it returns the second argument.
11500 This way, @code{if-exists-else} can be used to select one file or another,
11501 based on the existence of the first.  Here is a small example of its usage:
11503 @smallexample
11504 *startfile:
11505 crt0%O%s %:if-exists(crti%O%s) \
11506 %:if-exists-else(crtbeginT%O%s crtbegin%O%s)
11507 @end smallexample
11509 @item @code{replace-outfile}
11510 The @code{replace-outfile} spec function takes two arguments.  It looks for the
11511 first argument in the outfiles array and replaces it with the second argument.  Here
11512 is a small example of its usage:
11514 @smallexample
11515 %@{fgnu-runtime:%:replace-outfile(-lobjc -lobjc-gnu)@}
11516 @end smallexample
11518 @item @code{remove-outfile}
11519 The @code{remove-outfile} spec function takes one argument.  It looks for the
11520 first argument in the outfiles array and removes it.  Here is a small example
11521 its usage:
11523 @smallexample
11524 %:remove-outfile(-lm)
11525 @end smallexample
11527 @item @code{pass-through-libs}
11528 The @code{pass-through-libs} spec function takes any number of arguments.  It
11529 finds any @option{-l} options and any non-options ending in @file{.a} (which it
11530 assumes are the names of linker input library archive files) and returns a
11531 result containing all the found arguments each prepended by
11532 @option{-plugin-opt=-pass-through=} and joined by spaces.  This list is
11533 intended to be passed to the LTO linker plugin.
11535 @smallexample
11536 %:pass-through-libs(%G %L %G)
11537 @end smallexample
11539 @item @code{print-asm-header}
11540 The @code{print-asm-header} function takes no arguments and simply
11541 prints a banner like:
11543 @smallexample
11544 Assembler options
11545 =================
11547 Use "-Wa,OPTION" to pass "OPTION" to the assembler.
11548 @end smallexample
11550 It is used to separate compiler options from assembler options
11551 in the @option{--target-help} output.
11552 @end table
11554 @item %@{@code{S}@}
11555 Substitutes the @code{-S} switch, if that switch is given to GCC@.
11556 If that switch is not specified, this substitutes nothing.  Note that
11557 the leading dash is omitted when specifying this option, and it is
11558 automatically inserted if the substitution is performed.  Thus the spec
11559 string @samp{%@{foo@}} matches the command-line option @option{-foo}
11560 and outputs the command-line option @option{-foo}.
11562 @item %W@{@code{S}@}
11563 Like %@{@code{S}@} but mark last argument supplied within as a file to be
11564 deleted on failure.
11566 @item %@{@code{S}*@}
11567 Substitutes all the switches specified to GCC whose names start
11568 with @code{-S}, but which also take an argument.  This is used for
11569 switches like @option{-o}, @option{-D}, @option{-I}, etc.
11570 GCC considers @option{-o foo} as being
11571 one switch whose name starts with @samp{o}.  %@{o*@} substitutes this
11572 text, including the space.  Thus two arguments are generated.
11574 @item %@{@code{S}*&@code{T}*@}
11575 Like %@{@code{S}*@}, but preserve order of @code{S} and @code{T} options
11576 (the order of @code{S} and @code{T} in the spec is not significant).
11577 There can be any number of ampersand-separated variables; for each the
11578 wild card is optional.  Useful for CPP as @samp{%@{D*&U*&A*@}}.
11580 @item %@{@code{S}:@code{X}@}
11581 Substitutes @code{X}, if the @option{-S} switch is given to GCC@.
11583 @item %@{!@code{S}:@code{X}@}
11584 Substitutes @code{X}, if the @option{-S} switch is @emph{not} given to GCC@.
11586 @item %@{@code{S}*:@code{X}@}
11587 Substitutes @code{X} if one or more switches whose names start with
11588 @code{-S} are specified to GCC@.  Normally @code{X} is substituted only
11589 once, no matter how many such switches appeared.  However, if @code{%*}
11590 appears somewhere in @code{X}, then @code{X} is substituted once
11591 for each matching switch, with the @code{%*} replaced by the part of
11592 that switch matching the @code{*}.
11594 If @code{%*} appears as the last part of a spec sequence then a space
11595 will be added after the end of the last substitution.  If there is more
11596 text in the sequence however then a space will not be generated.  This
11597 allows the @code{%*} substitution to be used as part of a larger
11598 string.  For example, a spec string like this:
11600 @smallexample
11601 %@{mcu=*:--script=%*/memory.ld@}
11602 @end smallexample
11604 when matching an option like @code{-mcu=newchip} will produce:
11606 @smallexample
11607 --script=newchip/memory.ld
11608 @end smallexample
11610 @item %@{.@code{S}:@code{X}@}
11611 Substitutes @code{X}, if processing a file with suffix @code{S}.
11613 @item %@{!.@code{S}:@code{X}@}
11614 Substitutes @code{X}, if @emph{not} processing a file with suffix @code{S}.
11616 @item %@{,@code{S}:@code{X}@}
11617 Substitutes @code{X}, if processing a file for language @code{S}.
11619 @item %@{!,@code{S}:@code{X}@}
11620 Substitutes @code{X}, if not processing a file for language @code{S}.
11622 @item %@{@code{S}|@code{P}:@code{X}@}
11623 Substitutes @code{X} if either @code{-S} or @code{-P} is given to
11624 GCC@.  This may be combined with @samp{!}, @samp{.}, @samp{,}, and
11625 @code{*} sequences as well, although they have a stronger binding than
11626 the @samp{|}.  If @code{%*} appears in @code{X}, all of the
11627 alternatives must be starred, and only the first matching alternative
11628 is substituted.
11630 For example, a spec string like this:
11632 @smallexample
11633 %@{.c:-foo@} %@{!.c:-bar@} %@{.c|d:-baz@} %@{!.c|d:-boggle@}
11634 @end smallexample
11636 @noindent
11637 outputs the following command-line options from the following input
11638 command-line options:
11640 @smallexample
11641 fred.c        -foo -baz
11642 jim.d         -bar -boggle
11643 -d fred.c     -foo -baz -boggle
11644 -d jim.d      -bar -baz -boggle
11645 @end smallexample
11647 @item %@{S:X; T:Y; :D@}
11649 If @code{S} is given to GCC, substitutes @code{X}; else if @code{T} is
11650 given to GCC, substitutes @code{Y}; else substitutes @code{D}.  There can
11651 be as many clauses as you need.  This may be combined with @code{.},
11652 @code{,}, @code{!}, @code{|}, and @code{*} as needed.
11655 @end table
11657 The conditional text @code{X} in a %@{@code{S}:@code{X}@} or similar
11658 construct may contain other nested @samp{%} constructs or spaces, or
11659 even newlines.  They are processed as usual, as described above.
11660 Trailing white space in @code{X} is ignored.  White space may also
11661 appear anywhere on the left side of the colon in these constructs,
11662 except between @code{.} or @code{*} and the corresponding word.
11664 The @option{-O}, @option{-f}, @option{-m}, and @option{-W} switches are
11665 handled specifically in these constructs.  If another value of
11666 @option{-O} or the negated form of a @option{-f}, @option{-m}, or
11667 @option{-W} switch is found later in the command line, the earlier
11668 switch value is ignored, except with @{@code{S}*@} where @code{S} is
11669 just one letter, which passes all matching options.
11671 The character @samp{|} at the beginning of the predicate text is used to
11672 indicate that a command should be piped to the following command, but
11673 only if @option{-pipe} is specified.
11675 It is built into GCC which switches take arguments and which do not.
11676 (You might think it would be useful to generalize this to allow each
11677 compiler's spec to say which switches take arguments.  But this cannot
11678 be done in a consistent fashion.  GCC cannot even decide which input
11679 files have been specified without knowing which switches take arguments,
11680 and it must know which input files to compile in order to tell which
11681 compilers to run).
11683 GCC also knows implicitly that arguments starting in @option{-l} are to be
11684 treated as compiler output files, and passed to the linker in their
11685 proper position among the other output files.
11687 @c man begin OPTIONS
11689 @node Target Options
11690 @section Specifying Target Machine and Compiler Version
11691 @cindex target options
11692 @cindex cross compiling
11693 @cindex specifying machine version
11694 @cindex specifying compiler version and target machine
11695 @cindex compiler version, specifying
11696 @cindex target machine, specifying
11698 The usual way to run GCC is to run the executable called @command{gcc}, or
11699 @command{@var{machine}-gcc} when cross-compiling, or
11700 @command{@var{machine}-gcc-@var{version}} to run a version other than the
11701 one that was installed last.
11703 @node Submodel Options
11704 @section Hardware Models and Configurations
11705 @cindex submodel options
11706 @cindex specifying hardware config
11707 @cindex hardware models and configurations, specifying
11708 @cindex machine dependent options
11710 Each target machine types can have its own
11711 special options, starting with @samp{-m}, to choose among various
11712 hardware models or configurations---for example, 68010 vs 68020,
11713 floating coprocessor or none.  A single installed version of the
11714 compiler can compile for any model or configuration, according to the
11715 options specified.
11717 Some configurations of the compiler also support additional special
11718 options, usually for compatibility with other compilers on the same
11719 platform.
11721 @c This list is ordered alphanumerically by subsection name.
11722 @c It should be the same order and spelling as these options are listed
11723 @c in Machine Dependent Options
11725 @menu
11726 * AArch64 Options::
11727 * Adapteva Epiphany Options::
11728 * ARC Options::
11729 * ARM Options::
11730 * AVR Options::
11731 * Blackfin Options::
11732 * C6X Options::
11733 * CRIS Options::
11734 * CR16 Options::
11735 * Darwin Options::
11736 * DEC Alpha Options::
11737 * FR30 Options::
11738 * FRV Options::
11739 * GNU/Linux Options::
11740 * H8/300 Options::
11741 * HPPA Options::
11742 * i386 and x86-64 Options::
11743 * i386 and x86-64 Windows Options::
11744 * IA-64 Options::
11745 * LM32 Options::
11746 * M32C Options::
11747 * M32R/D Options::
11748 * M680x0 Options::
11749 * MCore Options::
11750 * MeP Options::
11751 * MicroBlaze Options::
11752 * MIPS Options::
11753 * MMIX Options::
11754 * MN10300 Options::
11755 * Moxie Options::
11756 * MSP430 Options::
11757 * NDS32 Options::
11758 * Nios II Options::
11759 * PDP-11 Options::
11760 * picoChip Options::
11761 * PowerPC Options::
11762 * RL78 Options::
11763 * RS/6000 and PowerPC Options::
11764 * RX Options::
11765 * S/390 and zSeries Options::
11766 * Score Options::
11767 * SH Options::
11768 * Solaris 2 Options::
11769 * SPARC Options::
11770 * SPU Options::
11771 * System V Options::
11772 * TILE-Gx Options::
11773 * TILEPro Options::
11774 * V850 Options::
11775 * VAX Options::
11776 * VMS Options::
11777 * VxWorks Options::
11778 * x86-64 Options::
11779 * Xstormy16 Options::
11780 * Xtensa Options::
11781 * zSeries Options::
11782 @end menu
11784 @node AArch64 Options
11785 @subsection AArch64 Options
11786 @cindex AArch64 Options
11788 These options are defined for AArch64 implementations:
11790 @table @gcctabopt
11792 @item -mabi=@var{name}
11793 @opindex mabi
11794 Generate code for the specified data model.  Permissible values
11795 are @samp{ilp32} for SysV-like data model where int, long int and pointer
11796 are 32-bit, and @samp{lp64} for SysV-like data model where int is 32-bit,
11797 but long int and pointer are 64-bit.
11799 The default depends on the specific target configuration.  Note that
11800 the LP64 and ILP32 ABIs are not link-compatible; you must compile your
11801 entire program with the same ABI, and link with a compatible set of libraries.
11803 @item -mbig-endian
11804 @opindex mbig-endian
11805 Generate big-endian code.  This is the default when GCC is configured for an
11806 @samp{aarch64_be-*-*} target.
11808 @item -mgeneral-regs-only
11809 @opindex mgeneral-regs-only
11810 Generate code which uses only the general registers.
11812 @item -mlittle-endian
11813 @opindex mlittle-endian
11814 Generate little-endian code.  This is the default when GCC is configured for an
11815 @samp{aarch64-*-*} but not an @samp{aarch64_be-*-*} target.
11817 @item -mcmodel=tiny
11818 @opindex mcmodel=tiny
11819 Generate code for the tiny code model.  The program and its statically defined
11820 symbols must be within 1GB of each other.  Pointers are 64 bits.  Programs can
11821 be statically or dynamically linked.  This model is not fully implemented and
11822 mostly treated as @samp{small}.
11824 @item -mcmodel=small
11825 @opindex mcmodel=small
11826 Generate code for the small code model.  The program and its statically defined
11827 symbols must be within 4GB of each other.  Pointers are 64 bits.  Programs can
11828 be statically or dynamically linked.  This is the default code model.
11830 @item -mcmodel=large
11831 @opindex mcmodel=large
11832 Generate code for the large code model.  This makes no assumptions about
11833 addresses and sizes of sections.  Pointers are 64 bits.  Programs can be
11834 statically linked only.
11836 @item -mstrict-align
11837 @opindex mstrict-align
11838 Do not assume that unaligned memory references will be handled by the system.
11840 @item -momit-leaf-frame-pointer
11841 @itemx -mno-omit-leaf-frame-pointer
11842 @opindex momit-leaf-frame-pointer
11843 @opindex mno-omit-leaf-frame-pointer
11844 Omit or keep the frame pointer in leaf functions.  The former behaviour is the
11845 default.
11847 @item -mtls-dialect=desc
11848 @opindex mtls-dialect=desc
11849 Use TLS descriptors as the thread-local storage mechanism for dynamic accesses
11850 of TLS variables.  This is the default.
11852 @item -mtls-dialect=traditional
11853 @opindex mtls-dialect=traditional
11854 Use traditional TLS as the thread-local storage mechanism for dynamic accesses
11855 of TLS variables.
11857 @item -mfix-cortex-a53-835769
11858 @itemx -mno-fix-cortex-a53-835769
11859 @opindex -mfix-cortex-a53-835769
11860 @opindex -mno-fix-cortex-a53-835769
11861 Enable or disable the workaround for the ARM Cortex-A53 erratum number 835769.
11862 This will involve inserting a NOP instruction between memory instructions and
11863 64-bit integer multiply-accumulate instructions.
11865 @item -march=@var{name}
11866 @opindex march
11867 Specify the name of the target architecture, optionally suffixed by one or
11868 more feature modifiers.  This option has the form
11869 @option{-march=@var{arch}@r{@{}+@r{[}no@r{]}@var{feature}@r{@}*}}, where the
11870 only permissible value for @var{arch} is @samp{armv8-a}.  The permissible
11871 values for @var{feature} are documented in the sub-section below.
11873 Where conflicting feature modifiers are specified, the right-most feature is
11874 used.
11876 GCC uses this name to determine what kind of instructions it can emit when
11877 generating assembly code.
11879 Where @option{-march} is specified without either of @option{-mtune}
11880 or @option{-mcpu} also being specified, the code will be tuned to perform
11881 well across a range of target processors implementing the target
11882 architecture.
11884 @item -mtune=@var{name}
11885 @opindex mtune
11886 Specify the name of the target processor for which GCC should tune the
11887 performance of the code.  Permissible values for this option are:
11888 @samp{generic}, @samp{cortex-a53}, @samp{cortex-a57}, @samp{thunderx}.
11890 Additionally, this option can specify that GCC should tune the performance
11891 of the code for a big.LITTLE system.  The only permissible value is
11892 @samp{cortex-a57.cortex-a53}.
11894 Where none of @option{-mtune=}, @option{-mcpu=} or @option{-march=}
11895 are specified, the code will be tuned to perform well across a range
11896 of target processors.
11898 This option cannot be suffixed by feature modifiers.
11900 @item -mcpu=@var{name}
11901 @opindex mcpu
11902 Specify the name of the target processor, optionally suffixed by one or more
11903 feature modifiers.  This option has the form
11904 @option{-mcpu=@var{cpu}@r{@{}+@r{[}no@r{]}@var{feature}@r{@}*}}, where the
11905 permissible values for @var{cpu} are the same as those available for
11906 @option{-mtune}.
11908 The permissible values for @var{feature} are documented in the sub-section
11909 below.
11911 Where conflicting feature modifiers are specified, the right-most feature is
11912 used.
11914 GCC uses this name to determine what kind of instructions it can emit when
11915 generating assembly code (as if by @option{-march}) and to determine
11916 the target processor for which to tune for performance (as if
11917 by @option{-mtune}).  Where this option is used in conjunction
11918 with @option{-march} or @option{-mtune}, those options take precedence
11919 over the appropriate part of this option.
11920 @end table
11922 @subsubsection @option{-march} and @option{-mcpu} feature modifiers
11923 @cindex @option{-march} feature modifiers
11924 @cindex @option{-mcpu} feature modifiers
11925 Feature modifiers used with @option{-march} and @option{-mcpu} can be one
11926 the following:
11928 @table @samp
11929 @item crc
11930 Enable CRC extension.
11931 @item crypto
11932 Enable Crypto extension.  This implies Advanced SIMD is enabled.
11933 @item fp
11934 Enable floating-point instructions.
11935 @item simd
11936 Enable Advanced SIMD instructions.  This implies floating-point instructions
11937 are enabled.  This is the default for all current possible values for options
11938 @option{-march} and @option{-mcpu=}.
11939 @end table
11941 @node Adapteva Epiphany Options
11942 @subsection Adapteva Epiphany Options
11944 These @samp{-m} options are defined for Adapteva Epiphany:
11946 @table @gcctabopt
11947 @item -mhalf-reg-file
11948 @opindex mhalf-reg-file
11949 Don't allocate any register in the range @code{r32}@dots{}@code{r63}.
11950 That allows code to run on hardware variants that lack these registers.
11952 @item -mprefer-short-insn-regs
11953 @opindex mprefer-short-insn-regs
11954 Preferrentially allocate registers that allow short instruction generation.
11955 This can result in increased instruction count, so this may either reduce or
11956 increase overall code size.
11958 @item -mbranch-cost=@var{num}
11959 @opindex mbranch-cost
11960 Set the cost of branches to roughly @var{num} ``simple'' instructions.
11961 This cost is only a heuristic and is not guaranteed to produce
11962 consistent results across releases.
11964 @item -mcmove
11965 @opindex mcmove
11966 Enable the generation of conditional moves.
11968 @item -mnops=@var{num}
11969 @opindex mnops
11970 Emit @var{num} NOPs before every other generated instruction.
11972 @item -mno-soft-cmpsf
11973 @opindex mno-soft-cmpsf
11974 For single-precision floating-point comparisons, emit an @code{fsub} instruction
11975 and test the flags.  This is faster than a software comparison, but can
11976 get incorrect results in the presence of NaNs, or when two different small
11977 numbers are compared such that their difference is calculated as zero.
11978 The default is @option{-msoft-cmpsf}, which uses slower, but IEEE-compliant,
11979 software comparisons.
11981 @item -mstack-offset=@var{num}
11982 @opindex mstack-offset
11983 Set the offset between the top of the stack and the stack pointer.
11984 E.g., a value of 8 means that the eight bytes in the range @code{sp+0@dots{}sp+7}
11985 can be used by leaf functions without stack allocation.
11986 Values other than @samp{8} or @samp{16} are untested and unlikely to work.
11987 Note also that this option changes the ABI; compiling a program with a
11988 different stack offset than the libraries have been compiled with
11989 generally does not work.
11990 This option can be useful if you want to evaluate if a different stack
11991 offset would give you better code, but to actually use a different stack
11992 offset to build working programs, it is recommended to configure the
11993 toolchain with the appropriate @option{--with-stack-offset=@var{num}} option.
11995 @item -mno-round-nearest
11996 @opindex mno-round-nearest
11997 Make the scheduler assume that the rounding mode has been set to
11998 truncating.  The default is @option{-mround-nearest}.
12000 @item -mlong-calls
12001 @opindex mlong-calls
12002 If not otherwise specified by an attribute, assume all calls might be beyond
12003 the offset range of the @code{b} / @code{bl} instructions, and therefore load the
12004 function address into a register before performing a (otherwise direct) call.
12005 This is the default.
12007 @item -mshort-calls
12008 @opindex short-calls
12009 If not otherwise specified by an attribute, assume all direct calls are
12010 in the range of the @code{b} / @code{bl} instructions, so use these instructions
12011 for direct calls.  The default is @option{-mlong-calls}.
12013 @item -msmall16
12014 @opindex msmall16
12015 Assume addresses can be loaded as 16-bit unsigned values.  This does not
12016 apply to function addresses for which @option{-mlong-calls} semantics
12017 are in effect.
12019 @item -mfp-mode=@var{mode}
12020 @opindex mfp-mode
12021 Set the prevailing mode of the floating-point unit.
12022 This determines the floating-point mode that is provided and expected
12023 at function call and return time.  Making this mode match the mode you
12024 predominantly need at function start can make your programs smaller and
12025 faster by avoiding unnecessary mode switches.
12027 @var{mode} can be set to one the following values:
12029 @table @samp
12030 @item caller
12031 Any mode at function entry is valid, and retained or restored when
12032 the function returns, and when it calls other functions.
12033 This mode is useful for compiling libraries or other compilation units
12034 you might want to incorporate into different programs with different
12035 prevailing FPU modes, and the convenience of being able to use a single
12036 object file outweighs the size and speed overhead for any extra
12037 mode switching that might be needed, compared with what would be needed
12038 with a more specific choice of prevailing FPU mode.
12040 @item truncate
12041 This is the mode used for floating-point calculations with
12042 truncating (i.e.@: round towards zero) rounding mode.  That includes
12043 conversion from floating point to integer.
12045 @item round-nearest
12046 This is the mode used for floating-point calculations with
12047 round-to-nearest-or-even rounding mode.
12049 @item int
12050 This is the mode used to perform integer calculations in the FPU, e.g.@:
12051 integer multiply, or integer multiply-and-accumulate.
12052 @end table
12054 The default is @option{-mfp-mode=caller}
12056 @item -mnosplit-lohi
12057 @itemx -mno-postinc
12058 @itemx -mno-postmodify
12059 @opindex mnosplit-lohi
12060 @opindex mno-postinc
12061 @opindex mno-postmodify
12062 Code generation tweaks that disable, respectively, splitting of 32-bit
12063 loads, generation of post-increment addresses, and generation of
12064 post-modify addresses.  The defaults are @option{msplit-lohi},
12065 @option{-mpost-inc}, and @option{-mpost-modify}.
12067 @item -mnovect-double
12068 @opindex mno-vect-double
12069 Change the preferred SIMD mode to SImode.  The default is
12070 @option{-mvect-double}, which uses DImode as preferred SIMD mode.
12072 @item -max-vect-align=@var{num}
12073 @opindex max-vect-align
12074 The maximum alignment for SIMD vector mode types.
12075 @var{num} may be 4 or 8.  The default is 8.
12076 Note that this is an ABI change, even though many library function
12077 interfaces are unaffected if they don't use SIMD vector modes
12078 in places that affect size and/or alignment of relevant types.
12080 @item -msplit-vecmove-early
12081 @opindex msplit-vecmove-early
12082 Split vector moves into single word moves before reload.  In theory this
12083 can give better register allocation, but so far the reverse seems to be
12084 generally the case.
12086 @item -m1reg-@var{reg}
12087 @opindex m1reg-
12088 Specify a register to hold the constant @minus{}1, which makes loading small negative
12089 constants and certain bitmasks faster.
12090 Allowable values for @var{reg} are @samp{r43} and @samp{r63},
12091 which specify use of that register as a fixed register,
12092 and @samp{none}, which means that no register is used for this
12093 purpose.  The default is @option{-m1reg-none}.
12095 @end table
12097 @node ARC Options
12098 @subsection ARC Options
12099 @cindex ARC options
12101 The following options control the architecture variant for which code
12102 is being compiled:
12104 @c architecture variants
12105 @table @gcctabopt
12107 @item -mbarrel-shifter
12108 @opindex mbarrel-shifter
12109 Generate instructions supported by barrel shifter.  This is the default
12110 unless @samp{-mcpu=ARC601} is in effect.
12112 @item -mcpu=@var{cpu}
12113 @opindex mcpu
12114 Set architecture type, register usage, and instruction scheduling
12115 parameters for @var{cpu}.  There are also shortcut alias options
12116 available for backward compatibility and convenience.  Supported
12117 values for @var{cpu} are
12119 @table @samp
12120 @opindex mA6
12121 @opindex mARC600
12122 @item ARC600
12123 Compile for ARC600.  Aliases: @option{-mA6}, @option{-mARC600}.
12125 @item ARC601
12126 @opindex mARC601
12127 Compile for ARC601.  Alias: @option{-mARC601}.
12129 @item ARC700
12130 @opindex mA7
12131 @opindex mARC700
12132 Compile for ARC700.  Aliases: @option{-mA7}, @option{-mARC700}.
12133 This is the default when configured with @samp{--with-cpu=arc700}@.
12134 @end table
12136 @item -mdpfp
12137 @opindex mdpfp
12138 @itemx -mdpfp-compact
12139 @opindex mdpfp-compact
12140 FPX: Generate Double Precision FPX instructions, tuned for the compact
12141 implementation.
12143 @item -mdpfp-fast
12144 @opindex mdpfp-fast
12145 FPX: Generate Double Precision FPX instructions, tuned for the fast
12146 implementation.
12148 @item -mno-dpfp-lrsr
12149 @opindex mno-dpfp-lrsr
12150 Disable LR and SR instructions from using FPX extension aux registers.
12152 @item -mea
12153 @opindex mea
12154 Generate Extended arithmetic instructions.  Currently only
12155 @code{divaw}, @code{adds}, @code{subs}, and @code{sat16} are
12156 supported.  This is always enabled for @samp{-mcpu=ARC700}.
12158 @item -mno-mpy
12159 @opindex mno-mpy
12160 Do not generate mpy instructions for ARC700.
12162 @item -mmul32x16
12163 @opindex mmul32x16
12164 Generate 32x16 bit multiply and mac instructions.
12166 @item -mmul64
12167 @opindex mmul64
12168 Generate mul64 and mulu64 instructions.  Only valid for @samp{-mcpu=ARC600}.
12170 @item -mnorm
12171 @opindex mnorm
12172 Generate norm instruction.  This is the default if @samp{-mcpu=ARC700}
12173 is in effect.
12175 @item -mspfp
12176 @opindex mspfp
12177 @itemx -mspfp-compact
12178 @opindex mspfp-compact
12179 FPX: Generate Single Precision FPX instructions, tuned for the compact
12180 implementation.
12182 @item -mspfp-fast
12183 @opindex mspfp-fast
12184 FPX: Generate Single Precision FPX instructions, tuned for the fast
12185 implementation.
12187 @item -msimd
12188 @opindex msimd
12189 Enable generation of ARC SIMD instructions via target-specific
12190 builtins.  Only valid for @samp{-mcpu=ARC700}.
12192 @item -msoft-float
12193 @opindex msoft-float
12194 This option ignored; it is provided for compatibility purposes only.
12195 Software floating point code is emitted by default, and this default
12196 can overridden by FPX options; @samp{mspfp}, @samp{mspfp-compact}, or
12197 @samp{mspfp-fast} for single precision, and @samp{mdpfp},
12198 @samp{mdpfp-compact}, or @samp{mdpfp-fast} for double precision.
12200 @item -mswap
12201 @opindex mswap
12202 Generate swap instructions.
12204 @end table
12206 The following options are passed through to the assembler, and also
12207 define preprocessor macro symbols.
12209 @c Flags used by the assembler, but for which we define preprocessor
12210 @c macro symbols as well.
12211 @table @gcctabopt
12212 @item -mdsp-packa
12213 @opindex mdsp-packa
12214 Passed down to the assembler to enable the DSP Pack A extensions.
12215 Also sets the preprocessor symbol @code{__Xdsp_packa}.
12217 @item -mdvbf
12218 @opindex mdvbf
12219 Passed down to the assembler to enable the dual viterbi butterfly
12220 extension.  Also sets the preprocessor symbol @code{__Xdvbf}.
12222 @c ARC700 4.10 extension instruction
12223 @item -mlock
12224 @opindex mlock
12225 Passed down to the assembler to enable the Locked Load/Store
12226 Conditional extension.  Also sets the preprocessor symbol
12227 @code{__Xlock}.
12229 @item -mmac-d16
12230 @opindex mmac-d16
12231 Passed down to the assembler.  Also sets the preprocessor symbol
12232 @code{__Xxmac_d16}.
12234 @item -mmac-24
12235 @opindex mmac-24
12236 Passed down to the assembler.  Also sets the preprocessor symbol
12237 @code{__Xxmac_24}.
12239 @c ARC700 4.10 extension instruction
12240 @item -mrtsc
12241 @opindex mrtsc
12242 Passed down to the assembler to enable the 64-bit Time-Stamp Counter
12243 extension instruction.  Also sets the preprocessor symbol
12244 @code{__Xrtsc}.
12246 @c ARC700 4.10 extension instruction
12247 @item -mswape
12248 @opindex mswape
12249 Passed down to the assembler to enable the swap byte ordering
12250 extension instruction.  Also sets the preprocessor symbol
12251 @code{__Xswape}.
12253 @item -mtelephony
12254 @opindex mtelephony
12255 Passed down to the assembler to enable dual and single operand
12256 instructions for telephony.  Also sets the preprocessor symbol
12257 @code{__Xtelephony}.
12259 @item -mxy
12260 @opindex mxy
12261 Passed down to the assembler to enable the XY Memory extension.  Also
12262 sets the preprocessor symbol @code{__Xxy}.
12264 @end table
12266 The following options control how the assembly code is annotated:
12268 @c Assembly annotation options
12269 @table @gcctabopt
12270 @item -misize
12271 @opindex misize
12272 Annotate assembler instructions with estimated addresses.
12274 @item -mannotate-align
12275 @opindex mannotate-align
12276 Explain what alignment considerations lead to the decision to make an
12277 instruction short or long.
12279 @end table
12281 The following options are passed through to the linker:
12283 @c options passed through to the linker
12284 @table @gcctabopt
12285 @item -marclinux
12286 @opindex marclinux
12287 Passed through to the linker, to specify use of the @code{arclinux} emulation.
12288 This option is enabled by default in tool chains built for
12289 @w{@code{arc-linux-uclibc}} and @w{@code{arceb-linux-uclibc}} targets
12290 when profiling is not requested.
12292 @item -marclinux_prof
12293 @opindex marclinux_prof
12294 Passed through to the linker, to specify use of the
12295 @code{arclinux_prof} emulation.  This option is enabled by default in
12296 tool chains built for @w{@code{arc-linux-uclibc}} and
12297 @w{@code{arceb-linux-uclibc}} targets when profiling is requested.
12299 @end table
12301 The following options control the semantics of generated code:
12303 @c semantically relevant code generation options
12304 @table @gcctabopt
12305 @item -mepilogue-cfi
12306 @opindex mepilogue-cfi
12307 Enable generation of call frame information for epilogues.
12309 @item -mno-epilogue-cfi
12310 @opindex mno-epilogue-cfi
12311 Disable generation of call frame information for epilogues.
12313 @item -mlong-calls
12314 @opindex mlong-calls
12315 Generate call insns as register indirect calls, thus providing access
12316 to the full 32-bit address range.
12318 @item -mmedium-calls
12319 @opindex mmedium-calls
12320 Don't use less than 25 bit addressing range for calls, which is the
12321 offset available for an unconditional branch-and-link
12322 instruction.  Conditional execution of function calls is suppressed, to
12323 allow use of the 25-bit range, rather than the 21-bit range with
12324 conditional branch-and-link.  This is the default for tool chains built
12325 for @w{@code{arc-linux-uclibc}} and @w{@code{arceb-linux-uclibc}} targets.
12327 @item -mno-sdata
12328 @opindex mno-sdata
12329 Do not generate sdata references.  This is the default for tool chains
12330 built for @w{@code{arc-linux-uclibc}} and @w{@code{arceb-linux-uclibc}}
12331 targets.
12333 @item -mucb-mcount
12334 @opindex mucb-mcount
12335 Instrument with mcount calls as used in UCB code.  I.e. do the
12336 counting in the callee, not the caller.  By default ARC instrumentation
12337 counts in the caller.
12339 @item -mvolatile-cache
12340 @opindex mvolatile-cache
12341 Use ordinarily cached memory accesses for volatile references.  This is the
12342 default.
12344 @item -mno-volatile-cache
12345 @opindex mno-volatile-cache
12346 Enable cache bypass for volatile references.
12348 @end table
12350 The following options fine tune code generation:
12351 @c code generation tuning options
12352 @table @gcctabopt
12353 @item -malign-call
12354 @opindex malign-call
12355 Do alignment optimizations for call instructions.
12357 @item -mauto-modify-reg
12358 @opindex mauto-modify-reg
12359 Enable the use of pre/post modify with register displacement.
12361 @item -mbbit-peephole
12362 @opindex mbbit-peephole
12363 Enable bbit peephole2.
12365 @item -mno-brcc
12366 @opindex mno-brcc
12367 This option disables a target-specific pass in @file{arc_reorg} to
12368 generate @code{BRcc} instructions.  It has no effect on @code{BRcc}
12369 generation driven by the combiner pass.
12371 @item -mcase-vector-pcrel
12372 @opindex mcase-vector-pcrel
12373 Use pc-relative switch case tables - this enables case table shortening.
12374 This is the default for @option{-Os}.
12376 @item -mcompact-casesi
12377 @opindex mcompact-casesi
12378 Enable compact casesi pattern.
12379 This is the default for @option{-Os}.
12381 @item -mno-cond-exec
12382 @opindex mno-cond-exec
12383 Disable ARCompact specific pass to generate conditional execution instructions.
12384 Due to delay slot scheduling and interactions between operand numbers,
12385 literal sizes, instruction lengths, and the support for conditional execution,
12386 the target-independent pass to generate conditional execution is often lacking,
12387 so the ARC port has kept a special pass around that tries to find more
12388 conditional execution generating opportunities after register allocation,
12389 branch shortening, and delay slot scheduling have been done.  This pass
12390 generally, but not always, improves performance and code size, at the cost of
12391 extra compilation time, which is why there is an option to switch it off.
12392 If you have a problem with call instructions exceeding their allowable
12393 offset range because they are conditionalized, you should consider using
12394 @option{-mmedium-calls} instead.
12396 @item -mearly-cbranchsi
12397 @opindex mearly-cbranchsi
12398 Enable pre-reload use of the cbranchsi pattern.
12400 @item -mexpand-adddi
12401 @opindex mexpand-adddi
12402 Expand @code{adddi3} and @code{subdi3} at rtl generation time into
12403 @code{add.f}, @code{adc} etc.
12405 @item -mindexed-loads
12406 @opindex mindexed-loads
12407 Enable the use of indexed loads.  This can be problematic because some
12408 optimizers will then assume the that indexed stores exist, which is not
12409 the case.
12411 @item -mlra
12412 @opindex mlra
12413 Enable Local Register Allocation.  This is still experimental for ARC,
12414 so by default the compiler uses standard reload
12415 (i.e. @samp{-mno-lra}).
12417 @item -mlra-priority-none
12418 @opindex mlra-priority-none
12419 Don't indicate any priority for target registers.
12421 @item -mlra-priority-compact
12422 @opindex mlra-priority-compact
12423 Indicate target register priority for r0..r3 / r12..r15.
12425 @item -mlra-priority-noncompact
12426 @opindex mlra-priority-noncompact
12427 Reduce target regsiter priority for r0..r3 / r12..r15.
12429 @item -mno-millicode
12430 @opindex mno-millicode
12431 When optimizing for size (using @option{-Os}), prologues and epilogues
12432 that have to save or restore a large number of registers are often
12433 shortened by using call to a special function in libgcc; this is
12434 referred to as a @emph{millicode} call.  As these calls can pose
12435 performance issues, and/or cause linking issues when linking in a
12436 nonstandard way, this option is provided to turn off millicode call
12437 generation.
12439 @item -mmixed-code
12440 @opindex mmixed-code
12441 Tweak register allocation to help 16-bit instruction generation.
12442 This generally has the effect of decreasing the average instruction size
12443 while increasing the instruction count.
12445 @item -mq-class
12446 @opindex mq-class
12447 Enable 'q' instruction alternatives.
12448 This is the default for @option{-Os}.
12450 @item -mRcq
12451 @opindex mRcq
12452 Enable Rcq constraint handling - most short code generation depends on this.
12453 This is the default.
12455 @item -mRcw
12456 @opindex mRcw
12457 Enable Rcw constraint handling - ccfsm condexec mostly depends on this.
12458 This is the default.
12460 @item -msize-level=@var{level}
12461 @opindex msize-level
12462 Fine-tune size optimization with regards to instruction lengths and alignment.
12463 The recognized values for @var{level} are:
12464 @table @samp
12465 @item 0
12466 No size optimization.  This level is deprecated and treated like @samp{1}.
12468 @item 1
12469 Short instructions are used opportunistically.
12471 @item 2
12472 In addition, alignment of loops and of code after barriers are dropped.
12474 @item 3
12475 In addition, optional data alignment is dropped, and the option @option{Os} is enabled.
12477 @end table
12479 This defaults to @samp{3} when @option{-Os} is in effect.  Otherwise,
12480 the behavior when this is not set is equivalent to level @samp{1}.
12482 @item -mtune=@var{cpu}
12483 @opindex mtune
12484 Set instruction scheduling parameters for @var{cpu}, overriding any implied
12485 by @option{-mcpu=}.
12487 Supported values for @var{cpu} are
12489 @table @samp
12490 @item ARC600
12491 Tune for ARC600 cpu.
12493 @item ARC601
12494 Tune for ARC601 cpu.
12496 @item ARC700
12497 Tune for ARC700 cpu with standard multiplier block.
12499 @item ARC700-xmac
12500 Tune for ARC700 cpu with XMAC block.
12502 @item ARC725D
12503 Tune for ARC725D cpu.
12505 @item ARC750D
12506 Tune for ARC750D cpu.
12508 @end table
12510 @item -mmultcost=@var{num}
12511 @opindex mmultcost
12512 Cost to assume for a multiply instruction, with @samp{4} being equal to a
12513 normal instruction.
12515 @item -munalign-prob-threshold=@var{probability}
12516 @opindex munalign-prob-threshold
12517 Set probability threshold for unaligning branches.
12518 When tuning for @samp{ARC700} and optimizing for speed, branches without
12519 filled delay slot are preferably emitted unaligned and long, unless
12520 profiling indicates that the probability for the branch to be taken
12521 is below @var{probability}.  @xref{Cross-profiling}.
12522 The default is (REG_BR_PROB_BASE/2), i.e.@: 5000.
12524 @end table
12526 The following options are maintained for backward compatibility, but
12527 are now deprecated and will be removed in a future release:
12529 @c Deprecated options
12530 @table @gcctabopt
12532 @item -margonaut
12533 @opindex margonaut
12534 Obsolete FPX.
12536 @item -mbig-endian
12537 @opindex mbig-endian
12538 @itemx -EB
12539 @opindex EB
12540 Compile code for big endian targets.  Use of these options is now
12541 deprecated.  Users wanting big-endian code, should use the
12542 @w{@code{arceb-elf32}} and @w{@code{arceb-linux-uclibc}} targets when
12543 building the tool chain, for which big-endian is the default.
12545 @item -mlittle-endian
12546 @opindex mlittle-endian
12547 @itemx -EL
12548 @opindex EL
12549 Compile code for little endian targets.  Use of these options is now
12550 deprecated.  Users wanting little-endian code should use the
12551 @w{@code{arc-elf32}} and @w{@code{arc-linux-uclibc}} targets when
12552 building the tool chain, for which little-endian is the default.
12554 @item -mbarrel_shifter
12555 @opindex mbarrel_shifter
12556 Replaced by @samp{-mbarrel-shifter}
12558 @item -mdpfp_compact
12559 @opindex mdpfp_compact
12560 Replaced by @samp{-mdpfp-compact}
12562 @item -mdpfp_fast
12563 @opindex mdpfp_fast
12564 Replaced by @samp{-mdpfp-fast}
12566 @item -mdsp_packa
12567 @opindex mdsp_packa
12568 Replaced by @samp{-mdsp-packa}
12570 @item -mEA
12571 @opindex mEA
12572 Replaced by @samp{-mea}
12574 @item -mmac_24
12575 @opindex mmac_24
12576 Replaced by @samp{-mmac-24}
12578 @item -mmac_d16
12579 @opindex mmac_d16
12580 Replaced by @samp{-mmac-d16}
12582 @item -mspfp_compact
12583 @opindex mspfp_compact
12584 Replaced by @samp{-mspfp-compact}
12586 @item -mspfp_fast
12587 @opindex mspfp_fast
12588 Replaced by @samp{-mspfp-fast}
12590 @item -mtune=@var{cpu}
12591 @opindex mtune
12592 Values @samp{arc600}, @samp{arc601}, @samp{arc700} and
12593 @samp{arc700-xmac} for @var{cpu} are replaced by @samp{ARC600},
12594 @samp{ARC601}, @samp{ARC700} and @samp{ARC700-xmac} respectively
12596 @item -multcost=@var{num}
12597 @opindex multcost
12598 Replaced by @samp{-mmultcost}.
12600 @end table
12602 @node ARM Options
12603 @subsection ARM Options
12604 @cindex ARM options
12606 These @samp{-m} options are defined for Advanced RISC Machines (ARM)
12607 architectures:
12609 @table @gcctabopt
12610 @item -mabi=@var{name}
12611 @opindex mabi
12612 Generate code for the specified ABI@.  Permissible values are: @samp{apcs-gnu},
12613 @samp{atpcs}, @samp{aapcs}, @samp{aapcs-linux} and @samp{iwmmxt}.
12615 @item -mapcs-frame
12616 @opindex mapcs-frame
12617 Generate a stack frame that is compliant with the ARM Procedure Call
12618 Standard for all functions, even if this is not strictly necessary for
12619 correct execution of the code.  Specifying @option{-fomit-frame-pointer}
12620 with this option causes the stack frames not to be generated for
12621 leaf functions.  The default is @option{-mno-apcs-frame}.
12623 @item -mapcs
12624 @opindex mapcs
12625 This is a synonym for @option{-mapcs-frame}.
12627 @ignore
12628 @c not currently implemented
12629 @item -mapcs-stack-check
12630 @opindex mapcs-stack-check
12631 Generate code to check the amount of stack space available upon entry to
12632 every function (that actually uses some stack space).  If there is
12633 insufficient space available then either the function
12634 @samp{__rt_stkovf_split_small} or @samp{__rt_stkovf_split_big} is
12635 called, depending upon the amount of stack space required.  The runtime
12636 system is required to provide these functions.  The default is
12637 @option{-mno-apcs-stack-check}, since this produces smaller code.
12639 @c not currently implemented
12640 @item -mapcs-float
12641 @opindex mapcs-float
12642 Pass floating-point arguments using the floating-point registers.  This is
12643 one of the variants of the APCS@.  This option is recommended if the
12644 target hardware has a floating-point unit or if a lot of floating-point
12645 arithmetic is going to be performed by the code.  The default is
12646 @option{-mno-apcs-float}, since the size of integer-only code is 
12647 slightly increased if @option{-mapcs-float} is used.
12649 @c not currently implemented
12650 @item -mapcs-reentrant
12651 @opindex mapcs-reentrant
12652 Generate reentrant, position-independent code.  The default is
12653 @option{-mno-apcs-reentrant}.
12654 @end ignore
12656 @item -mthumb-interwork
12657 @opindex mthumb-interwork
12658 Generate code that supports calling between the ARM and Thumb
12659 instruction sets.  Without this option, on pre-v5 architectures, the
12660 two instruction sets cannot be reliably used inside one program.  The
12661 default is @option{-mno-thumb-interwork}, since slightly larger code
12662 is generated when @option{-mthumb-interwork} is specified.  In AAPCS
12663 configurations this option is meaningless.
12665 @item -mno-sched-prolog
12666 @opindex mno-sched-prolog
12667 Prevent the reordering of instructions in the function prologue, or the
12668 merging of those instruction with the instructions in the function's
12669 body.  This means that all functions start with a recognizable set
12670 of instructions (or in fact one of a choice from a small set of
12671 different function prologues), and this information can be used to
12672 locate the start of functions inside an executable piece of code.  The
12673 default is @option{-msched-prolog}.
12675 @item -mfloat-abi=@var{name}
12676 @opindex mfloat-abi
12677 Specifies which floating-point ABI to use.  Permissible values
12678 are: @samp{soft}, @samp{softfp} and @samp{hard}.
12680 Specifying @samp{soft} causes GCC to generate output containing
12681 library calls for floating-point operations.
12682 @samp{softfp} allows the generation of code using hardware floating-point
12683 instructions, but still uses the soft-float calling conventions.
12684 @samp{hard} allows generation of floating-point instructions
12685 and uses FPU-specific calling conventions.
12687 The default depends on the specific target configuration.  Note that
12688 the hard-float and soft-float ABIs are not link-compatible; you must
12689 compile your entire program with the same ABI, and link with a
12690 compatible set of libraries.
12692 @item -mlittle-endian
12693 @opindex mlittle-endian
12694 Generate code for a processor running in little-endian mode.  This is
12695 the default for all standard configurations.
12697 @item -mbig-endian
12698 @opindex mbig-endian
12699 Generate code for a processor running in big-endian mode; the default is
12700 to compile code for a little-endian processor.
12702 @item -march=@var{name}
12703 @opindex march
12704 This specifies the name of the target ARM architecture.  GCC uses this
12705 name to determine what kind of instructions it can emit when generating
12706 assembly code.  This option can be used in conjunction with or instead
12707 of the @option{-mcpu=} option.  Permissible names are: @samp{armv2},
12708 @samp{armv2a}, @samp{armv3}, @samp{armv3m}, @samp{armv4}, @samp{armv4t},
12709 @samp{armv5}, @samp{armv5t}, @samp{armv5e}, @samp{armv5te},
12710 @samp{armv6}, @samp{armv6j},
12711 @samp{armv6t2}, @samp{armv6z}, @samp{armv6zk}, @samp{armv6-m},
12712 @samp{armv7}, @samp{armv7-a}, @samp{armv7-r}, @samp{armv7-m}, @samp{armv7e-m},
12713 @samp{armv7ve}, @samp{armv8-a}, @samp{armv8-a+crc},
12714 @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312}.
12716 @option{-march=armv7ve} is the armv7-a architecture with virtualization
12717 extensions.
12719 @option{-march=armv8-a+crc} enables code generation for the ARMv8-A
12720 architecture together with the optional CRC32 extensions.
12722 @option{-march=native} causes the compiler to auto-detect the architecture
12723 of the build computer.  At present, this feature is only supported on
12724 GNU/Linux, and not all architectures are recognized.  If the auto-detect
12725 is unsuccessful the option has no effect.
12727 @item -mtune=@var{name}
12728 @opindex mtune
12729 This option specifies the name of the target ARM processor for
12730 which GCC should tune the performance of the code.
12731 For some ARM implementations better performance can be obtained by using
12732 this option.
12733 Permissible names are: @samp{arm2}, @samp{arm250},
12734 @samp{arm3}, @samp{arm6}, @samp{arm60}, @samp{arm600}, @samp{arm610},
12735 @samp{arm620}, @samp{arm7}, @samp{arm7m}, @samp{arm7d}, @samp{arm7dm},
12736 @samp{arm7di}, @samp{arm7dmi}, @samp{arm70}, @samp{arm700},
12737 @samp{arm700i}, @samp{arm710}, @samp{arm710c}, @samp{arm7100},
12738 @samp{arm720},
12739 @samp{arm7500}, @samp{arm7500fe}, @samp{arm7tdmi}, @samp{arm7tdmi-s},
12740 @samp{arm710t}, @samp{arm720t}, @samp{arm740t},
12741 @samp{strongarm}, @samp{strongarm110}, @samp{strongarm1100},
12742 @samp{strongarm1110},
12743 @samp{arm8}, @samp{arm810}, @samp{arm9}, @samp{arm9e}, @samp{arm920},
12744 @samp{arm920t}, @samp{arm922t}, @samp{arm946e-s}, @samp{arm966e-s},
12745 @samp{arm968e-s}, @samp{arm926ej-s}, @samp{arm940t}, @samp{arm9tdmi},
12746 @samp{arm10tdmi}, @samp{arm1020t}, @samp{arm1026ej-s},
12747 @samp{arm10e}, @samp{arm1020e}, @samp{arm1022e},
12748 @samp{arm1136j-s}, @samp{arm1136jf-s}, @samp{mpcore}, @samp{mpcorenovfp},
12749 @samp{arm1156t2-s}, @samp{arm1156t2f-s}, @samp{arm1176jz-s}, @samp{arm1176jzf-s},
12750 @samp{cortex-a5}, @samp{cortex-a7}, @samp{cortex-a8}, @samp{cortex-a9},
12751 @samp{cortex-a12}, @samp{cortex-a15}, @samp{cortex-a53}, @samp{cortex-a57},
12752 @samp{cortex-r4},
12753 @samp{cortex-r4f}, @samp{cortex-r5}, @samp{cortex-r7}, @samp{cortex-m7},
12754 @samp{cortex-m4},
12755 @samp{cortex-m3},
12756 @samp{cortex-m1},
12757 @samp{cortex-m0},
12758 @samp{cortex-m0plus},
12759 @samp{cortex-m1.small-multiply},
12760 @samp{cortex-m0.small-multiply},
12761 @samp{cortex-m0plus.small-multiply},
12762 @samp{marvell-pj4},
12763 @samp{xscale}, @samp{iwmmxt}, @samp{iwmmxt2}, @samp{ep9312},
12764 @samp{fa526}, @samp{fa626},
12765 @samp{fa606te}, @samp{fa626te}, @samp{fmp626}, @samp{fa726te}.
12767 Additionally, this option can specify that GCC should tune the performance
12768 of the code for a big.LITTLE system.  Permissible names are:
12769 @samp{cortex-a15.cortex-a7}, @samp{cortex-a57.cortex-a53}.
12771 @option{-mtune=generic-@var{arch}} specifies that GCC should tune the
12772 performance for a blend of processors within architecture @var{arch}.
12773 The aim is to generate code that run well on the current most popular
12774 processors, balancing between optimizations that benefit some CPUs in the
12775 range, and avoiding performance pitfalls of other CPUs.  The effects of
12776 this option may change in future GCC versions as CPU models come and go.
12778 @option{-mtune=native} causes the compiler to auto-detect the CPU
12779 of the build computer.  At present, this feature is only supported on
12780 GNU/Linux, and not all architectures are recognized.  If the auto-detect is
12781 unsuccessful the option has no effect.
12783 @item -mcpu=@var{name}
12784 @opindex mcpu
12785 This specifies the name of the target ARM processor.  GCC uses this name
12786 to derive the name of the target ARM architecture (as if specified
12787 by @option{-march}) and the ARM processor type for which to tune for
12788 performance (as if specified by @option{-mtune}).  Where this option
12789 is used in conjunction with @option{-march} or @option{-mtune},
12790 those options take precedence over the appropriate part of this option.
12792 Permissible names for this option are the same as those for
12793 @option{-mtune}.
12795 @option{-mcpu=generic-@var{arch}} is also permissible, and is
12796 equivalent to @option{-march=@var{arch} -mtune=generic-@var{arch}}.
12797 See @option{-mtune} for more information.
12799 @option{-mcpu=native} causes the compiler to auto-detect the CPU
12800 of the build computer.  At present, this feature is only supported on
12801 GNU/Linux, and not all architectures are recognized.  If the auto-detect
12802 is unsuccessful the option has no effect.
12804 @item -mfpu=@var{name}
12805 @opindex mfpu
12806 This specifies what floating-point hardware (or hardware emulation) is
12807 available on the target.  Permissible names are: @samp{vfp}, @samp{vfpv3},
12808 @samp{vfpv3-fp16}, @samp{vfpv3-d16}, @samp{vfpv3-d16-fp16}, @samp{vfpv3xd},
12809 @samp{vfpv3xd-fp16}, @samp{neon}, @samp{neon-fp16}, @samp{vfpv4},
12810 @samp{vfpv4-d16}, @samp{fpv4-sp-d16}, @samp{neon-vfpv4},
12811 @samp{fpv5-d16}, @samp{fpv5-sp-d16},
12812 @samp{fp-armv8}, @samp{neon-fp-armv8}, and @samp{crypto-neon-fp-armv8}.
12814 If @option{-msoft-float} is specified this specifies the format of
12815 floating-point values.
12817 If the selected floating-point hardware includes the NEON extension
12818 (e.g. @option{-mfpu}=@samp{neon}), note that floating-point
12819 operations are not generated by GCC's auto-vectorization pass unless
12820 @option{-funsafe-math-optimizations} is also specified.  This is
12821 because NEON hardware does not fully implement the IEEE 754 standard for
12822 floating-point arithmetic (in particular denormal values are treated as
12823 zero), so the use of NEON instructions may lead to a loss of precision.
12825 @item -mfp16-format=@var{name}
12826 @opindex mfp16-format
12827 Specify the format of the @code{__fp16} half-precision floating-point type.
12828 Permissible names are @samp{none}, @samp{ieee}, and @samp{alternative};
12829 the default is @samp{none}, in which case the @code{__fp16} type is not
12830 defined.  @xref{Half-Precision}, for more information.
12832 @item -mstructure-size-boundary=@var{n}
12833 @opindex mstructure-size-boundary
12834 The sizes of all structures and unions are rounded up to a multiple
12835 of the number of bits set by this option.  Permissible values are 8, 32
12836 and 64.  The default value varies for different toolchains.  For the COFF
12837 targeted toolchain the default value is 8.  A value of 64 is only allowed
12838 if the underlying ABI supports it.
12840 Specifying a larger number can produce faster, more efficient code, but
12841 can also increase the size of the program.  Different values are potentially
12842 incompatible.  Code compiled with one value cannot necessarily expect to
12843 work with code or libraries compiled with another value, if they exchange
12844 information using structures or unions.
12846 @item -mabort-on-noreturn
12847 @opindex mabort-on-noreturn
12848 Generate a call to the function @code{abort} at the end of a
12849 @code{noreturn} function.  It is executed if the function tries to
12850 return.
12852 @item -mlong-calls
12853 @itemx -mno-long-calls
12854 @opindex mlong-calls
12855 @opindex mno-long-calls
12856 Tells the compiler to perform function calls by first loading the
12857 address of the function into a register and then performing a subroutine
12858 call on this register.  This switch is needed if the target function
12859 lies outside of the 64-megabyte addressing range of the offset-based
12860 version of subroutine call instruction.
12862 Even if this switch is enabled, not all function calls are turned
12863 into long calls.  The heuristic is that static functions, functions
12864 that have the @samp{short-call} attribute, functions that are inside
12865 the scope of a @samp{#pragma no_long_calls} directive, and functions whose
12866 definitions have already been compiled within the current compilation
12867 unit are not turned into long calls.  The exceptions to this rule are
12868 that weak function definitions, functions with the @samp{long-call}
12869 attribute or the @samp{section} attribute, and functions that are within
12870 the scope of a @samp{#pragma long_calls} directive are always
12871 turned into long calls.
12873 This feature is not enabled by default.  Specifying
12874 @option{-mno-long-calls} restores the default behavior, as does
12875 placing the function calls within the scope of a @samp{#pragma
12876 long_calls_off} directive.  Note these switches have no effect on how
12877 the compiler generates code to handle function calls via function
12878 pointers.
12880 @item -msingle-pic-base
12881 @opindex msingle-pic-base
12882 Treat the register used for PIC addressing as read-only, rather than
12883 loading it in the prologue for each function.  The runtime system is
12884 responsible for initializing this register with an appropriate value
12885 before execution begins.
12887 @item -mpic-register=@var{reg}
12888 @opindex mpic-register
12889 Specify the register to be used for PIC addressing.
12890 For standard PIC base case, the default will be any suitable register
12891 determined by compiler.  For single PIC base case, the default is
12892 @samp{R9} if target is EABI based or stack-checking is enabled,
12893 otherwise the default is @samp{R10}.
12895 @item -mpic-data-is-text-relative
12896 @opindex mpic-data-is-text-relative
12897 Assume that each data segments are relative to text segment at load time.
12898 Therefore, it permits addressing data using PC-relative operations.
12899 This option is on by default for targets other than VxWorks RTP.
12901 @item -mpoke-function-name
12902 @opindex mpoke-function-name
12903 Write the name of each function into the text section, directly
12904 preceding the function prologue.  The generated code is similar to this:
12906 @smallexample
12907      t0
12908          .ascii "arm_poke_function_name", 0
12909          .align
12910      t1
12911          .word 0xff000000 + (t1 - t0)
12912      arm_poke_function_name
12913          mov     ip, sp
12914          stmfd   sp!, @{fp, ip, lr, pc@}
12915          sub     fp, ip, #4
12916 @end smallexample
12918 When performing a stack backtrace, code can inspect the value of
12919 @code{pc} stored at @code{fp + 0}.  If the trace function then looks at
12920 location @code{pc - 12} and the top 8 bits are set, then we know that
12921 there is a function name embedded immediately preceding this location
12922 and has length @code{((pc[-3]) & 0xff000000)}.
12924 @item -mthumb
12925 @itemx -marm
12926 @opindex marm
12927 @opindex mthumb
12929 Select between generating code that executes in ARM and Thumb
12930 states.  The default for most configurations is to generate code
12931 that executes in ARM state, but the default can be changed by
12932 configuring GCC with the @option{--with-mode=}@var{state}
12933 configure option.
12935 @item -mtpcs-frame
12936 @opindex mtpcs-frame
12937 Generate a stack frame that is compliant with the Thumb Procedure Call
12938 Standard for all non-leaf functions.  (A leaf function is one that does
12939 not call any other functions.)  The default is @option{-mno-tpcs-frame}.
12941 @item -mtpcs-leaf-frame
12942 @opindex mtpcs-leaf-frame
12943 Generate a stack frame that is compliant with the Thumb Procedure Call
12944 Standard for all leaf functions.  (A leaf function is one that does
12945 not call any other functions.)  The default is @option{-mno-apcs-leaf-frame}.
12947 @item -mcallee-super-interworking
12948 @opindex mcallee-super-interworking
12949 Gives all externally visible functions in the file being compiled an ARM
12950 instruction set header which switches to Thumb mode before executing the
12951 rest of the function.  This allows these functions to be called from
12952 non-interworking code.  This option is not valid in AAPCS configurations
12953 because interworking is enabled by default.
12955 @item -mcaller-super-interworking
12956 @opindex mcaller-super-interworking
12957 Allows calls via function pointers (including virtual functions) to
12958 execute correctly regardless of whether the target code has been
12959 compiled for interworking or not.  There is a small overhead in the cost
12960 of executing a function pointer if this option is enabled.  This option
12961 is not valid in AAPCS configurations because interworking is enabled
12962 by default.
12964 @item -mtp=@var{name}
12965 @opindex mtp
12966 Specify the access model for the thread local storage pointer.  The valid
12967 models are @option{soft}, which generates calls to @code{__aeabi_read_tp},
12968 @option{cp15}, which fetches the thread pointer from @code{cp15} directly
12969 (supported in the arm6k architecture), and @option{auto}, which uses the
12970 best available method for the selected processor.  The default setting is
12971 @option{auto}.
12973 @item -mtls-dialect=@var{dialect}
12974 @opindex mtls-dialect
12975 Specify the dialect to use for accessing thread local storage.  Two
12976 @var{dialect}s are supported---@samp{gnu} and @samp{gnu2}.  The
12977 @samp{gnu} dialect selects the original GNU scheme for supporting
12978 local and global dynamic TLS models.  The @samp{gnu2} dialect
12979 selects the GNU descriptor scheme, which provides better performance
12980 for shared libraries.  The GNU descriptor scheme is compatible with
12981 the original scheme, but does require new assembler, linker and
12982 library support.  Initial and local exec TLS models are unaffected by
12983 this option and always use the original scheme.
12985 @item -mword-relocations
12986 @opindex mword-relocations
12987 Only generate absolute relocations on word-sized values (i.e. R_ARM_ABS32).
12988 This is enabled by default on targets (uClinux, SymbianOS) where the runtime
12989 loader imposes this restriction, and when @option{-fpic} or @option{-fPIC}
12990 is specified.
12992 @item -mfix-cortex-m3-ldrd
12993 @opindex mfix-cortex-m3-ldrd
12994 Some Cortex-M3 cores can cause data corruption when @code{ldrd} instructions
12995 with overlapping destination and base registers are used.  This option avoids
12996 generating these instructions.  This option is enabled by default when
12997 @option{-mcpu=cortex-m3} is specified.
12999 @item -munaligned-access
13000 @itemx -mno-unaligned-access
13001 @opindex munaligned-access
13002 @opindex mno-unaligned-access
13003 Enables (or disables) reading and writing of 16- and 32- bit values
13004 from addresses that are not 16- or 32- bit aligned.  By default
13005 unaligned access is disabled for all pre-ARMv6 and all ARMv6-M
13006 architectures, and enabled for all other architectures.  If unaligned
13007 access is not enabled then words in packed data structures will be
13008 accessed a byte at a time.
13010 The ARM attribute @code{Tag_CPU_unaligned_access} will be set in the
13011 generated object file to either true or false, depending upon the
13012 setting of this option.  If unaligned access is enabled then the
13013 preprocessor symbol @code{__ARM_FEATURE_UNALIGNED} will also be
13014 defined.
13016 @item -mneon-for-64bits
13017 @opindex mneon-for-64bits
13018 Enables using Neon to handle scalar 64-bits operations. This is
13019 disabled by default since the cost of moving data from core registers
13020 to Neon is high.
13022 @item -mslow-flash-data
13023 @opindex mslow-flash-data
13024 Assume loading data from flash is slower than fetching instruction.
13025 Therefore literal load is minimized for better performance.
13026 This option is only supported when compiling for ARMv7 M-profile and
13027 off by default.
13029 @item -mrestrict-it
13030 @opindex mrestrict-it
13031 Restricts generation of IT blocks to conform to the rules of ARMv8.
13032 IT blocks can only contain a single 16-bit instruction from a select
13033 set of instructions. This option is on by default for ARMv8 Thumb mode.
13034 @end table
13036 @node AVR Options
13037 @subsection AVR Options
13038 @cindex AVR Options
13040 These options are defined for AVR implementations:
13042 @table @gcctabopt
13043 @item -mmcu=@var{mcu}
13044 @opindex mmcu
13045 Specify Atmel AVR instruction set architectures (ISA) or MCU type.
13047 The default for this option is@tie{}@code{avr2}.
13049 GCC supports the following AVR devices and ISAs:
13051 @include avr-mmcu.texi
13053 @item -maccumulate-args
13054 @opindex maccumulate-args
13055 Accumulate outgoing function arguments and acquire/release the needed
13056 stack space for outgoing function arguments once in function
13057 prologue/epilogue.  Without this option, outgoing arguments are pushed
13058 before calling a function and popped afterwards.
13060 Popping the arguments after the function call can be expensive on
13061 AVR so that accumulating the stack space might lead to smaller
13062 executables because arguments need not to be removed from the
13063 stack after such a function call.
13065 This option can lead to reduced code size for functions that perform
13066 several calls to functions that get their arguments on the stack like
13067 calls to printf-like functions.
13069 @item -mbranch-cost=@var{cost}
13070 @opindex mbranch-cost
13071 Set the branch costs for conditional branch instructions to
13072 @var{cost}.  Reasonable values for @var{cost} are small, non-negative
13073 integers. The default branch cost is 0.
13075 @item -mcall-prologues
13076 @opindex mcall-prologues
13077 Functions prologues/epilogues are expanded as calls to appropriate
13078 subroutines.  Code size is smaller.
13080 @item -mint8
13081 @opindex mint8
13082 Assume @code{int} to be 8-bit integer.  This affects the sizes of all types: a
13083 @code{char} is 1 byte, an @code{int} is 1 byte, a @code{long} is 2 bytes,
13084 and @code{long long} is 4 bytes.  Please note that this option does not
13085 conform to the C standards, but it results in smaller code
13086 size.
13088 @item -mno-interrupts
13089 @opindex mno-interrupts
13090 Generated code is not compatible with hardware interrupts.
13091 Code size is smaller.
13093 @item -mrelax
13094 @opindex mrelax
13095 Try to replace @code{CALL} resp.@: @code{JMP} instruction by the shorter
13096 @code{RCALL} resp.@: @code{RJMP} instruction if applicable.
13097 Setting @code{-mrelax} just adds the @code{--relax} option to the
13098 linker command line when the linker is called.
13100 Jump relaxing is performed by the linker because jump offsets are not
13101 known before code is located. Therefore, the assembler code generated by the
13102 compiler is the same, but the instructions in the executable may
13103 differ from instructions in the assembler code.
13105 Relaxing must be turned on if linker stubs are needed, see the
13106 section on @code{EIND} and linker stubs below.
13108 @item -msp8
13109 @opindex msp8
13110 Treat the stack pointer register as an 8-bit register,
13111 i.e.@: assume the high byte of the stack pointer is zero.
13112 In general, you don't need to set this option by hand.
13114 This option is used internally by the compiler to select and
13115 build multilibs for architectures @code{avr2} and @code{avr25}.
13116 These architectures mix devices with and without @code{SPH}.
13117 For any setting other than @code{-mmcu=avr2} or @code{-mmcu=avr25}
13118 the compiler driver will add or remove this option from the compiler
13119 proper's command line, because the compiler then knows if the device
13120 or architecture has an 8-bit stack pointer and thus no @code{SPH}
13121 register or not.
13123 @item -mstrict-X
13124 @opindex mstrict-X
13125 Use address register @code{X} in a way proposed by the hardware.  This means
13126 that @code{X} is only used in indirect, post-increment or
13127 pre-decrement addressing.
13129 Without this option, the @code{X} register may be used in the same way
13130 as @code{Y} or @code{Z} which then is emulated by additional
13131 instructions.  
13132 For example, loading a value with @code{X+const} addressing with a
13133 small non-negative @code{const < 64} to a register @var{Rn} is
13134 performed as
13136 @example
13137 adiw r26, const   ; X += const
13138 ld   @var{Rn}, X        ; @var{Rn} = *X
13139 sbiw r26, const   ; X -= const
13140 @end example
13142 @item -mtiny-stack
13143 @opindex mtiny-stack
13144 Only change the lower 8@tie{}bits of the stack pointer.
13146 @item -Waddr-space-convert
13147 @opindex Waddr-space-convert
13148 Warn about conversions between address spaces in the case where the
13149 resulting address space is not contained in the incoming address space.
13150 @end table
13152 @subsubsection @code{EIND} and Devices with more than 128 Ki Bytes of Flash
13153 @cindex @code{EIND}
13154 Pointers in the implementation are 16@tie{}bits wide.
13155 The address of a function or label is represented as word address so
13156 that indirect jumps and calls can target any code address in the
13157 range of 64@tie{}Ki words.
13159 In order to facilitate indirect jump on devices with more than 128@tie{}Ki
13160 bytes of program memory space, there is a special function register called
13161 @code{EIND} that serves as most significant part of the target address
13162 when @code{EICALL} or @code{EIJMP} instructions are used.
13164 Indirect jumps and calls on these devices are handled as follows by
13165 the compiler and are subject to some limitations:
13167 @itemize @bullet
13169 @item
13170 The compiler never sets @code{EIND}.
13172 @item
13173 The compiler uses @code{EIND} implicitely in @code{EICALL}/@code{EIJMP}
13174 instructions or might read @code{EIND} directly in order to emulate an
13175 indirect call/jump by means of a @code{RET} instruction.
13177 @item
13178 The compiler assumes that @code{EIND} never changes during the startup
13179 code or during the application. In particular, @code{EIND} is not
13180 saved/restored in function or interrupt service routine
13181 prologue/epilogue.
13183 @item
13184 For indirect calls to functions and computed goto, the linker
13185 generates @emph{stubs}. Stubs are jump pads sometimes also called
13186 @emph{trampolines}. Thus, the indirect call/jump jumps to such a stub.
13187 The stub contains a direct jump to the desired address.
13189 @item
13190 Linker relaxation must be turned on so that the linker will generate
13191 the stubs correctly an all situaltion. See the compiler option
13192 @code{-mrelax} and the linler option @code{--relax}.
13193 There are corner cases where the linker is supposed to generate stubs
13194 but aborts without relaxation and without a helpful error message.
13196 @item
13197 The default linker script is arranged for code with @code{EIND = 0}.
13198 If code is supposed to work for a setup with @code{EIND != 0}, a custom
13199 linker script has to be used in order to place the sections whose
13200 name start with @code{.trampolines} into the segment where @code{EIND}
13201 points to.
13203 @item
13204 The startup code from libgcc never sets @code{EIND}.
13205 Notice that startup code is a blend of code from libgcc and AVR-LibC.
13206 For the impact of AVR-LibC on @code{EIND}, see the
13207 @w{@uref{http://nongnu.org/avr-libc/user-manual/,AVR-LibC user manual}}.
13209 @item
13210 It is legitimate for user-specific startup code to set up @code{EIND}
13211 early, for example by means of initialization code located in
13212 section @code{.init3}. Such code runs prior to general startup code
13213 that initializes RAM and calls constructors, but after the bit
13214 of startup code from AVR-LibC that sets @code{EIND} to the segment
13215 where the vector table is located.
13216 @example
13217 #include <avr/io.h>
13219 static void
13220 __attribute__((section(".init3"),naked,used,no_instrument_function))
13221 init3_set_eind (void)
13223   __asm volatile ("ldi r24,pm_hh8(__trampolines_start)\n\t"
13224                   "out %i0,r24" :: "n" (&EIND) : "r24","memory");
13226 @end example
13228 @noindent
13229 The @code{__trampolines_start} symbol is defined in the linker script.
13231 @item
13232 Stubs are generated automatically by the linker if
13233 the following two conditions are met:
13234 @itemize @minus
13236 @item The address of a label is taken by means of the @code{gs} modifier
13237 (short for @emph{generate stubs}) like so:
13238 @example
13239 LDI r24, lo8(gs(@var{func}))
13240 LDI r25, hi8(gs(@var{func}))
13241 @end example
13242 @item The final location of that label is in a code segment
13243 @emph{outside} the segment where the stubs are located.
13244 @end itemize
13246 @item
13247 The compiler emits such @code{gs} modifiers for code labels in the
13248 following situations:
13249 @itemize @minus
13250 @item Taking address of a function or code label.
13251 @item Computed goto.
13252 @item If prologue-save function is used, see @option{-mcall-prologues}
13253 command-line option.
13254 @item Switch/case dispatch tables. If you do not want such dispatch
13255 tables you can specify the @option{-fno-jump-tables} command-line option.
13256 @item C and C++ constructors/destructors called during startup/shutdown.
13257 @item If the tools hit a @code{gs()} modifier explained above.
13258 @end itemize
13260 @item
13261 Jumping to non-symbolic addresses like so is @emph{not} supported:
13263 @example
13264 int main (void)
13266     /* Call function at word address 0x2 */
13267     return ((int(*)(void)) 0x2)();
13269 @end example
13271 Instead, a stub has to be set up, i.e.@: the function has to be called
13272 through a symbol (@code{func_4} in the example):
13274 @example
13275 int main (void)
13277     extern int func_4 (void);
13279     /* Call function at byte address 0x4 */
13280     return func_4();
13282 @end example
13284 and the application be linked with @code{-Wl,--defsym,func_4=0x4}.
13285 Alternatively, @code{func_4} can be defined in the linker script.
13286 @end itemize
13288 @subsubsection Handling of the @code{RAMPD}, @code{RAMPX}, @code{RAMPY} and @code{RAMPZ} Special Function Registers
13289 @cindex @code{RAMPD}
13290 @cindex @code{RAMPX}
13291 @cindex @code{RAMPY}
13292 @cindex @code{RAMPZ}
13293 Some AVR devices support memories larger than the 64@tie{}KiB range
13294 that can be accessed with 16-bit pointers.  To access memory locations
13295 outside this 64@tie{}KiB range, the contentent of a @code{RAMP}
13296 register is used as high part of the address:
13297 The @code{X}, @code{Y}, @code{Z} address register is concatenated
13298 with the @code{RAMPX}, @code{RAMPY}, @code{RAMPZ} special function
13299 register, respectively, to get a wide address. Similarly,
13300 @code{RAMPD} is used together with direct addressing.
13302 @itemize
13303 @item
13304 The startup code initializes the @code{RAMP} special function
13305 registers with zero.
13307 @item
13308 If a @ref{AVR Named Address Spaces,named address space} other than
13309 generic or @code{__flash} is used, then @code{RAMPZ} is set
13310 as needed before the operation.
13312 @item
13313 If the device supports RAM larger than 64@tie{}KiB and the compiler
13314 needs to change @code{RAMPZ} to accomplish an operation, @code{RAMPZ}
13315 is reset to zero after the operation.
13317 @item
13318 If the device comes with a specific @code{RAMP} register, the ISR
13319 prologue/epilogue saves/restores that SFR and initializes it with
13320 zero in case the ISR code might (implicitly) use it.
13322 @item
13323 RAM larger than 64@tie{}KiB is not supported by GCC for AVR targets.
13324 If you use inline assembler to read from locations outside the
13325 16-bit address range and change one of the @code{RAMP} registers,
13326 you must reset it to zero after the access.
13328 @end itemize
13330 @subsubsection AVR Built-in Macros
13332 GCC defines several built-in macros so that the user code can test
13333 for the presence or absence of features.  Almost any of the following
13334 built-in macros are deduced from device capabilities and thus
13335 triggered by the @code{-mmcu=} command-line option.
13337 For even more AVR-specific built-in macros see
13338 @ref{AVR Named Address Spaces} and @ref{AVR Built-in Functions}.
13340 @table @code
13342 @item __AVR_ARCH__
13343 Build-in macro that resolves to a decimal number that identifies the
13344 architecture and depends on the @code{-mmcu=@var{mcu}} option.
13345 Possible values are:
13347 @code{2}, @code{25}, @code{3}, @code{31}, @code{35},
13348 @code{4}, @code{5}, @code{51}, @code{6}, @code{102}, @code{104},
13349 @code{105}, @code{106}, @code{107}
13351 for @var{mcu}=@code{avr2}, @code{avr25}, @code{avr3},
13352 @code{avr31}, @code{avr35}, @code{avr4}, @code{avr5}, @code{avr51},
13353 @code{avr6}, @code{avrxmega2}, @code{avrxmega4}, @code{avrxmega5},
13354 @code{avrxmega6}, @code{avrxmega7}, respectively.
13355 If @var{mcu} specifies a device, this built-in macro is set
13356 accordingly. For example, with @code{-mmcu=atmega8} the macro will be
13357 defined to @code{4}.
13359 @item __AVR_@var{Device}__
13360 Setting @code{-mmcu=@var{device}} defines this built-in macro which reflects
13361 the device's name. For example, @code{-mmcu=atmega8} defines the
13362 built-in macro @code{__AVR_ATmega8__}, @code{-mmcu=attiny261a} defines
13363 @code{__AVR_ATtiny261A__}, etc.
13365 The built-in macros' names follow
13366 the scheme @code{__AVR_@var{Device}__} where @var{Device} is
13367 the device name as from the AVR user manual. The difference between
13368 @var{Device} in the built-in macro and @var{device} in
13369 @code{-mmcu=@var{device}} is that the latter is always lowercase.
13371 If @var{device} is not a device but only a core architecture like
13372 @code{avr51}, this macro will not be defined.
13374 @item   __AVR_DEVICE_NAME__
13375 Setting @code{-mmcu=@var{device}} defines this built-in macro to
13376 the device's name. For example, with @code{-mmcu=atmega8} the macro
13377 will be defined to @code{atmega8}.
13379 If @var{device} is not a device but only a core architecture like
13380 @code{avr51}, this macro will not be defined.
13382 @item __AVR_XMEGA__
13383 The device / architecture belongs to the XMEGA family of devices.
13385 @item __AVR_HAVE_ELPM__
13386 The device has the the @code{ELPM} instruction.
13388 @item __AVR_HAVE_ELPMX__
13389 The device has the @code{ELPM R@var{n},Z} and @code{ELPM
13390 R@var{n},Z+} instructions.
13392 @item __AVR_HAVE_MOVW__
13393 The device has the @code{MOVW} instruction to perform 16-bit
13394 register-register moves.
13396 @item __AVR_HAVE_LPMX__
13397 The device has the @code{LPM R@var{n},Z} and
13398 @code{LPM R@var{n},Z+} instructions.
13400 @item __AVR_HAVE_MUL__
13401 The device has a hardware multiplier. 
13403 @item __AVR_HAVE_JMP_CALL__
13404 The device has the @code{JMP} and @code{CALL} instructions.
13405 This is the case for devices with at least 16@tie{}KiB of program
13406 memory.
13408 @item __AVR_HAVE_EIJMP_EICALL__
13409 @itemx __AVR_3_BYTE_PC__
13410 The device has the @code{EIJMP} and @code{EICALL} instructions.
13411 This is the case for devices with more than 128@tie{}KiB of program memory.
13412 This also means that the program counter
13413 (PC) is 3@tie{}bytes wide.
13415 @item __AVR_2_BYTE_PC__
13416 The program counter (PC) is 2@tie{}bytes wide. This is the case for devices
13417 with up to 128@tie{}KiB of program memory.
13419 @item __AVR_HAVE_8BIT_SP__
13420 @itemx __AVR_HAVE_16BIT_SP__
13421 The stack pointer (SP) register is treated as 8-bit respectively
13422 16-bit register by the compiler.
13423 The definition of these macros is affected by @code{-mtiny-stack}.
13425 @item __AVR_HAVE_SPH__
13426 @itemx __AVR_SP8__
13427 The device has the SPH (high part of stack pointer) special function
13428 register or has an 8-bit stack pointer, respectively.
13429 The definition of these macros is affected by @code{-mmcu=} and
13430 in the cases of @code{-mmcu=avr2} and @code{-mmcu=avr25} also
13431 by @code{-msp8}.
13433 @item __AVR_HAVE_RAMPD__
13434 @itemx __AVR_HAVE_RAMPX__
13435 @itemx __AVR_HAVE_RAMPY__
13436 @itemx __AVR_HAVE_RAMPZ__
13437 The device has the @code{RAMPD}, @code{RAMPX}, @code{RAMPY},
13438 @code{RAMPZ} special function register, respectively.
13440 @item __NO_INTERRUPTS__
13441 This macro reflects the @code{-mno-interrupts} command line option.
13443 @item __AVR_ERRATA_SKIP__
13444 @itemx __AVR_ERRATA_SKIP_JMP_CALL__
13445 Some AVR devices (AT90S8515, ATmega103) must not skip 32-bit
13446 instructions because of a hardware erratum.  Skip instructions are
13447 @code{SBRS}, @code{SBRC}, @code{SBIS}, @code{SBIC} and @code{CPSE}.
13448 The second macro is only defined if @code{__AVR_HAVE_JMP_CALL__} is also
13449 set.
13451 @item __AVR_ISA_RMW__
13452 The device has Read-Modify-Write instructions (XCH, LAC, LAS and LAT).
13454 @item __AVR_SFR_OFFSET__=@var{offset}
13455 Instructions that can address I/O special function registers directly
13456 like @code{IN}, @code{OUT}, @code{SBI}, etc.@: may use a different
13457 address as if addressed by an instruction to access RAM like @code{LD}
13458 or @code{STS}. This offset depends on the device architecture and has
13459 to be subtracted from the RAM address in order to get the
13460 respective I/O@tie{}address.
13462 @item __WITH_AVRLIBC__
13463 The compiler is configured to be used together with AVR-Libc.
13464 See the @code{--with-avrlibc} configure option.
13466 @end table
13468 @node Blackfin Options
13469 @subsection Blackfin Options
13470 @cindex Blackfin Options
13472 @table @gcctabopt
13473 @item -mcpu=@var{cpu}@r{[}-@var{sirevision}@r{]}
13474 @opindex mcpu=
13475 Specifies the name of the target Blackfin processor.  Currently, @var{cpu}
13476 can be one of @samp{bf512}, @samp{bf514}, @samp{bf516}, @samp{bf518},
13477 @samp{bf522}, @samp{bf523}, @samp{bf524}, @samp{bf525}, @samp{bf526},
13478 @samp{bf527}, @samp{bf531}, @samp{bf532}, @samp{bf533},
13479 @samp{bf534}, @samp{bf536}, @samp{bf537}, @samp{bf538}, @samp{bf539},
13480 @samp{bf542}, @samp{bf544}, @samp{bf547}, @samp{bf548}, @samp{bf549},
13481 @samp{bf542m}, @samp{bf544m}, @samp{bf547m}, @samp{bf548m}, @samp{bf549m},
13482 @samp{bf561}, @samp{bf592}.
13484 The optional @var{sirevision} specifies the silicon revision of the target
13485 Blackfin processor.  Any workarounds available for the targeted silicon revision
13486 are enabled.  If @var{sirevision} is @samp{none}, no workarounds are enabled.
13487 If @var{sirevision} is @samp{any}, all workarounds for the targeted processor
13488 are enabled.  The @code{__SILICON_REVISION__} macro is defined to two
13489 hexadecimal digits representing the major and minor numbers in the silicon
13490 revision.  If @var{sirevision} is @samp{none}, the @code{__SILICON_REVISION__}
13491 is not defined.  If @var{sirevision} is @samp{any}, the
13492 @code{__SILICON_REVISION__} is defined to be @code{0xffff}.
13493 If this optional @var{sirevision} is not used, GCC assumes the latest known
13494 silicon revision of the targeted Blackfin processor.
13496 GCC defines a preprocessor macro for the specified @var{cpu}.
13497 For the @samp{bfin-elf} toolchain, this option causes the hardware BSP
13498 provided by libgloss to be linked in if @option{-msim} is not given.
13500 Without this option, @samp{bf532} is used as the processor by default.
13502 Note that support for @samp{bf561} is incomplete.  For @samp{bf561},
13503 only the preprocessor macro is defined.
13505 @item -msim
13506 @opindex msim
13507 Specifies that the program will be run on the simulator.  This causes
13508 the simulator BSP provided by libgloss to be linked in.  This option
13509 has effect only for @samp{bfin-elf} toolchain.
13510 Certain other options, such as @option{-mid-shared-library} and
13511 @option{-mfdpic}, imply @option{-msim}.
13513 @item -momit-leaf-frame-pointer
13514 @opindex momit-leaf-frame-pointer
13515 Don't keep the frame pointer in a register for leaf functions.  This
13516 avoids the instructions to save, set up and restore frame pointers and
13517 makes an extra register available in leaf functions.  The option
13518 @option{-fomit-frame-pointer} removes the frame pointer for all functions,
13519 which might make debugging harder.
13521 @item -mspecld-anomaly
13522 @opindex mspecld-anomaly
13523 When enabled, the compiler ensures that the generated code does not
13524 contain speculative loads after jump instructions. If this option is used,
13525 @code{__WORKAROUND_SPECULATIVE_LOADS} is defined.
13527 @item -mno-specld-anomaly
13528 @opindex mno-specld-anomaly
13529 Don't generate extra code to prevent speculative loads from occurring.
13531 @item -mcsync-anomaly
13532 @opindex mcsync-anomaly
13533 When enabled, the compiler ensures that the generated code does not
13534 contain CSYNC or SSYNC instructions too soon after conditional branches.
13535 If this option is used, @code{__WORKAROUND_SPECULATIVE_SYNCS} is defined.
13537 @item -mno-csync-anomaly
13538 @opindex mno-csync-anomaly
13539 Don't generate extra code to prevent CSYNC or SSYNC instructions from
13540 occurring too soon after a conditional branch.
13542 @item -mlow-64k
13543 @opindex mlow-64k
13544 When enabled, the compiler is free to take advantage of the knowledge that
13545 the entire program fits into the low 64k of memory.
13547 @item -mno-low-64k
13548 @opindex mno-low-64k
13549 Assume that the program is arbitrarily large.  This is the default.
13551 @item -mstack-check-l1
13552 @opindex mstack-check-l1
13553 Do stack checking using information placed into L1 scratchpad memory by the
13554 uClinux kernel.
13556 @item -mid-shared-library
13557 @opindex mid-shared-library
13558 Generate code that supports shared libraries via the library ID method.
13559 This allows for execute in place and shared libraries in an environment
13560 without virtual memory management.  This option implies @option{-fPIC}.
13561 With a @samp{bfin-elf} target, this option implies @option{-msim}.
13563 @item -mno-id-shared-library
13564 @opindex mno-id-shared-library
13565 Generate code that doesn't assume ID-based shared libraries are being used.
13566 This is the default.
13568 @item -mleaf-id-shared-library
13569 @opindex mleaf-id-shared-library
13570 Generate code that supports shared libraries via the library ID method,
13571 but assumes that this library or executable won't link against any other
13572 ID shared libraries.  That allows the compiler to use faster code for jumps
13573 and calls.
13575 @item -mno-leaf-id-shared-library
13576 @opindex mno-leaf-id-shared-library
13577 Do not assume that the code being compiled won't link against any ID shared
13578 libraries.  Slower code is generated for jump and call insns.
13580 @item -mshared-library-id=n
13581 @opindex mshared-library-id
13582 Specifies the identification number of the ID-based shared library being
13583 compiled.  Specifying a value of 0 generates more compact code; specifying
13584 other values forces the allocation of that number to the current
13585 library but is no more space- or time-efficient than omitting this option.
13587 @item -msep-data
13588 @opindex msep-data
13589 Generate code that allows the data segment to be located in a different
13590 area of memory from the text segment.  This allows for execute in place in
13591 an environment without virtual memory management by eliminating relocations
13592 against the text section.
13594 @item -mno-sep-data
13595 @opindex mno-sep-data
13596 Generate code that assumes that the data segment follows the text segment.
13597 This is the default.
13599 @item -mlong-calls
13600 @itemx -mno-long-calls
13601 @opindex mlong-calls
13602 @opindex mno-long-calls
13603 Tells the compiler to perform function calls by first loading the
13604 address of the function into a register and then performing a subroutine
13605 call on this register.  This switch is needed if the target function
13606 lies outside of the 24-bit addressing range of the offset-based
13607 version of subroutine call instruction.
13609 This feature is not enabled by default.  Specifying
13610 @option{-mno-long-calls} restores the default behavior.  Note these
13611 switches have no effect on how the compiler generates code to handle
13612 function calls via function pointers.
13614 @item -mfast-fp
13615 @opindex mfast-fp
13616 Link with the fast floating-point library. This library relaxes some of
13617 the IEEE floating-point standard's rules for checking inputs against
13618 Not-a-Number (NAN), in the interest of performance.
13620 @item -minline-plt
13621 @opindex minline-plt
13622 Enable inlining of PLT entries in function calls to functions that are
13623 not known to bind locally.  It has no effect without @option{-mfdpic}.
13625 @item -mmulticore
13626 @opindex mmulticore
13627 Build a standalone application for multicore Blackfin processors. 
13628 This option causes proper start files and link scripts supporting 
13629 multicore to be used, and defines the macro @code{__BFIN_MULTICORE}. 
13630 It can only be used with @option{-mcpu=bf561@r{[}-@var{sirevision}@r{]}}. 
13632 This option can be used with @option{-mcorea} or @option{-mcoreb}, which
13633 selects the one-application-per-core programming model.  Without
13634 @option{-mcorea} or @option{-mcoreb}, the single-application/dual-core
13635 programming model is used. In this model, the main function of Core B
13636 should be named as @code{coreb_main}.
13638 If this option is not used, the single-core application programming
13639 model is used.
13641 @item -mcorea
13642 @opindex mcorea
13643 Build a standalone application for Core A of BF561 when using
13644 the one-application-per-core programming model. Proper start files
13645 and link scripts are used to support Core A, and the macro
13646 @code{__BFIN_COREA} is defined.
13647 This option can only be used in conjunction with @option{-mmulticore}.
13649 @item -mcoreb
13650 @opindex mcoreb
13651 Build a standalone application for Core B of BF561 when using
13652 the one-application-per-core programming model. Proper start files
13653 and link scripts are used to support Core B, and the macro
13654 @code{__BFIN_COREB} is defined. When this option is used, @code{coreb_main}
13655 should be used instead of @code{main}. 
13656 This option can only be used in conjunction with @option{-mmulticore}.
13658 @item -msdram
13659 @opindex msdram
13660 Build a standalone application for SDRAM. Proper start files and
13661 link scripts are used to put the application into SDRAM, and the macro
13662 @code{__BFIN_SDRAM} is defined.
13663 The loader should initialize SDRAM before loading the application.
13665 @item -micplb
13666 @opindex micplb
13667 Assume that ICPLBs are enabled at run time.  This has an effect on certain
13668 anomaly workarounds.  For Linux targets, the default is to assume ICPLBs
13669 are enabled; for standalone applications the default is off.
13670 @end table
13672 @node C6X Options
13673 @subsection C6X Options
13674 @cindex C6X Options
13676 @table @gcctabopt
13677 @item -march=@var{name}
13678 @opindex march
13679 This specifies the name of the target architecture.  GCC uses this
13680 name to determine what kind of instructions it can emit when generating
13681 assembly code.  Permissible names are: @samp{c62x},
13682 @samp{c64x}, @samp{c64x+}, @samp{c67x}, @samp{c67x+}, @samp{c674x}.
13684 @item -mbig-endian
13685 @opindex mbig-endian
13686 Generate code for a big-endian target.
13688 @item -mlittle-endian
13689 @opindex mlittle-endian
13690 Generate code for a little-endian target.  This is the default.
13692 @item -msim
13693 @opindex msim
13694 Choose startup files and linker script suitable for the simulator.
13696 @item -msdata=default
13697 @opindex msdata=default
13698 Put small global and static data in the @samp{.neardata} section,
13699 which is pointed to by register @code{B14}.  Put small uninitialized
13700 global and static data in the @samp{.bss} section, which is adjacent
13701 to the @samp{.neardata} section.  Put small read-only data into the
13702 @samp{.rodata} section.  The corresponding sections used for large
13703 pieces of data are @samp{.fardata}, @samp{.far} and @samp{.const}.
13705 @item -msdata=all
13706 @opindex msdata=all
13707 Put all data, not just small objects, into the sections reserved for
13708 small data, and use addressing relative to the @code{B14} register to
13709 access them.
13711 @item -msdata=none
13712 @opindex msdata=none
13713 Make no use of the sections reserved for small data, and use absolute
13714 addresses to access all data.  Put all initialized global and static
13715 data in the @samp{.fardata} section, and all uninitialized data in the
13716 @samp{.far} section.  Put all constant data into the @samp{.const}
13717 section.
13718 @end table
13720 @node CRIS Options
13721 @subsection CRIS Options
13722 @cindex CRIS Options
13724 These options are defined specifically for the CRIS ports.
13726 @table @gcctabopt
13727 @item -march=@var{architecture-type}
13728 @itemx -mcpu=@var{architecture-type}
13729 @opindex march
13730 @opindex mcpu
13731 Generate code for the specified architecture.  The choices for
13732 @var{architecture-type} are @samp{v3}, @samp{v8} and @samp{v10} for
13733 respectively ETRAX@w{ }4, ETRAX@w{ }100, and ETRAX@w{ }100@w{ }LX@.
13734 Default is @samp{v0} except for cris-axis-linux-gnu, where the default is
13735 @samp{v10}.
13737 @item -mtune=@var{architecture-type}
13738 @opindex mtune
13739 Tune to @var{architecture-type} everything applicable about the generated
13740 code, except for the ABI and the set of available instructions.  The
13741 choices for @var{architecture-type} are the same as for
13742 @option{-march=@var{architecture-type}}.
13744 @item -mmax-stack-frame=@var{n}
13745 @opindex mmax-stack-frame
13746 Warn when the stack frame of a function exceeds @var{n} bytes.
13748 @item -metrax4
13749 @itemx -metrax100
13750 @opindex metrax4
13751 @opindex metrax100
13752 The options @option{-metrax4} and @option{-metrax100} are synonyms for
13753 @option{-march=v3} and @option{-march=v8} respectively.
13755 @item -mmul-bug-workaround
13756 @itemx -mno-mul-bug-workaround
13757 @opindex mmul-bug-workaround
13758 @opindex mno-mul-bug-workaround
13759 Work around a bug in the @code{muls} and @code{mulu} instructions for CPU
13760 models where it applies.  This option is active by default.
13762 @item -mpdebug
13763 @opindex mpdebug
13764 Enable CRIS-specific verbose debug-related information in the assembly
13765 code.  This option also has the effect of turning off the @samp{#NO_APP}
13766 formatted-code indicator to the assembler at the beginning of the
13767 assembly file.
13769 @item -mcc-init
13770 @opindex mcc-init
13771 Do not use condition-code results from previous instruction; always emit
13772 compare and test instructions before use of condition codes.
13774 @item -mno-side-effects
13775 @opindex mno-side-effects
13776 Do not emit instructions with side effects in addressing modes other than
13777 post-increment.
13779 @item -mstack-align
13780 @itemx -mno-stack-align
13781 @itemx -mdata-align
13782 @itemx -mno-data-align
13783 @itemx -mconst-align
13784 @itemx -mno-const-align
13785 @opindex mstack-align
13786 @opindex mno-stack-align
13787 @opindex mdata-align
13788 @opindex mno-data-align
13789 @opindex mconst-align
13790 @opindex mno-const-align
13791 These options (@samp{no-} options) arrange (eliminate arrangements) for the
13792 stack frame, individual data and constants to be aligned for the maximum
13793 single data access size for the chosen CPU model.  The default is to
13794 arrange for 32-bit alignment.  ABI details such as structure layout are
13795 not affected by these options.
13797 @item -m32-bit
13798 @itemx -m16-bit
13799 @itemx -m8-bit
13800 @opindex m32-bit
13801 @opindex m16-bit
13802 @opindex m8-bit
13803 Similar to the stack- data- and const-align options above, these options
13804 arrange for stack frame, writable data and constants to all be 32-bit,
13805 16-bit or 8-bit aligned.  The default is 32-bit alignment.
13807 @item -mno-prologue-epilogue
13808 @itemx -mprologue-epilogue
13809 @opindex mno-prologue-epilogue
13810 @opindex mprologue-epilogue
13811 With @option{-mno-prologue-epilogue}, the normal function prologue and
13812 epilogue which set up the stack frame are omitted and no return
13813 instructions or return sequences are generated in the code.  Use this
13814 option only together with visual inspection of the compiled code: no
13815 warnings or errors are generated when call-saved registers must be saved,
13816 or storage for local variables needs to be allocated.
13818 @item -mno-gotplt
13819 @itemx -mgotplt
13820 @opindex mno-gotplt
13821 @opindex mgotplt
13822 With @option{-fpic} and @option{-fPIC}, don't generate (do generate)
13823 instruction sequences that load addresses for functions from the PLT part
13824 of the GOT rather than (traditional on other architectures) calls to the
13825 PLT@.  The default is @option{-mgotplt}.
13827 @item -melf
13828 @opindex melf
13829 Legacy no-op option only recognized with the cris-axis-elf and
13830 cris-axis-linux-gnu targets.
13832 @item -mlinux
13833 @opindex mlinux
13834 Legacy no-op option only recognized with the cris-axis-linux-gnu target.
13836 @item -sim
13837 @opindex sim
13838 This option, recognized for the cris-axis-elf, arranges
13839 to link with input-output functions from a simulator library.  Code,
13840 initialized data and zero-initialized data are allocated consecutively.
13842 @item -sim2
13843 @opindex sim2
13844 Like @option{-sim}, but pass linker options to locate initialized data at
13845 0x40000000 and zero-initialized data at 0x80000000.
13846 @end table
13848 @node CR16 Options
13849 @subsection CR16 Options
13850 @cindex CR16 Options
13852 These options are defined specifically for the CR16 ports.
13854 @table @gcctabopt
13856 @item -mmac
13857 @opindex mmac
13858 Enable the use of multiply-accumulate instructions. Disabled by default.
13860 @item -mcr16cplus
13861 @itemx -mcr16c
13862 @opindex mcr16cplus
13863 @opindex mcr16c
13864 Generate code for CR16C or CR16C+ architecture. CR16C+ architecture 
13865 is default.
13867 @item -msim
13868 @opindex msim
13869 Links the library libsim.a which is in compatible with simulator. Applicable
13870 to ELF compiler only.
13872 @item -mint32
13873 @opindex mint32
13874 Choose integer type as 32-bit wide.
13876 @item -mbit-ops
13877 @opindex mbit-ops
13878 Generates @code{sbit}/@code{cbit} instructions for bit manipulations.
13880 @item -mdata-model=@var{model}
13881 @opindex mdata-model
13882 Choose a data model. The choices for @var{model} are @samp{near},
13883 @samp{far} or @samp{medium}. @samp{medium} is default.
13884 However, @samp{far} is not valid with @option{-mcr16c}, as the
13885 CR16C architecture does not support the far data model.
13886 @end table
13888 @node Darwin Options
13889 @subsection Darwin Options
13890 @cindex Darwin options
13892 These options are defined for all architectures running the Darwin operating
13893 system.
13895 FSF GCC on Darwin does not create ``fat'' object files; it creates
13896 an object file for the single architecture that GCC was built to
13897 target.  Apple's GCC on Darwin does create ``fat'' files if multiple
13898 @option{-arch} options are used; it does so by running the compiler or
13899 linker multiple times and joining the results together with
13900 @file{lipo}.
13902 The subtype of the file created (like @samp{ppc7400} or @samp{ppc970} or
13903 @samp{i686}) is determined by the flags that specify the ISA
13904 that GCC is targeting, like @option{-mcpu} or @option{-march}.  The
13905 @option{-force_cpusubtype_ALL} option can be used to override this.
13907 The Darwin tools vary in their behavior when presented with an ISA
13908 mismatch.  The assembler, @file{as}, only permits instructions to
13909 be used that are valid for the subtype of the file it is generating,
13910 so you cannot put 64-bit instructions in a @samp{ppc750} object file.
13911 The linker for shared libraries, @file{/usr/bin/libtool}, fails
13912 and prints an error if asked to create a shared library with a less
13913 restrictive subtype than its input files (for instance, trying to put
13914 a @samp{ppc970} object file in a @samp{ppc7400} library).  The linker
13915 for executables, @command{ld}, quietly gives the executable the most
13916 restrictive subtype of any of its input files.
13918 @table @gcctabopt
13919 @item -F@var{dir}
13920 @opindex F
13921 Add the framework directory @var{dir} to the head of the list of
13922 directories to be searched for header files.  These directories are
13923 interleaved with those specified by @option{-I} options and are
13924 scanned in a left-to-right order.
13926 A framework directory is a directory with frameworks in it.  A
13927 framework is a directory with a @file{Headers} and/or
13928 @file{PrivateHeaders} directory contained directly in it that ends
13929 in @file{.framework}.  The name of a framework is the name of this
13930 directory excluding the @file{.framework}.  Headers associated with
13931 the framework are found in one of those two directories, with
13932 @file{Headers} being searched first.  A subframework is a framework
13933 directory that is in a framework's @file{Frameworks} directory.
13934 Includes of subframework headers can only appear in a header of a
13935 framework that contains the subframework, or in a sibling subframework
13936 header.  Two subframeworks are siblings if they occur in the same
13937 framework.  A subframework should not have the same name as a
13938 framework; a warning is issued if this is violated.  Currently a
13939 subframework cannot have subframeworks; in the future, the mechanism
13940 may be extended to support this.  The standard frameworks can be found
13941 in @file{/System/Library/Frameworks} and
13942 @file{/Library/Frameworks}.  An example include looks like
13943 @code{#include <Framework/header.h>}, where @file{Framework} denotes
13944 the name of the framework and @file{header.h} is found in the
13945 @file{PrivateHeaders} or @file{Headers} directory.
13947 @item -iframework@var{dir}
13948 @opindex iframework
13949 Like @option{-F} except the directory is a treated as a system
13950 directory.  The main difference between this @option{-iframework} and
13951 @option{-F} is that with @option{-iframework} the compiler does not
13952 warn about constructs contained within header files found via
13953 @var{dir}.  This option is valid only for the C family of languages.
13955 @item -gused
13956 @opindex gused
13957 Emit debugging information for symbols that are used.  For stabs
13958 debugging format, this enables @option{-feliminate-unused-debug-symbols}.
13959 This is by default ON@.
13961 @item -gfull
13962 @opindex gfull
13963 Emit debugging information for all symbols and types.
13965 @item -mmacosx-version-min=@var{version}
13966 The earliest version of MacOS X that this executable will run on
13967 is @var{version}.  Typical values of @var{version} include @code{10.1},
13968 @code{10.2}, and @code{10.3.9}.
13970 If the compiler was built to use the system's headers by default,
13971 then the default for this option is the system version on which the
13972 compiler is running, otherwise the default is to make choices that
13973 are compatible with as many systems and code bases as possible.
13975 @item -mkernel
13976 @opindex mkernel
13977 Enable kernel development mode.  The @option{-mkernel} option sets
13978 @option{-static}, @option{-fno-common}, @option{-fno-use-cxa-atexit},
13979 @option{-fno-exceptions}, @option{-fno-non-call-exceptions},
13980 @option{-fapple-kext}, @option{-fno-weak} and @option{-fno-rtti} where
13981 applicable.  This mode also sets @option{-mno-altivec},
13982 @option{-msoft-float}, @option{-fno-builtin} and
13983 @option{-mlong-branch} for PowerPC targets.
13985 @item -mone-byte-bool
13986 @opindex mone-byte-bool
13987 Override the defaults for @samp{bool} so that @samp{sizeof(bool)==1}.
13988 By default @samp{sizeof(bool)} is @samp{4} when compiling for
13989 Darwin/PowerPC and @samp{1} when compiling for Darwin/x86, so this
13990 option has no effect on x86.
13992 @strong{Warning:} The @option{-mone-byte-bool} switch causes GCC
13993 to generate code that is not binary compatible with code generated
13994 without that switch.  Using this switch may require recompiling all
13995 other modules in a program, including system libraries.  Use this
13996 switch to conform to a non-default data model.
13998 @item -mfix-and-continue
13999 @itemx -ffix-and-continue
14000 @itemx -findirect-data
14001 @opindex mfix-and-continue
14002 @opindex ffix-and-continue
14003 @opindex findirect-data
14004 Generate code suitable for fast turnaround development, such as to
14005 allow GDB to dynamically load @code{.o} files into already-running
14006 programs.  @option{-findirect-data} and @option{-ffix-and-continue}
14007 are provided for backwards compatibility.
14009 @item -all_load
14010 @opindex all_load
14011 Loads all members of static archive libraries.
14012 See man ld(1) for more information.
14014 @item -arch_errors_fatal
14015 @opindex arch_errors_fatal
14016 Cause the errors having to do with files that have the wrong architecture
14017 to be fatal.
14019 @item -bind_at_load
14020 @opindex bind_at_load
14021 Causes the output file to be marked such that the dynamic linker will
14022 bind all undefined references when the file is loaded or launched.
14024 @item -bundle
14025 @opindex bundle
14026 Produce a Mach-o bundle format file.
14027 See man ld(1) for more information.
14029 @item -bundle_loader @var{executable}
14030 @opindex bundle_loader
14031 This option specifies the @var{executable} that will load the build
14032 output file being linked.  See man ld(1) for more information.
14034 @item -dynamiclib
14035 @opindex dynamiclib
14036 When passed this option, GCC produces a dynamic library instead of
14037 an executable when linking, using the Darwin @file{libtool} command.
14039 @item -force_cpusubtype_ALL
14040 @opindex force_cpusubtype_ALL
14041 This causes GCC's output file to have the @var{ALL} subtype, instead of
14042 one controlled by the @option{-mcpu} or @option{-march} option.
14044 @item -allowable_client  @var{client_name}
14045 @itemx -client_name
14046 @itemx -compatibility_version
14047 @itemx -current_version
14048 @itemx -dead_strip
14049 @itemx -dependency-file
14050 @itemx -dylib_file
14051 @itemx -dylinker_install_name
14052 @itemx -dynamic
14053 @itemx -exported_symbols_list
14054 @itemx -filelist
14055 @need 800
14056 @itemx -flat_namespace
14057 @itemx -force_flat_namespace
14058 @itemx -headerpad_max_install_names
14059 @itemx -image_base
14060 @itemx -init
14061 @itemx -install_name
14062 @itemx -keep_private_externs
14063 @itemx -multi_module
14064 @itemx -multiply_defined
14065 @itemx -multiply_defined_unused
14066 @need 800
14067 @itemx -noall_load
14068 @itemx -no_dead_strip_inits_and_terms
14069 @itemx -nofixprebinding
14070 @itemx -nomultidefs
14071 @itemx -noprebind
14072 @itemx -noseglinkedit
14073 @itemx -pagezero_size
14074 @itemx -prebind
14075 @itemx -prebind_all_twolevel_modules
14076 @itemx -private_bundle
14077 @need 800
14078 @itemx -read_only_relocs
14079 @itemx -sectalign
14080 @itemx -sectobjectsymbols
14081 @itemx -whyload
14082 @itemx -seg1addr
14083 @itemx -sectcreate
14084 @itemx -sectobjectsymbols
14085 @itemx -sectorder
14086 @itemx -segaddr
14087 @itemx -segs_read_only_addr
14088 @need 800
14089 @itemx -segs_read_write_addr
14090 @itemx -seg_addr_table
14091 @itemx -seg_addr_table_filename
14092 @itemx -seglinkedit
14093 @itemx -segprot
14094 @itemx -segs_read_only_addr
14095 @itemx -segs_read_write_addr
14096 @itemx -single_module
14097 @itemx -static
14098 @itemx -sub_library
14099 @need 800
14100 @itemx -sub_umbrella
14101 @itemx -twolevel_namespace
14102 @itemx -umbrella
14103 @itemx -undefined
14104 @itemx -unexported_symbols_list
14105 @itemx -weak_reference_mismatches
14106 @itemx -whatsloaded
14107 @opindex allowable_client
14108 @opindex client_name
14109 @opindex compatibility_version
14110 @opindex current_version
14111 @opindex dead_strip
14112 @opindex dependency-file
14113 @opindex dylib_file
14114 @opindex dylinker_install_name
14115 @opindex dynamic
14116 @opindex exported_symbols_list
14117 @opindex filelist
14118 @opindex flat_namespace
14119 @opindex force_flat_namespace
14120 @opindex headerpad_max_install_names
14121 @opindex image_base
14122 @opindex init
14123 @opindex install_name
14124 @opindex keep_private_externs
14125 @opindex multi_module
14126 @opindex multiply_defined
14127 @opindex multiply_defined_unused
14128 @opindex noall_load
14129 @opindex no_dead_strip_inits_and_terms
14130 @opindex nofixprebinding
14131 @opindex nomultidefs
14132 @opindex noprebind
14133 @opindex noseglinkedit
14134 @opindex pagezero_size
14135 @opindex prebind
14136 @opindex prebind_all_twolevel_modules
14137 @opindex private_bundle
14138 @opindex read_only_relocs
14139 @opindex sectalign
14140 @opindex sectobjectsymbols
14141 @opindex whyload
14142 @opindex seg1addr
14143 @opindex sectcreate
14144 @opindex sectobjectsymbols
14145 @opindex sectorder
14146 @opindex segaddr
14147 @opindex segs_read_only_addr
14148 @opindex segs_read_write_addr
14149 @opindex seg_addr_table
14150 @opindex seg_addr_table_filename
14151 @opindex seglinkedit
14152 @opindex segprot
14153 @opindex segs_read_only_addr
14154 @opindex segs_read_write_addr
14155 @opindex single_module
14156 @opindex static
14157 @opindex sub_library
14158 @opindex sub_umbrella
14159 @opindex twolevel_namespace
14160 @opindex umbrella
14161 @opindex undefined
14162 @opindex unexported_symbols_list
14163 @opindex weak_reference_mismatches
14164 @opindex whatsloaded
14165 These options are passed to the Darwin linker.  The Darwin linker man page
14166 describes them in detail.
14167 @end table
14169 @node DEC Alpha Options
14170 @subsection DEC Alpha Options
14172 These @samp{-m} options are defined for the DEC Alpha implementations:
14174 @table @gcctabopt
14175 @item -mno-soft-float
14176 @itemx -msoft-float
14177 @opindex mno-soft-float
14178 @opindex msoft-float
14179 Use (do not use) the hardware floating-point instructions for
14180 floating-point operations.  When @option{-msoft-float} is specified,
14181 functions in @file{libgcc.a} are used to perform floating-point
14182 operations.  Unless they are replaced by routines that emulate the
14183 floating-point operations, or compiled in such a way as to call such
14184 emulations routines, these routines issue floating-point
14185 operations.   If you are compiling for an Alpha without floating-point
14186 operations, you must ensure that the library is built so as not to call
14187 them.
14189 Note that Alpha implementations without floating-point operations are
14190 required to have floating-point registers.
14192 @item -mfp-reg
14193 @itemx -mno-fp-regs
14194 @opindex mfp-reg
14195 @opindex mno-fp-regs
14196 Generate code that uses (does not use) the floating-point register set.
14197 @option{-mno-fp-regs} implies @option{-msoft-float}.  If the floating-point
14198 register set is not used, floating-point operands are passed in integer
14199 registers as if they were integers and floating-point results are passed
14200 in @code{$0} instead of @code{$f0}.  This is a non-standard calling sequence,
14201 so any function with a floating-point argument or return value called by code
14202 compiled with @option{-mno-fp-regs} must also be compiled with that
14203 option.
14205 A typical use of this option is building a kernel that does not use,
14206 and hence need not save and restore, any floating-point registers.
14208 @item -mieee
14209 @opindex mieee
14210 The Alpha architecture implements floating-point hardware optimized for
14211 maximum performance.  It is mostly compliant with the IEEE floating-point
14212 standard.  However, for full compliance, software assistance is
14213 required.  This option generates code fully IEEE-compliant code
14214 @emph{except} that the @var{inexact-flag} is not maintained (see below).
14215 If this option is turned on, the preprocessor macro @code{_IEEE_FP} is
14216 defined during compilation.  The resulting code is less efficient but is
14217 able to correctly support denormalized numbers and exceptional IEEE
14218 values such as not-a-number and plus/minus infinity.  Other Alpha
14219 compilers call this option @option{-ieee_with_no_inexact}.
14221 @item -mieee-with-inexact
14222 @opindex mieee-with-inexact
14223 This is like @option{-mieee} except the generated code also maintains
14224 the IEEE @var{inexact-flag}.  Turning on this option causes the
14225 generated code to implement fully-compliant IEEE math.  In addition to
14226 @code{_IEEE_FP}, @code{_IEEE_FP_EXACT} is defined as a preprocessor
14227 macro.  On some Alpha implementations the resulting code may execute
14228 significantly slower than the code generated by default.  Since there is
14229 very little code that depends on the @var{inexact-flag}, you should
14230 normally not specify this option.  Other Alpha compilers call this
14231 option @option{-ieee_with_inexact}.
14233 @item -mfp-trap-mode=@var{trap-mode}
14234 @opindex mfp-trap-mode
14235 This option controls what floating-point related traps are enabled.
14236 Other Alpha compilers call this option @option{-fptm @var{trap-mode}}.
14237 The trap mode can be set to one of four values:
14239 @table @samp
14240 @item n
14241 This is the default (normal) setting.  The only traps that are enabled
14242 are the ones that cannot be disabled in software (e.g., division by zero
14243 trap).
14245 @item u
14246 In addition to the traps enabled by @samp{n}, underflow traps are enabled
14247 as well.
14249 @item su
14250 Like @samp{u}, but the instructions are marked to be safe for software
14251 completion (see Alpha architecture manual for details).
14253 @item sui
14254 Like @samp{su}, but inexact traps are enabled as well.
14255 @end table
14257 @item -mfp-rounding-mode=@var{rounding-mode}
14258 @opindex mfp-rounding-mode
14259 Selects the IEEE rounding mode.  Other Alpha compilers call this option
14260 @option{-fprm @var{rounding-mode}}.  The @var{rounding-mode} can be one
14263 @table @samp
14264 @item n
14265 Normal IEEE rounding mode.  Floating-point numbers are rounded towards
14266 the nearest machine number or towards the even machine number in case
14267 of a tie.
14269 @item m
14270 Round towards minus infinity.
14272 @item c
14273 Chopped rounding mode.  Floating-point numbers are rounded towards zero.
14275 @item d
14276 Dynamic rounding mode.  A field in the floating-point control register
14277 (@var{fpcr}, see Alpha architecture reference manual) controls the
14278 rounding mode in effect.  The C library initializes this register for
14279 rounding towards plus infinity.  Thus, unless your program modifies the
14280 @var{fpcr}, @samp{d} corresponds to round towards plus infinity.
14281 @end table
14283 @item -mtrap-precision=@var{trap-precision}
14284 @opindex mtrap-precision
14285 In the Alpha architecture, floating-point traps are imprecise.  This
14286 means without software assistance it is impossible to recover from a
14287 floating trap and program execution normally needs to be terminated.
14288 GCC can generate code that can assist operating system trap handlers
14289 in determining the exact location that caused a floating-point trap.
14290 Depending on the requirements of an application, different levels of
14291 precisions can be selected:
14293 @table @samp
14294 @item p
14295 Program precision.  This option is the default and means a trap handler
14296 can only identify which program caused a floating-point exception.
14298 @item f
14299 Function precision.  The trap handler can determine the function that
14300 caused a floating-point exception.
14302 @item i
14303 Instruction precision.  The trap handler can determine the exact
14304 instruction that caused a floating-point exception.
14305 @end table
14307 Other Alpha compilers provide the equivalent options called
14308 @option{-scope_safe} and @option{-resumption_safe}.
14310 @item -mieee-conformant
14311 @opindex mieee-conformant
14312 This option marks the generated code as IEEE conformant.  You must not
14313 use this option unless you also specify @option{-mtrap-precision=i} and either
14314 @option{-mfp-trap-mode=su} or @option{-mfp-trap-mode=sui}.  Its only effect
14315 is to emit the line @samp{.eflag 48} in the function prologue of the
14316 generated assembly file.
14318 @item -mbuild-constants
14319 @opindex mbuild-constants
14320 Normally GCC examines a 32- or 64-bit integer constant to
14321 see if it can construct it from smaller constants in two or three
14322 instructions.  If it cannot, it outputs the constant as a literal and
14323 generates code to load it from the data segment at run time.
14325 Use this option to require GCC to construct @emph{all} integer constants
14326 using code, even if it takes more instructions (the maximum is six).
14328 You typically use this option to build a shared library dynamic
14329 loader.  Itself a shared library, it must relocate itself in memory
14330 before it can find the variables and constants in its own data segment.
14332 @item -mbwx
14333 @itemx -mno-bwx
14334 @itemx -mcix
14335 @itemx -mno-cix
14336 @itemx -mfix
14337 @itemx -mno-fix
14338 @itemx -mmax
14339 @itemx -mno-max
14340 @opindex mbwx
14341 @opindex mno-bwx
14342 @opindex mcix
14343 @opindex mno-cix
14344 @opindex mfix
14345 @opindex mno-fix
14346 @opindex mmax
14347 @opindex mno-max
14348 Indicate whether GCC should generate code to use the optional BWX,
14349 CIX, FIX and MAX instruction sets.  The default is to use the instruction
14350 sets supported by the CPU type specified via @option{-mcpu=} option or that
14351 of the CPU on which GCC was built if none is specified.
14353 @item -mfloat-vax
14354 @itemx -mfloat-ieee
14355 @opindex mfloat-vax
14356 @opindex mfloat-ieee
14357 Generate code that uses (does not use) VAX F and G floating-point
14358 arithmetic instead of IEEE single and double precision.
14360 @item -mexplicit-relocs
14361 @itemx -mno-explicit-relocs
14362 @opindex mexplicit-relocs
14363 @opindex mno-explicit-relocs
14364 Older Alpha assemblers provided no way to generate symbol relocations
14365 except via assembler macros.  Use of these macros does not allow
14366 optimal instruction scheduling.  GNU binutils as of version 2.12
14367 supports a new syntax that allows the compiler to explicitly mark
14368 which relocations should apply to which instructions.  This option
14369 is mostly useful for debugging, as GCC detects the capabilities of
14370 the assembler when it is built and sets the default accordingly.
14372 @item -msmall-data
14373 @itemx -mlarge-data
14374 @opindex msmall-data
14375 @opindex mlarge-data
14376 When @option{-mexplicit-relocs} is in effect, static data is
14377 accessed via @dfn{gp-relative} relocations.  When @option{-msmall-data}
14378 is used, objects 8 bytes long or smaller are placed in a @dfn{small data area}
14379 (the @code{.sdata} and @code{.sbss} sections) and are accessed via
14380 16-bit relocations off of the @code{$gp} register.  This limits the
14381 size of the small data area to 64KB, but allows the variables to be
14382 directly accessed via a single instruction.
14384 The default is @option{-mlarge-data}.  With this option the data area
14385 is limited to just below 2GB@.  Programs that require more than 2GB of
14386 data must use @code{malloc} or @code{mmap} to allocate the data in the
14387 heap instead of in the program's data segment.
14389 When generating code for shared libraries, @option{-fpic} implies
14390 @option{-msmall-data} and @option{-fPIC} implies @option{-mlarge-data}.
14392 @item -msmall-text
14393 @itemx -mlarge-text
14394 @opindex msmall-text
14395 @opindex mlarge-text
14396 When @option{-msmall-text} is used, the compiler assumes that the
14397 code of the entire program (or shared library) fits in 4MB, and is
14398 thus reachable with a branch instruction.  When @option{-msmall-data}
14399 is used, the compiler can assume that all local symbols share the
14400 same @code{$gp} value, and thus reduce the number of instructions
14401 required for a function call from 4 to 1.
14403 The default is @option{-mlarge-text}.
14405 @item -mcpu=@var{cpu_type}
14406 @opindex mcpu
14407 Set the instruction set and instruction scheduling parameters for
14408 machine type @var{cpu_type}.  You can specify either the @samp{EV}
14409 style name or the corresponding chip number.  GCC supports scheduling
14410 parameters for the EV4, EV5 and EV6 family of processors and
14411 chooses the default values for the instruction set from the processor
14412 you specify.  If you do not specify a processor type, GCC defaults
14413 to the processor on which the compiler was built.
14415 Supported values for @var{cpu_type} are
14417 @table @samp
14418 @item ev4
14419 @itemx ev45
14420 @itemx 21064
14421 Schedules as an EV4 and has no instruction set extensions.
14423 @item ev5
14424 @itemx 21164
14425 Schedules as an EV5 and has no instruction set extensions.
14427 @item ev56
14428 @itemx 21164a
14429 Schedules as an EV5 and supports the BWX extension.
14431 @item pca56
14432 @itemx 21164pc
14433 @itemx 21164PC
14434 Schedules as an EV5 and supports the BWX and MAX extensions.
14436 @item ev6
14437 @itemx 21264
14438 Schedules as an EV6 and supports the BWX, FIX, and MAX extensions.
14440 @item ev67
14441 @itemx 21264a
14442 Schedules as an EV6 and supports the BWX, CIX, FIX, and MAX extensions.
14443 @end table
14445 Native toolchains also support the value @samp{native},
14446 which selects the best architecture option for the host processor.
14447 @option{-mcpu=native} has no effect if GCC does not recognize
14448 the processor.
14450 @item -mtune=@var{cpu_type}
14451 @opindex mtune
14452 Set only the instruction scheduling parameters for machine type
14453 @var{cpu_type}.  The instruction set is not changed.
14455 Native toolchains also support the value @samp{native},
14456 which selects the best architecture option for the host processor.
14457 @option{-mtune=native} has no effect if GCC does not recognize
14458 the processor.
14460 @item -mmemory-latency=@var{time}
14461 @opindex mmemory-latency
14462 Sets the latency the scheduler should assume for typical memory
14463 references as seen by the application.  This number is highly
14464 dependent on the memory access patterns used by the application
14465 and the size of the external cache on the machine.
14467 Valid options for @var{time} are
14469 @table @samp
14470 @item @var{number}
14471 A decimal number representing clock cycles.
14473 @item L1
14474 @itemx L2
14475 @itemx L3
14476 @itemx main
14477 The compiler contains estimates of the number of clock cycles for
14478 ``typical'' EV4 & EV5 hardware for the Level 1, 2 & 3 caches
14479 (also called Dcache, Scache, and Bcache), as well as to main memory.
14480 Note that L3 is only valid for EV5.
14482 @end table
14483 @end table
14485 @node FR30 Options
14486 @subsection FR30 Options
14487 @cindex FR30 Options
14489 These options are defined specifically for the FR30 port.
14491 @table @gcctabopt
14493 @item -msmall-model
14494 @opindex msmall-model
14495 Use the small address space model.  This can produce smaller code, but
14496 it does assume that all symbolic values and addresses fit into a
14497 20-bit range.
14499 @item -mno-lsim
14500 @opindex mno-lsim
14501 Assume that runtime support has been provided and so there is no need
14502 to include the simulator library (@file{libsim.a}) on the linker
14503 command line.
14505 @end table
14507 @node FRV Options
14508 @subsection FRV Options
14509 @cindex FRV Options
14511 @table @gcctabopt
14512 @item -mgpr-32
14513 @opindex mgpr-32
14515 Only use the first 32 general-purpose registers.
14517 @item -mgpr-64
14518 @opindex mgpr-64
14520 Use all 64 general-purpose registers.
14522 @item -mfpr-32
14523 @opindex mfpr-32
14525 Use only the first 32 floating-point registers.
14527 @item -mfpr-64
14528 @opindex mfpr-64
14530 Use all 64 floating-point registers.
14532 @item -mhard-float
14533 @opindex mhard-float
14535 Use hardware instructions for floating-point operations.
14537 @item -msoft-float
14538 @opindex msoft-float
14540 Use library routines for floating-point operations.
14542 @item -malloc-cc
14543 @opindex malloc-cc
14545 Dynamically allocate condition code registers.
14547 @item -mfixed-cc
14548 @opindex mfixed-cc
14550 Do not try to dynamically allocate condition code registers, only
14551 use @code{icc0} and @code{fcc0}.
14553 @item -mdword
14554 @opindex mdword
14556 Change ABI to use double word insns.
14558 @item -mno-dword
14559 @opindex mno-dword
14561 Do not use double word instructions.
14563 @item -mdouble
14564 @opindex mdouble
14566 Use floating-point double instructions.
14568 @item -mno-double
14569 @opindex mno-double
14571 Do not use floating-point double instructions.
14573 @item -mmedia
14574 @opindex mmedia
14576 Use media instructions.
14578 @item -mno-media
14579 @opindex mno-media
14581 Do not use media instructions.
14583 @item -mmuladd
14584 @opindex mmuladd
14586 Use multiply and add/subtract instructions.
14588 @item -mno-muladd
14589 @opindex mno-muladd
14591 Do not use multiply and add/subtract instructions.
14593 @item -mfdpic
14594 @opindex mfdpic
14596 Select the FDPIC ABI, which uses function descriptors to represent
14597 pointers to functions.  Without any PIC/PIE-related options, it
14598 implies @option{-fPIE}.  With @option{-fpic} or @option{-fpie}, it
14599 assumes GOT entries and small data are within a 12-bit range from the
14600 GOT base address; with @option{-fPIC} or @option{-fPIE}, GOT offsets
14601 are computed with 32 bits.
14602 With a @samp{bfin-elf} target, this option implies @option{-msim}.
14604 @item -minline-plt
14605 @opindex minline-plt
14607 Enable inlining of PLT entries in function calls to functions that are
14608 not known to bind locally.  It has no effect without @option{-mfdpic}.
14609 It's enabled by default if optimizing for speed and compiling for
14610 shared libraries (i.e., @option{-fPIC} or @option{-fpic}), or when an
14611 optimization option such as @option{-O3} or above is present in the
14612 command line.
14614 @item -mTLS
14615 @opindex mTLS
14617 Assume a large TLS segment when generating thread-local code.
14619 @item -mtls
14620 @opindex mtls
14622 Do not assume a large TLS segment when generating thread-local code.
14624 @item -mgprel-ro
14625 @opindex mgprel-ro
14627 Enable the use of @code{GPREL} relocations in the FDPIC ABI for data
14628 that is known to be in read-only sections.  It's enabled by default,
14629 except for @option{-fpic} or @option{-fpie}: even though it may help
14630 make the global offset table smaller, it trades 1 instruction for 4.
14631 With @option{-fPIC} or @option{-fPIE}, it trades 3 instructions for 4,
14632 one of which may be shared by multiple symbols, and it avoids the need
14633 for a GOT entry for the referenced symbol, so it's more likely to be a
14634 win.  If it is not, @option{-mno-gprel-ro} can be used to disable it.
14636 @item -multilib-library-pic
14637 @opindex multilib-library-pic
14639 Link with the (library, not FD) pic libraries.  It's implied by
14640 @option{-mlibrary-pic}, as well as by @option{-fPIC} and
14641 @option{-fpic} without @option{-mfdpic}.  You should never have to use
14642 it explicitly.
14644 @item -mlinked-fp
14645 @opindex mlinked-fp
14647 Follow the EABI requirement of always creating a frame pointer whenever
14648 a stack frame is allocated.  This option is enabled by default and can
14649 be disabled with @option{-mno-linked-fp}.
14651 @item -mlong-calls
14652 @opindex mlong-calls
14654 Use indirect addressing to call functions outside the current
14655 compilation unit.  This allows the functions to be placed anywhere
14656 within the 32-bit address space.
14658 @item -malign-labels
14659 @opindex malign-labels
14661 Try to align labels to an 8-byte boundary by inserting NOPs into the
14662 previous packet.  This option only has an effect when VLIW packing
14663 is enabled.  It doesn't create new packets; it merely adds NOPs to
14664 existing ones.
14666 @item -mlibrary-pic
14667 @opindex mlibrary-pic
14669 Generate position-independent EABI code.
14671 @item -macc-4
14672 @opindex macc-4
14674 Use only the first four media accumulator registers.
14676 @item -macc-8
14677 @opindex macc-8
14679 Use all eight media accumulator registers.
14681 @item -mpack
14682 @opindex mpack
14684 Pack VLIW instructions.
14686 @item -mno-pack
14687 @opindex mno-pack
14689 Do not pack VLIW instructions.
14691 @item -mno-eflags
14692 @opindex mno-eflags
14694 Do not mark ABI switches in e_flags.
14696 @item -mcond-move
14697 @opindex mcond-move
14699 Enable the use of conditional-move instructions (default).
14701 This switch is mainly for debugging the compiler and will likely be removed
14702 in a future version.
14704 @item -mno-cond-move
14705 @opindex mno-cond-move
14707 Disable the use of conditional-move instructions.
14709 This switch is mainly for debugging the compiler and will likely be removed
14710 in a future version.
14712 @item -mscc
14713 @opindex mscc
14715 Enable the use of conditional set instructions (default).
14717 This switch is mainly for debugging the compiler and will likely be removed
14718 in a future version.
14720 @item -mno-scc
14721 @opindex mno-scc
14723 Disable the use of conditional set instructions.
14725 This switch is mainly for debugging the compiler and will likely be removed
14726 in a future version.
14728 @item -mcond-exec
14729 @opindex mcond-exec
14731 Enable the use of conditional execution (default).
14733 This switch is mainly for debugging the compiler and will likely be removed
14734 in a future version.
14736 @item -mno-cond-exec
14737 @opindex mno-cond-exec
14739 Disable the use of conditional execution.
14741 This switch is mainly for debugging the compiler and will likely be removed
14742 in a future version.
14744 @item -mvliw-branch
14745 @opindex mvliw-branch
14747 Run a pass to pack branches into VLIW instructions (default).
14749 This switch is mainly for debugging the compiler and will likely be removed
14750 in a future version.
14752 @item -mno-vliw-branch
14753 @opindex mno-vliw-branch
14755 Do not run a pass to pack branches into VLIW instructions.
14757 This switch is mainly for debugging the compiler and will likely be removed
14758 in a future version.
14760 @item -mmulti-cond-exec
14761 @opindex mmulti-cond-exec
14763 Enable optimization of @code{&&} and @code{||} in conditional execution
14764 (default).
14766 This switch is mainly for debugging the compiler and will likely be removed
14767 in a future version.
14769 @item -mno-multi-cond-exec
14770 @opindex mno-multi-cond-exec
14772 Disable optimization of @code{&&} and @code{||} in conditional execution.
14774 This switch is mainly for debugging the compiler and will likely be removed
14775 in a future version.
14777 @item -mnested-cond-exec
14778 @opindex mnested-cond-exec
14780 Enable nested conditional execution optimizations (default).
14782 This switch is mainly for debugging the compiler and will likely be removed
14783 in a future version.
14785 @item -mno-nested-cond-exec
14786 @opindex mno-nested-cond-exec
14788 Disable nested conditional execution optimizations.
14790 This switch is mainly for debugging the compiler and will likely be removed
14791 in a future version.
14793 @item -moptimize-membar
14794 @opindex moptimize-membar
14796 This switch removes redundant @code{membar} instructions from the
14797 compiler-generated code.  It is enabled by default.
14799 @item -mno-optimize-membar
14800 @opindex mno-optimize-membar
14802 This switch disables the automatic removal of redundant @code{membar}
14803 instructions from the generated code.
14805 @item -mtomcat-stats
14806 @opindex mtomcat-stats
14808 Cause gas to print out tomcat statistics.
14810 @item -mcpu=@var{cpu}
14811 @opindex mcpu
14813 Select the processor type for which to generate code.  Possible values are
14814 @samp{frv}, @samp{fr550}, @samp{tomcat}, @samp{fr500}, @samp{fr450},
14815 @samp{fr405}, @samp{fr400}, @samp{fr300} and @samp{simple}.
14817 @end table
14819 @node GNU/Linux Options
14820 @subsection GNU/Linux Options
14822 These @samp{-m} options are defined for GNU/Linux targets:
14824 @table @gcctabopt
14825 @item -mglibc
14826 @opindex mglibc
14827 Use the GNU C library.  This is the default except
14828 on @samp{*-*-linux-*uclibc*} and @samp{*-*-linux-*android*} targets.
14830 @item -muclibc
14831 @opindex muclibc
14832 Use uClibc C library.  This is the default on
14833 @samp{*-*-linux-*uclibc*} targets.
14835 @item -mbionic
14836 @opindex mbionic
14837 Use Bionic C library.  This is the default on
14838 @samp{*-*-linux-*android*} targets.
14840 @item -mandroid
14841 @opindex mandroid
14842 Compile code compatible with Android platform.  This is the default on
14843 @samp{*-*-linux-*android*} targets.
14845 When compiling, this option enables @option{-mbionic}, @option{-fPIC},
14846 @option{-fno-exceptions} and @option{-fno-rtti} by default.  When linking,
14847 this option makes the GCC driver pass Android-specific options to the linker.
14848 Finally, this option causes the preprocessor macro @code{__ANDROID__}
14849 to be defined.
14851 @item -tno-android-cc
14852 @opindex tno-android-cc
14853 Disable compilation effects of @option{-mandroid}, i.e., do not enable
14854 @option{-mbionic}, @option{-fPIC}, @option{-fno-exceptions} and
14855 @option{-fno-rtti} by default.
14857 @item -tno-android-ld
14858 @opindex tno-android-ld
14859 Disable linking effects of @option{-mandroid}, i.e., pass standard Linux
14860 linking options to the linker.
14862 @end table
14864 @node H8/300 Options
14865 @subsection H8/300 Options
14867 These @samp{-m} options are defined for the H8/300 implementations:
14869 @table @gcctabopt
14870 @item -mrelax
14871 @opindex mrelax
14872 Shorten some address references at link time, when possible; uses the
14873 linker option @option{-relax}.  @xref{H8/300,, @code{ld} and the H8/300,
14874 ld, Using ld}, for a fuller description.
14876 @item -mh
14877 @opindex mh
14878 Generate code for the H8/300H@.
14880 @item -ms
14881 @opindex ms
14882 Generate code for the H8S@.
14884 @item -mn
14885 @opindex mn
14886 Generate code for the H8S and H8/300H in the normal mode.  This switch
14887 must be used either with @option{-mh} or @option{-ms}.
14889 @item -ms2600
14890 @opindex ms2600
14891 Generate code for the H8S/2600.  This switch must be used with @option{-ms}.
14893 @item -mexr
14894 @opindex mexr
14895 Extended registers are stored on stack before execution of function
14896 with monitor attribute. Default option is @option{-mexr}.
14897 This option is valid only for H8S targets.
14899 @item -mno-exr
14900 @opindex mno-exr
14901 Extended registers are not stored on stack before execution of function 
14902 with monitor attribute. Default option is @option{-mno-exr}. 
14903 This option is valid only for H8S targets.
14905 @item -mint32
14906 @opindex mint32
14907 Make @code{int} data 32 bits by default.
14909 @item -malign-300
14910 @opindex malign-300
14911 On the H8/300H and H8S, use the same alignment rules as for the H8/300.
14912 The default for the H8/300H and H8S is to align longs and floats on
14913 4-byte boundaries.
14914 @option{-malign-300} causes them to be aligned on 2-byte boundaries.
14915 This option has no effect on the H8/300.
14916 @end table
14918 @node HPPA Options
14919 @subsection HPPA Options
14920 @cindex HPPA Options
14922 These @samp{-m} options are defined for the HPPA family of computers:
14924 @table @gcctabopt
14925 @item -march=@var{architecture-type}
14926 @opindex march
14927 Generate code for the specified architecture.  The choices for
14928 @var{architecture-type} are @samp{1.0} for PA 1.0, @samp{1.1} for PA
14929 1.1, and @samp{2.0} for PA 2.0 processors.  Refer to
14930 @file{/usr/lib/sched.models} on an HP-UX system to determine the proper
14931 architecture option for your machine.  Code compiled for lower numbered
14932 architectures runs on higher numbered architectures, but not the
14933 other way around.
14935 @item -mpa-risc-1-0
14936 @itemx -mpa-risc-1-1
14937 @itemx -mpa-risc-2-0
14938 @opindex mpa-risc-1-0
14939 @opindex mpa-risc-1-1
14940 @opindex mpa-risc-2-0
14941 Synonyms for @option{-march=1.0}, @option{-march=1.1}, and @option{-march=2.0} respectively.
14943 @item -mjump-in-delay
14944 @opindex mjump-in-delay
14945 This option is ignored and provided for compatibility purposes only.
14947 @item -mdisable-fpregs
14948 @opindex mdisable-fpregs
14949 Prevent floating-point registers from being used in any manner.  This is
14950 necessary for compiling kernels that perform lazy context switching of
14951 floating-point registers.  If you use this option and attempt to perform
14952 floating-point operations, the compiler aborts.
14954 @item -mdisable-indexing
14955 @opindex mdisable-indexing
14956 Prevent the compiler from using indexing address modes.  This avoids some
14957 rather obscure problems when compiling MIG generated code under MACH@.
14959 @item -mno-space-regs
14960 @opindex mno-space-regs
14961 Generate code that assumes the target has no space registers.  This allows
14962 GCC to generate faster indirect calls and use unscaled index address modes.
14964 Such code is suitable for level 0 PA systems and kernels.
14966 @item -mfast-indirect-calls
14967 @opindex mfast-indirect-calls
14968 Generate code that assumes calls never cross space boundaries.  This
14969 allows GCC to emit code that performs faster indirect calls.
14971 This option does not work in the presence of shared libraries or nested
14972 functions.
14974 @item -mfixed-range=@var{register-range}
14975 @opindex mfixed-range
14976 Generate code treating the given register range as fixed registers.
14977 A fixed register is one that the register allocator cannot use.  This is
14978 useful when compiling kernel code.  A register range is specified as
14979 two registers separated by a dash.  Multiple register ranges can be
14980 specified separated by a comma.
14982 @item -mlong-load-store
14983 @opindex mlong-load-store
14984 Generate 3-instruction load and store sequences as sometimes required by
14985 the HP-UX 10 linker.  This is equivalent to the @samp{+k} option to
14986 the HP compilers.
14988 @item -mportable-runtime
14989 @opindex mportable-runtime
14990 Use the portable calling conventions proposed by HP for ELF systems.
14992 @item -mgas
14993 @opindex mgas
14994 Enable the use of assembler directives only GAS understands.
14996 @item -mschedule=@var{cpu-type}
14997 @opindex mschedule
14998 Schedule code according to the constraints for the machine type
14999 @var{cpu-type}.  The choices for @var{cpu-type} are @samp{700}
15000 @samp{7100}, @samp{7100LC}, @samp{7200}, @samp{7300} and @samp{8000}.  Refer
15001 to @file{/usr/lib/sched.models} on an HP-UX system to determine the
15002 proper scheduling option for your machine.  The default scheduling is
15003 @samp{8000}.
15005 @item -mlinker-opt
15006 @opindex mlinker-opt
15007 Enable the optimization pass in the HP-UX linker.  Note this makes symbolic
15008 debugging impossible.  It also triggers a bug in the HP-UX 8 and HP-UX 9
15009 linkers in which they give bogus error messages when linking some programs.
15011 @item -msoft-float
15012 @opindex msoft-float
15013 Generate output containing library calls for floating point.
15014 @strong{Warning:} the requisite libraries are not available for all HPPA
15015 targets.  Normally the facilities of the machine's usual C compiler are
15016 used, but this cannot be done directly in cross-compilation.  You must make
15017 your own arrangements to provide suitable library functions for
15018 cross-compilation.
15020 @option{-msoft-float} changes the calling convention in the output file;
15021 therefore, it is only useful if you compile @emph{all} of a program with
15022 this option.  In particular, you need to compile @file{libgcc.a}, the
15023 library that comes with GCC, with @option{-msoft-float} in order for
15024 this to work.
15026 @item -msio
15027 @opindex msio
15028 Generate the predefine, @code{_SIO}, for server IO@.  The default is
15029 @option{-mwsio}.  This generates the predefines, @code{__hp9000s700},
15030 @code{__hp9000s700__} and @code{_WSIO}, for workstation IO@.  These
15031 options are available under HP-UX and HI-UX@.
15033 @item -mgnu-ld
15034 @opindex mgnu-ld
15035 Use options specific to GNU @command{ld}.
15036 This passes @option{-shared} to @command{ld} when
15037 building a shared library.  It is the default when GCC is configured,
15038 explicitly or implicitly, with the GNU linker.  This option does not
15039 affect which @command{ld} is called; it only changes what parameters
15040 are passed to that @command{ld}.
15041 The @command{ld} that is called is determined by the
15042 @option{--with-ld} configure option, GCC's program search path, and
15043 finally by the user's @env{PATH}.  The linker used by GCC can be printed
15044 using @samp{which `gcc -print-prog-name=ld`}.  This option is only available
15045 on the 64-bit HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
15047 @item -mhp-ld
15048 @opindex mhp-ld
15049 Use options specific to HP @command{ld}.
15050 This passes @option{-b} to @command{ld} when building
15051 a shared library and passes @option{+Accept TypeMismatch} to @command{ld} on all
15052 links.  It is the default when GCC is configured, explicitly or
15053 implicitly, with the HP linker.  This option does not affect
15054 which @command{ld} is called; it only changes what parameters are passed to that
15055 @command{ld}.
15056 The @command{ld} that is called is determined by the @option{--with-ld}
15057 configure option, GCC's program search path, and finally by the user's
15058 @env{PATH}.  The linker used by GCC can be printed using @samp{which
15059 `gcc -print-prog-name=ld`}.  This option is only available on the 64-bit
15060 HP-UX GCC, i.e.@: configured with @samp{hppa*64*-*-hpux*}.
15062 @item -mlong-calls
15063 @opindex mno-long-calls
15064 Generate code that uses long call sequences.  This ensures that a call
15065 is always able to reach linker generated stubs.  The default is to generate
15066 long calls only when the distance from the call site to the beginning
15067 of the function or translation unit, as the case may be, exceeds a
15068 predefined limit set by the branch type being used.  The limits for
15069 normal calls are 7,600,000 and 240,000 bytes, respectively for the
15070 PA 2.0 and PA 1.X architectures.  Sibcalls are always limited at
15071 240,000 bytes.
15073 Distances are measured from the beginning of functions when using the
15074 @option{-ffunction-sections} option, or when using the @option{-mgas}
15075 and @option{-mno-portable-runtime} options together under HP-UX with
15076 the SOM linker.
15078 It is normally not desirable to use this option as it degrades
15079 performance.  However, it may be useful in large applications,
15080 particularly when partial linking is used to build the application.
15082 The types of long calls used depends on the capabilities of the
15083 assembler and linker, and the type of code being generated.  The
15084 impact on systems that support long absolute calls, and long pic
15085 symbol-difference or pc-relative calls should be relatively small.
15086 However, an indirect call is used on 32-bit ELF systems in pic code
15087 and it is quite long.
15089 @item -munix=@var{unix-std}
15090 @opindex march
15091 Generate compiler predefines and select a startfile for the specified
15092 UNIX standard.  The choices for @var{unix-std} are @samp{93}, @samp{95}
15093 and @samp{98}.  @samp{93} is supported on all HP-UX versions.  @samp{95}
15094 is available on HP-UX 10.10 and later.  @samp{98} is available on HP-UX
15095 11.11 and later.  The default values are @samp{93} for HP-UX 10.00,
15096 @samp{95} for HP-UX 10.10 though to 11.00, and @samp{98} for HP-UX 11.11
15097 and later.
15099 @option{-munix=93} provides the same predefines as GCC 3.3 and 3.4.
15100 @option{-munix=95} provides additional predefines for @code{XOPEN_UNIX}
15101 and @code{_XOPEN_SOURCE_EXTENDED}, and the startfile @file{unix95.o}.
15102 @option{-munix=98} provides additional predefines for @code{_XOPEN_UNIX},
15103 @code{_XOPEN_SOURCE_EXTENDED}, @code{_INCLUDE__STDC_A1_SOURCE} and
15104 @code{_INCLUDE_XOPEN_SOURCE_500}, and the startfile @file{unix98.o}.
15106 It is @emph{important} to note that this option changes the interfaces
15107 for various library routines.  It also affects the operational behavior
15108 of the C library.  Thus, @emph{extreme} care is needed in using this
15109 option.
15111 Library code that is intended to operate with more than one UNIX
15112 standard must test, set and restore the variable @var{__xpg4_extended_mask}
15113 as appropriate.  Most GNU software doesn't provide this capability.
15115 @item -nolibdld
15116 @opindex nolibdld
15117 Suppress the generation of link options to search libdld.sl when the
15118 @option{-static} option is specified on HP-UX 10 and later.
15120 @item -static
15121 @opindex static
15122 The HP-UX implementation of setlocale in libc has a dependency on
15123 libdld.sl.  There isn't an archive version of libdld.sl.  Thus,
15124 when the @option{-static} option is specified, special link options
15125 are needed to resolve this dependency.
15127 On HP-UX 10 and later, the GCC driver adds the necessary options to
15128 link with libdld.sl when the @option{-static} option is specified.
15129 This causes the resulting binary to be dynamic.  On the 64-bit port,
15130 the linkers generate dynamic binaries by default in any case.  The
15131 @option{-nolibdld} option can be used to prevent the GCC driver from
15132 adding these link options.
15134 @item -threads
15135 @opindex threads
15136 Add support for multithreading with the @dfn{dce thread} library
15137 under HP-UX@.  This option sets flags for both the preprocessor and
15138 linker.
15139 @end table
15141 @node i386 and x86-64 Options
15142 @subsection Intel 386 and AMD x86-64 Options
15143 @cindex i386 Options
15144 @cindex x86-64 Options
15145 @cindex Intel 386 Options
15146 @cindex AMD x86-64 Options
15148 These @samp{-m} options are defined for the i386 and x86-64 family of
15149 computers:
15151 @table @gcctabopt
15153 @item -march=@var{cpu-type}
15154 @opindex march
15155 Generate instructions for the machine type @var{cpu-type}.  In contrast to
15156 @option{-mtune=@var{cpu-type}}, which merely tunes the generated code 
15157 for the specified @var{cpu-type}, @option{-march=@var{cpu-type}} allows GCC
15158 to generate code that may not run at all on processors other than the one
15159 indicated.  Specifying @option{-march=@var{cpu-type}} implies 
15160 @option{-mtune=@var{cpu-type}}.
15162 The choices for @var{cpu-type} are:
15164 @table @samp
15165 @item native
15166 This selects the CPU to generate code for at compilation time by determining
15167 the processor type of the compiling machine.  Using @option{-march=native}
15168 enables all instruction subsets supported by the local machine (hence
15169 the result might not run on different machines).  Using @option{-mtune=native}
15170 produces code optimized for the local machine under the constraints
15171 of the selected instruction set.  
15173 @item i386
15174 Original Intel i386 CPU@.
15176 @item i486
15177 Intel i486 CPU@.  (No scheduling is implemented for this chip.)
15179 @item i586
15180 @itemx pentium
15181 Intel Pentium CPU with no MMX support.
15183 @item pentium-mmx
15184 Intel Pentium MMX CPU, based on Pentium core with MMX instruction set support.
15186 @item pentiumpro
15187 Intel Pentium Pro CPU@.
15189 @item i686
15190 When used with @option{-march}, the Pentium Pro
15191 instruction set is used, so the code runs on all i686 family chips.
15192 When used with @option{-mtune}, it has the same meaning as @samp{generic}.
15194 @item pentium2
15195 Intel Pentium II CPU, based on Pentium Pro core with MMX instruction set
15196 support.
15198 @item pentium3
15199 @itemx pentium3m
15200 Intel Pentium III CPU, based on Pentium Pro core with MMX and SSE instruction
15201 set support.
15203 @item pentium-m
15204 Intel Pentium M; low-power version of Intel Pentium III CPU
15205 with MMX, SSE and SSE2 instruction set support.  Used by Centrino notebooks.
15207 @item pentium4
15208 @itemx pentium4m
15209 Intel Pentium 4 CPU with MMX, SSE and SSE2 instruction set support.
15211 @item prescott
15212 Improved version of Intel Pentium 4 CPU with MMX, SSE, SSE2 and SSE3 instruction
15213 set support.
15215 @item nocona
15216 Improved version of Intel Pentium 4 CPU with 64-bit extensions, MMX, SSE,
15217 SSE2 and SSE3 instruction set support.
15219 @item core2
15220 Intel Core 2 CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3 and SSSE3
15221 instruction set support.
15223 @item nehalem
15224 Intel Nehalem CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
15225 SSE4.1, SSE4.2 and POPCNT instruction set support.
15227 @item westmere
15228 Intel Westmere CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
15229 SSE4.1, SSE4.2, POPCNT, AES and PCLMUL instruction set support.
15231 @item sandybridge
15232 Intel Sandy Bridge CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
15233 SSE4.1, SSE4.2, POPCNT, AVX, AES and PCLMUL instruction set support.
15235 @item ivybridge
15236 Intel Ivy Bridge CPU with 64-bit extensions, MMX, SSE, SSE2, SSE3, SSSE3,
15237 SSE4.1, SSE4.2, POPCNT, AVX, AES, PCLMUL, FSGSBASE, RDRND and F16C
15238 instruction set support.
15240 @item haswell
15241 Intel Haswell CPU with 64-bit extensions, MOVBE, MMX, SSE, SSE2, SSE3, SSSE3,
15242 SSE4.1, SSE4.2, POPCNT, AVX, AVX2, AES, PCLMUL, FSGSBASE, RDRND, FMA,
15243 BMI, BMI2 and F16C instruction set support.
15245 @item broadwell
15246 Intel Broadwell CPU with 64-bit extensions, MOVBE, MMX, SSE, SSE2, SSE3, SSSE3,
15247 SSE4.1, SSE4.2, POPCNT, AVX, AVX2, AES, PCLMUL, FSGSBASE, RDRND, FMA,
15248 BMI, BMI2, F16C, RDSEED, ADCX and PREFETCHW instruction set support.
15250 @item bonnell
15251 Intel Bonnell CPU with 64-bit extensions, MOVBE, MMX, SSE, SSE2, SSE3 and SSSE3
15252 instruction set support.
15254 @item silvermont
15255 Intel Silvermont CPU with 64-bit extensions, MOVBE, MMX, SSE, SSE2, SSE3, SSSE3,
15256 SSE4.1, SSE4.2, POPCNT, AES, PCLMUL and RDRND instruction set support.
15258 @item k6
15259 AMD K6 CPU with MMX instruction set support.
15261 @item k6-2
15262 @itemx k6-3
15263 Improved versions of AMD K6 CPU with MMX and 3DNow!@: instruction set support.
15265 @item athlon
15266 @itemx athlon-tbird
15267 AMD Athlon CPU with MMX, 3dNOW!, enhanced 3DNow!@: and SSE prefetch instructions
15268 support.
15270 @item athlon-4
15271 @itemx athlon-xp
15272 @itemx athlon-mp
15273 Improved AMD Athlon CPU with MMX, 3DNow!, enhanced 3DNow!@: and full SSE
15274 instruction set support.
15276 @item k8
15277 @itemx opteron
15278 @itemx athlon64
15279 @itemx athlon-fx
15280 Processors based on the AMD K8 core with x86-64 instruction set support,
15281 including the AMD Opteron, Athlon 64, and Athlon 64 FX processors.
15282 (This supersets MMX, SSE, SSE2, 3DNow!, enhanced 3DNow!@: and 64-bit
15283 instruction set extensions.)
15285 @item k8-sse3
15286 @itemx opteron-sse3
15287 @itemx athlon64-sse3
15288 Improved versions of AMD K8 cores with SSE3 instruction set support.
15290 @item amdfam10
15291 @itemx barcelona
15292 CPUs based on AMD Family 10h cores with x86-64 instruction set support.  (This
15293 supersets MMX, SSE, SSE2, SSE3, SSE4A, 3DNow!, enhanced 3DNow!, ABM and 64-bit
15294 instruction set extensions.)
15296 @item bdver1
15297 CPUs based on AMD Family 15h cores with x86-64 instruction set support.  (This
15298 supersets FMA4, AVX, XOP, LWP, AES, PCL_MUL, CX16, MMX, SSE, SSE2, SSE3, SSE4A,
15299 SSSE3, SSE4.1, SSE4.2, ABM and 64-bit instruction set extensions.)
15300 @item bdver2
15301 AMD Family 15h core based CPUs with x86-64 instruction set support.  (This
15302 supersets BMI, TBM, F16C, FMA, FMA4, AVX, XOP, LWP, AES, PCL_MUL, CX16, MMX,
15303 SSE, SSE2, SSE3, SSE4A, SSSE3, SSE4.1, SSE4.2, ABM and 64-bit instruction set 
15304 extensions.)
15305 @item bdver3
15306 AMD Family 15h core based CPUs with x86-64 instruction set support.  (This
15307 supersets BMI, TBM, F16C, FMA, FMA4, FSGSBASE, AVX, XOP, LWP, AES, 
15308 PCL_MUL, CX16, MMX, SSE, SSE2, SSE3, SSE4A, SSSE3, SSE4.1, SSE4.2, ABM and 
15309 64-bit instruction set extensions.
15310 @item bdver4
15311 AMD Family 15h core based CPUs with x86-64 instruction set support.  (This
15312 supersets BMI, BMI2, TBM, F16C, FMA, FMA4, FSGSBASE, AVX, AVX2, XOP, LWP, 
15313 AES, PCL_MUL, CX16, MOVBE, MMX, SSE, SSE2, SSE3, SSE4A, SSSE3, SSE4.1, 
15314 SSE4.2, ABM and 64-bit instruction set extensions.
15316 @item btver1
15317 CPUs based on AMD Family 14h cores with x86-64 instruction set support.  (This
15318 supersets MMX, SSE, SSE2, SSE3, SSSE3, SSE4A, CX16, ABM and 64-bit
15319 instruction set extensions.)
15321 @item btver2
15322 CPUs based on AMD Family 16h cores with x86-64 instruction set support. This
15323 includes MOVBE, F16C, BMI, AVX, PCL_MUL, AES, SSE4.2, SSE4.1, CX16, ABM,
15324 SSE4A, SSSE3, SSE3, SSE2, SSE, MMX and 64-bit instruction set extensions.
15326 @item winchip-c6
15327 IDT WinChip C6 CPU, dealt in same way as i486 with additional MMX instruction
15328 set support.
15330 @item winchip2
15331 IDT WinChip 2 CPU, dealt in same way as i486 with additional MMX and 3DNow!@:
15332 instruction set support.
15334 @item c3
15335 VIA C3 CPU with MMX and 3DNow!@: instruction set support.  (No scheduling is
15336 implemented for this chip.)
15338 @item c3-2
15339 VIA C3-2 (Nehemiah/C5XL) CPU with MMX and SSE instruction set support.
15340 (No scheduling is
15341 implemented for this chip.)
15343 @item geode
15344 AMD Geode embedded processor with MMX and 3DNow!@: instruction set support.
15345 @end table
15347 @item -mtune=@var{cpu-type}
15348 @opindex mtune
15349 Tune to @var{cpu-type} everything applicable about the generated code, except
15350 for the ABI and the set of available instructions.  
15351 While picking a specific @var{cpu-type} schedules things appropriately
15352 for that particular chip, the compiler does not generate any code that
15353 cannot run on the default machine type unless you use a
15354 @option{-march=@var{cpu-type}} option.
15355 For example, if GCC is configured for i686-pc-linux-gnu
15356 then @option{-mtune=pentium4} generates code that is tuned for Pentium 4
15357 but still runs on i686 machines.
15359 The choices for @var{cpu-type} are the same as for @option{-march}.
15360 In addition, @option{-mtune} supports 2 extra choices for @var{cpu-type}:
15362 @table @samp
15363 @item generic
15364 Produce code optimized for the most common IA32/@/AMD64/@/EM64T processors.
15365 If you know the CPU on which your code will run, then you should use
15366 the corresponding @option{-mtune} or @option{-march} option instead of
15367 @option{-mtune=generic}.  But, if you do not know exactly what CPU users
15368 of your application will have, then you should use this option.
15370 As new processors are deployed in the marketplace, the behavior of this
15371 option will change.  Therefore, if you upgrade to a newer version of
15372 GCC, code generation controlled by this option will change to reflect
15373 the processors
15374 that are most common at the time that version of GCC is released.
15376 There is no @option{-march=generic} option because @option{-march}
15377 indicates the instruction set the compiler can use, and there is no
15378 generic instruction set applicable to all processors.  In contrast,
15379 @option{-mtune} indicates the processor (or, in this case, collection of
15380 processors) for which the code is optimized.
15382 @item intel
15383 Produce code optimized for the most current Intel processors, which are
15384 Haswell and Silvermont for this version of GCC.  If you know the CPU
15385 on which your code will run, then you should use the corresponding
15386 @option{-mtune} or @option{-march} option instead of @option{-mtune=intel}.
15387 But, if you want your application performs better on both Haswell and
15388 Silvermont, then you should use this option.
15390 As new Intel processors are deployed in the marketplace, the behavior of
15391 this option will change.  Therefore, if you upgrade to a newer version of
15392 GCC, code generation controlled by this option will change to reflect
15393 the most current Intel processors at the time that version of GCC is
15394 released.
15396 There is no @option{-march=intel} option because @option{-march} indicates
15397 the instruction set the compiler can use, and there is no common
15398 instruction set applicable to all processors.  In contrast,
15399 @option{-mtune} indicates the processor (or, in this case, collection of
15400 processors) for which the code is optimized.
15401 @end table
15403 @item -mcpu=@var{cpu-type}
15404 @opindex mcpu
15405 A deprecated synonym for @option{-mtune}.
15407 @item -mfpmath=@var{unit}
15408 @opindex mfpmath
15409 Generate floating-point arithmetic for selected unit @var{unit}.  The choices
15410 for @var{unit} are:
15412 @table @samp
15413 @item 387
15414 Use the standard 387 floating-point coprocessor present on the majority of chips and
15415 emulated otherwise.  Code compiled with this option runs almost everywhere.
15416 The temporary results are computed in 80-bit precision instead of the precision
15417 specified by the type, resulting in slightly different results compared to most
15418 of other chips.  See @option{-ffloat-store} for more detailed description.
15420 This is the default choice for i386 compiler.
15422 @item sse
15423 Use scalar floating-point instructions present in the SSE instruction set.
15424 This instruction set is supported by Pentium III and newer chips,
15425 and in the AMD line
15426 by Athlon-4, Athlon XP and Athlon MP chips.  The earlier version of the SSE
15427 instruction set supports only single-precision arithmetic, thus the double and
15428 extended-precision arithmetic are still done using 387.  A later version, present
15429 only in Pentium 4 and AMD x86-64 chips, supports double-precision
15430 arithmetic too.
15432 For the i386 compiler, you must use @option{-march=@var{cpu-type}}, @option{-msse}
15433 or @option{-msse2} switches to enable SSE extensions and make this option
15434 effective.  For the x86-64 compiler, these extensions are enabled by default.
15436 The resulting code should be considerably faster in the majority of cases and avoid
15437 the numerical instability problems of 387 code, but may break some existing
15438 code that expects temporaries to be 80 bits.
15440 This is the default choice for the x86-64 compiler.
15442 @item sse,387
15443 @itemx sse+387
15444 @itemx both
15445 Attempt to utilize both instruction sets at once.  This effectively doubles the
15446 amount of available registers, and on chips with separate execution units for
15447 387 and SSE the execution resources too.  Use this option with care, as it is
15448 still experimental, because the GCC register allocator does not model separate
15449 functional units well, resulting in unstable performance.
15450 @end table
15452 @item -masm=@var{dialect}
15453 @opindex masm=@var{dialect}
15454 Output assembly instructions using selected @var{dialect}.  Supported
15455 choices are @samp{intel} or @samp{att} (the default).  Darwin does
15456 not support @samp{intel}.
15458 @item -mieee-fp
15459 @itemx -mno-ieee-fp
15460 @opindex mieee-fp
15461 @opindex mno-ieee-fp
15462 Control whether or not the compiler uses IEEE floating-point
15463 comparisons.  These correctly handle the case where the result of a
15464 comparison is unordered.
15466 @item -msoft-float
15467 @opindex msoft-float
15468 Generate output containing library calls for floating point.
15470 @strong{Warning:} the requisite libraries are not part of GCC@.
15471 Normally the facilities of the machine's usual C compiler are used, but
15472 this can't be done directly in cross-compilation.  You must make your
15473 own arrangements to provide suitable library functions for
15474 cross-compilation.
15476 On machines where a function returns floating-point results in the 80387
15477 register stack, some floating-point opcodes may be emitted even if
15478 @option{-msoft-float} is used.
15480 @item -mno-fp-ret-in-387
15481 @opindex mno-fp-ret-in-387
15482 Do not use the FPU registers for return values of functions.
15484 The usual calling convention has functions return values of types
15485 @code{float} and @code{double} in an FPU register, even if there
15486 is no FPU@.  The idea is that the operating system should emulate
15487 an FPU@.
15489 The option @option{-mno-fp-ret-in-387} causes such values to be returned
15490 in ordinary CPU registers instead.
15492 @item -mno-fancy-math-387
15493 @opindex mno-fancy-math-387
15494 Some 387 emulators do not support the @code{sin}, @code{cos} and
15495 @code{sqrt} instructions for the 387.  Specify this option to avoid
15496 generating those instructions.  This option is the default on FreeBSD,
15497 OpenBSD and NetBSD@.  This option is overridden when @option{-march}
15498 indicates that the target CPU always has an FPU and so the
15499 instruction does not need emulation.  These
15500 instructions are not generated unless you also use the
15501 @option{-funsafe-math-optimizations} switch.
15503 @item -malign-double
15504 @itemx -mno-align-double
15505 @opindex malign-double
15506 @opindex mno-align-double
15507 Control whether GCC aligns @code{double}, @code{long double}, and
15508 @code{long long} variables on a two-word boundary or a one-word
15509 boundary.  Aligning @code{double} variables on a two-word boundary
15510 produces code that runs somewhat faster on a Pentium at the
15511 expense of more memory.
15513 On x86-64, @option{-malign-double} is enabled by default.
15515 @strong{Warning:} if you use the @option{-malign-double} switch,
15516 structures containing the above types are aligned differently than
15517 the published application binary interface specifications for the 386
15518 and are not binary compatible with structures in code compiled
15519 without that switch.
15521 @item -m96bit-long-double
15522 @itemx -m128bit-long-double
15523 @opindex m96bit-long-double
15524 @opindex m128bit-long-double
15525 These switches control the size of @code{long double} type.  The i386
15526 application binary interface specifies the size to be 96 bits,
15527 so @option{-m96bit-long-double} is the default in 32-bit mode.
15529 Modern architectures (Pentium and newer) prefer @code{long double}
15530 to be aligned to an 8- or 16-byte boundary.  In arrays or structures
15531 conforming to the ABI, this is not possible.  So specifying
15532 @option{-m128bit-long-double} aligns @code{long double}
15533 to a 16-byte boundary by padding the @code{long double} with an additional
15534 32-bit zero.
15536 In the x86-64 compiler, @option{-m128bit-long-double} is the default choice as
15537 its ABI specifies that @code{long double} is aligned on 16-byte boundary.
15539 Notice that neither of these options enable any extra precision over the x87
15540 standard of 80 bits for a @code{long double}.
15542 @strong{Warning:} if you override the default value for your target ABI, this
15543 changes the size of 
15544 structures and arrays containing @code{long double} variables,
15545 as well as modifying the function calling convention for functions taking
15546 @code{long double}.  Hence they are not binary-compatible
15547 with code compiled without that switch.
15549 @item -mlong-double-64
15550 @itemx -mlong-double-80
15551 @itemx -mlong-double-128
15552 @opindex mlong-double-64
15553 @opindex mlong-double-80
15554 @opindex mlong-double-128
15555 These switches control the size of @code{long double} type. A size
15556 of 64 bits makes the @code{long double} type equivalent to the @code{double}
15557 type. This is the default for 32-bit Bionic C library.  A size
15558 of 128 bits makes the @code{long double} type equivalent to the
15559 @code{__float128} type. This is the default for 64-bit Bionic C library.
15561 @strong{Warning:} if you override the default value for your target ABI, this
15562 changes the size of
15563 structures and arrays containing @code{long double} variables,
15564 as well as modifying the function calling convention for functions taking
15565 @code{long double}.  Hence they are not binary-compatible
15566 with code compiled without that switch.
15568 @item -mlarge-data-threshold=@var{threshold}
15569 @opindex mlarge-data-threshold
15570 When @option{-mcmodel=medium} is specified, data objects larger than
15571 @var{threshold} are placed in the large data section.  This value must be the
15572 same across all objects linked into the binary, and defaults to 65535.
15574 @item -mrtd
15575 @opindex mrtd
15576 Use a different function-calling convention, in which functions that
15577 take a fixed number of arguments return with the @code{ret @var{num}}
15578 instruction, which pops their arguments while returning.  This saves one
15579 instruction in the caller since there is no need to pop the arguments
15580 there.
15582 You can specify that an individual function is called with this calling
15583 sequence with the function attribute @samp{stdcall}.  You can also
15584 override the @option{-mrtd} option by using the function attribute
15585 @samp{cdecl}.  @xref{Function Attributes}.
15587 @strong{Warning:} this calling convention is incompatible with the one
15588 normally used on Unix, so you cannot use it if you need to call
15589 libraries compiled with the Unix compiler.
15591 Also, you must provide function prototypes for all functions that
15592 take variable numbers of arguments (including @code{printf});
15593 otherwise incorrect code is generated for calls to those
15594 functions.
15596 In addition, seriously incorrect code results if you call a
15597 function with too many arguments.  (Normally, extra arguments are
15598 harmlessly ignored.)
15600 @item -mregparm=@var{num}
15601 @opindex mregparm
15602 Control how many registers are used to pass integer arguments.  By
15603 default, no registers are used to pass arguments, and at most 3
15604 registers can be used.  You can control this behavior for a specific
15605 function by using the function attribute @samp{regparm}.
15606 @xref{Function Attributes}.
15608 @strong{Warning:} if you use this switch, and
15609 @var{num} is nonzero, then you must build all modules with the same
15610 value, including any libraries.  This includes the system libraries and
15611 startup modules.
15613 @item -msseregparm
15614 @opindex msseregparm
15615 Use SSE register passing conventions for float and double arguments
15616 and return values.  You can control this behavior for a specific
15617 function by using the function attribute @samp{sseregparm}.
15618 @xref{Function Attributes}.
15620 @strong{Warning:} if you use this switch then you must build all
15621 modules with the same value, including any libraries.  This includes
15622 the system libraries and startup modules.
15624 @item -mvect8-ret-in-mem
15625 @opindex mvect8-ret-in-mem
15626 Return 8-byte vectors in memory instead of MMX registers.  This is the
15627 default on Solaris@tie{}8 and 9 and VxWorks to match the ABI of the Sun
15628 Studio compilers until version 12.  Later compiler versions (starting
15629 with Studio 12 Update@tie{}1) follow the ABI used by other x86 targets, which
15630 is the default on Solaris@tie{}10 and later.  @emph{Only} use this option if
15631 you need to remain compatible with existing code produced by those
15632 previous compiler versions or older versions of GCC@.
15634 @item -mpc32
15635 @itemx -mpc64
15636 @itemx -mpc80
15637 @opindex mpc32
15638 @opindex mpc64
15639 @opindex mpc80
15641 Set 80387 floating-point precision to 32, 64 or 80 bits.  When @option{-mpc32}
15642 is specified, the significands of results of floating-point operations are
15643 rounded to 24 bits (single precision); @option{-mpc64} rounds the
15644 significands of results of floating-point operations to 53 bits (double
15645 precision) and @option{-mpc80} rounds the significands of results of
15646 floating-point operations to 64 bits (extended double precision), which is
15647 the default.  When this option is used, floating-point operations in higher
15648 precisions are not available to the programmer without setting the FPU
15649 control word explicitly.
15651 Setting the rounding of floating-point operations to less than the default
15652 80 bits can speed some programs by 2% or more.  Note that some mathematical
15653 libraries assume that extended-precision (80-bit) floating-point operations
15654 are enabled by default; routines in such libraries could suffer significant
15655 loss of accuracy, typically through so-called ``catastrophic cancellation'',
15656 when this option is used to set the precision to less than extended precision.
15658 @item -mstackrealign
15659 @opindex mstackrealign
15660 Realign the stack at entry.  On the Intel x86, the @option{-mstackrealign}
15661 option generates an alternate prologue and epilogue that realigns the
15662 run-time stack if necessary.  This supports mixing legacy codes that keep
15663 4-byte stack alignment with modern codes that keep 16-byte stack alignment for
15664 SSE compatibility.  See also the attribute @code{force_align_arg_pointer},
15665 applicable to individual functions.
15667 @item -mpreferred-stack-boundary=@var{num}
15668 @opindex mpreferred-stack-boundary
15669 Attempt to keep the stack boundary aligned to a 2 raised to @var{num}
15670 byte boundary.  If @option{-mpreferred-stack-boundary} is not specified,
15671 the default is 4 (16 bytes or 128 bits).
15673 @strong{Warning:} When generating code for the x86-64 architecture with
15674 SSE extensions disabled, @option{-mpreferred-stack-boundary=3} can be
15675 used to keep the stack boundary aligned to 8 byte boundary.  Since
15676 x86-64 ABI require 16 byte stack alignment, this is ABI incompatible and
15677 intended to be used in controlled environment where stack space is
15678 important limitation.  This option will lead to wrong code when functions
15679 compiled with 16 byte stack alignment (such as functions from a standard
15680 library) are called with misaligned stack.  In this case, SSE
15681 instructions may lead to misaligned memory access traps.  In addition,
15682 variable arguments will be handled incorrectly for 16 byte aligned
15683 objects (including x87 long double and __int128), leading to wrong
15684 results.  You must build all modules with
15685 @option{-mpreferred-stack-boundary=3}, including any libraries.  This
15686 includes the system libraries and startup modules.
15688 @item -mincoming-stack-boundary=@var{num}
15689 @opindex mincoming-stack-boundary
15690 Assume the incoming stack is aligned to a 2 raised to @var{num} byte
15691 boundary.  If @option{-mincoming-stack-boundary} is not specified,
15692 the one specified by @option{-mpreferred-stack-boundary} is used.
15694 On Pentium and Pentium Pro, @code{double} and @code{long double} values
15695 should be aligned to an 8-byte boundary (see @option{-malign-double}) or
15696 suffer significant run time performance penalties.  On Pentium III, the
15697 Streaming SIMD Extension (SSE) data type @code{__m128} may not work
15698 properly if it is not 16-byte aligned.
15700 To ensure proper alignment of this values on the stack, the stack boundary
15701 must be as aligned as that required by any value stored on the stack.
15702 Further, every function must be generated such that it keeps the stack
15703 aligned.  Thus calling a function compiled with a higher preferred
15704 stack boundary from a function compiled with a lower preferred stack
15705 boundary most likely misaligns the stack.  It is recommended that
15706 libraries that use callbacks always use the default setting.
15708 This extra alignment does consume extra stack space, and generally
15709 increases code size.  Code that is sensitive to stack space usage, such
15710 as embedded systems and operating system kernels, may want to reduce the
15711 preferred alignment to @option{-mpreferred-stack-boundary=2}.
15713 @item -mmmx
15714 @itemx -mno-mmx
15715 @itemx -msse
15716 @itemx -mno-sse
15717 @itemx -msse2
15718 @itemx -mno-sse2
15719 @itemx -msse3
15720 @itemx -mno-sse3
15721 @itemx -mssse3
15722 @itemx -mno-ssse3
15723 @itemx -msse4.1
15724 @need 800
15725 @itemx -mno-sse4.1
15726 @itemx -msse4.2
15727 @itemx -mno-sse4.2
15728 @itemx -msse4
15729 @itemx -mno-sse4
15730 @itemx -mavx
15731 @itemx -mno-avx
15732 @itemx -mavx2
15733 @itemx -mno-avx2
15734 @itemx -mavx512f
15735 @itemx -mno-avx512f
15736 @need 800
15737 @itemx -mavx512pf
15738 @itemx -mno-avx512pf
15739 @itemx -mavx512er
15740 @itemx -mno-avx512er
15741 @itemx -mavx512cd
15742 @itemx -mno-avx512cd
15743 @itemx -msha
15744 @itemx -mno-sha
15745 @itemx -maes
15746 @itemx -mno-aes
15747 @itemx -mpclmul
15748 @itemx -mno-pclmul
15749 @itemx -mclfushopt
15750 @itemx -mno-clflsuhopt
15751 @need 800
15752 @itemx -mfsgsbase
15753 @itemx -mno-fsgsbase
15754 @itemx -mrdrnd
15755 @itemx -mno-rdrnd
15756 @itemx -mf16c
15757 @itemx -mno-f16c
15758 @itemx -mfma
15759 @itemx -mno-fma
15760 @itemx -mprefetchwt1
15761 @itemx -mno-prefetchwt1
15762 @itemx -msse4a
15763 @itemx -mno-sse4a
15764 @itemx -mfma4
15765 @itemx -mno-fma4
15766 @need 800
15767 @itemx -mxop
15768 @itemx -mno-xop
15769 @itemx -mlwp
15770 @itemx -mno-lwp
15771 @itemx -m3dnow
15772 @itemx -mno-3dnow
15773 @itemx -mpopcnt
15774 @itemx -mno-popcnt
15775 @itemx -mabm
15776 @itemx -mno-abm
15777 @itemx -mbmi
15778 @itemx -mbmi2
15779 @itemx -mno-bmi
15780 @itemx -mno-bmi2
15781 @itemx -mlzcnt
15782 @itemx -mno-lzcnt
15783 @itemx -mfxsr
15784 @itemx -mxsave
15785 @itemx -mxsaveopt
15786 @itemx -mrtm
15787 @itemx -mtbm
15788 @itemx -mno-tbm
15789 @itemx -mxsavec
15790 @itemx -mno-xsavec
15791 @itemx -mxsaves
15792 @itemx -mno-xsaves
15793 @itemx -mmpx
15794 @itemx -mno-mpx
15795 @opindex mmmx
15796 @opindex mno-mmx
15797 @opindex msse
15798 @opindex mno-sse
15799 @opindex m3dnow
15800 @opindex mno-3dnow
15801 These switches enable or disable the use of instructions in the MMX, SSE,
15802 SSE2, SSE3, SSSE3, SSE4.1, AVX, AVX2, AVX512F, AVX512PF, AVX512ER, AVX512CD,
15803 SHA, AES, PCLMUL, FSGSBASE, RDRND, F16C, FMA, SSE4A, FMA4, XOP, LWP, ABM,
15804 BMI, BMI2, FXSR, XSAVE, XSAVEOPT, LZCNT, RTM, MPX or 3DNow!@:
15805 extended instruction sets.
15806 These extensions are also available as built-in functions: see
15807 @ref{X86 Built-in Functions}, for details of the functions enabled and
15808 disabled by these switches.
15810 To generate SSE/SSE2 instructions automatically from floating-point
15811 code (as opposed to 387 instructions), see @option{-mfpmath=sse}.
15813 GCC depresses SSEx instructions when @option{-mavx} is used. Instead, it
15814 generates new AVX instructions or AVX equivalence for all SSEx instructions
15815 when needed.
15817 These options enable GCC to use these extended instructions in
15818 generated code, even without @option{-mfpmath=sse}.  Applications that
15819 perform run-time CPU detection must compile separate files for each
15820 supported architecture, using the appropriate flags.  In particular,
15821 the file containing the CPU detection code should be compiled without
15822 these options.
15824 @item -mdump-tune-features
15825 @opindex mdump-tune-features
15826 This option instructs GCC to dump the names of the x86 performance 
15827 tuning features and default settings. The names can be used in 
15828 @option{-mtune-ctrl=@var{feature-list}}.
15830 @item -mtune-ctrl=@var{feature-list}
15831 @opindex mtune-ctrl=@var{feature-list}
15832 This option is used to do fine grain control of x86 code generation features.
15833 @var{feature-list} is a comma separated list of @var{feature} names. See also
15834 @option{-mdump-tune-features}. When specified, the @var{feature} will be turned
15835 on if it is not preceded with @code{^}, otherwise, it will be turned off. 
15836 @option{-mtune-ctrl=@var{feature-list}} is intended to be used by GCC
15837 developers. Using it may lead to code paths not covered by testing and can
15838 potentially result in compiler ICEs or runtime errors.
15840 @item -mno-default
15841 @opindex mno-default
15842 This option instructs GCC to turn off all tunable features. See also 
15843 @option{-mtune-ctrl=@var{feature-list}} and @option{-mdump-tune-features}.
15845 @item -mcld
15846 @opindex mcld
15847 This option instructs GCC to emit a @code{cld} instruction in the prologue
15848 of functions that use string instructions.  String instructions depend on
15849 the DF flag to select between autoincrement or autodecrement mode.  While the
15850 ABI specifies the DF flag to be cleared on function entry, some operating
15851 systems violate this specification by not clearing the DF flag in their
15852 exception dispatchers.  The exception handler can be invoked with the DF flag
15853 set, which leads to wrong direction mode when string instructions are used.
15854 This option can be enabled by default on 32-bit x86 targets by configuring
15855 GCC with the @option{--enable-cld} configure option.  Generation of @code{cld}
15856 instructions can be suppressed with the @option{-mno-cld} compiler option
15857 in this case.
15859 @item -mvzeroupper
15860 @opindex mvzeroupper
15861 This option instructs GCC to emit a @code{vzeroupper} instruction
15862 before a transfer of control flow out of the function to minimize
15863 the AVX to SSE transition penalty as well as remove unnecessary @code{zeroupper}
15864 intrinsics.
15866 @item -mprefer-avx128
15867 @opindex mprefer-avx128
15868 This option instructs GCC to use 128-bit AVX instructions instead of
15869 256-bit AVX instructions in the auto-vectorizer.
15871 @item -mcx16
15872 @opindex mcx16
15873 This option enables GCC to generate @code{CMPXCHG16B} instructions.
15874 @code{CMPXCHG16B} allows for atomic operations on 128-bit double quadword
15875 (or oword) data types.  
15876 This is useful for high-resolution counters that can be updated
15877 by multiple processors (or cores).  This instruction is generated as part of
15878 atomic built-in functions: see @ref{__sync Builtins} or
15879 @ref{__atomic Builtins} for details.
15881 @item -msahf
15882 @opindex msahf
15883 This option enables generation of @code{SAHF} instructions in 64-bit code.
15884 Early Intel Pentium 4 CPUs with Intel 64 support,
15885 prior to the introduction of Pentium 4 G1 step in December 2005,
15886 lacked the @code{LAHF} and @code{SAHF} instructions
15887 which were supported by AMD64.
15888 These are load and store instructions, respectively, for certain status flags.
15889 In 64-bit mode, the @code{SAHF} instruction is used to optimize @code{fmod},
15890 @code{drem}, and @code{remainder} built-in functions;
15891 see @ref{Other Builtins} for details.
15893 @item -mmovbe
15894 @opindex mmovbe
15895 This option enables use of the @code{movbe} instruction to implement
15896 @code{__builtin_bswap32} and @code{__builtin_bswap64}.
15898 @item -mcrc32
15899 @opindex mcrc32
15900 This option enables built-in functions @code{__builtin_ia32_crc32qi},
15901 @code{__builtin_ia32_crc32hi}, @code{__builtin_ia32_crc32si} and
15902 @code{__builtin_ia32_crc32di} to generate the @code{crc32} machine instruction.
15904 @item -mrecip
15905 @opindex mrecip
15906 This option enables use of @code{RCPSS} and @code{RSQRTSS} instructions
15907 (and their vectorized variants @code{RCPPS} and @code{RSQRTPS})
15908 with an additional Newton-Raphson step
15909 to increase precision instead of @code{DIVSS} and @code{SQRTSS}
15910 (and their vectorized
15911 variants) for single-precision floating-point arguments.  These instructions
15912 are generated only when @option{-funsafe-math-optimizations} is enabled
15913 together with @option{-finite-math-only} and @option{-fno-trapping-math}.
15914 Note that while the throughput of the sequence is higher than the throughput
15915 of the non-reciprocal instruction, the precision of the sequence can be
15916 decreased by up to 2 ulp (i.e. the inverse of 1.0 equals 0.99999994).
15918 Note that GCC implements @code{1.0f/sqrtf(@var{x})} in terms of @code{RSQRTSS}
15919 (or @code{RSQRTPS}) already with @option{-ffast-math} (or the above option
15920 combination), and doesn't need @option{-mrecip}.
15922 Also note that GCC emits the above sequence with additional Newton-Raphson step
15923 for vectorized single-float division and vectorized @code{sqrtf(@var{x})}
15924 already with @option{-ffast-math} (or the above option combination), and
15925 doesn't need @option{-mrecip}.
15927 @item -mrecip=@var{opt}
15928 @opindex mrecip=opt
15929 This option controls which reciprocal estimate instructions
15930 may be used.  @var{opt} is a comma-separated list of options, which may
15931 be preceded by a @samp{!} to invert the option:
15933 @table @samp
15934 @item all
15935 Enable all estimate instructions.
15937 @item default
15938 Enable the default instructions, equivalent to @option{-mrecip}.
15940 @item none
15941 Disable all estimate instructions, equivalent to @option{-mno-recip}.
15943 @item div
15944 Enable the approximation for scalar division.
15946 @item vec-div
15947 Enable the approximation for vectorized division.
15949 @item sqrt
15950 Enable the approximation for scalar square root.
15952 @item vec-sqrt
15953 Enable the approximation for vectorized square root.
15954 @end table
15956 So, for example, @option{-mrecip=all,!sqrt} enables
15957 all of the reciprocal approximations, except for square root.
15959 @item -mveclibabi=@var{type}
15960 @opindex mveclibabi
15961 Specifies the ABI type to use for vectorizing intrinsics using an
15962 external library.  Supported values for @var{type} are @samp{svml} 
15963 for the Intel short
15964 vector math library and @samp{acml} for the AMD math core library.
15965 To use this option, both @option{-ftree-vectorize} and
15966 @option{-funsafe-math-optimizations} have to be enabled, and an SVML or ACML 
15967 ABI-compatible library must be specified at link time.
15969 GCC currently emits calls to @code{vmldExp2},
15970 @code{vmldLn2}, @code{vmldLog102}, @code{vmldLog102}, @code{vmldPow2},
15971 @code{vmldTanh2}, @code{vmldTan2}, @code{vmldAtan2}, @code{vmldAtanh2},
15972 @code{vmldCbrt2}, @code{vmldSinh2}, @code{vmldSin2}, @code{vmldAsinh2},
15973 @code{vmldAsin2}, @code{vmldCosh2}, @code{vmldCos2}, @code{vmldAcosh2},
15974 @code{vmldAcos2}, @code{vmlsExp4}, @code{vmlsLn4}, @code{vmlsLog104},
15975 @code{vmlsLog104}, @code{vmlsPow4}, @code{vmlsTanh4}, @code{vmlsTan4},
15976 @code{vmlsAtan4}, @code{vmlsAtanh4}, @code{vmlsCbrt4}, @code{vmlsSinh4},
15977 @code{vmlsSin4}, @code{vmlsAsinh4}, @code{vmlsAsin4}, @code{vmlsCosh4},
15978 @code{vmlsCos4}, @code{vmlsAcosh4} and @code{vmlsAcos4} for corresponding
15979 function type when @option{-mveclibabi=svml} is used, and @code{__vrd2_sin},
15980 @code{__vrd2_cos}, @code{__vrd2_exp}, @code{__vrd2_log}, @code{__vrd2_log2},
15981 @code{__vrd2_log10}, @code{__vrs4_sinf}, @code{__vrs4_cosf},
15982 @code{__vrs4_expf}, @code{__vrs4_logf}, @code{__vrs4_log2f},
15983 @code{__vrs4_log10f} and @code{__vrs4_powf} for the corresponding function type
15984 when @option{-mveclibabi=acml} is used.  
15986 @item -mabi=@var{name}
15987 @opindex mabi
15988 Generate code for the specified calling convention.  Permissible values
15989 are @samp{sysv} for the ABI used on GNU/Linux and other systems, and
15990 @samp{ms} for the Microsoft ABI.  The default is to use the Microsoft
15991 ABI when targeting Microsoft Windows and the SysV ABI on all other systems.
15992 You can control this behavior for a specific function by
15993 using the function attribute @samp{ms_abi}/@samp{sysv_abi}.
15994 @xref{Function Attributes}.
15996 @item -mtls-dialect=@var{type}
15997 @opindex mtls-dialect
15998 Generate code to access thread-local storage using the @samp{gnu} or
15999 @samp{gnu2} conventions.  @samp{gnu} is the conservative default;
16000 @samp{gnu2} is more efficient, but it may add compile- and run-time
16001 requirements that cannot be satisfied on all systems.
16003 @item -mpush-args
16004 @itemx -mno-push-args
16005 @opindex mpush-args
16006 @opindex mno-push-args
16007 Use PUSH operations to store outgoing parameters.  This method is shorter
16008 and usually equally fast as method using SUB/MOV operations and is enabled
16009 by default.  In some cases disabling it may improve performance because of
16010 improved scheduling and reduced dependencies.
16012 @item -maccumulate-outgoing-args
16013 @opindex maccumulate-outgoing-args
16014 If enabled, the maximum amount of space required for outgoing arguments is
16015 computed in the function prologue.  This is faster on most modern CPUs
16016 because of reduced dependencies, improved scheduling and reduced stack usage
16017 when the preferred stack boundary is not equal to 2.  The drawback is a notable
16018 increase in code size.  This switch implies @option{-mno-push-args}.
16020 @item -mthreads
16021 @opindex mthreads
16022 Support thread-safe exception handling on MinGW.  Programs that rely
16023 on thread-safe exception handling must compile and link all code with the
16024 @option{-mthreads} option.  When compiling, @option{-mthreads} defines
16025 @code{-D_MT}; when linking, it links in a special thread helper library
16026 @option{-lmingwthrd} which cleans up per-thread exception-handling data.
16028 @item -mno-align-stringops
16029 @opindex mno-align-stringops
16030 Do not align the destination of inlined string operations.  This switch reduces
16031 code size and improves performance in case the destination is already aligned,
16032 but GCC doesn't know about it.
16034 @item -minline-all-stringops
16035 @opindex minline-all-stringops
16036 By default GCC inlines string operations only when the destination is 
16037 known to be aligned to least a 4-byte boundary.  
16038 This enables more inlining and increases code
16039 size, but may improve performance of code that depends on fast
16040 @code{memcpy}, @code{strlen},
16041 and @code{memset} for short lengths.
16043 @item -minline-stringops-dynamically
16044 @opindex minline-stringops-dynamically
16045 For string operations of unknown size, use run-time checks with
16046 inline code for small blocks and a library call for large blocks.
16048 @item -mstringop-strategy=@var{alg}
16049 @opindex mstringop-strategy=@var{alg}
16050 Override the internal decision heuristic for the particular algorithm to use
16051 for inlining string operations.  The allowed values for @var{alg} are:
16053 @table @samp
16054 @item rep_byte
16055 @itemx rep_4byte
16056 @itemx rep_8byte
16057 Expand using i386 @code{rep} prefix of the specified size.
16059 @item byte_loop
16060 @itemx loop
16061 @itemx unrolled_loop
16062 Expand into an inline loop.
16064 @item libcall
16065 Always use a library call.
16066 @end table
16068 @item -mmemcpy-strategy=@var{strategy}
16069 @opindex mmemcpy-strategy=@var{strategy}
16070 Override the internal decision heuristic to decide if @code{__builtin_memcpy}
16071 should be inlined and what inline algorithm to use when the expected size
16072 of the copy operation is known. @var{strategy} 
16073 is a comma-separated list of @var{alg}:@var{max_size}:@var{dest_align} triplets. 
16074 @var{alg} is specified in @option{-mstringop-strategy}, @var{max_size} specifies
16075 the max byte size with which inline algorithm @var{alg} is allowed.  For the last
16076 triplet, the @var{max_size} must be @code{-1}. The @var{max_size} of the triplets
16077 in the list must be specified in increasing order.  The minimal byte size for 
16078 @var{alg} is @code{0} for the first triplet and @code{@var{max_size} + 1} of the 
16079 preceding range.
16081 @item -mmemset-strategy=@var{strategy}
16082 @opindex mmemset-strategy=@var{strategy}
16083 The option is similar to @option{-mmemcpy-strategy=} except that it is to control
16084 @code{__builtin_memset} expansion.
16086 @item -momit-leaf-frame-pointer
16087 @opindex momit-leaf-frame-pointer
16088 Don't keep the frame pointer in a register for leaf functions.  This
16089 avoids the instructions to save, set up, and restore frame pointers and
16090 makes an extra register available in leaf functions.  The option
16091 @option{-fomit-leaf-frame-pointer} removes the frame pointer for leaf functions,
16092 which might make debugging harder.
16094 @item -mtls-direct-seg-refs
16095 @itemx -mno-tls-direct-seg-refs
16096 @opindex mtls-direct-seg-refs
16097 Controls whether TLS variables may be accessed with offsets from the
16098 TLS segment register (@code{%gs} for 32-bit, @code{%fs} for 64-bit),
16099 or whether the thread base pointer must be added.  Whether or not this
16100 is valid depends on the operating system, and whether it maps the
16101 segment to cover the entire TLS area.
16103 For systems that use the GNU C Library, the default is on.
16105 @item -msse2avx
16106 @itemx -mno-sse2avx
16107 @opindex msse2avx
16108 Specify that the assembler should encode SSE instructions with VEX
16109 prefix.  The option @option{-mavx} turns this on by default.
16111 @item -mfentry
16112 @itemx -mno-fentry
16113 @opindex mfentry
16114 If profiling is active (@option{-pg}), put the profiling
16115 counter call before the prologue.
16116 Note: On x86 architectures the attribute @code{ms_hook_prologue}
16117 isn't possible at the moment for @option{-mfentry} and @option{-pg}.
16119 @item -mrecord-mcount
16120 @itemx -mno-record-mcount
16121 @opindex mrecord-mcount
16122 If profiling is active (@option{-pg}), generate a __mcount_loc section
16123 that contains pointers to each profiling call. This is useful for
16124 automatically patching and out calls.
16126 @item -mnop-mcount
16127 @itemx -mno-nop-mcount
16128 @opindex mnop-mcount
16129 If profiling is active (@option{-pg}), generate the calls to
16130 the profiling functions as nops. This is useful when they
16131 should be patched in later dynamically. This is likely only
16132 useful together with @option{-mrecord-mcount}.
16134 @item -m8bit-idiv
16135 @itemx -mno-8bit-idiv
16136 @opindex 8bit-idiv
16137 On some processors, like Intel Atom, 8-bit unsigned integer divide is
16138 much faster than 32-bit/64-bit integer divide.  This option generates a
16139 run-time check.  If both dividend and divisor are within range of 0
16140 to 255, 8-bit unsigned integer divide is used instead of
16141 32-bit/64-bit integer divide.
16143 @item -mavx256-split-unaligned-load
16144 @itemx -mavx256-split-unaligned-store
16145 @opindex avx256-split-unaligned-load
16146 @opindex avx256-split-unaligned-store
16147 Split 32-byte AVX unaligned load and store.
16149 @item -mstack-protector-guard=@var{guard}
16150 @opindex mstack-protector-guard=@var{guard}
16151 Generate stack protection code using canary at @var{guard}.  Supported
16152 locations are @samp{global} for global canary or @samp{tls} for per-thread
16153 canary in the TLS block (the default).  This option has effect only when
16154 @option{-fstack-protector} or @option{-fstack-protector-all} is specified.
16156 @end table
16158 These @samp{-m} switches are supported in addition to the above
16159 on x86-64 processors in 64-bit environments.
16161 @table @gcctabopt
16162 @item -m32
16163 @itemx -m64
16164 @itemx -mx32
16165 @itemx -m16
16166 @opindex m32
16167 @opindex m64
16168 @opindex mx32
16169 @opindex m16
16170 Generate code for a 16-bit, 32-bit or 64-bit environment.
16171 The @option{-m32} option sets @code{int}, @code{long}, and pointer types
16172 to 32 bits, and
16173 generates code that runs on any i386 system.
16175 The @option{-m64} option sets @code{int} to 32 bits and @code{long} and pointer
16176 types to 64 bits, and generates code for the x86-64 architecture.
16177 For Darwin only the @option{-m64} option also turns off the @option{-fno-pic}
16178 and @option{-mdynamic-no-pic} options.
16180 The @option{-mx32} option sets @code{int}, @code{long}, and pointer types
16181 to 32 bits, and
16182 generates code for the x86-64 architecture.
16184 The @option{-m16} option is the same as @option{-m32}, except for that
16185 it outputs the @code{.code16gcc} assembly directive at the beginning of
16186 the assembly output so that the binary can run in 16-bit mode.
16188 @item -mno-red-zone
16189 @opindex mno-red-zone
16190 Do not use a so-called ``red zone'' for x86-64 code.  The red zone is mandated
16191 by the x86-64 ABI; it is a 128-byte area beyond the location of the
16192 stack pointer that is not modified by signal or interrupt handlers
16193 and therefore can be used for temporary data without adjusting the stack
16194 pointer.  The flag @option{-mno-red-zone} disables this red zone.
16196 @item -mcmodel=small
16197 @opindex mcmodel=small
16198 Generate code for the small code model: the program and its symbols must
16199 be linked in the lower 2 GB of the address space.  Pointers are 64 bits.
16200 Programs can be statically or dynamically linked.  This is the default
16201 code model.
16203 @item -mcmodel=kernel
16204 @opindex mcmodel=kernel
16205 Generate code for the kernel code model.  The kernel runs in the
16206 negative 2 GB of the address space.
16207 This model has to be used for Linux kernel code.
16209 @item -mcmodel=medium
16210 @opindex mcmodel=medium
16211 Generate code for the medium model: the program is linked in the lower 2
16212 GB of the address space.  Small symbols are also placed there.  Symbols
16213 with sizes larger than @option{-mlarge-data-threshold} are put into
16214 large data or BSS sections and can be located above 2GB.  Programs can
16215 be statically or dynamically linked.
16217 @item -mcmodel=large
16218 @opindex mcmodel=large
16219 Generate code for the large model.  This model makes no assumptions
16220 about addresses and sizes of sections.
16222 @item -maddress-mode=long
16223 @opindex maddress-mode=long
16224 Generate code for long address mode.  This is only supported for 64-bit
16225 and x32 environments.  It is the default address mode for 64-bit
16226 environments.
16228 @item -maddress-mode=short
16229 @opindex maddress-mode=short
16230 Generate code for short address mode.  This is only supported for 32-bit
16231 and x32 environments.  It is the default address mode for 32-bit and
16232 x32 environments.
16233 @end table
16235 @node i386 and x86-64 Windows Options
16236 @subsection i386 and x86-64 Windows Options
16237 @cindex i386 and x86-64 Windows Options
16239 These additional options are available for Microsoft Windows targets:
16241 @table @gcctabopt
16242 @item -mconsole
16243 @opindex mconsole
16244 This option
16245 specifies that a console application is to be generated, by
16246 instructing the linker to set the PE header subsystem type
16247 required for console applications.
16248 This option is available for Cygwin and MinGW targets and is
16249 enabled by default on those targets.
16251 @item -mdll
16252 @opindex mdll
16253 This option is available for Cygwin and MinGW targets.  It
16254 specifies that a DLL---a dynamic link library---is to be
16255 generated, enabling the selection of the required runtime
16256 startup object and entry point.
16258 @item -mnop-fun-dllimport
16259 @opindex mnop-fun-dllimport
16260 This option is available for Cygwin and MinGW targets.  It
16261 specifies that the @code{dllimport} attribute should be ignored.
16263 @item -mthread
16264 @opindex mthread
16265 This option is available for MinGW targets. It specifies
16266 that MinGW-specific thread support is to be used.
16268 @item -municode
16269 @opindex municode
16270 This option is available for MinGW-w64 targets.  It causes
16271 the @code{UNICODE} preprocessor macro to be predefined, and
16272 chooses Unicode-capable runtime startup code.
16274 @item -mwin32
16275 @opindex mwin32
16276 This option is available for Cygwin and MinGW targets.  It
16277 specifies that the typical Microsoft Windows predefined macros are to
16278 be set in the pre-processor, but does not influence the choice
16279 of runtime library/startup code.
16281 @item -mwindows
16282 @opindex mwindows
16283 This option is available for Cygwin and MinGW targets.  It
16284 specifies that a GUI application is to be generated by
16285 instructing the linker to set the PE header subsystem type
16286 appropriately.
16288 @item -fno-set-stack-executable
16289 @opindex fno-set-stack-executable
16290 This option is available for MinGW targets. It specifies that
16291 the executable flag for the stack used by nested functions isn't
16292 set. This is necessary for binaries running in kernel mode of
16293 Microsoft Windows, as there the User32 API, which is used to set executable
16294 privileges, isn't available.
16296 @item -fwritable-relocated-rdata
16297 @opindex fno-writable-relocated-rdata
16298 This option is available for MinGW and Cygwin targets.  It specifies
16299 that relocated-data in read-only section is put into .data
16300 section.  This is a necessary for older runtimes not supporting
16301 modification of .rdata sections for pseudo-relocation.
16303 @item -mpe-aligned-commons
16304 @opindex mpe-aligned-commons
16305 This option is available for Cygwin and MinGW targets.  It
16306 specifies that the GNU extension to the PE file format that
16307 permits the correct alignment of COMMON variables should be
16308 used when generating code.  It is enabled by default if
16309 GCC detects that the target assembler found during configuration
16310 supports the feature.
16311 @end table
16313 See also under @ref{i386 and x86-64 Options} for standard options.
16315 @node IA-64 Options
16316 @subsection IA-64 Options
16317 @cindex IA-64 Options
16319 These are the @samp{-m} options defined for the Intel IA-64 architecture.
16321 @table @gcctabopt
16322 @item -mbig-endian
16323 @opindex mbig-endian
16324 Generate code for a big-endian target.  This is the default for HP-UX@.
16326 @item -mlittle-endian
16327 @opindex mlittle-endian
16328 Generate code for a little-endian target.  This is the default for AIX5
16329 and GNU/Linux.
16331 @item -mgnu-as
16332 @itemx -mno-gnu-as
16333 @opindex mgnu-as
16334 @opindex mno-gnu-as
16335 Generate (or don't) code for the GNU assembler.  This is the default.
16336 @c Also, this is the default if the configure option @option{--with-gnu-as}
16337 @c is used.
16339 @item -mgnu-ld
16340 @itemx -mno-gnu-ld
16341 @opindex mgnu-ld
16342 @opindex mno-gnu-ld
16343 Generate (or don't) code for the GNU linker.  This is the default.
16344 @c Also, this is the default if the configure option @option{--with-gnu-ld}
16345 @c is used.
16347 @item -mno-pic
16348 @opindex mno-pic
16349 Generate code that does not use a global pointer register.  The result
16350 is not position independent code, and violates the IA-64 ABI@.
16352 @item -mvolatile-asm-stop
16353 @itemx -mno-volatile-asm-stop
16354 @opindex mvolatile-asm-stop
16355 @opindex mno-volatile-asm-stop
16356 Generate (or don't) a stop bit immediately before and after volatile asm
16357 statements.
16359 @item -mregister-names
16360 @itemx -mno-register-names
16361 @opindex mregister-names
16362 @opindex mno-register-names
16363 Generate (or don't) @samp{in}, @samp{loc}, and @samp{out} register names for
16364 the stacked registers.  This may make assembler output more readable.
16366 @item -mno-sdata
16367 @itemx -msdata
16368 @opindex mno-sdata
16369 @opindex msdata
16370 Disable (or enable) optimizations that use the small data section.  This may
16371 be useful for working around optimizer bugs.
16373 @item -mconstant-gp
16374 @opindex mconstant-gp
16375 Generate code that uses a single constant global pointer value.  This is
16376 useful when compiling kernel code.
16378 @item -mauto-pic
16379 @opindex mauto-pic
16380 Generate code that is self-relocatable.  This implies @option{-mconstant-gp}.
16381 This is useful when compiling firmware code.
16383 @item -minline-float-divide-min-latency
16384 @opindex minline-float-divide-min-latency
16385 Generate code for inline divides of floating-point values
16386 using the minimum latency algorithm.
16388 @item -minline-float-divide-max-throughput
16389 @opindex minline-float-divide-max-throughput
16390 Generate code for inline divides of floating-point values
16391 using the maximum throughput algorithm.
16393 @item -mno-inline-float-divide
16394 @opindex mno-inline-float-divide
16395 Do not generate inline code for divides of floating-point values.
16397 @item -minline-int-divide-min-latency
16398 @opindex minline-int-divide-min-latency
16399 Generate code for inline divides of integer values
16400 using the minimum latency algorithm.
16402 @item -minline-int-divide-max-throughput
16403 @opindex minline-int-divide-max-throughput
16404 Generate code for inline divides of integer values
16405 using the maximum throughput algorithm.
16407 @item -mno-inline-int-divide
16408 @opindex mno-inline-int-divide
16409 Do not generate inline code for divides of integer values.
16411 @item -minline-sqrt-min-latency
16412 @opindex minline-sqrt-min-latency
16413 Generate code for inline square roots
16414 using the minimum latency algorithm.
16416 @item -minline-sqrt-max-throughput
16417 @opindex minline-sqrt-max-throughput
16418 Generate code for inline square roots
16419 using the maximum throughput algorithm.
16421 @item -mno-inline-sqrt
16422 @opindex mno-inline-sqrt
16423 Do not generate inline code for @code{sqrt}.
16425 @item -mfused-madd
16426 @itemx -mno-fused-madd
16427 @opindex mfused-madd
16428 @opindex mno-fused-madd
16429 Do (don't) generate code that uses the fused multiply/add or multiply/subtract
16430 instructions.  The default is to use these instructions.
16432 @item -mno-dwarf2-asm
16433 @itemx -mdwarf2-asm
16434 @opindex mno-dwarf2-asm
16435 @opindex mdwarf2-asm
16436 Don't (or do) generate assembler code for the DWARF 2 line number debugging
16437 info.  This may be useful when not using the GNU assembler.
16439 @item -mearly-stop-bits
16440 @itemx -mno-early-stop-bits
16441 @opindex mearly-stop-bits
16442 @opindex mno-early-stop-bits
16443 Allow stop bits to be placed earlier than immediately preceding the
16444 instruction that triggered the stop bit.  This can improve instruction
16445 scheduling, but does not always do so.
16447 @item -mfixed-range=@var{register-range}
16448 @opindex mfixed-range
16449 Generate code treating the given register range as fixed registers.
16450 A fixed register is one that the register allocator cannot use.  This is
16451 useful when compiling kernel code.  A register range is specified as
16452 two registers separated by a dash.  Multiple register ranges can be
16453 specified separated by a comma.
16455 @item -mtls-size=@var{tls-size}
16456 @opindex mtls-size
16457 Specify bit size of immediate TLS offsets.  Valid values are 14, 22, and
16460 @item -mtune=@var{cpu-type}
16461 @opindex mtune
16462 Tune the instruction scheduling for a particular CPU, Valid values are
16463 @samp{itanium}, @samp{itanium1}, @samp{merced}, @samp{itanium2},
16464 and @samp{mckinley}.
16466 @item -milp32
16467 @itemx -mlp64
16468 @opindex milp32
16469 @opindex mlp64
16470 Generate code for a 32-bit or 64-bit environment.
16471 The 32-bit environment sets int, long and pointer to 32 bits.
16472 The 64-bit environment sets int to 32 bits and long and pointer
16473 to 64 bits.  These are HP-UX specific flags.
16475 @item -mno-sched-br-data-spec
16476 @itemx -msched-br-data-spec
16477 @opindex mno-sched-br-data-spec
16478 @opindex msched-br-data-spec
16479 (Dis/En)able data speculative scheduling before reload.
16480 This results in generation of @code{ld.a} instructions and
16481 the corresponding check instructions (@code{ld.c} / @code{chk.a}).
16482 The default is 'disable'.
16484 @item -msched-ar-data-spec
16485 @itemx -mno-sched-ar-data-spec
16486 @opindex msched-ar-data-spec
16487 @opindex mno-sched-ar-data-spec
16488 (En/Dis)able data speculative scheduling after reload.
16489 This results in generation of @code{ld.a} instructions and
16490 the corresponding check instructions (@code{ld.c} / @code{chk.a}).
16491 The default is 'enable'.
16493 @item -mno-sched-control-spec
16494 @itemx -msched-control-spec
16495 @opindex mno-sched-control-spec
16496 @opindex msched-control-spec
16497 (Dis/En)able control speculative scheduling.  This feature is
16498 available only during region scheduling (i.e.@: before reload).
16499 This results in generation of the @code{ld.s} instructions and
16500 the corresponding check instructions @code{chk.s}.
16501 The default is 'disable'.
16503 @item -msched-br-in-data-spec
16504 @itemx -mno-sched-br-in-data-spec
16505 @opindex msched-br-in-data-spec
16506 @opindex mno-sched-br-in-data-spec
16507 (En/Dis)able speculative scheduling of the instructions that
16508 are dependent on the data speculative loads before reload.
16509 This is effective only with @option{-msched-br-data-spec} enabled.
16510 The default is 'enable'.
16512 @item -msched-ar-in-data-spec
16513 @itemx -mno-sched-ar-in-data-spec
16514 @opindex msched-ar-in-data-spec
16515 @opindex mno-sched-ar-in-data-spec
16516 (En/Dis)able speculative scheduling of the instructions that
16517 are dependent on the data speculative loads after reload.
16518 This is effective only with @option{-msched-ar-data-spec} enabled.
16519 The default is 'enable'.
16521 @item -msched-in-control-spec
16522 @itemx -mno-sched-in-control-spec
16523 @opindex msched-in-control-spec
16524 @opindex mno-sched-in-control-spec
16525 (En/Dis)able speculative scheduling of the instructions that
16526 are dependent on the control speculative loads.
16527 This is effective only with @option{-msched-control-spec} enabled.
16528 The default is 'enable'.
16530 @item -mno-sched-prefer-non-data-spec-insns
16531 @itemx -msched-prefer-non-data-spec-insns
16532 @opindex mno-sched-prefer-non-data-spec-insns
16533 @opindex msched-prefer-non-data-spec-insns
16534 If enabled, data-speculative instructions are chosen for schedule
16535 only if there are no other choices at the moment.  This makes
16536 the use of the data speculation much more conservative.
16537 The default is 'disable'.
16539 @item -mno-sched-prefer-non-control-spec-insns
16540 @itemx -msched-prefer-non-control-spec-insns
16541 @opindex mno-sched-prefer-non-control-spec-insns
16542 @opindex msched-prefer-non-control-spec-insns
16543 If enabled, control-speculative instructions are chosen for schedule
16544 only if there are no other choices at the moment.  This makes
16545 the use of the control speculation much more conservative.
16546 The default is 'disable'.
16548 @item -mno-sched-count-spec-in-critical-path
16549 @itemx -msched-count-spec-in-critical-path
16550 @opindex mno-sched-count-spec-in-critical-path
16551 @opindex msched-count-spec-in-critical-path
16552 If enabled, speculative dependencies are considered during
16553 computation of the instructions priorities.  This makes the use of the
16554 speculation a bit more conservative.
16555 The default is 'disable'.
16557 @item -msched-spec-ldc
16558 @opindex msched-spec-ldc
16559 Use a simple data speculation check.  This option is on by default.
16561 @item -msched-control-spec-ldc
16562 @opindex msched-spec-ldc
16563 Use a simple check for control speculation.  This option is on by default.
16565 @item -msched-stop-bits-after-every-cycle
16566 @opindex msched-stop-bits-after-every-cycle
16567 Place a stop bit after every cycle when scheduling.  This option is on
16568 by default.
16570 @item -msched-fp-mem-deps-zero-cost
16571 @opindex msched-fp-mem-deps-zero-cost
16572 Assume that floating-point stores and loads are not likely to cause a conflict
16573 when placed into the same instruction group.  This option is disabled by
16574 default.
16576 @item -msel-sched-dont-check-control-spec
16577 @opindex msel-sched-dont-check-control-spec
16578 Generate checks for control speculation in selective scheduling.
16579 This flag is disabled by default.
16581 @item -msched-max-memory-insns=@var{max-insns}
16582 @opindex msched-max-memory-insns
16583 Limit on the number of memory insns per instruction group, giving lower
16584 priority to subsequent memory insns attempting to schedule in the same
16585 instruction group. Frequently useful to prevent cache bank conflicts.
16586 The default value is 1.
16588 @item -msched-max-memory-insns-hard-limit
16589 @opindex msched-max-memory-insns-hard-limit
16590 Makes the limit specified by @option{msched-max-memory-insns} a hard limit,
16591 disallowing more than that number in an instruction group.
16592 Otherwise, the limit is ``soft'', meaning that non-memory operations
16593 are preferred when the limit is reached, but memory operations may still
16594 be scheduled.
16596 @end table
16598 @node LM32 Options
16599 @subsection LM32 Options
16600 @cindex LM32 options
16602 These @option{-m} options are defined for the LatticeMico32 architecture:
16604 @table @gcctabopt
16605 @item -mbarrel-shift-enabled
16606 @opindex mbarrel-shift-enabled
16607 Enable barrel-shift instructions.
16609 @item -mdivide-enabled
16610 @opindex mdivide-enabled
16611 Enable divide and modulus instructions.
16613 @item -mmultiply-enabled
16614 @opindex multiply-enabled
16615 Enable multiply instructions.
16617 @item -msign-extend-enabled
16618 @opindex msign-extend-enabled
16619 Enable sign extend instructions.
16621 @item -muser-enabled
16622 @opindex muser-enabled
16623 Enable user-defined instructions.
16625 @end table
16627 @node M32C Options
16628 @subsection M32C Options
16629 @cindex M32C options
16631 @table @gcctabopt
16632 @item -mcpu=@var{name}
16633 @opindex mcpu=
16634 Select the CPU for which code is generated.  @var{name} may be one of
16635 @samp{r8c} for the R8C/Tiny series, @samp{m16c} for the M16C (up to
16636 /60) series, @samp{m32cm} for the M16C/80 series, or @samp{m32c} for
16637 the M32C/80 series.
16639 @item -msim
16640 @opindex msim
16641 Specifies that the program will be run on the simulator.  This causes
16642 an alternate runtime library to be linked in which supports, for
16643 example, file I/O@.  You must not use this option when generating
16644 programs that will run on real hardware; you must provide your own
16645 runtime library for whatever I/O functions are needed.
16647 @item -memregs=@var{number}
16648 @opindex memregs=
16649 Specifies the number of memory-based pseudo-registers GCC uses
16650 during code generation.  These pseudo-registers are used like real
16651 registers, so there is a tradeoff between GCC's ability to fit the
16652 code into available registers, and the performance penalty of using
16653 memory instead of registers.  Note that all modules in a program must
16654 be compiled with the same value for this option.  Because of that, you
16655 must not use this option with GCC's default runtime libraries.
16657 @end table
16659 @node M32R/D Options
16660 @subsection M32R/D Options
16661 @cindex M32R/D options
16663 These @option{-m} options are defined for Renesas M32R/D architectures:
16665 @table @gcctabopt
16666 @item -m32r2
16667 @opindex m32r2
16668 Generate code for the M32R/2@.
16670 @item -m32rx
16671 @opindex m32rx
16672 Generate code for the M32R/X@.
16674 @item -m32r
16675 @opindex m32r
16676 Generate code for the M32R@.  This is the default.
16678 @item -mmodel=small
16679 @opindex mmodel=small
16680 Assume all objects live in the lower 16MB of memory (so that their addresses
16681 can be loaded with the @code{ld24} instruction), and assume all subroutines
16682 are reachable with the @code{bl} instruction.
16683 This is the default.
16685 The addressability of a particular object can be set with the
16686 @code{model} attribute.
16688 @item -mmodel=medium
16689 @opindex mmodel=medium
16690 Assume objects may be anywhere in the 32-bit address space (the compiler
16691 generates @code{seth/add3} instructions to load their addresses), and
16692 assume all subroutines are reachable with the @code{bl} instruction.
16694 @item -mmodel=large
16695 @opindex mmodel=large
16696 Assume objects may be anywhere in the 32-bit address space (the compiler
16697 generates @code{seth/add3} instructions to load their addresses), and
16698 assume subroutines may not be reachable with the @code{bl} instruction
16699 (the compiler generates the much slower @code{seth/add3/jl}
16700 instruction sequence).
16702 @item -msdata=none
16703 @opindex msdata=none
16704 Disable use of the small data area.  Variables are put into
16705 one of @samp{.data}, @samp{.bss}, or @samp{.rodata} (unless the
16706 @code{section} attribute has been specified).
16707 This is the default.
16709 The small data area consists of sections @samp{.sdata} and @samp{.sbss}.
16710 Objects may be explicitly put in the small data area with the
16711 @code{section} attribute using one of these sections.
16713 @item -msdata=sdata
16714 @opindex msdata=sdata
16715 Put small global and static data in the small data area, but do not
16716 generate special code to reference them.
16718 @item -msdata=use
16719 @opindex msdata=use
16720 Put small global and static data in the small data area, and generate
16721 special instructions to reference them.
16723 @item -G @var{num}
16724 @opindex G
16725 @cindex smaller data references
16726 Put global and static objects less than or equal to @var{num} bytes
16727 into the small data or BSS sections instead of the normal data or BSS
16728 sections.  The default value of @var{num} is 8.
16729 The @option{-msdata} option must be set to one of @samp{sdata} or @samp{use}
16730 for this option to have any effect.
16732 All modules should be compiled with the same @option{-G @var{num}} value.
16733 Compiling with different values of @var{num} may or may not work; if it
16734 doesn't the linker gives an error message---incorrect code is not
16735 generated.
16737 @item -mdebug
16738 @opindex mdebug
16739 Makes the M32R-specific code in the compiler display some statistics
16740 that might help in debugging programs.
16742 @item -malign-loops
16743 @opindex malign-loops
16744 Align all loops to a 32-byte boundary.
16746 @item -mno-align-loops
16747 @opindex mno-align-loops
16748 Do not enforce a 32-byte alignment for loops.  This is the default.
16750 @item -missue-rate=@var{number}
16751 @opindex missue-rate=@var{number}
16752 Issue @var{number} instructions per cycle.  @var{number} can only be 1
16753 or 2.
16755 @item -mbranch-cost=@var{number}
16756 @opindex mbranch-cost=@var{number}
16757 @var{number} can only be 1 or 2.  If it is 1 then branches are
16758 preferred over conditional code, if it is 2, then the opposite applies.
16760 @item -mflush-trap=@var{number}
16761 @opindex mflush-trap=@var{number}
16762 Specifies the trap number to use to flush the cache.  The default is
16763 12.  Valid numbers are between 0 and 15 inclusive.
16765 @item -mno-flush-trap
16766 @opindex mno-flush-trap
16767 Specifies that the cache cannot be flushed by using a trap.
16769 @item -mflush-func=@var{name}
16770 @opindex mflush-func=@var{name}
16771 Specifies the name of the operating system function to call to flush
16772 the cache.  The default is @emph{_flush_cache}, but a function call
16773 is only used if a trap is not available.
16775 @item -mno-flush-func
16776 @opindex mno-flush-func
16777 Indicates that there is no OS function for flushing the cache.
16779 @end table
16781 @node M680x0 Options
16782 @subsection M680x0 Options
16783 @cindex M680x0 options
16785 These are the @samp{-m} options defined for M680x0 and ColdFire processors.
16786 The default settings depend on which architecture was selected when
16787 the compiler was configured; the defaults for the most common choices
16788 are given below.
16790 @table @gcctabopt
16791 @item -march=@var{arch}
16792 @opindex march
16793 Generate code for a specific M680x0 or ColdFire instruction set
16794 architecture.  Permissible values of @var{arch} for M680x0
16795 architectures are: @samp{68000}, @samp{68010}, @samp{68020},
16796 @samp{68030}, @samp{68040}, @samp{68060} and @samp{cpu32}.  ColdFire
16797 architectures are selected according to Freescale's ISA classification
16798 and the permissible values are: @samp{isaa}, @samp{isaaplus},
16799 @samp{isab} and @samp{isac}.
16801 GCC defines a macro @samp{__mcf@var{arch}__} whenever it is generating
16802 code for a ColdFire target.  The @var{arch} in this macro is one of the
16803 @option{-march} arguments given above.
16805 When used together, @option{-march} and @option{-mtune} select code
16806 that runs on a family of similar processors but that is optimized
16807 for a particular microarchitecture.
16809 @item -mcpu=@var{cpu}
16810 @opindex mcpu
16811 Generate code for a specific M680x0 or ColdFire processor.
16812 The M680x0 @var{cpu}s are: @samp{68000}, @samp{68010}, @samp{68020},
16813 @samp{68030}, @samp{68040}, @samp{68060}, @samp{68302}, @samp{68332}
16814 and @samp{cpu32}.  The ColdFire @var{cpu}s are given by the table
16815 below, which also classifies the CPUs into families:
16817 @multitable @columnfractions 0.20 0.80
16818 @item @strong{Family} @tab @strong{@samp{-mcpu} arguments}
16819 @item @samp{51} @tab @samp{51} @samp{51ac} @samp{51ag} @samp{51cn} @samp{51em} @samp{51je} @samp{51jf} @samp{51jg} @samp{51jm} @samp{51mm} @samp{51qe} @samp{51qm}
16820 @item @samp{5206} @tab @samp{5202} @samp{5204} @samp{5206}
16821 @item @samp{5206e} @tab @samp{5206e}
16822 @item @samp{5208} @tab @samp{5207} @samp{5208}
16823 @item @samp{5211a} @tab @samp{5210a} @samp{5211a}
16824 @item @samp{5213} @tab @samp{5211} @samp{5212} @samp{5213}
16825 @item @samp{5216} @tab @samp{5214} @samp{5216}
16826 @item @samp{52235} @tab @samp{52230} @samp{52231} @samp{52232} @samp{52233} @samp{52234} @samp{52235}
16827 @item @samp{5225} @tab @samp{5224} @samp{5225}
16828 @item @samp{52259} @tab @samp{52252} @samp{52254} @samp{52255} @samp{52256} @samp{52258} @samp{52259}
16829 @item @samp{5235} @tab @samp{5232} @samp{5233} @samp{5234} @samp{5235} @samp{523x}
16830 @item @samp{5249} @tab @samp{5249}
16831 @item @samp{5250} @tab @samp{5250}
16832 @item @samp{5271} @tab @samp{5270} @samp{5271}
16833 @item @samp{5272} @tab @samp{5272}
16834 @item @samp{5275} @tab @samp{5274} @samp{5275}
16835 @item @samp{5282} @tab @samp{5280} @samp{5281} @samp{5282} @samp{528x}
16836 @item @samp{53017} @tab @samp{53011} @samp{53012} @samp{53013} @samp{53014} @samp{53015} @samp{53016} @samp{53017}
16837 @item @samp{5307} @tab @samp{5307}
16838 @item @samp{5329} @tab @samp{5327} @samp{5328} @samp{5329} @samp{532x}
16839 @item @samp{5373} @tab @samp{5372} @samp{5373} @samp{537x}
16840 @item @samp{5407} @tab @samp{5407}
16841 @item @samp{5475} @tab @samp{5470} @samp{5471} @samp{5472} @samp{5473} @samp{5474} @samp{5475} @samp{547x} @samp{5480} @samp{5481} @samp{5482} @samp{5483} @samp{5484} @samp{5485}
16842 @end multitable
16844 @option{-mcpu=@var{cpu}} overrides @option{-march=@var{arch}} if
16845 @var{arch} is compatible with @var{cpu}.  Other combinations of
16846 @option{-mcpu} and @option{-march} are rejected.
16848 GCC defines the macro @samp{__mcf_cpu_@var{cpu}} when ColdFire target
16849 @var{cpu} is selected.  It also defines @samp{__mcf_family_@var{family}},
16850 where the value of @var{family} is given by the table above.
16852 @item -mtune=@var{tune}
16853 @opindex mtune
16854 Tune the code for a particular microarchitecture within the
16855 constraints set by @option{-march} and @option{-mcpu}.
16856 The M680x0 microarchitectures are: @samp{68000}, @samp{68010},
16857 @samp{68020}, @samp{68030}, @samp{68040}, @samp{68060}
16858 and @samp{cpu32}.  The ColdFire microarchitectures
16859 are: @samp{cfv1}, @samp{cfv2}, @samp{cfv3}, @samp{cfv4} and @samp{cfv4e}.
16861 You can also use @option{-mtune=68020-40} for code that needs
16862 to run relatively well on 68020, 68030 and 68040 targets.
16863 @option{-mtune=68020-60} is similar but includes 68060 targets
16864 as well.  These two options select the same tuning decisions as
16865 @option{-m68020-40} and @option{-m68020-60} respectively.
16867 GCC defines the macros @samp{__mc@var{arch}} and @samp{__mc@var{arch}__}
16868 when tuning for 680x0 architecture @var{arch}.  It also defines
16869 @samp{mc@var{arch}} unless either @option{-ansi} or a non-GNU @option{-std}
16870 option is used.  If GCC is tuning for a range of architectures,
16871 as selected by @option{-mtune=68020-40} or @option{-mtune=68020-60},
16872 it defines the macros for every architecture in the range.
16874 GCC also defines the macro @samp{__m@var{uarch}__} when tuning for
16875 ColdFire microarchitecture @var{uarch}, where @var{uarch} is one
16876 of the arguments given above.
16878 @item -m68000
16879 @itemx -mc68000
16880 @opindex m68000
16881 @opindex mc68000
16882 Generate output for a 68000.  This is the default
16883 when the compiler is configured for 68000-based systems.
16884 It is equivalent to @option{-march=68000}.
16886 Use this option for microcontrollers with a 68000 or EC000 core,
16887 including the 68008, 68302, 68306, 68307, 68322, 68328 and 68356.
16889 @item -m68010
16890 @opindex m68010
16891 Generate output for a 68010.  This is the default
16892 when the compiler is configured for 68010-based systems.
16893 It is equivalent to @option{-march=68010}.
16895 @item -m68020
16896 @itemx -mc68020
16897 @opindex m68020
16898 @opindex mc68020
16899 Generate output for a 68020.  This is the default
16900 when the compiler is configured for 68020-based systems.
16901 It is equivalent to @option{-march=68020}.
16903 @item -m68030
16904 @opindex m68030
16905 Generate output for a 68030.  This is the default when the compiler is
16906 configured for 68030-based systems.  It is equivalent to
16907 @option{-march=68030}.
16909 @item -m68040
16910 @opindex m68040
16911 Generate output for a 68040.  This is the default when the compiler is
16912 configured for 68040-based systems.  It is equivalent to
16913 @option{-march=68040}.
16915 This option inhibits the use of 68881/68882 instructions that have to be
16916 emulated by software on the 68040.  Use this option if your 68040 does not
16917 have code to emulate those instructions.
16919 @item -m68060
16920 @opindex m68060
16921 Generate output for a 68060.  This is the default when the compiler is
16922 configured for 68060-based systems.  It is equivalent to
16923 @option{-march=68060}.
16925 This option inhibits the use of 68020 and 68881/68882 instructions that
16926 have to be emulated by software on the 68060.  Use this option if your 68060
16927 does not have code to emulate those instructions.
16929 @item -mcpu32
16930 @opindex mcpu32
16931 Generate output for a CPU32.  This is the default
16932 when the compiler is configured for CPU32-based systems.
16933 It is equivalent to @option{-march=cpu32}.
16935 Use this option for microcontrollers with a
16936 CPU32 or CPU32+ core, including the 68330, 68331, 68332, 68333, 68334,
16937 68336, 68340, 68341, 68349 and 68360.
16939 @item -m5200
16940 @opindex m5200
16941 Generate output for a 520X ColdFire CPU@.  This is the default
16942 when the compiler is configured for 520X-based systems.
16943 It is equivalent to @option{-mcpu=5206}, and is now deprecated
16944 in favor of that option.
16946 Use this option for microcontroller with a 5200 core, including
16947 the MCF5202, MCF5203, MCF5204 and MCF5206.
16949 @item -m5206e
16950 @opindex m5206e
16951 Generate output for a 5206e ColdFire CPU@.  The option is now
16952 deprecated in favor of the equivalent @option{-mcpu=5206e}.
16954 @item -m528x
16955 @opindex m528x
16956 Generate output for a member of the ColdFire 528X family.
16957 The option is now deprecated in favor of the equivalent
16958 @option{-mcpu=528x}.
16960 @item -m5307
16961 @opindex m5307
16962 Generate output for a ColdFire 5307 CPU@.  The option is now deprecated
16963 in favor of the equivalent @option{-mcpu=5307}.
16965 @item -m5407
16966 @opindex m5407
16967 Generate output for a ColdFire 5407 CPU@.  The option is now deprecated
16968 in favor of the equivalent @option{-mcpu=5407}.
16970 @item -mcfv4e
16971 @opindex mcfv4e
16972 Generate output for a ColdFire V4e family CPU (e.g.@: 547x/548x).
16973 This includes use of hardware floating-point instructions.
16974 The option is equivalent to @option{-mcpu=547x}, and is now
16975 deprecated in favor of that option.
16977 @item -m68020-40
16978 @opindex m68020-40
16979 Generate output for a 68040, without using any of the new instructions.
16980 This results in code that can run relatively efficiently on either a
16981 68020/68881 or a 68030 or a 68040.  The generated code does use the
16982 68881 instructions that are emulated on the 68040.
16984 The option is equivalent to @option{-march=68020} @option{-mtune=68020-40}.
16986 @item -m68020-60
16987 @opindex m68020-60
16988 Generate output for a 68060, without using any of the new instructions.
16989 This results in code that can run relatively efficiently on either a
16990 68020/68881 or a 68030 or a 68040.  The generated code does use the
16991 68881 instructions that are emulated on the 68060.
16993 The option is equivalent to @option{-march=68020} @option{-mtune=68020-60}.
16995 @item -mhard-float
16996 @itemx -m68881
16997 @opindex mhard-float
16998 @opindex m68881
16999 Generate floating-point instructions.  This is the default for 68020
17000 and above, and for ColdFire devices that have an FPU@.  It defines the
17001 macro @samp{__HAVE_68881__} on M680x0 targets and @samp{__mcffpu__}
17002 on ColdFire targets.
17004 @item -msoft-float
17005 @opindex msoft-float
17006 Do not generate floating-point instructions; use library calls instead.
17007 This is the default for 68000, 68010, and 68832 targets.  It is also
17008 the default for ColdFire devices that have no FPU.
17010 @item -mdiv
17011 @itemx -mno-div
17012 @opindex mdiv
17013 @opindex mno-div
17014 Generate (do not generate) ColdFire hardware divide and remainder
17015 instructions.  If @option{-march} is used without @option{-mcpu},
17016 the default is ``on'' for ColdFire architectures and ``off'' for M680x0
17017 architectures.  Otherwise, the default is taken from the target CPU
17018 (either the default CPU, or the one specified by @option{-mcpu}).  For
17019 example, the default is ``off'' for @option{-mcpu=5206} and ``on'' for
17020 @option{-mcpu=5206e}.
17022 GCC defines the macro @samp{__mcfhwdiv__} when this option is enabled.
17024 @item -mshort
17025 @opindex mshort
17026 Consider type @code{int} to be 16 bits wide, like @code{short int}.
17027 Additionally, parameters passed on the stack are also aligned to a
17028 16-bit boundary even on targets whose API mandates promotion to 32-bit.
17030 @item -mno-short
17031 @opindex mno-short
17032 Do not consider type @code{int} to be 16 bits wide.  This is the default.
17034 @item -mnobitfield
17035 @itemx -mno-bitfield
17036 @opindex mnobitfield
17037 @opindex mno-bitfield
17038 Do not use the bit-field instructions.  The @option{-m68000}, @option{-mcpu32}
17039 and @option{-m5200} options imply @w{@option{-mnobitfield}}.
17041 @item -mbitfield
17042 @opindex mbitfield
17043 Do use the bit-field instructions.  The @option{-m68020} option implies
17044 @option{-mbitfield}.  This is the default if you use a configuration
17045 designed for a 68020.
17047 @item -mrtd
17048 @opindex mrtd
17049 Use a different function-calling convention, in which functions
17050 that take a fixed number of arguments return with the @code{rtd}
17051 instruction, which pops their arguments while returning.  This
17052 saves one instruction in the caller since there is no need to pop
17053 the arguments there.
17055 This calling convention is incompatible with the one normally
17056 used on Unix, so you cannot use it if you need to call libraries
17057 compiled with the Unix compiler.
17059 Also, you must provide function prototypes for all functions that
17060 take variable numbers of arguments (including @code{printf});
17061 otherwise incorrect code is generated for calls to those
17062 functions.
17064 In addition, seriously incorrect code results if you call a
17065 function with too many arguments.  (Normally, extra arguments are
17066 harmlessly ignored.)
17068 The @code{rtd} instruction is supported by the 68010, 68020, 68030,
17069 68040, 68060 and CPU32 processors, but not by the 68000 or 5200.
17071 @item -mno-rtd
17072 @opindex mno-rtd
17073 Do not use the calling conventions selected by @option{-mrtd}.
17074 This is the default.
17076 @item -malign-int
17077 @itemx -mno-align-int
17078 @opindex malign-int
17079 @opindex mno-align-int
17080 Control whether GCC aligns @code{int}, @code{long}, @code{long long},
17081 @code{float}, @code{double}, and @code{long double} variables on a 32-bit
17082 boundary (@option{-malign-int}) or a 16-bit boundary (@option{-mno-align-int}).
17083 Aligning variables on 32-bit boundaries produces code that runs somewhat
17084 faster on processors with 32-bit busses at the expense of more memory.
17086 @strong{Warning:} if you use the @option{-malign-int} switch, GCC
17087 aligns structures containing the above types differently than
17088 most published application binary interface specifications for the m68k.
17090 @item -mpcrel
17091 @opindex mpcrel
17092 Use the pc-relative addressing mode of the 68000 directly, instead of
17093 using a global offset table.  At present, this option implies @option{-fpic},
17094 allowing at most a 16-bit offset for pc-relative addressing.  @option{-fPIC} is
17095 not presently supported with @option{-mpcrel}, though this could be supported for
17096 68020 and higher processors.
17098 @item -mno-strict-align
17099 @itemx -mstrict-align
17100 @opindex mno-strict-align
17101 @opindex mstrict-align
17102 Do not (do) assume that unaligned memory references are handled by
17103 the system.
17105 @item -msep-data
17106 Generate code that allows the data segment to be located in a different
17107 area of memory from the text segment.  This allows for execute-in-place in
17108 an environment without virtual memory management.  This option implies
17109 @option{-fPIC}.
17111 @item -mno-sep-data
17112 Generate code that assumes that the data segment follows the text segment.
17113 This is the default.
17115 @item -mid-shared-library
17116 Generate code that supports shared libraries via the library ID method.
17117 This allows for execute-in-place and shared libraries in an environment
17118 without virtual memory management.  This option implies @option{-fPIC}.
17120 @item -mno-id-shared-library
17121 Generate code that doesn't assume ID-based shared libraries are being used.
17122 This is the default.
17124 @item -mshared-library-id=n
17125 Specifies the identification number of the ID-based shared library being
17126 compiled.  Specifying a value of 0 generates more compact code; specifying
17127 other values forces the allocation of that number to the current
17128 library, but is no more space- or time-efficient than omitting this option.
17130 @item -mxgot
17131 @itemx -mno-xgot
17132 @opindex mxgot
17133 @opindex mno-xgot
17134 When generating position-independent code for ColdFire, generate code
17135 that works if the GOT has more than 8192 entries.  This code is
17136 larger and slower than code generated without this option.  On M680x0
17137 processors, this option is not needed; @option{-fPIC} suffices.
17139 GCC normally uses a single instruction to load values from the GOT@.
17140 While this is relatively efficient, it only works if the GOT
17141 is smaller than about 64k.  Anything larger causes the linker
17142 to report an error such as:
17144 @cindex relocation truncated to fit (ColdFire)
17145 @smallexample
17146 relocation truncated to fit: R_68K_GOT16O foobar
17147 @end smallexample
17149 If this happens, you should recompile your code with @option{-mxgot}.
17150 It should then work with very large GOTs.  However, code generated with
17151 @option{-mxgot} is less efficient, since it takes 4 instructions to fetch
17152 the value of a global symbol.
17154 Note that some linkers, including newer versions of the GNU linker,
17155 can create multiple GOTs and sort GOT entries.  If you have such a linker,
17156 you should only need to use @option{-mxgot} when compiling a single
17157 object file that accesses more than 8192 GOT entries.  Very few do.
17159 These options have no effect unless GCC is generating
17160 position-independent code.
17162 @end table
17164 @node MCore Options
17165 @subsection MCore Options
17166 @cindex MCore options
17168 These are the @samp{-m} options defined for the Motorola M*Core
17169 processors.
17171 @table @gcctabopt
17173 @item -mhardlit
17174 @itemx -mno-hardlit
17175 @opindex mhardlit
17176 @opindex mno-hardlit
17177 Inline constants into the code stream if it can be done in two
17178 instructions or less.
17180 @item -mdiv
17181 @itemx -mno-div
17182 @opindex mdiv
17183 @opindex mno-div
17184 Use the divide instruction.  (Enabled by default).
17186 @item -mrelax-immediate
17187 @itemx -mno-relax-immediate
17188 @opindex mrelax-immediate
17189 @opindex mno-relax-immediate
17190 Allow arbitrary-sized immediates in bit operations.
17192 @item -mwide-bitfields
17193 @itemx -mno-wide-bitfields
17194 @opindex mwide-bitfields
17195 @opindex mno-wide-bitfields
17196 Always treat bit-fields as @code{int}-sized.
17198 @item -m4byte-functions
17199 @itemx -mno-4byte-functions
17200 @opindex m4byte-functions
17201 @opindex mno-4byte-functions
17202 Force all functions to be aligned to a 4-byte boundary.
17204 @item -mcallgraph-data
17205 @itemx -mno-callgraph-data
17206 @opindex mcallgraph-data
17207 @opindex mno-callgraph-data
17208 Emit callgraph information.
17210 @item -mslow-bytes
17211 @itemx -mno-slow-bytes
17212 @opindex mslow-bytes
17213 @opindex mno-slow-bytes
17214 Prefer word access when reading byte quantities.
17216 @item -mlittle-endian
17217 @itemx -mbig-endian
17218 @opindex mlittle-endian
17219 @opindex mbig-endian
17220 Generate code for a little-endian target.
17222 @item -m210
17223 @itemx -m340
17224 @opindex m210
17225 @opindex m340
17226 Generate code for the 210 processor.
17228 @item -mno-lsim
17229 @opindex mno-lsim
17230 Assume that runtime support has been provided and so omit the
17231 simulator library (@file{libsim.a)} from the linker command line.
17233 @item -mstack-increment=@var{size}
17234 @opindex mstack-increment
17235 Set the maximum amount for a single stack increment operation.  Large
17236 values can increase the speed of programs that contain functions
17237 that need a large amount of stack space, but they can also trigger a
17238 segmentation fault if the stack is extended too much.  The default
17239 value is 0x1000.
17241 @end table
17243 @node MeP Options
17244 @subsection MeP Options
17245 @cindex MeP options
17247 @table @gcctabopt
17249 @item -mabsdiff
17250 @opindex mabsdiff
17251 Enables the @code{abs} instruction, which is the absolute difference
17252 between two registers.
17254 @item -mall-opts
17255 @opindex mall-opts
17256 Enables all the optional instructions---average, multiply, divide, bit
17257 operations, leading zero, absolute difference, min/max, clip, and
17258 saturation.
17261 @item -maverage
17262 @opindex maverage
17263 Enables the @code{ave} instruction, which computes the average of two
17264 registers.
17266 @item -mbased=@var{n}
17267 @opindex mbased=
17268 Variables of size @var{n} bytes or smaller are placed in the
17269 @code{.based} section by default.  Based variables use the @code{$tp}
17270 register as a base register, and there is a 128-byte limit to the
17271 @code{.based} section.
17273 @item -mbitops
17274 @opindex mbitops
17275 Enables the bit operation instructions---bit test (@code{btstm}), set
17276 (@code{bsetm}), clear (@code{bclrm}), invert (@code{bnotm}), and
17277 test-and-set (@code{tas}).
17279 @item -mc=@var{name}
17280 @opindex mc=
17281 Selects which section constant data is placed in.  @var{name} may
17282 be @code{tiny}, @code{near}, or @code{far}.
17284 @item -mclip
17285 @opindex mclip
17286 Enables the @code{clip} instruction.  Note that @code{-mclip} is not
17287 useful unless you also provide @code{-mminmax}.
17289 @item -mconfig=@var{name}
17290 @opindex mconfig=
17291 Selects one of the built-in core configurations.  Each MeP chip has
17292 one or more modules in it; each module has a core CPU and a variety of
17293 coprocessors, optional instructions, and peripherals.  The
17294 @code{MeP-Integrator} tool, not part of GCC, provides these
17295 configurations through this option; using this option is the same as
17296 using all the corresponding command-line options.  The default
17297 configuration is @code{default}.
17299 @item -mcop
17300 @opindex mcop
17301 Enables the coprocessor instructions.  By default, this is a 32-bit
17302 coprocessor.  Note that the coprocessor is normally enabled via the
17303 @code{-mconfig=} option.
17305 @item -mcop32
17306 @opindex mcop32
17307 Enables the 32-bit coprocessor's instructions.
17309 @item -mcop64
17310 @opindex mcop64
17311 Enables the 64-bit coprocessor's instructions.
17313 @item -mivc2
17314 @opindex mivc2
17315 Enables IVC2 scheduling.  IVC2 is a 64-bit VLIW coprocessor.
17317 @item -mdc
17318 @opindex mdc
17319 Causes constant variables to be placed in the @code{.near} section.
17321 @item -mdiv
17322 @opindex mdiv
17323 Enables the @code{div} and @code{divu} instructions.
17325 @item -meb
17326 @opindex meb
17327 Generate big-endian code.
17329 @item -mel
17330 @opindex mel
17331 Generate little-endian code.
17333 @item -mio-volatile
17334 @opindex mio-volatile
17335 Tells the compiler that any variable marked with the @code{io}
17336 attribute is to be considered volatile.
17338 @item -ml
17339 @opindex ml
17340 Causes variables to be assigned to the @code{.far} section by default.
17342 @item -mleadz
17343 @opindex mleadz
17344 Enables the @code{leadz} (leading zero) instruction.
17346 @item -mm
17347 @opindex mm
17348 Causes variables to be assigned to the @code{.near} section by default.
17350 @item -mminmax
17351 @opindex mminmax
17352 Enables the @code{min} and @code{max} instructions.
17354 @item -mmult
17355 @opindex mmult
17356 Enables the multiplication and multiply-accumulate instructions.
17358 @item -mno-opts
17359 @opindex mno-opts
17360 Disables all the optional instructions enabled by @code{-mall-opts}.
17362 @item -mrepeat
17363 @opindex mrepeat
17364 Enables the @code{repeat} and @code{erepeat} instructions, used for
17365 low-overhead looping.
17367 @item -ms
17368 @opindex ms
17369 Causes all variables to default to the @code{.tiny} section.  Note
17370 that there is a 65536-byte limit to this section.  Accesses to these
17371 variables use the @code{%gp} base register.
17373 @item -msatur
17374 @opindex msatur
17375 Enables the saturation instructions.  Note that the compiler does not
17376 currently generate these itself, but this option is included for
17377 compatibility with other tools, like @code{as}.
17379 @item -msdram
17380 @opindex msdram
17381 Link the SDRAM-based runtime instead of the default ROM-based runtime.
17383 @item -msim
17384 @opindex msim
17385 Link the simulator run-time libraries.
17387 @item -msimnovec
17388 @opindex msimnovec
17389 Link the simulator runtime libraries, excluding built-in support
17390 for reset and exception vectors and tables.
17392 @item -mtf
17393 @opindex mtf
17394 Causes all functions to default to the @code{.far} section.  Without
17395 this option, functions default to the @code{.near} section.
17397 @item -mtiny=@var{n}
17398 @opindex mtiny=
17399 Variables that are @var{n} bytes or smaller are allocated to the
17400 @code{.tiny} section.  These variables use the @code{$gp} base
17401 register.  The default for this option is 4, but note that there's a
17402 65536-byte limit to the @code{.tiny} section.
17404 @end table
17406 @node MicroBlaze Options
17407 @subsection MicroBlaze Options
17408 @cindex MicroBlaze Options
17410 @table @gcctabopt
17412 @item -msoft-float
17413 @opindex msoft-float
17414 Use software emulation for floating point (default).
17416 @item -mhard-float
17417 @opindex mhard-float
17418 Use hardware floating-point instructions.
17420 @item -mmemcpy
17421 @opindex mmemcpy
17422 Do not optimize block moves, use @code{memcpy}.
17424 @item -mno-clearbss
17425 @opindex mno-clearbss
17426 This option is deprecated.  Use @option{-fno-zero-initialized-in-bss} instead.
17428 @item -mcpu=@var{cpu-type}
17429 @opindex mcpu=
17430 Use features of, and schedule code for, the given CPU.
17431 Supported values are in the format @samp{v@var{X}.@var{YY}.@var{Z}},
17432 where @var{X} is a major version, @var{YY} is the minor version, and
17433 @var{Z} is compatibility code.  Example values are @samp{v3.00.a},
17434 @samp{v4.00.b}, @samp{v5.00.a}, @samp{v5.00.b}, @samp{v5.00.b}, @samp{v6.00.a}.
17436 @item -mxl-soft-mul
17437 @opindex mxl-soft-mul
17438 Use software multiply emulation (default).
17440 @item -mxl-soft-div
17441 @opindex mxl-soft-div
17442 Use software emulation for divides (default).
17444 @item -mxl-barrel-shift
17445 @opindex mxl-barrel-shift
17446 Use the hardware barrel shifter.
17448 @item -mxl-pattern-compare
17449 @opindex mxl-pattern-compare
17450 Use pattern compare instructions.
17452 @item -msmall-divides
17453 @opindex msmall-divides
17454 Use table lookup optimization for small signed integer divisions.
17456 @item -mxl-stack-check
17457 @opindex mxl-stack-check
17458 This option is deprecated.  Use @option{-fstack-check} instead.
17460 @item -mxl-gp-opt
17461 @opindex mxl-gp-opt
17462 Use GP-relative @code{.sdata}/@code{.sbss} sections.
17464 @item -mxl-multiply-high
17465 @opindex mxl-multiply-high
17466 Use multiply high instructions for high part of 32x32 multiply.
17468 @item -mxl-float-convert
17469 @opindex mxl-float-convert
17470 Use hardware floating-point conversion instructions.
17472 @item -mxl-float-sqrt
17473 @opindex mxl-float-sqrt
17474 Use hardware floating-point square root instruction.
17476 @item -mbig-endian
17477 @opindex mbig-endian
17478 Generate code for a big-endian target.
17480 @item -mlittle-endian
17481 @opindex mlittle-endian
17482 Generate code for a little-endian target.
17484 @item -mxl-reorder
17485 @opindex mxl-reorder
17486 Use reorder instructions (swap and byte reversed load/store).
17488 @item -mxl-mode-@var{app-model}
17489 Select application model @var{app-model}.  Valid models are
17490 @table @samp
17491 @item executable
17492 normal executable (default), uses startup code @file{crt0.o}.
17494 @item xmdstub
17495 for use with Xilinx Microprocessor Debugger (XMD) based
17496 software intrusive debug agent called xmdstub. This uses startup file
17497 @file{crt1.o} and sets the start address of the program to 0x800.
17499 @item bootstrap
17500 for applications that are loaded using a bootloader.
17501 This model uses startup file @file{crt2.o} which does not contain a processor
17502 reset vector handler. This is suitable for transferring control on a
17503 processor reset to the bootloader rather than the application.
17505 @item novectors
17506 for applications that do not require any of the
17507 MicroBlaze vectors. This option may be useful for applications running
17508 within a monitoring application. This model uses @file{crt3.o} as a startup file.
17509 @end table
17511 Option @option{-xl-mode-@var{app-model}} is a deprecated alias for
17512 @option{-mxl-mode-@var{app-model}}.
17514 @end table
17516 @node MIPS Options
17517 @subsection MIPS Options
17518 @cindex MIPS options
17520 @table @gcctabopt
17522 @item -EB
17523 @opindex EB
17524 Generate big-endian code.
17526 @item -EL
17527 @opindex EL
17528 Generate little-endian code.  This is the default for @samp{mips*el-*-*}
17529 configurations.
17531 @item -march=@var{arch}
17532 @opindex march
17533 Generate code that runs on @var{arch}, which can be the name of a
17534 generic MIPS ISA, or the name of a particular processor.
17535 The ISA names are:
17536 @samp{mips1}, @samp{mips2}, @samp{mips3}, @samp{mips4},
17537 @samp{mips32}, @samp{mips32r2}, @samp{mips32r3}, @samp{mips32r5}, 
17538 @samp{mips64}, @samp{mips64r2}, @samp{mips64r3} and @samp{mips64r5}.
17539 The processor names are:
17540 @samp{4kc}, @samp{4km}, @samp{4kp}, @samp{4ksc},
17541 @samp{4kec}, @samp{4kem}, @samp{4kep}, @samp{4ksd},
17542 @samp{5kc}, @samp{5kf},
17543 @samp{20kc},
17544 @samp{24kc}, @samp{24kf2_1}, @samp{24kf1_1},
17545 @samp{24kec}, @samp{24kef2_1}, @samp{24kef1_1},
17546 @samp{34kc}, @samp{34kf2_1}, @samp{34kf1_1}, @samp{34kn},
17547 @samp{74kc}, @samp{74kf2_1}, @samp{74kf1_1}, @samp{74kf3_2},
17548 @samp{1004kc}, @samp{1004kf2_1}, @samp{1004kf1_1},
17549 @samp{loongson2e}, @samp{loongson2f}, @samp{loongson3a},
17550 @samp{m4k},
17551 @samp{m14k}, @samp{m14kc}, @samp{m14ke}, @samp{m14kec},
17552 @samp{octeon}, @samp{octeon+}, @samp{octeon2}, @samp{octeon3},
17553 @samp{orion},
17554 @samp{p5600},
17555 @samp{r2000}, @samp{r3000}, @samp{r3900}, @samp{r4000}, @samp{r4400},
17556 @samp{r4600}, @samp{r4650}, @samp{r4700}, @samp{r6000}, @samp{r8000},
17557 @samp{rm7000}, @samp{rm9000},
17558 @samp{r10000}, @samp{r12000}, @samp{r14000}, @samp{r16000},
17559 @samp{sb1},
17560 @samp{sr71000},
17561 @samp{vr4100}, @samp{vr4111}, @samp{vr4120}, @samp{vr4130}, @samp{vr4300},
17562 @samp{vr5000}, @samp{vr5400}, @samp{vr5500},
17563 @samp{xlr} and @samp{xlp}.
17564 The special value @samp{from-abi} selects the
17565 most compatible architecture for the selected ABI (that is,
17566 @samp{mips1} for 32-bit ABIs and @samp{mips3} for 64-bit ABIs)@.
17568 The native Linux/GNU toolchain also supports the value @samp{native},
17569 which selects the best architecture option for the host processor.
17570 @option{-march=native} has no effect if GCC does not recognize
17571 the processor.
17573 In processor names, a final @samp{000} can be abbreviated as @samp{k}
17574 (for example, @option{-march=r2k}).  Prefixes are optional, and
17575 @samp{vr} may be written @samp{r}.
17577 Names of the form @samp{@var{n}f2_1} refer to processors with
17578 FPUs clocked at half the rate of the core, names of the form
17579 @samp{@var{n}f1_1} refer to processors with FPUs clocked at the same
17580 rate as the core, and names of the form @samp{@var{n}f3_2} refer to
17581 processors with FPUs clocked a ratio of 3:2 with respect to the core.
17582 For compatibility reasons, @samp{@var{n}f} is accepted as a synonym
17583 for @samp{@var{n}f2_1} while @samp{@var{n}x} and @samp{@var{b}fx} are
17584 accepted as synonyms for @samp{@var{n}f1_1}.
17586 GCC defines two macros based on the value of this option.  The first
17587 is @samp{_MIPS_ARCH}, which gives the name of target architecture, as
17588 a string.  The second has the form @samp{_MIPS_ARCH_@var{foo}},
17589 where @var{foo} is the capitalized value of @samp{_MIPS_ARCH}@.
17590 For example, @option{-march=r2000} sets @samp{_MIPS_ARCH}
17591 to @samp{"r2000"} and defines the macro @samp{_MIPS_ARCH_R2000}.
17593 Note that the @samp{_MIPS_ARCH} macro uses the processor names given
17594 above.  In other words, it has the full prefix and does not
17595 abbreviate @samp{000} as @samp{k}.  In the case of @samp{from-abi},
17596 the macro names the resolved architecture (either @samp{"mips1"} or
17597 @samp{"mips3"}).  It names the default architecture when no
17598 @option{-march} option is given.
17600 @item -mtune=@var{arch}
17601 @opindex mtune
17602 Optimize for @var{arch}.  Among other things, this option controls
17603 the way instructions are scheduled, and the perceived cost of arithmetic
17604 operations.  The list of @var{arch} values is the same as for
17605 @option{-march}.
17607 When this option is not used, GCC optimizes for the processor
17608 specified by @option{-march}.  By using @option{-march} and
17609 @option{-mtune} together, it is possible to generate code that
17610 runs on a family of processors, but optimize the code for one
17611 particular member of that family.
17613 @option{-mtune} defines the macros @samp{_MIPS_TUNE} and
17614 @samp{_MIPS_TUNE_@var{foo}}, which work in the same way as the
17615 @option{-march} ones described above.
17617 @item -mips1
17618 @opindex mips1
17619 Equivalent to @option{-march=mips1}.
17621 @item -mips2
17622 @opindex mips2
17623 Equivalent to @option{-march=mips2}.
17625 @item -mips3
17626 @opindex mips3
17627 Equivalent to @option{-march=mips3}.
17629 @item -mips4
17630 @opindex mips4
17631 Equivalent to @option{-march=mips4}.
17633 @item -mips32
17634 @opindex mips32
17635 Equivalent to @option{-march=mips32}.
17637 @item -mips32r3
17638 @opindex mips32r3
17639 Equivalent to @option{-march=mips32r3}.
17641 @item -mips32r5
17642 @opindex mips32r5
17643 Equivalent to @option{-march=mips32r5}.
17645 @item -mips64
17646 @opindex mips64
17647 Equivalent to @option{-march=mips64}.
17649 @item -mips64r2
17650 @opindex mips64r2
17651 Equivalent to @option{-march=mips64r2}.
17653 @item -mips64r3
17654 @opindex mips64r3
17655 Equivalent to @option{-march=mips64r3}.
17657 @item -mips64r5
17658 @opindex mips64r5
17659 Equivalent to @option{-march=mips64r5}.
17661 @item -mips16
17662 @itemx -mno-mips16
17663 @opindex mips16
17664 @opindex mno-mips16
17665 Generate (do not generate) MIPS16 code.  If GCC is targeting a
17666 MIPS32 or MIPS64 architecture, it makes use of the MIPS16e ASE@.
17668 MIPS16 code generation can also be controlled on a per-function basis
17669 by means of @code{mips16} and @code{nomips16} attributes.
17670 @xref{Function Attributes}, for more information.
17672 @item -mflip-mips16
17673 @opindex mflip-mips16
17674 Generate MIPS16 code on alternating functions.  This option is provided
17675 for regression testing of mixed MIPS16/non-MIPS16 code generation, and is
17676 not intended for ordinary use in compiling user code.
17678 @item -minterlink-compressed
17679 @item -mno-interlink-compressed
17680 @opindex minterlink-compressed
17681 @opindex mno-interlink-compressed
17682 Require (do not require) that code using the standard (uncompressed) MIPS ISA
17683 be link-compatible with MIPS16 and microMIPS code, and vice versa.
17685 For example, code using the standard ISA encoding cannot jump directly
17686 to MIPS16 or microMIPS code; it must either use a call or an indirect jump.
17687 @option{-minterlink-compressed} therefore disables direct jumps unless GCC
17688 knows that the target of the jump is not compressed.
17690 @item -minterlink-mips16
17691 @itemx -mno-interlink-mips16
17692 @opindex minterlink-mips16
17693 @opindex mno-interlink-mips16
17694 Aliases of @option{-minterlink-compressed} and
17695 @option{-mno-interlink-compressed}.  These options predate the microMIPS ASE
17696 and are retained for backwards compatibility.
17698 @item -mabi=32
17699 @itemx -mabi=o64
17700 @itemx -mabi=n32
17701 @itemx -mabi=64
17702 @itemx -mabi=eabi
17703 @opindex mabi=32
17704 @opindex mabi=o64
17705 @opindex mabi=n32
17706 @opindex mabi=64
17707 @opindex mabi=eabi
17708 Generate code for the given ABI@.
17710 Note that the EABI has a 32-bit and a 64-bit variant.  GCC normally
17711 generates 64-bit code when you select a 64-bit architecture, but you
17712 can use @option{-mgp32} to get 32-bit code instead.
17714 For information about the O64 ABI, see
17715 @uref{http://gcc.gnu.org/@/projects/@/mipso64-abi.html}.
17717 GCC supports a variant of the o32 ABI in which floating-point registers
17718 are 64 rather than 32 bits wide.  You can select this combination with
17719 @option{-mabi=32} @option{-mfp64}.  This ABI relies on the @code{mthc1}
17720 and @code{mfhc1} instructions and is therefore only supported for
17721 MIPS32R2, MIPS32R3 and MIPS32R5 processors.
17723 The register assignments for arguments and return values remain the
17724 same, but each scalar value is passed in a single 64-bit register
17725 rather than a pair of 32-bit registers.  For example, scalar
17726 floating-point values are returned in @samp{$f0} only, not a
17727 @samp{$f0}/@samp{$f1} pair.  The set of call-saved registers also
17728 remains the same, but all 64 bits are saved.
17730 @item -mabicalls
17731 @itemx -mno-abicalls
17732 @opindex mabicalls
17733 @opindex mno-abicalls
17734 Generate (do not generate) code that is suitable for SVR4-style
17735 dynamic objects.  @option{-mabicalls} is the default for SVR4-based
17736 systems.
17738 @item -mshared
17739 @itemx -mno-shared
17740 Generate (do not generate) code that is fully position-independent,
17741 and that can therefore be linked into shared libraries.  This option
17742 only affects @option{-mabicalls}.
17744 All @option{-mabicalls} code has traditionally been position-independent,
17745 regardless of options like @option{-fPIC} and @option{-fpic}.  However,
17746 as an extension, the GNU toolchain allows executables to use absolute
17747 accesses for locally-binding symbols.  It can also use shorter GP
17748 initialization sequences and generate direct calls to locally-defined
17749 functions.  This mode is selected by @option{-mno-shared}.
17751 @option{-mno-shared} depends on binutils 2.16 or higher and generates
17752 objects that can only be linked by the GNU linker.  However, the option
17753 does not affect the ABI of the final executable; it only affects the ABI
17754 of relocatable objects.  Using @option{-mno-shared} generally makes
17755 executables both smaller and quicker.
17757 @option{-mshared} is the default.
17759 @item -mplt
17760 @itemx -mno-plt
17761 @opindex mplt
17762 @opindex mno-plt
17763 Assume (do not assume) that the static and dynamic linkers
17764 support PLTs and copy relocations.  This option only affects
17765 @option{-mno-shared -mabicalls}.  For the n64 ABI, this option
17766 has no effect without @option{-msym32}.
17768 You can make @option{-mplt} the default by configuring
17769 GCC with @option{--with-mips-plt}.  The default is
17770 @option{-mno-plt} otherwise.
17772 @item -mxgot
17773 @itemx -mno-xgot
17774 @opindex mxgot
17775 @opindex mno-xgot
17776 Lift (do not lift) the usual restrictions on the size of the global
17777 offset table.
17779 GCC normally uses a single instruction to load values from the GOT@.
17780 While this is relatively efficient, it only works if the GOT
17781 is smaller than about 64k.  Anything larger causes the linker
17782 to report an error such as:
17784 @cindex relocation truncated to fit (MIPS)
17785 @smallexample
17786 relocation truncated to fit: R_MIPS_GOT16 foobar
17787 @end smallexample
17789 If this happens, you should recompile your code with @option{-mxgot}.
17790 This works with very large GOTs, although the code is also
17791 less efficient, since it takes three instructions to fetch the
17792 value of a global symbol.
17794 Note that some linkers can create multiple GOTs.  If you have such a
17795 linker, you should only need to use @option{-mxgot} when a single object
17796 file accesses more than 64k's worth of GOT entries.  Very few do.
17798 These options have no effect unless GCC is generating position
17799 independent code.
17801 @item -mgp32
17802 @opindex mgp32
17803 Assume that general-purpose registers are 32 bits wide.
17805 @item -mgp64
17806 @opindex mgp64
17807 Assume that general-purpose registers are 64 bits wide.
17809 @item -mfp32
17810 @opindex mfp32
17811 Assume that floating-point registers are 32 bits wide.
17813 @item -mfp64
17814 @opindex mfp64
17815 Assume that floating-point registers are 64 bits wide.
17817 @item -mhard-float
17818 @opindex mhard-float
17819 Use floating-point coprocessor instructions.
17821 @item -msoft-float
17822 @opindex msoft-float
17823 Do not use floating-point coprocessor instructions.  Implement
17824 floating-point calculations using library calls instead.
17826 @item -mno-float
17827 @opindex mno-float
17828 Equivalent to @option{-msoft-float}, but additionally asserts that the
17829 program being compiled does not perform any floating-point operations.
17830 This option is presently supported only by some bare-metal MIPS
17831 configurations, where it may select a special set of libraries
17832 that lack all floating-point support (including, for example, the
17833 floating-point @code{printf} formats).  
17834 If code compiled with @code{-mno-float} accidentally contains
17835 floating-point operations, it is likely to suffer a link-time
17836 or run-time failure.
17838 @item -msingle-float
17839 @opindex msingle-float
17840 Assume that the floating-point coprocessor only supports single-precision
17841 operations.
17843 @item -mdouble-float
17844 @opindex mdouble-float
17845 Assume that the floating-point coprocessor supports double-precision
17846 operations.  This is the default.
17848 @item -mabs=2008
17849 @itemx -mabs=legacy
17850 @opindex mabs=2008
17851 @opindex mabs=legacy
17852 These options control the treatment of the special not-a-number (NaN)
17853 IEEE 754 floating-point data with the @code{abs.@i{fmt}} and
17854 @code{neg.@i{fmt}} machine instructions.
17856 By default or when the @option{-mabs=legacy} is used the legacy
17857 treatment is selected.  In this case these instructions are considered
17858 arithmetic and avoided where correct operation is required and the
17859 input operand might be a NaN.  A longer sequence of instructions that
17860 manipulate the sign bit of floating-point datum manually is used
17861 instead unless the @option{-ffinite-math-only} option has also been
17862 specified.
17864 The @option{-mabs=2008} option selects the IEEE 754-2008 treatment.  In
17865 this case these instructions are considered non-arithmetic and therefore
17866 operating correctly in all cases, including in particular where the
17867 input operand is a NaN.  These instructions are therefore always used
17868 for the respective operations.
17870 @item -mnan=2008
17871 @itemx -mnan=legacy
17872 @opindex mnan=2008
17873 @opindex mnan=legacy
17874 These options control the encoding of the special not-a-number (NaN)
17875 IEEE 754 floating-point data.
17877 The @option{-mnan=legacy} option selects the legacy encoding.  In this
17878 case quiet NaNs (qNaNs) are denoted by the first bit of their trailing
17879 significand field being 0, whereas signalling NaNs (sNaNs) are denoted
17880 by the first bit of their trailing significand field being 1.
17882 The @option{-mnan=2008} option selects the IEEE 754-2008 encoding.  In
17883 this case qNaNs are denoted by the first bit of their trailing
17884 significand field being 1, whereas sNaNs are denoted by the first bit of
17885 their trailing significand field being 0.
17887 The default is @option{-mnan=legacy} unless GCC has been configured with
17888 @option{--with-nan=2008}.
17890 @item -mllsc
17891 @itemx -mno-llsc
17892 @opindex mllsc
17893 @opindex mno-llsc
17894 Use (do not use) @samp{ll}, @samp{sc}, and @samp{sync} instructions to
17895 implement atomic memory built-in functions.  When neither option is
17896 specified, GCC uses the instructions if the target architecture
17897 supports them.
17899 @option{-mllsc} is useful if the runtime environment can emulate the
17900 instructions and @option{-mno-llsc} can be useful when compiling for
17901 nonstandard ISAs.  You can make either option the default by
17902 configuring GCC with @option{--with-llsc} and @option{--without-llsc}
17903 respectively.  @option{--with-llsc} is the default for some
17904 configurations; see the installation documentation for details.
17906 @item -mdsp
17907 @itemx -mno-dsp
17908 @opindex mdsp
17909 @opindex mno-dsp
17910 Use (do not use) revision 1 of the MIPS DSP ASE@.
17911 @xref{MIPS DSP Built-in Functions}.  This option defines the
17912 preprocessor macro @samp{__mips_dsp}.  It also defines
17913 @samp{__mips_dsp_rev} to 1.
17915 @item -mdspr2
17916 @itemx -mno-dspr2
17917 @opindex mdspr2
17918 @opindex mno-dspr2
17919 Use (do not use) revision 2 of the MIPS DSP ASE@.
17920 @xref{MIPS DSP Built-in Functions}.  This option defines the
17921 preprocessor macros @samp{__mips_dsp} and @samp{__mips_dspr2}.
17922 It also defines @samp{__mips_dsp_rev} to 2.
17924 @item -msmartmips
17925 @itemx -mno-smartmips
17926 @opindex msmartmips
17927 @opindex mno-smartmips
17928 Use (do not use) the MIPS SmartMIPS ASE.
17930 @item -mpaired-single
17931 @itemx -mno-paired-single
17932 @opindex mpaired-single
17933 @opindex mno-paired-single
17934 Use (do not use) paired-single floating-point instructions.
17935 @xref{MIPS Paired-Single Support}.  This option requires
17936 hardware floating-point support to be enabled.
17938 @item -mdmx
17939 @itemx -mno-mdmx
17940 @opindex mdmx
17941 @opindex mno-mdmx
17942 Use (do not use) MIPS Digital Media Extension instructions.
17943 This option can only be used when generating 64-bit code and requires
17944 hardware floating-point support to be enabled.
17946 @item -mips3d
17947 @itemx -mno-mips3d
17948 @opindex mips3d
17949 @opindex mno-mips3d
17950 Use (do not use) the MIPS-3D ASE@.  @xref{MIPS-3D Built-in Functions}.
17951 The option @option{-mips3d} implies @option{-mpaired-single}.
17953 @item -mmicromips
17954 @itemx -mno-micromips
17955 @opindex mmicromips
17956 @opindex mno-mmicromips
17957 Generate (do not generate) microMIPS code.
17959 MicroMIPS code generation can also be controlled on a per-function basis
17960 by means of @code{micromips} and @code{nomicromips} attributes.
17961 @xref{Function Attributes}, for more information.
17963 @item -mmt
17964 @itemx -mno-mt
17965 @opindex mmt
17966 @opindex mno-mt
17967 Use (do not use) MT Multithreading instructions.
17969 @item -mmcu
17970 @itemx -mno-mcu
17971 @opindex mmcu
17972 @opindex mno-mcu
17973 Use (do not use) the MIPS MCU ASE instructions.
17975 @item -meva
17976 @itemx -mno-eva
17977 @opindex meva
17978 @opindex mno-eva
17979 Use (do not use) the MIPS Enhanced Virtual Addressing instructions.
17981 @item -mvirt
17982 @itemx -mno-virt
17983 @opindex mvirt
17984 @opindex mno-virt
17985 Use (do not use) the MIPS Virtualization Application Specific instructions.
17987 @item -mxpa
17988 @itemx -mno-xpa
17989 @opindex mxpa
17990 @opindex mno-xpa
17991 Use (do not use) the MIPS eXtended Physical Address (XPA) instructions.
17993 @item -mlong64
17994 @opindex mlong64
17995 Force @code{long} types to be 64 bits wide.  See @option{-mlong32} for
17996 an explanation of the default and the way that the pointer size is
17997 determined.
17999 @item -mlong32
18000 @opindex mlong32
18001 Force @code{long}, @code{int}, and pointer types to be 32 bits wide.
18003 The default size of @code{int}s, @code{long}s and pointers depends on
18004 the ABI@.  All the supported ABIs use 32-bit @code{int}s.  The n64 ABI
18005 uses 64-bit @code{long}s, as does the 64-bit EABI; the others use
18006 32-bit @code{long}s.  Pointers are the same size as @code{long}s,
18007 or the same size as integer registers, whichever is smaller.
18009 @item -msym32
18010 @itemx -mno-sym32
18011 @opindex msym32
18012 @opindex mno-sym32
18013 Assume (do not assume) that all symbols have 32-bit values, regardless
18014 of the selected ABI@.  This option is useful in combination with
18015 @option{-mabi=64} and @option{-mno-abicalls} because it allows GCC
18016 to generate shorter and faster references to symbolic addresses.
18018 @item -G @var{num}
18019 @opindex G
18020 Put definitions of externally-visible data in a small data section
18021 if that data is no bigger than @var{num} bytes.  GCC can then generate
18022 more efficient accesses to the data; see @option{-mgpopt} for details.
18024 The default @option{-G} option depends on the configuration.
18026 @item -mlocal-sdata
18027 @itemx -mno-local-sdata
18028 @opindex mlocal-sdata
18029 @opindex mno-local-sdata
18030 Extend (do not extend) the @option{-G} behavior to local data too,
18031 such as to static variables in C@.  @option{-mlocal-sdata} is the
18032 default for all configurations.
18034 If the linker complains that an application is using too much small data,
18035 you might want to try rebuilding the less performance-critical parts with
18036 @option{-mno-local-sdata}.  You might also want to build large
18037 libraries with @option{-mno-local-sdata}, so that the libraries leave
18038 more room for the main program.
18040 @item -mextern-sdata
18041 @itemx -mno-extern-sdata
18042 @opindex mextern-sdata
18043 @opindex mno-extern-sdata
18044 Assume (do not assume) that externally-defined data is in
18045 a small data section if the size of that data is within the @option{-G} limit.
18046 @option{-mextern-sdata} is the default for all configurations.
18048 If you compile a module @var{Mod} with @option{-mextern-sdata} @option{-G
18049 @var{num}} @option{-mgpopt}, and @var{Mod} references a variable @var{Var}
18050 that is no bigger than @var{num} bytes, you must make sure that @var{Var}
18051 is placed in a small data section.  If @var{Var} is defined by another
18052 module, you must either compile that module with a high-enough
18053 @option{-G} setting or attach a @code{section} attribute to @var{Var}'s
18054 definition.  If @var{Var} is common, you must link the application
18055 with a high-enough @option{-G} setting.
18057 The easiest way of satisfying these restrictions is to compile
18058 and link every module with the same @option{-G} option.  However,
18059 you may wish to build a library that supports several different
18060 small data limits.  You can do this by compiling the library with
18061 the highest supported @option{-G} setting and additionally using
18062 @option{-mno-extern-sdata} to stop the library from making assumptions
18063 about externally-defined data.
18065 @item -mgpopt
18066 @itemx -mno-gpopt
18067 @opindex mgpopt
18068 @opindex mno-gpopt
18069 Use (do not use) GP-relative accesses for symbols that are known to be
18070 in a small data section; see @option{-G}, @option{-mlocal-sdata} and
18071 @option{-mextern-sdata}.  @option{-mgpopt} is the default for all
18072 configurations.
18074 @option{-mno-gpopt} is useful for cases where the @code{$gp} register
18075 might not hold the value of @code{_gp}.  For example, if the code is
18076 part of a library that might be used in a boot monitor, programs that
18077 call boot monitor routines pass an unknown value in @code{$gp}.
18078 (In such situations, the boot monitor itself is usually compiled
18079 with @option{-G0}.)
18081 @option{-mno-gpopt} implies @option{-mno-local-sdata} and
18082 @option{-mno-extern-sdata}.
18084 @item -membedded-data
18085 @itemx -mno-embedded-data
18086 @opindex membedded-data
18087 @opindex mno-embedded-data
18088 Allocate variables to the read-only data section first if possible, then
18089 next in the small data section if possible, otherwise in data.  This gives
18090 slightly slower code than the default, but reduces the amount of RAM required
18091 when executing, and thus may be preferred for some embedded systems.
18093 @item -muninit-const-in-rodata
18094 @itemx -mno-uninit-const-in-rodata
18095 @opindex muninit-const-in-rodata
18096 @opindex mno-uninit-const-in-rodata
18097 Put uninitialized @code{const} variables in the read-only data section.
18098 This option is only meaningful in conjunction with @option{-membedded-data}.
18100 @item -mcode-readable=@var{setting}
18101 @opindex mcode-readable
18102 Specify whether GCC may generate code that reads from executable sections.
18103 There are three possible settings:
18105 @table @gcctabopt
18106 @item -mcode-readable=yes
18107 Instructions may freely access executable sections.  This is the
18108 default setting.
18110 @item -mcode-readable=pcrel
18111 MIPS16 PC-relative load instructions can access executable sections,
18112 but other instructions must not do so.  This option is useful on 4KSc
18113 and 4KSd processors when the code TLBs have the Read Inhibit bit set.
18114 It is also useful on processors that can be configured to have a dual
18115 instruction/data SRAM interface and that, like the M4K, automatically
18116 redirect PC-relative loads to the instruction RAM.
18118 @item -mcode-readable=no
18119 Instructions must not access executable sections.  This option can be
18120 useful on targets that are configured to have a dual instruction/data
18121 SRAM interface but that (unlike the M4K) do not automatically redirect
18122 PC-relative loads to the instruction RAM.
18123 @end table
18125 @item -msplit-addresses
18126 @itemx -mno-split-addresses
18127 @opindex msplit-addresses
18128 @opindex mno-split-addresses
18129 Enable (disable) use of the @code{%hi()} and @code{%lo()} assembler
18130 relocation operators.  This option has been superseded by
18131 @option{-mexplicit-relocs} but is retained for backwards compatibility.
18133 @item -mexplicit-relocs
18134 @itemx -mno-explicit-relocs
18135 @opindex mexplicit-relocs
18136 @opindex mno-explicit-relocs
18137 Use (do not use) assembler relocation operators when dealing with symbolic
18138 addresses.  The alternative, selected by @option{-mno-explicit-relocs},
18139 is to use assembler macros instead.
18141 @option{-mexplicit-relocs} is the default if GCC was configured
18142 to use an assembler that supports relocation operators.
18144 @item -mcheck-zero-division
18145 @itemx -mno-check-zero-division
18146 @opindex mcheck-zero-division
18147 @opindex mno-check-zero-division
18148 Trap (do not trap) on integer division by zero.
18150 The default is @option{-mcheck-zero-division}.
18152 @item -mdivide-traps
18153 @itemx -mdivide-breaks
18154 @opindex mdivide-traps
18155 @opindex mdivide-breaks
18156 MIPS systems check for division by zero by generating either a
18157 conditional trap or a break instruction.  Using traps results in
18158 smaller code, but is only supported on MIPS II and later.  Also, some
18159 versions of the Linux kernel have a bug that prevents trap from
18160 generating the proper signal (@code{SIGFPE}).  Use @option{-mdivide-traps} to
18161 allow conditional traps on architectures that support them and
18162 @option{-mdivide-breaks} to force the use of breaks.
18164 The default is usually @option{-mdivide-traps}, but this can be
18165 overridden at configure time using @option{--with-divide=breaks}.
18166 Divide-by-zero checks can be completely disabled using
18167 @option{-mno-check-zero-division}.
18169 @item -mmemcpy
18170 @itemx -mno-memcpy
18171 @opindex mmemcpy
18172 @opindex mno-memcpy
18173 Force (do not force) the use of @code{memcpy()} for non-trivial block
18174 moves.  The default is @option{-mno-memcpy}, which allows GCC to inline
18175 most constant-sized copies.
18177 @item -mlong-calls
18178 @itemx -mno-long-calls
18179 @opindex mlong-calls
18180 @opindex mno-long-calls
18181 Disable (do not disable) use of the @code{jal} instruction.  Calling
18182 functions using @code{jal} is more efficient but requires the caller
18183 and callee to be in the same 256 megabyte segment.
18185 This option has no effect on abicalls code.  The default is
18186 @option{-mno-long-calls}.
18188 @item -mmad
18189 @itemx -mno-mad
18190 @opindex mmad
18191 @opindex mno-mad
18192 Enable (disable) use of the @code{mad}, @code{madu} and @code{mul}
18193 instructions, as provided by the R4650 ISA@.
18195 @item -mimadd
18196 @itemx -mno-imadd
18197 @opindex mimadd
18198 @opindex mno-imadd
18199 Enable (disable) use of the @code{madd} and @code{msub} integer
18200 instructions.  The default is @option{-mimadd} on architectures
18201 that support @code{madd} and @code{msub} except for the 74k 
18202 architecture where it was found to generate slower code.
18204 @item -mfused-madd
18205 @itemx -mno-fused-madd
18206 @opindex mfused-madd
18207 @opindex mno-fused-madd
18208 Enable (disable) use of the floating-point multiply-accumulate
18209 instructions, when they are available.  The default is
18210 @option{-mfused-madd}.
18212 On the R8000 CPU when multiply-accumulate instructions are used,
18213 the intermediate product is calculated to infinite precision
18214 and is not subject to the FCSR Flush to Zero bit.  This may be
18215 undesirable in some circumstances.  On other processors the result
18216 is numerically identical to the equivalent computation using
18217 separate multiply, add, subtract and negate instructions.
18219 @item -nocpp
18220 @opindex nocpp
18221 Tell the MIPS assembler to not run its preprocessor over user
18222 assembler files (with a @samp{.s} suffix) when assembling them.
18224 @item -mfix-24k
18225 @item -mno-fix-24k
18226 @opindex mfix-24k
18227 @opindex mno-fix-24k
18228 Work around the 24K E48 (lost data on stores during refill) errata.
18229 The workarounds are implemented by the assembler rather than by GCC@.
18231 @item -mfix-r4000
18232 @itemx -mno-fix-r4000
18233 @opindex mfix-r4000
18234 @opindex mno-fix-r4000
18235 Work around certain R4000 CPU errata:
18236 @itemize @minus
18237 @item
18238 A double-word or a variable shift may give an incorrect result if executed
18239 immediately after starting an integer division.
18240 @item
18241 A double-word or a variable shift may give an incorrect result if executed
18242 while an integer multiplication is in progress.
18243 @item
18244 An integer division may give an incorrect result if started in a delay slot
18245 of a taken branch or a jump.
18246 @end itemize
18248 @item -mfix-r4400
18249 @itemx -mno-fix-r4400
18250 @opindex mfix-r4400
18251 @opindex mno-fix-r4400
18252 Work around certain R4400 CPU errata:
18253 @itemize @minus
18254 @item
18255 A double-word or a variable shift may give an incorrect result if executed
18256 immediately after starting an integer division.
18257 @end itemize
18259 @item -mfix-r10000
18260 @itemx -mno-fix-r10000
18261 @opindex mfix-r10000
18262 @opindex mno-fix-r10000
18263 Work around certain R10000 errata:
18264 @itemize @minus
18265 @item
18266 @code{ll}/@code{sc} sequences may not behave atomically on revisions
18267 prior to 3.0.  They may deadlock on revisions 2.6 and earlier.
18268 @end itemize
18270 This option can only be used if the target architecture supports
18271 branch-likely instructions.  @option{-mfix-r10000} is the default when
18272 @option{-march=r10000} is used; @option{-mno-fix-r10000} is the default
18273 otherwise.
18275 @item -mfix-rm7000
18276 @itemx -mno-fix-rm7000
18277 @opindex mfix-rm7000
18278 Work around the RM7000 @code{dmult}/@code{dmultu} errata.  The
18279 workarounds are implemented by the assembler rather than by GCC@.
18281 @item -mfix-vr4120
18282 @itemx -mno-fix-vr4120
18283 @opindex mfix-vr4120
18284 Work around certain VR4120 errata:
18285 @itemize @minus
18286 @item
18287 @code{dmultu} does not always produce the correct result.
18288 @item
18289 @code{div} and @code{ddiv} do not always produce the correct result if one
18290 of the operands is negative.
18291 @end itemize
18292 The workarounds for the division errata rely on special functions in
18293 @file{libgcc.a}.  At present, these functions are only provided by
18294 the @code{mips64vr*-elf} configurations.
18296 Other VR4120 errata require a NOP to be inserted between certain pairs of
18297 instructions.  These errata are handled by the assembler, not by GCC itself.
18299 @item -mfix-vr4130
18300 @opindex mfix-vr4130
18301 Work around the VR4130 @code{mflo}/@code{mfhi} errata.  The
18302 workarounds are implemented by the assembler rather than by GCC,
18303 although GCC avoids using @code{mflo} and @code{mfhi} if the
18304 VR4130 @code{macc}, @code{macchi}, @code{dmacc} and @code{dmacchi}
18305 instructions are available instead.
18307 @item -mfix-sb1
18308 @itemx -mno-fix-sb1
18309 @opindex mfix-sb1
18310 Work around certain SB-1 CPU core errata.
18311 (This flag currently works around the SB-1 revision 2
18312 ``F1'' and ``F2'' floating-point errata.)
18314 @item -mr10k-cache-barrier=@var{setting}
18315 @opindex mr10k-cache-barrier
18316 Specify whether GCC should insert cache barriers to avoid the
18317 side-effects of speculation on R10K processors.
18319 In common with many processors, the R10K tries to predict the outcome
18320 of a conditional branch and speculatively executes instructions from
18321 the ``taken'' branch.  It later aborts these instructions if the
18322 predicted outcome is wrong.  However, on the R10K, even aborted
18323 instructions can have side effects.
18325 This problem only affects kernel stores and, depending on the system,
18326 kernel loads.  As an example, a speculatively-executed store may load
18327 the target memory into cache and mark the cache line as dirty, even if
18328 the store itself is later aborted.  If a DMA operation writes to the
18329 same area of memory before the ``dirty'' line is flushed, the cached
18330 data overwrites the DMA-ed data.  See the R10K processor manual
18331 for a full description, including other potential problems.
18333 One workaround is to insert cache barrier instructions before every memory
18334 access that might be speculatively executed and that might have side
18335 effects even if aborted.  @option{-mr10k-cache-barrier=@var{setting}}
18336 controls GCC's implementation of this workaround.  It assumes that
18337 aborted accesses to any byte in the following regions does not have
18338 side effects:
18340 @enumerate
18341 @item
18342 the memory occupied by the current function's stack frame;
18344 @item
18345 the memory occupied by an incoming stack argument;
18347 @item
18348 the memory occupied by an object with a link-time-constant address.
18349 @end enumerate
18351 It is the kernel's responsibility to ensure that speculative
18352 accesses to these regions are indeed safe.
18354 If the input program contains a function declaration such as:
18356 @smallexample
18357 void foo (void);
18358 @end smallexample
18360 then the implementation of @code{foo} must allow @code{j foo} and
18361 @code{jal foo} to be executed speculatively.  GCC honors this
18362 restriction for functions it compiles itself.  It expects non-GCC
18363 functions (such as hand-written assembly code) to do the same.
18365 The option has three forms:
18367 @table @gcctabopt
18368 @item -mr10k-cache-barrier=load-store
18369 Insert a cache barrier before a load or store that might be
18370 speculatively executed and that might have side effects even
18371 if aborted.
18373 @item -mr10k-cache-barrier=store
18374 Insert a cache barrier before a store that might be speculatively
18375 executed and that might have side effects even if aborted.
18377 @item -mr10k-cache-barrier=none
18378 Disable the insertion of cache barriers.  This is the default setting.
18379 @end table
18381 @item -mflush-func=@var{func}
18382 @itemx -mno-flush-func
18383 @opindex mflush-func
18384 Specifies the function to call to flush the I and D caches, or to not
18385 call any such function.  If called, the function must take the same
18386 arguments as the common @code{_flush_func()}, that is, the address of the
18387 memory range for which the cache is being flushed, the size of the
18388 memory range, and the number 3 (to flush both caches).  The default
18389 depends on the target GCC was configured for, but commonly is either
18390 @samp{_flush_func} or @samp{__cpu_flush}.
18392 @item mbranch-cost=@var{num}
18393 @opindex mbranch-cost
18394 Set the cost of branches to roughly @var{num} ``simple'' instructions.
18395 This cost is only a heuristic and is not guaranteed to produce
18396 consistent results across releases.  A zero cost redundantly selects
18397 the default, which is based on the @option{-mtune} setting.
18399 @item -mbranch-likely
18400 @itemx -mno-branch-likely
18401 @opindex mbranch-likely
18402 @opindex mno-branch-likely
18403 Enable or disable use of Branch Likely instructions, regardless of the
18404 default for the selected architecture.  By default, Branch Likely
18405 instructions may be generated if they are supported by the selected
18406 architecture.  An exception is for the MIPS32 and MIPS64 architectures
18407 and processors that implement those architectures; for those, Branch
18408 Likely instructions are not be generated by default because the MIPS32
18409 and MIPS64 architectures specifically deprecate their use.
18411 @item -mfp-exceptions
18412 @itemx -mno-fp-exceptions
18413 @opindex mfp-exceptions
18414 Specifies whether FP exceptions are enabled.  This affects how
18415 FP instructions are scheduled for some processors.
18416 The default is that FP exceptions are
18417 enabled.
18419 For instance, on the SB-1, if FP exceptions are disabled, and we are emitting
18420 64-bit code, then we can use both FP pipes.  Otherwise, we can only use one
18421 FP pipe.
18423 @item -mvr4130-align
18424 @itemx -mno-vr4130-align
18425 @opindex mvr4130-align
18426 The VR4130 pipeline is two-way superscalar, but can only issue two
18427 instructions together if the first one is 8-byte aligned.  When this
18428 option is enabled, GCC aligns pairs of instructions that it
18429 thinks should execute in parallel.
18431 This option only has an effect when optimizing for the VR4130.
18432 It normally makes code faster, but at the expense of making it bigger.
18433 It is enabled by default at optimization level @option{-O3}.
18435 @item -msynci
18436 @itemx -mno-synci
18437 @opindex msynci
18438 Enable (disable) generation of @code{synci} instructions on
18439 architectures that support it.  The @code{synci} instructions (if
18440 enabled) are generated when @code{__builtin___clear_cache()} is
18441 compiled.
18443 This option defaults to @code{-mno-synci}, but the default can be
18444 overridden by configuring with @code{--with-synci}.
18446 When compiling code for single processor systems, it is generally safe
18447 to use @code{synci}.  However, on many multi-core (SMP) systems, it
18448 does not invalidate the instruction caches on all cores and may lead
18449 to undefined behavior.
18451 @item -mrelax-pic-calls
18452 @itemx -mno-relax-pic-calls
18453 @opindex mrelax-pic-calls
18454 Try to turn PIC calls that are normally dispatched via register
18455 @code{$25} into direct calls.  This is only possible if the linker can
18456 resolve the destination at link-time and if the destination is within
18457 range for a direct call.
18459 @option{-mrelax-pic-calls} is the default if GCC was configured to use
18460 an assembler and a linker that support the @code{.reloc} assembly
18461 directive and @code{-mexplicit-relocs} is in effect.  With
18462 @code{-mno-explicit-relocs}, this optimization can be performed by the
18463 assembler and the linker alone without help from the compiler.
18465 @item -mmcount-ra-address
18466 @itemx -mno-mcount-ra-address
18467 @opindex mmcount-ra-address
18468 @opindex mno-mcount-ra-address
18469 Emit (do not emit) code that allows @code{_mcount} to modify the
18470 calling function's return address.  When enabled, this option extends
18471 the usual @code{_mcount} interface with a new @var{ra-address}
18472 parameter, which has type @code{intptr_t *} and is passed in register
18473 @code{$12}.  @code{_mcount} can then modify the return address by
18474 doing both of the following:
18475 @itemize
18476 @item
18477 Returning the new address in register @code{$31}.
18478 @item
18479 Storing the new address in @code{*@var{ra-address}},
18480 if @var{ra-address} is nonnull.
18481 @end itemize
18483 The default is @option{-mno-mcount-ra-address}.
18485 @end table
18487 @node MMIX Options
18488 @subsection MMIX Options
18489 @cindex MMIX Options
18491 These options are defined for the MMIX:
18493 @table @gcctabopt
18494 @item -mlibfuncs
18495 @itemx -mno-libfuncs
18496 @opindex mlibfuncs
18497 @opindex mno-libfuncs
18498 Specify that intrinsic library functions are being compiled, passing all
18499 values in registers, no matter the size.
18501 @item -mepsilon
18502 @itemx -mno-epsilon
18503 @opindex mepsilon
18504 @opindex mno-epsilon
18505 Generate floating-point comparison instructions that compare with respect
18506 to the @code{rE} epsilon register.
18508 @item -mabi=mmixware
18509 @itemx -mabi=gnu
18510 @opindex mabi=mmixware
18511 @opindex mabi=gnu
18512 Generate code that passes function parameters and return values that (in
18513 the called function) are seen as registers @code{$0} and up, as opposed to
18514 the GNU ABI which uses global registers @code{$231} and up.
18516 @item -mzero-extend
18517 @itemx -mno-zero-extend
18518 @opindex mzero-extend
18519 @opindex mno-zero-extend
18520 When reading data from memory in sizes shorter than 64 bits, use (do not
18521 use) zero-extending load instructions by default, rather than
18522 sign-extending ones.
18524 @item -mknuthdiv
18525 @itemx -mno-knuthdiv
18526 @opindex mknuthdiv
18527 @opindex mno-knuthdiv
18528 Make the result of a division yielding a remainder have the same sign as
18529 the divisor.  With the default, @option{-mno-knuthdiv}, the sign of the
18530 remainder follows the sign of the dividend.  Both methods are
18531 arithmetically valid, the latter being almost exclusively used.
18533 @item -mtoplevel-symbols
18534 @itemx -mno-toplevel-symbols
18535 @opindex mtoplevel-symbols
18536 @opindex mno-toplevel-symbols
18537 Prepend (do not prepend) a @samp{:} to all global symbols, so the assembly
18538 code can be used with the @code{PREFIX} assembly directive.
18540 @item -melf
18541 @opindex melf
18542 Generate an executable in the ELF format, rather than the default
18543 @samp{mmo} format used by the @command{mmix} simulator.
18545 @item -mbranch-predict
18546 @itemx -mno-branch-predict
18547 @opindex mbranch-predict
18548 @opindex mno-branch-predict
18549 Use (do not use) the probable-branch instructions, when static branch
18550 prediction indicates a probable branch.
18552 @item -mbase-addresses
18553 @itemx -mno-base-addresses
18554 @opindex mbase-addresses
18555 @opindex mno-base-addresses
18556 Generate (do not generate) code that uses @emph{base addresses}.  Using a
18557 base address automatically generates a request (handled by the assembler
18558 and the linker) for a constant to be set up in a global register.  The
18559 register is used for one or more base address requests within the range 0
18560 to 255 from the value held in the register.  The generally leads to short
18561 and fast code, but the number of different data items that can be
18562 addressed is limited.  This means that a program that uses lots of static
18563 data may require @option{-mno-base-addresses}.
18565 @item -msingle-exit
18566 @itemx -mno-single-exit
18567 @opindex msingle-exit
18568 @opindex mno-single-exit
18569 Force (do not force) generated code to have a single exit point in each
18570 function.
18571 @end table
18573 @node MN10300 Options
18574 @subsection MN10300 Options
18575 @cindex MN10300 options
18577 These @option{-m} options are defined for Matsushita MN10300 architectures:
18579 @table @gcctabopt
18580 @item -mmult-bug
18581 @opindex mmult-bug
18582 Generate code to avoid bugs in the multiply instructions for the MN10300
18583 processors.  This is the default.
18585 @item -mno-mult-bug
18586 @opindex mno-mult-bug
18587 Do not generate code to avoid bugs in the multiply instructions for the
18588 MN10300 processors.
18590 @item -mam33
18591 @opindex mam33
18592 Generate code using features specific to the AM33 processor.
18594 @item -mno-am33
18595 @opindex mno-am33
18596 Do not generate code using features specific to the AM33 processor.  This
18597 is the default.
18599 @item -mam33-2
18600 @opindex mam33-2
18601 Generate code using features specific to the AM33/2.0 processor.
18603 @item -mam34
18604 @opindex mam34
18605 Generate code using features specific to the AM34 processor.
18607 @item -mtune=@var{cpu-type}
18608 @opindex mtune
18609 Use the timing characteristics of the indicated CPU type when
18610 scheduling instructions.  This does not change the targeted processor
18611 type.  The CPU type must be one of @samp{mn10300}, @samp{am33},
18612 @samp{am33-2} or @samp{am34}.
18614 @item -mreturn-pointer-on-d0
18615 @opindex mreturn-pointer-on-d0
18616 When generating a function that returns a pointer, return the pointer
18617 in both @code{a0} and @code{d0}.  Otherwise, the pointer is returned
18618 only in @code{a0}, and attempts to call such functions without a prototype
18619 result in errors.  Note that this option is on by default; use
18620 @option{-mno-return-pointer-on-d0} to disable it.
18622 @item -mno-crt0
18623 @opindex mno-crt0
18624 Do not link in the C run-time initialization object file.
18626 @item -mrelax
18627 @opindex mrelax
18628 Indicate to the linker that it should perform a relaxation optimization pass
18629 to shorten branches, calls and absolute memory addresses.  This option only
18630 has an effect when used on the command line for the final link step.
18632 This option makes symbolic debugging impossible.
18634 @item -mliw
18635 @opindex mliw
18636 Allow the compiler to generate @emph{Long Instruction Word}
18637 instructions if the target is the @samp{AM33} or later.  This is the
18638 default.  This option defines the preprocessor macro @samp{__LIW__}.
18640 @item -mnoliw
18641 @opindex mnoliw
18642 Do not allow the compiler to generate @emph{Long Instruction Word}
18643 instructions.  This option defines the preprocessor macro
18644 @samp{__NO_LIW__}.
18646 @item -msetlb
18647 @opindex msetlb
18648 Allow the compiler to generate the @emph{SETLB} and @emph{Lcc}
18649 instructions if the target is the @samp{AM33} or later.  This is the
18650 default.  This option defines the preprocessor macro @samp{__SETLB__}.
18652 @item -mnosetlb
18653 @opindex mnosetlb
18654 Do not allow the compiler to generate @emph{SETLB} or @emph{Lcc}
18655 instructions.  This option defines the preprocessor macro
18656 @samp{__NO_SETLB__}.
18658 @end table
18660 @node Moxie Options
18661 @subsection Moxie Options
18662 @cindex Moxie Options
18664 @table @gcctabopt
18666 @item -meb
18667 @opindex meb
18668 Generate big-endian code.  This is the default for @samp{moxie-*-*}
18669 configurations.
18671 @item -mel
18672 @opindex mel
18673 Generate little-endian code.
18675 @item -mno-crt0
18676 @opindex mno-crt0
18677 Do not link in the C run-time initialization object file.
18679 @end table
18681 @node MSP430 Options
18682 @subsection MSP430 Options
18683 @cindex MSP430 Options
18685 These options are defined for the MSP430:
18687 @table @gcctabopt
18689 @item -masm-hex
18690 @opindex masm-hex
18691 Force assembly output to always use hex constants.  Normally such
18692 constants are signed decimals, but this option is available for
18693 testsuite and/or aesthetic purposes.
18695 @item -mmcu=
18696 @opindex mmcu=
18697 Select the MCU to target.  This is used to create a C preprocessor
18698 symbol based upon the MCU name, converted to upper case and pre- and
18699 post- fixed with @code{__}.  This in turn will be used by the
18700 @code{msp430.h} header file to select an MCU specific supplimentary
18701 header file.
18703 The option also sets the ISA to use.  If the MCU name is one that is
18704 known to only support the 430 ISA then that is selected, otherwise the
18705 430X ISA is selected.  A generic MCU name of @code{msp430} can also be
18706 used to select the 430 ISA.  Similarly the generic @code{msp430x} MCU
18707 name will select the 430X ISA.
18709 In addition an MCU specific linker script will be added to the linker
18710 command line.  The script's name is the name of the MCU with
18711 @code{.ld} appended.  Thus specifying @option{-mmcu=xxx} on the gcc
18712 command line will define the C preprocessor symbol @code{__XXX__} and
18713 cause the linker to search for a script called @file{xxx.ld}.
18715 This option is also passed on to the assembler.
18717 @item -mcpu=
18718 @opindex -mcpu=
18719 Specifies the ISA to use.  Accepted values are @code{msp430},
18720 @code{msp430x} and @code{msp430xv2}.  This option is deprecated.  The
18721 @option{-mmcu=} option should be used to select the ISA.
18723 @item -msim
18724 @opindex msim
18725 Link to the simulator runtime libraries and linker script.  Overrides
18726 any scripts that would be selected by the @option{-mmcu=} option.
18728 @item -mlarge
18729 @opindex mlarge
18730 Use large-model addressing (20-bit pointers, 32-bit @code{size_t}).
18732 @item -msmall
18733 @opindex msmall
18734 Use small-model addressing (16-bit pointers, 16-bit @code{size_t}).
18736 @item -mrelax
18737 @opindex mrelax
18738 This option is passed to the assembler and linker, and allows the
18739 linker to perform certain optimizations that cannot be done until
18740 the final link.
18742 @item mhwmult=
18743 @opindex mhwmult=
18744 Describes the type of hardware multiply supported by the target.
18745 Accepted values are @code{none} for no hardware multiply, @code{16bit}
18746 for the original 16-bit-only multiply supported by early MCUs.
18747 @code{32bit} for the 16/32-bit multiply supported by later MCUs and
18748 @code{f5series} for the 16/32-bit multiply supported by F5-series MCUs.
18749 A value of @code{auto} can also be given.  This tells GCC to deduce
18750 the hardware multiply support based upon the MCU name provided by the
18751 @option{-mmcu} option.  If no @option{-mmcu} option is specified then
18752 @code{32bit} hardware multiply support is assumed.  @code{auto} is the
18753 default setting.
18755 Hardware multiplies are normally performed by calling a library
18756 routine.  This saves space in the generated code.  When compiling at
18757 @code{-O3} or higher however the hardware multiplier is invoked
18758 inline.  This makes for bigger, but faster code.
18760 The hardware multiply routines disable interrupts whilst running and
18761 restore the previous interrupt state when they finish.  This makes
18762 them safe to use inside interrupt handlers as well as in normal code.
18764 @item -minrt
18765 @opindex minrt
18766 Enable the use of a minimum runtime environment - no static
18767 initializers or constructors.  This is intended for memory-constrained
18768 devices.  The compiler will include special symbols in some objects
18769 that tell the linker and runtime which code fragments are required.
18771 @end table
18773 @node NDS32 Options
18774 @subsection NDS32 Options
18775 @cindex NDS32 Options
18777 These options are defined for NDS32 implementations:
18779 @table @gcctabopt
18781 @item -mbig-endian
18782 @opindex mbig-endian
18783 Generate code in big-endian mode.
18785 @item -mlittle-endian
18786 @opindex mlittle-endian
18787 Generate code in little-endian mode.
18789 @item -mreduced-regs
18790 @opindex mreduced-regs
18791 Use reduced-set registers for register allocation.
18793 @item -mfull-regs
18794 @opindex mfull-regs
18795 Use full-set registers for register allocation.
18797 @item -mcmov
18798 @opindex mcmov
18799 Generate conditional move instructions.
18801 @item -mno-cmov
18802 @opindex mno-cmov
18803 Do not generate conditional move instructions.
18805 @item -mperf-ext
18806 @opindex mperf-ext
18807 Generate performance extension instructions.
18809 @item -mno-perf-ext
18810 @opindex mno-perf-ext
18811 Do not generate performance extension instructions.
18813 @item -mv3push
18814 @opindex mv3push
18815 Generate v3 push25/pop25 instructions.
18817 @item -mno-v3push
18818 @opindex mno-v3push
18819 Do not generate v3 push25/pop25 instructions.
18821 @item -m16-bit
18822 @opindex m16-bit
18823 Generate 16-bit instructions.
18825 @item -mno-16-bit
18826 @opindex mno-16-bit
18827 Do not generate 16-bit instructions.
18829 @item -mgp-direct
18830 @opindex mgp-direct
18831 Generate GP base instructions directly.
18833 @item -mno-gp-direct
18834 @opindex mno-gp-direct
18835 Do no generate GP base instructions directly.
18837 @item -misr-vector-size=@var{num}
18838 @opindex misr-vector-size
18839 Specify the size of each interrupt vector, which must be 4 or 16.
18841 @item -mcache-block-size=@var{num}
18842 @opindex mcache-block-size
18843 Specify the size of each cache block,
18844 which must be a power of 2 between 4 and 512.
18846 @item -march=@var{arch}
18847 @opindex march
18848 Specify the name of the target architecture.
18850 @item -mforce-fp-as-gp
18851 @opindex mforce-fp-as-gp
18852 Prevent $fp being allocated during register allocation so that compiler
18853 is able to force performing fp-as-gp optimization.
18855 @item -mforbid-fp-as-gp
18856 @opindex mforbid-fp-as-gp
18857 Forbid using $fp to access static and global variables.
18858 This option strictly forbids fp-as-gp optimization
18859 regardless of @option{-mforce-fp-as-gp}.
18861 @item -mex9
18862 @opindex mex9
18863 Use special directives to guide linker doing ex9 optimization.
18865 @item -mctor-dtor
18866 @opindex mctor-dtor
18867 Enable constructor/destructor feature.
18869 @item -mrelax
18870 @opindex mrelax
18871 Guide linker to relax instructions.
18873 @end table
18875 @node Nios II Options
18876 @subsection Nios II Options
18877 @cindex Nios II options
18878 @cindex Altera Nios II options
18880 These are the options defined for the Altera Nios II processor.
18882 @table @gcctabopt
18884 @item -G @var{num}
18885 @opindex G
18886 @cindex smaller data references
18887 Put global and static objects less than or equal to @var{num} bytes
18888 into the small data or BSS sections instead of the normal data or BSS
18889 sections.  The default value of @var{num} is 8.
18891 @item -mgpopt
18892 @itemx -mno-gpopt
18893 @opindex mgpopt
18894 @opindex mno-gpopt
18895 Generate (do not generate) GP-relative accesses for objects in the
18896 small data or BSS sections.  The default is @option{-mgpopt} except
18897 when @option{-fpic} or @option{-fPIC} is specified to generate
18898 position-independent code.  Note that the Nios II ABI does not permit
18899 GP-relative accesses from shared libraries.
18901 You may need to specify @option{-mno-gpopt} explicitly when building
18902 programs that include large amounts of small data, including large
18903 GOT data sections.  In this case, the 16-bit offset for GP-relative
18904 addressing may not be large enough to allow access to the entire 
18905 small data section.
18907 @item -mel
18908 @itemx -meb
18909 @opindex mel
18910 @opindex meb
18911 Generate little-endian (default) or big-endian (experimental) code,
18912 respectively.
18914 @item -mbypass-cache
18915 @itemx -mno-bypass-cache
18916 @opindex mno-bypass-cache
18917 @opindex mbypass-cache
18918 Force all load and store instructions to always bypass cache by 
18919 using I/O variants of the instructions. The default is not to
18920 bypass the cache.
18922 @item -mno-cache-volatile 
18923 @itemx -mcache-volatile       
18924 @opindex mcache-volatile 
18925 @opindex mno-cache-volatile
18926 Volatile memory access bypass the cache using the I/O variants of 
18927 the load and store instructions. The default is not to bypass the cache.
18929 @item -mno-fast-sw-div
18930 @itemx -mfast-sw-div
18931 @opindex mno-fast-sw-div
18932 @opindex mfast-sw-div
18933 Do not use table-based fast divide for small numbers. The default 
18934 is to use the fast divide at @option{-O3} and above.
18936 @item -mno-hw-mul
18937 @itemx -mhw-mul
18938 @itemx -mno-hw-mulx
18939 @itemx -mhw-mulx
18940 @itemx -mno-hw-div
18941 @itemx -mhw-div
18942 @opindex mno-hw-mul
18943 @opindex mhw-mul
18944 @opindex mno-hw-mulx
18945 @opindex mhw-mulx
18946 @opindex mno-hw-div
18947 @opindex mhw-div
18948 Enable or disable emitting @code{mul}, @code{mulx} and @code{div} family of 
18949 instructions by the compiler. The default is to emit @code{mul}
18950 and not emit @code{div} and @code{mulx}.
18952 @item -mcustom-@var{insn}=@var{N}
18953 @itemx -mno-custom-@var{insn}
18954 @opindex mcustom-@var{insn}
18955 @opindex mno-custom-@var{insn}
18956 Each @option{-mcustom-@var{insn}=@var{N}} option enables use of a
18957 custom instruction with encoding @var{N} when generating code that uses 
18958 @var{insn}.  For example, @code{-mcustom-fadds=253} generates custom
18959 instruction 253 for single-precision floating-point add operations instead
18960 of the default behavior of using a library call.
18962 The following values of @var{insn} are supported.  Except as otherwise
18963 noted, floating-point operations are expected to be implemented with
18964 normal IEEE 754 semantics and correspond directly to the C operators or the
18965 equivalent GCC built-in functions (@pxref{Other Builtins}).
18967 Single-precision floating point:
18968 @table @asis
18970 @item @samp{fadds}, @samp{fsubs}, @samp{fdivs}, @samp{fmuls}
18971 Binary arithmetic operations.
18973 @item @samp{fnegs}
18974 Unary negation.
18976 @item @samp{fabss}
18977 Unary absolute value.
18979 @item @samp{fcmpeqs}, @samp{fcmpges}, @samp{fcmpgts}, @samp{fcmples}, @samp{fcmplts}, @samp{fcmpnes}
18980 Comparison operations.
18982 @item @samp{fmins}, @samp{fmaxs}
18983 Floating-point minimum and maximum.  These instructions are only
18984 generated if @option{-ffinite-math-only} is specified.
18986 @item @samp{fsqrts}
18987 Unary square root operation.
18989 @item @samp{fcoss}, @samp{fsins}, @samp{ftans}, @samp{fatans}, @samp{fexps}, @samp{flogs}
18990 Floating-point trigonometric and exponential functions.  These instructions
18991 are only generated if @option{-funsafe-math-optimizations} is also specified.
18993 @end table
18995 Double-precision floating point:
18996 @table @asis
18998 @item @samp{faddd}, @samp{fsubd}, @samp{fdivd}, @samp{fmuld}
18999 Binary arithmetic operations.
19001 @item @samp{fnegd}
19002 Unary negation.
19004 @item @samp{fabsd}
19005 Unary absolute value.
19007 @item @samp{fcmpeqd}, @samp{fcmpged}, @samp{fcmpgtd}, @samp{fcmpled}, @samp{fcmpltd}, @samp{fcmpned}
19008 Comparison operations.
19010 @item @samp{fmind}, @samp{fmaxd}
19011 Double-precision minimum and maximum.  These instructions are only
19012 generated if @option{-ffinite-math-only} is specified.
19014 @item @samp{fsqrtd}
19015 Unary square root operation.
19017 @item @samp{fcosd}, @samp{fsind}, @samp{ftand}, @samp{fatand}, @samp{fexpd}, @samp{flogd}
19018 Double-precision trigonometric and exponential functions.  These instructions
19019 are only generated if @option{-funsafe-math-optimizations} is also specified.
19021 @end table
19023 Conversions:
19024 @table @asis
19025 @item @samp{fextsd}
19026 Conversion from single precision to double precision.
19028 @item @samp{ftruncds}
19029 Conversion from double precision to single precision.
19031 @item @samp{fixsi}, @samp{fixsu}, @samp{fixdi}, @samp{fixdu}
19032 Conversion from floating point to signed or unsigned integer types, with
19033 truncation towards zero.
19035 @item @samp{round}
19036 Conversion from single-precision floating point to signed integer,
19037 rounding to the nearest integer and ties away from zero.
19038 This corresponds to the @code{__builtin_lroundf} function when
19039 @option{-fno-math-errno} is used.
19041 @item @samp{floatis}, @samp{floatus}, @samp{floatid}, @samp{floatud}
19042 Conversion from signed or unsigned integer types to floating-point types.
19044 @end table
19046 In addition, all of the following transfer instructions for internal
19047 registers X and Y must be provided to use any of the double-precision
19048 floating-point instructions.  Custom instructions taking two
19049 double-precision source operands expect the first operand in the
19050 64-bit register X.  The other operand (or only operand of a unary
19051 operation) is given to the custom arithmetic instruction with the
19052 least significant half in source register @var{src1} and the most
19053 significant half in @var{src2}.  A custom instruction that returns a
19054 double-precision result returns the most significant 32 bits in the
19055 destination register and the other half in 32-bit register Y.  
19056 GCC automatically generates the necessary code sequences to write
19057 register X and/or read register Y when double-precision floating-point
19058 instructions are used.
19060 @table @asis
19062 @item @samp{fwrx}
19063 Write @var{src1} into the least significant half of X and @var{src2} into
19064 the most significant half of X.
19066 @item @samp{fwry}
19067 Write @var{src1} into Y.
19069 @item @samp{frdxhi}, @samp{frdxlo}
19070 Read the most or least (respectively) significant half of X and store it in
19071 @var{dest}.
19073 @item @samp{frdy}
19074 Read the value of Y and store it into @var{dest}.
19075 @end table
19077 Note that you can gain more local control over generation of Nios II custom
19078 instructions by using the @code{target("custom-@var{insn}=@var{N}")}
19079 and @code{target("no-custom-@var{insn}")} function attributes
19080 (@pxref{Function Attributes})
19081 or pragmas (@pxref{Function Specific Option Pragmas}).
19083 @item -mcustom-fpu-cfg=@var{name}
19084 @opindex mcustom-fpu-cfg
19086 This option enables a predefined, named set of custom instruction encodings
19087 (see @option{-mcustom-@var{insn}} above).  
19088 Currently, the following sets are defined:
19090 @option{-mcustom-fpu-cfg=60-1} is equivalent to:
19091 @gccoptlist{-mcustom-fmuls=252 @gol
19092 -mcustom-fadds=253 @gol
19093 -mcustom-fsubs=254 @gol
19094 -fsingle-precision-constant}
19096 @option{-mcustom-fpu-cfg=60-2} is equivalent to:
19097 @gccoptlist{-mcustom-fmuls=252 @gol
19098 -mcustom-fadds=253 @gol
19099 -mcustom-fsubs=254 @gol
19100 -mcustom-fdivs=255 @gol
19101 -fsingle-precision-constant}
19103 @option{-mcustom-fpu-cfg=72-3} is equivalent to:
19104 @gccoptlist{-mcustom-floatus=243 @gol
19105 -mcustom-fixsi=244 @gol
19106 -mcustom-floatis=245 @gol
19107 -mcustom-fcmpgts=246 @gol
19108 -mcustom-fcmples=249 @gol
19109 -mcustom-fcmpeqs=250 @gol
19110 -mcustom-fcmpnes=251 @gol
19111 -mcustom-fmuls=252 @gol
19112 -mcustom-fadds=253 @gol
19113 -mcustom-fsubs=254 @gol
19114 -mcustom-fdivs=255 @gol
19115 -fsingle-precision-constant}
19117 Custom instruction assignments given by individual
19118 @option{-mcustom-@var{insn}=} options override those given by
19119 @option{-mcustom-fpu-cfg=}, regardless of the
19120 order of the options on the command line.
19122 Note that you can gain more local control over selection of a FPU
19123 configuration by using the @code{target("custom-fpu-cfg=@var{name}")}
19124 function attribute (@pxref{Function Attributes})
19125 or pragma (@pxref{Function Specific Option Pragmas}).
19127 @end table
19129 These additional @samp{-m} options are available for the Altera Nios II
19130 ELF (bare-metal) target:
19132 @table @gcctabopt
19134 @item -mhal
19135 @opindex mhal
19136 Link with HAL BSP.  This suppresses linking with the GCC-provided C runtime
19137 startup and termination code, and is typically used in conjunction with
19138 @option{-msys-crt0=} to specify the location of the alternate startup code
19139 provided by the HAL BSP.
19141 @item -msmallc
19142 @opindex msmallc
19143 Link with a limited version of the C library, @option{-lsmallc}, rather than
19144 Newlib.
19146 @item -msys-crt0=@var{startfile}
19147 @opindex msys-crt0
19148 @var{startfile} is the file name of the startfile (crt0) to use 
19149 when linking.  This option is only useful in conjunction with @option{-mhal}.
19151 @item -msys-lib=@var{systemlib}
19152 @opindex msys-lib
19153 @var{systemlib} is the library name of the library that provides
19154 low-level system calls required by the C library,
19155 e.g. @code{read} and @code{write}.
19156 This option is typically used to link with a library provided by a HAL BSP.
19158 @end table
19160 @node PDP-11 Options
19161 @subsection PDP-11 Options
19162 @cindex PDP-11 Options
19164 These options are defined for the PDP-11:
19166 @table @gcctabopt
19167 @item -mfpu
19168 @opindex mfpu
19169 Use hardware FPP floating point.  This is the default.  (FIS floating
19170 point on the PDP-11/40 is not supported.)
19172 @item -msoft-float
19173 @opindex msoft-float
19174 Do not use hardware floating point.
19176 @item -mac0
19177 @opindex mac0
19178 Return floating-point results in ac0 (fr0 in Unix assembler syntax).
19180 @item -mno-ac0
19181 @opindex mno-ac0
19182 Return floating-point results in memory.  This is the default.
19184 @item -m40
19185 @opindex m40
19186 Generate code for a PDP-11/40.
19188 @item -m45
19189 @opindex m45
19190 Generate code for a PDP-11/45.  This is the default.
19192 @item -m10
19193 @opindex m10
19194 Generate code for a PDP-11/10.
19196 @item -mbcopy-builtin
19197 @opindex mbcopy-builtin
19198 Use inline @code{movmemhi} patterns for copying memory.  This is the
19199 default.
19201 @item -mbcopy
19202 @opindex mbcopy
19203 Do not use inline @code{movmemhi} patterns for copying memory.
19205 @item -mint16
19206 @itemx -mno-int32
19207 @opindex mint16
19208 @opindex mno-int32
19209 Use 16-bit @code{int}.  This is the default.
19211 @item -mint32
19212 @itemx -mno-int16
19213 @opindex mint32
19214 @opindex mno-int16
19215 Use 32-bit @code{int}.
19217 @item -mfloat64
19218 @itemx -mno-float32
19219 @opindex mfloat64
19220 @opindex mno-float32
19221 Use 64-bit @code{float}.  This is the default.
19223 @item -mfloat32
19224 @itemx -mno-float64
19225 @opindex mfloat32
19226 @opindex mno-float64
19227 Use 32-bit @code{float}.
19229 @item -mabshi
19230 @opindex mabshi
19231 Use @code{abshi2} pattern.  This is the default.
19233 @item -mno-abshi
19234 @opindex mno-abshi
19235 Do not use @code{abshi2} pattern.
19237 @item -mbranch-expensive
19238 @opindex mbranch-expensive
19239 Pretend that branches are expensive.  This is for experimenting with
19240 code generation only.
19242 @item -mbranch-cheap
19243 @opindex mbranch-cheap
19244 Do not pretend that branches are expensive.  This is the default.
19246 @item -munix-asm
19247 @opindex munix-asm
19248 Use Unix assembler syntax.  This is the default when configured for
19249 @samp{pdp11-*-bsd}.
19251 @item -mdec-asm
19252 @opindex mdec-asm
19253 Use DEC assembler syntax.  This is the default when configured for any
19254 PDP-11 target other than @samp{pdp11-*-bsd}.
19255 @end table
19257 @node picoChip Options
19258 @subsection picoChip Options
19259 @cindex picoChip options
19261 These @samp{-m} options are defined for picoChip implementations:
19263 @table @gcctabopt
19265 @item -mae=@var{ae_type}
19266 @opindex mcpu
19267 Set the instruction set, register set, and instruction scheduling
19268 parameters for array element type @var{ae_type}.  Supported values
19269 for @var{ae_type} are @samp{ANY}, @samp{MUL}, and @samp{MAC}.
19271 @option{-mae=ANY} selects a completely generic AE type.  Code
19272 generated with this option runs on any of the other AE types.  The
19273 code is not as efficient as it would be if compiled for a specific
19274 AE type, and some types of operation (e.g., multiplication) do not
19275 work properly on all types of AE.
19277 @option{-mae=MUL} selects a MUL AE type.  This is the most useful AE type
19278 for compiled code, and is the default.
19280 @option{-mae=MAC} selects a DSP-style MAC AE.  Code compiled with this
19281 option may suffer from poor performance of byte (char) manipulation,
19282 since the DSP AE does not provide hardware support for byte load/stores.
19284 @item -msymbol-as-address
19285 Enable the compiler to directly use a symbol name as an address in a
19286 load/store instruction, without first loading it into a
19287 register.  Typically, the use of this option generates larger
19288 programs, which run faster than when the option isn't used.  However, the
19289 results vary from program to program, so it is left as a user option,
19290 rather than being permanently enabled.
19292 @item -mno-inefficient-warnings
19293 Disables warnings about the generation of inefficient code.  These
19294 warnings can be generated, for example, when compiling code that
19295 performs byte-level memory operations on the MAC AE type.  The MAC AE has
19296 no hardware support for byte-level memory operations, so all byte
19297 load/stores must be synthesized from word load/store operations.  This is
19298 inefficient and a warning is generated to indicate
19299 that you should rewrite the code to avoid byte operations, or to target
19300 an AE type that has the necessary hardware support.  This option disables
19301 these warnings.
19303 @end table
19305 @node PowerPC Options
19306 @subsection PowerPC Options
19307 @cindex PowerPC options
19309 These are listed under @xref{RS/6000 and PowerPC Options}.
19311 @node RL78 Options
19312 @subsection RL78 Options
19313 @cindex RL78 Options
19315 @table @gcctabopt
19317 @item -msim
19318 @opindex msim
19319 Links in additional target libraries to support operation within a
19320 simulator.
19322 @item -mmul=none
19323 @itemx -mmul=g13
19324 @itemx -mmul=rl78
19325 @opindex mmul
19326 Specifies the type of hardware multiplication support to be used.  The
19327 default is @code{none}, which uses software multiplication functions.
19328 The @code{g13} option is for the hardware multiply/divide peripheral
19329 only on the RL78/G13 targets.  The @code{rl78} option is for the
19330 standard hardware multiplication defined in the RL78 software manual.
19332 @item -m64bit-doubles
19333 @itemx -m32bit-doubles
19334 @opindex m64bit-doubles
19335 @opindex m32bit-doubles
19336 Make the @code{double} data type be 64 bits (@option{-m64bit-doubles})
19337 or 32 bits (@option{-m32bit-doubles}) in size.  The default is
19338 @option{-m32bit-doubles}.
19340 @end table
19342 @node RS/6000 and PowerPC Options
19343 @subsection IBM RS/6000 and PowerPC Options
19344 @cindex RS/6000 and PowerPC Options
19345 @cindex IBM RS/6000 and PowerPC Options
19347 These @samp{-m} options are defined for the IBM RS/6000 and PowerPC:
19348 @table @gcctabopt
19349 @item -mpowerpc-gpopt
19350 @itemx -mno-powerpc-gpopt
19351 @itemx -mpowerpc-gfxopt
19352 @itemx -mno-powerpc-gfxopt
19353 @need 800
19354 @itemx -mpowerpc64
19355 @itemx -mno-powerpc64
19356 @itemx -mmfcrf
19357 @itemx -mno-mfcrf
19358 @itemx -mpopcntb
19359 @itemx -mno-popcntb
19360 @itemx -mpopcntd
19361 @itemx -mno-popcntd
19362 @itemx -mfprnd
19363 @itemx -mno-fprnd
19364 @need 800
19365 @itemx -mcmpb
19366 @itemx -mno-cmpb
19367 @itemx -mmfpgpr
19368 @itemx -mno-mfpgpr
19369 @itemx -mhard-dfp
19370 @itemx -mno-hard-dfp
19371 @opindex mpowerpc-gpopt
19372 @opindex mno-powerpc-gpopt
19373 @opindex mpowerpc-gfxopt
19374 @opindex mno-powerpc-gfxopt
19375 @opindex mpowerpc64
19376 @opindex mno-powerpc64
19377 @opindex mmfcrf
19378 @opindex mno-mfcrf
19379 @opindex mpopcntb
19380 @opindex mno-popcntb
19381 @opindex mpopcntd
19382 @opindex mno-popcntd
19383 @opindex mfprnd
19384 @opindex mno-fprnd
19385 @opindex mcmpb
19386 @opindex mno-cmpb
19387 @opindex mmfpgpr
19388 @opindex mno-mfpgpr
19389 @opindex mhard-dfp
19390 @opindex mno-hard-dfp
19391 You use these options to specify which instructions are available on the
19392 processor you are using.  The default value of these options is
19393 determined when configuring GCC@.  Specifying the
19394 @option{-mcpu=@var{cpu_type}} overrides the specification of these
19395 options.  We recommend you use the @option{-mcpu=@var{cpu_type}} option
19396 rather than the options listed above.
19398 Specifying @option{-mpowerpc-gpopt} allows
19399 GCC to use the optional PowerPC architecture instructions in the
19400 General Purpose group, including floating-point square root.  Specifying
19401 @option{-mpowerpc-gfxopt} allows GCC to
19402 use the optional PowerPC architecture instructions in the Graphics
19403 group, including floating-point select.
19405 The @option{-mmfcrf} option allows GCC to generate the move from
19406 condition register field instruction implemented on the POWER4
19407 processor and other processors that support the PowerPC V2.01
19408 architecture.
19409 The @option{-mpopcntb} option allows GCC to generate the popcount and
19410 double-precision FP reciprocal estimate instruction implemented on the
19411 POWER5 processor and other processors that support the PowerPC V2.02
19412 architecture.
19413 The @option{-mpopcntd} option allows GCC to generate the popcount
19414 instruction implemented on the POWER7 processor and other processors
19415 that support the PowerPC V2.06 architecture.
19416 The @option{-mfprnd} option allows GCC to generate the FP round to
19417 integer instructions implemented on the POWER5+ processor and other
19418 processors that support the PowerPC V2.03 architecture.
19419 The @option{-mcmpb} option allows GCC to generate the compare bytes
19420 instruction implemented on the POWER6 processor and other processors
19421 that support the PowerPC V2.05 architecture.
19422 The @option{-mmfpgpr} option allows GCC to generate the FP move to/from
19423 general-purpose register instructions implemented on the POWER6X
19424 processor and other processors that support the extended PowerPC V2.05
19425 architecture.
19426 The @option{-mhard-dfp} option allows GCC to generate the decimal
19427 floating-point instructions implemented on some POWER processors.
19429 The @option{-mpowerpc64} option allows GCC to generate the additional
19430 64-bit instructions that are found in the full PowerPC64 architecture
19431 and to treat GPRs as 64-bit, doubleword quantities.  GCC defaults to
19432 @option{-mno-powerpc64}.
19434 @item -mcpu=@var{cpu_type}
19435 @opindex mcpu
19436 Set architecture type, register usage, and
19437 instruction scheduling parameters for machine type @var{cpu_type}.
19438 Supported values for @var{cpu_type} are @samp{401}, @samp{403},
19439 @samp{405}, @samp{405fp}, @samp{440}, @samp{440fp}, @samp{464}, @samp{464fp},
19440 @samp{476}, @samp{476fp}, @samp{505}, @samp{601}, @samp{602}, @samp{603},
19441 @samp{603e}, @samp{604}, @samp{604e}, @samp{620}, @samp{630}, @samp{740},
19442 @samp{7400}, @samp{7450}, @samp{750}, @samp{801}, @samp{821}, @samp{823},
19443 @samp{860}, @samp{970}, @samp{8540}, @samp{a2}, @samp{e300c2},
19444 @samp{e300c3}, @samp{e500mc}, @samp{e500mc64}, @samp{e5500},
19445 @samp{e6500}, @samp{ec603e}, @samp{G3}, @samp{G4}, @samp{G5},
19446 @samp{titan}, @samp{power3}, @samp{power4}, @samp{power5}, @samp{power5+},
19447 @samp{power6}, @samp{power6x}, @samp{power7}, @samp{power8}, @samp{powerpc},
19448 @samp{powerpc64}, and @samp{rs64}.
19450 @option{-mcpu=powerpc}, and @option{-mcpu=powerpc64} specify pure 32-bit
19451 PowerPC and 64-bit PowerPC architecture machine
19452 types, with an appropriate, generic processor model assumed for
19453 scheduling purposes.
19455 The other options specify a specific processor.  Code generated under
19456 those options runs best on that processor, and may not run at all on
19457 others.
19459 The @option{-mcpu} options automatically enable or disable the
19460 following options:
19462 @gccoptlist{-maltivec  -mfprnd  -mhard-float  -mmfcrf  -mmultiple @gol
19463 -mpopcntb -mpopcntd  -mpowerpc64 @gol
19464 -mpowerpc-gpopt  -mpowerpc-gfxopt  -msingle-float -mdouble-float @gol
19465 -msimple-fpu -mstring  -mmulhw  -mdlmzb  -mmfpgpr -mvsx @gol
19466 -mcrypto -mdirect-move -mpower8-fusion -mpower8-vector @gol
19467 -mquad-memory -mquad-memory-atomic}
19469 The particular options set for any particular CPU varies between
19470 compiler versions, depending on what setting seems to produce optimal
19471 code for that CPU; it doesn't necessarily reflect the actual hardware's
19472 capabilities.  If you wish to set an individual option to a particular
19473 value, you may specify it after the @option{-mcpu} option, like
19474 @option{-mcpu=970 -mno-altivec}.
19476 On AIX, the @option{-maltivec} and @option{-mpowerpc64} options are
19477 not enabled or disabled by the @option{-mcpu} option at present because
19478 AIX does not have full support for these options.  You may still
19479 enable or disable them individually if you're sure it'll work in your
19480 environment.
19482 @item -mtune=@var{cpu_type}
19483 @opindex mtune
19484 Set the instruction scheduling parameters for machine type
19485 @var{cpu_type}, but do not set the architecture type or register usage,
19486 as @option{-mcpu=@var{cpu_type}} does.  The same
19487 values for @var{cpu_type} are used for @option{-mtune} as for
19488 @option{-mcpu}.  If both are specified, the code generated uses the
19489 architecture and registers set by @option{-mcpu}, but the
19490 scheduling parameters set by @option{-mtune}.
19492 @item -mcmodel=small
19493 @opindex mcmodel=small
19494 Generate PowerPC64 code for the small model: The TOC is limited to
19495 64k.
19497 @item -mcmodel=medium
19498 @opindex mcmodel=medium
19499 Generate PowerPC64 code for the medium model: The TOC and other static
19500 data may be up to a total of 4G in size.
19502 @item -mcmodel=large
19503 @opindex mcmodel=large
19504 Generate PowerPC64 code for the large model: The TOC may be up to 4G
19505 in size.  Other data and code is only limited by the 64-bit address
19506 space.
19508 @item -maltivec
19509 @itemx -mno-altivec
19510 @opindex maltivec
19511 @opindex mno-altivec
19512 Generate code that uses (does not use) AltiVec instructions, and also
19513 enable the use of built-in functions that allow more direct access to
19514 the AltiVec instruction set.  You may also need to set
19515 @option{-mabi=altivec} to adjust the current ABI with AltiVec ABI
19516 enhancements.
19518 When @option{-maltivec} is used, rather than @option{-maltivec=le} or
19519 @option{-maltivec=be}, the element order for Altivec intrinsics such
19520 as @code{vec_splat}, @code{vec_extract}, and @code{vec_insert} will
19521 match array element order corresponding to the endianness of the
19522 target.  That is, element zero identifies the leftmost element in a
19523 vector register when targeting a big-endian platform, and identifies
19524 the rightmost element in a vector register when targeting a
19525 little-endian platform.
19527 @item -maltivec=be
19528 @opindex maltivec=be
19529 Generate Altivec instructions using big-endian element order,
19530 regardless of whether the target is big- or little-endian.  This is
19531 the default when targeting a big-endian platform.
19533 The element order is used to interpret element numbers in Altivec
19534 intrinsics such as @code{vec_splat}, @code{vec_extract}, and
19535 @code{vec_insert}.  By default, these will match array element order
19536 corresponding to the endianness for the target.
19538 @item -maltivec=le
19539 @opindex maltivec=le
19540 Generate Altivec instructions using little-endian element order,
19541 regardless of whether the target is big- or little-endian.  This is
19542 the default when targeting a little-endian platform.  This option is
19543 currently ignored when targeting a big-endian platform.
19545 The element order is used to interpret element numbers in Altivec
19546 intrinsics such as @code{vec_splat}, @code{vec_extract}, and
19547 @code{vec_insert}.  By default, these will match array element order
19548 corresponding to the endianness for the target.
19550 @item -mvrsave
19551 @itemx -mno-vrsave
19552 @opindex mvrsave
19553 @opindex mno-vrsave
19554 Generate VRSAVE instructions when generating AltiVec code.
19556 @item -mgen-cell-microcode
19557 @opindex mgen-cell-microcode
19558 Generate Cell microcode instructions.
19560 @item -mwarn-cell-microcode
19561 @opindex mwarn-cell-microcode
19562 Warn when a Cell microcode instruction is emitted.  An example
19563 of a Cell microcode instruction is a variable shift.
19565 @item -msecure-plt
19566 @opindex msecure-plt
19567 Generate code that allows @command{ld} and @command{ld.so}
19568 to build executables and shared
19569 libraries with non-executable @code{.plt} and @code{.got} sections.
19570 This is a PowerPC
19571 32-bit SYSV ABI option.
19573 @item -mbss-plt
19574 @opindex mbss-plt
19575 Generate code that uses a BSS @code{.plt} section that @command{ld.so}
19576 fills in, and
19577 requires @code{.plt} and @code{.got}
19578 sections that are both writable and executable.
19579 This is a PowerPC 32-bit SYSV ABI option.
19581 @item -misel
19582 @itemx -mno-isel
19583 @opindex misel
19584 @opindex mno-isel
19585 This switch enables or disables the generation of ISEL instructions.
19587 @item -misel=@var{yes/no}
19588 This switch has been deprecated.  Use @option{-misel} and
19589 @option{-mno-isel} instead.
19591 @item -mspe
19592 @itemx -mno-spe
19593 @opindex mspe
19594 @opindex mno-spe
19595 This switch enables or disables the generation of SPE simd
19596 instructions.
19598 @item -mpaired
19599 @itemx -mno-paired
19600 @opindex mpaired
19601 @opindex mno-paired
19602 This switch enables or disables the generation of PAIRED simd
19603 instructions.
19605 @item -mspe=@var{yes/no}
19606 This option has been deprecated.  Use @option{-mspe} and
19607 @option{-mno-spe} instead.
19609 @item -mvsx
19610 @itemx -mno-vsx
19611 @opindex mvsx
19612 @opindex mno-vsx
19613 Generate code that uses (does not use) vector/scalar (VSX)
19614 instructions, and also enable the use of built-in functions that allow
19615 more direct access to the VSX instruction set.
19617 @item -mcrypto
19618 @itemx -mno-crypto
19619 @opindex mcrypto
19620 @opindex mno-crypto
19621 Enable the use (disable) of the built-in functions that allow direct
19622 access to the cryptographic instructions that were added in version
19623 2.07 of the PowerPC ISA.
19625 @item -mdirect-move
19626 @itemx -mno-direct-move
19627 @opindex mdirect-move
19628 @opindex mno-direct-move
19629 Generate code that uses (does not use) the instructions to move data
19630 between the general purpose registers and the vector/scalar (VSX)
19631 registers that were added in version 2.07 of the PowerPC ISA.
19633 @item -mpower8-fusion
19634 @itemx -mno-power8-fusion
19635 @opindex mpower8-fusion
19636 @opindex mno-power8-fusion
19637 Generate code that keeps (does not keeps) some integer operations
19638 adjacent so that the instructions can be fused together on power8 and
19639 later processors.
19641 @item -mpower8-vector
19642 @itemx -mno-power8-vector
19643 @opindex mpower8-vector
19644 @opindex mno-power8-vector
19645 Generate code that uses (does not use) the vector and scalar
19646 instructions that were added in version 2.07 of the PowerPC ISA.  Also
19647 enable the use of built-in functions that allow more direct access to
19648 the vector instructions.
19650 @item -mquad-memory
19651 @itemx -mno-quad-memory
19652 @opindex mquad-memory
19653 @opindex mno-quad-memory
19654 Generate code that uses (does not use) the non-atomic quad word memory
19655 instructions.  The @option{-mquad-memory} option requires use of
19656 64-bit mode.
19658 @item -mquad-memory-atomic
19659 @itemx -mno-quad-memory-atomic
19660 @opindex mquad-memory-atomic
19661 @opindex mno-quad-memory-atomic
19662 Generate code that uses (does not use) the atomic quad word memory
19663 instructions.  The @option{-mquad-memory-atomic} option requires use of
19664 64-bit mode.
19666 @item -mfloat-gprs=@var{yes/single/double/no}
19667 @itemx -mfloat-gprs
19668 @opindex mfloat-gprs
19669 This switch enables or disables the generation of floating-point
19670 operations on the general-purpose registers for architectures that
19671 support it.
19673 The argument @var{yes} or @var{single} enables the use of
19674 single-precision floating-point operations.
19676 The argument @var{double} enables the use of single and
19677 double-precision floating-point operations.
19679 The argument @var{no} disables floating-point operations on the
19680 general-purpose registers.
19682 This option is currently only available on the MPC854x.
19684 @item -m32
19685 @itemx -m64
19686 @opindex m32
19687 @opindex m64
19688 Generate code for 32-bit or 64-bit environments of Darwin and SVR4
19689 targets (including GNU/Linux).  The 32-bit environment sets int, long
19690 and pointer to 32 bits and generates code that runs on any PowerPC
19691 variant.  The 64-bit environment sets int to 32 bits and long and
19692 pointer to 64 bits, and generates code for PowerPC64, as for
19693 @option{-mpowerpc64}.
19695 @item -mfull-toc
19696 @itemx -mno-fp-in-toc
19697 @itemx -mno-sum-in-toc
19698 @itemx -mminimal-toc
19699 @opindex mfull-toc
19700 @opindex mno-fp-in-toc
19701 @opindex mno-sum-in-toc
19702 @opindex mminimal-toc
19703 Modify generation of the TOC (Table Of Contents), which is created for
19704 every executable file.  The @option{-mfull-toc} option is selected by
19705 default.  In that case, GCC allocates at least one TOC entry for
19706 each unique non-automatic variable reference in your program.  GCC
19707 also places floating-point constants in the TOC@.  However, only
19708 16,384 entries are available in the TOC@.
19710 If you receive a linker error message that saying you have overflowed
19711 the available TOC space, you can reduce the amount of TOC space used
19712 with the @option{-mno-fp-in-toc} and @option{-mno-sum-in-toc} options.
19713 @option{-mno-fp-in-toc} prevents GCC from putting floating-point
19714 constants in the TOC and @option{-mno-sum-in-toc} forces GCC to
19715 generate code to calculate the sum of an address and a constant at
19716 run time instead of putting that sum into the TOC@.  You may specify one
19717 or both of these options.  Each causes GCC to produce very slightly
19718 slower and larger code at the expense of conserving TOC space.
19720 If you still run out of space in the TOC even when you specify both of
19721 these options, specify @option{-mminimal-toc} instead.  This option causes
19722 GCC to make only one TOC entry for every file.  When you specify this
19723 option, GCC produces code that is slower and larger but which
19724 uses extremely little TOC space.  You may wish to use this option
19725 only on files that contain less frequently-executed code.
19727 @item -maix64
19728 @itemx -maix32
19729 @opindex maix64
19730 @opindex maix32
19731 Enable 64-bit AIX ABI and calling convention: 64-bit pointers, 64-bit
19732 @code{long} type, and the infrastructure needed to support them.
19733 Specifying @option{-maix64} implies @option{-mpowerpc64},
19734 while @option{-maix32} disables the 64-bit ABI and
19735 implies @option{-mno-powerpc64}.  GCC defaults to @option{-maix32}.
19737 @item -mxl-compat
19738 @itemx -mno-xl-compat
19739 @opindex mxl-compat
19740 @opindex mno-xl-compat
19741 Produce code that conforms more closely to IBM XL compiler semantics
19742 when using AIX-compatible ABI@.  Pass floating-point arguments to
19743 prototyped functions beyond the register save area (RSA) on the stack
19744 in addition to argument FPRs.  Do not assume that most significant
19745 double in 128-bit long double value is properly rounded when comparing
19746 values and converting to double.  Use XL symbol names for long double
19747 support routines.
19749 The AIX calling convention was extended but not initially documented to
19750 handle an obscure K&R C case of calling a function that takes the
19751 address of its arguments with fewer arguments than declared.  IBM XL
19752 compilers access floating-point arguments that do not fit in the
19753 RSA from the stack when a subroutine is compiled without
19754 optimization.  Because always storing floating-point arguments on the
19755 stack is inefficient and rarely needed, this option is not enabled by
19756 default and only is necessary when calling subroutines compiled by IBM
19757 XL compilers without optimization.
19759 @item -mpe
19760 @opindex mpe
19761 Support @dfn{IBM RS/6000 SP} @dfn{Parallel Environment} (PE)@.  Link an
19762 application written to use message passing with special startup code to
19763 enable the application to run.  The system must have PE installed in the
19764 standard location (@file{/usr/lpp/ppe.poe/}), or the @file{specs} file
19765 must be overridden with the @option{-specs=} option to specify the
19766 appropriate directory location.  The Parallel Environment does not
19767 support threads, so the @option{-mpe} option and the @option{-pthread}
19768 option are incompatible.
19770 @item -malign-natural
19771 @itemx -malign-power
19772 @opindex malign-natural
19773 @opindex malign-power
19774 On AIX, 32-bit Darwin, and 64-bit PowerPC GNU/Linux, the option
19775 @option{-malign-natural} overrides the ABI-defined alignment of larger
19776 types, such as floating-point doubles, on their natural size-based boundary.
19777 The option @option{-malign-power} instructs GCC to follow the ABI-specified
19778 alignment rules.  GCC defaults to the standard alignment defined in the ABI@.
19780 On 64-bit Darwin, natural alignment is the default, and @option{-malign-power}
19781 is not supported.
19783 @item -msoft-float
19784 @itemx -mhard-float
19785 @opindex msoft-float
19786 @opindex mhard-float
19787 Generate code that does not use (uses) the floating-point register set.
19788 Software floating-point emulation is provided if you use the
19789 @option{-msoft-float} option, and pass the option to GCC when linking.
19791 @item -msingle-float
19792 @itemx -mdouble-float
19793 @opindex msingle-float
19794 @opindex mdouble-float
19795 Generate code for single- or double-precision floating-point operations.
19796 @option{-mdouble-float} implies @option{-msingle-float}.
19798 @item -msimple-fpu
19799 @opindex msimple-fpu
19800 Do not generate @code{sqrt} and @code{div} instructions for hardware
19801 floating-point unit.
19803 @item -mfpu=@var{name}
19804 @opindex mfpu
19805 Specify type of floating-point unit.  Valid values for @var{name} are
19806 @samp{sp_lite} (equivalent to @option{-msingle-float -msimple-fpu}),
19807 @samp{dp_lite} (equivalent to @option{-mdouble-float -msimple-fpu}),
19808 @samp{sp_full} (equivalent to @option{-msingle-float}),
19809 and @samp{dp_full} (equivalent to @option{-mdouble-float}).
19811 @item -mxilinx-fpu
19812 @opindex mxilinx-fpu
19813 Perform optimizations for the floating-point unit on Xilinx PPC 405/440.
19815 @item -mmultiple
19816 @itemx -mno-multiple
19817 @opindex mmultiple
19818 @opindex mno-multiple
19819 Generate code that uses (does not use) the load multiple word
19820 instructions and the store multiple word instructions.  These
19821 instructions are generated by default on POWER systems, and not
19822 generated on PowerPC systems.  Do not use @option{-mmultiple} on little-endian
19823 PowerPC systems, since those instructions do not work when the
19824 processor is in little-endian mode.  The exceptions are PPC740 and
19825 PPC750 which permit these instructions in little-endian mode.
19827 @item -mstring
19828 @itemx -mno-string
19829 @opindex mstring
19830 @opindex mno-string
19831 Generate code that uses (does not use) the load string instructions
19832 and the store string word instructions to save multiple registers and
19833 do small block moves.  These instructions are generated by default on
19834 POWER systems, and not generated on PowerPC systems.  Do not use
19835 @option{-mstring} on little-endian PowerPC systems, since those
19836 instructions do not work when the processor is in little-endian mode.
19837 The exceptions are PPC740 and PPC750 which permit these instructions
19838 in little-endian mode.
19840 @item -mupdate
19841 @itemx -mno-update
19842 @opindex mupdate
19843 @opindex mno-update
19844 Generate code that uses (does not use) the load or store instructions
19845 that update the base register to the address of the calculated memory
19846 location.  These instructions are generated by default.  If you use
19847 @option{-mno-update}, there is a small window between the time that the
19848 stack pointer is updated and the address of the previous frame is
19849 stored, which means code that walks the stack frame across interrupts or
19850 signals may get corrupted data.
19852 @item -mavoid-indexed-addresses
19853 @itemx -mno-avoid-indexed-addresses
19854 @opindex mavoid-indexed-addresses
19855 @opindex mno-avoid-indexed-addresses
19856 Generate code that tries to avoid (not avoid) the use of indexed load
19857 or store instructions. These instructions can incur a performance
19858 penalty on Power6 processors in certain situations, such as when
19859 stepping through large arrays that cross a 16M boundary.  This option
19860 is enabled by default when targeting Power6 and disabled otherwise.
19862 @item -mfused-madd
19863 @itemx -mno-fused-madd
19864 @opindex mfused-madd
19865 @opindex mno-fused-madd
19866 Generate code that uses (does not use) the floating-point multiply and
19867 accumulate instructions.  These instructions are generated by default
19868 if hardware floating point is used.  The machine-dependent
19869 @option{-mfused-madd} option is now mapped to the machine-independent
19870 @option{-ffp-contract=fast} option, and @option{-mno-fused-madd} is
19871 mapped to @option{-ffp-contract=off}.
19873 @item -mmulhw
19874 @itemx -mno-mulhw
19875 @opindex mmulhw
19876 @opindex mno-mulhw
19877 Generate code that uses (does not use) the half-word multiply and
19878 multiply-accumulate instructions on the IBM 405, 440, 464 and 476 processors.
19879 These instructions are generated by default when targeting those
19880 processors.
19882 @item -mdlmzb
19883 @itemx -mno-dlmzb
19884 @opindex mdlmzb
19885 @opindex mno-dlmzb
19886 Generate code that uses (does not use) the string-search @samp{dlmzb}
19887 instruction on the IBM 405, 440, 464 and 476 processors.  This instruction is
19888 generated by default when targeting those processors.
19890 @item -mno-bit-align
19891 @itemx -mbit-align
19892 @opindex mno-bit-align
19893 @opindex mbit-align
19894 On System V.4 and embedded PowerPC systems do not (do) force structures
19895 and unions that contain bit-fields to be aligned to the base type of the
19896 bit-field.
19898 For example, by default a structure containing nothing but 8
19899 @code{unsigned} bit-fields of length 1 is aligned to a 4-byte
19900 boundary and has a size of 4 bytes.  By using @option{-mno-bit-align},
19901 the structure is aligned to a 1-byte boundary and is 1 byte in
19902 size.
19904 @item -mno-strict-align
19905 @itemx -mstrict-align
19906 @opindex mno-strict-align
19907 @opindex mstrict-align
19908 On System V.4 and embedded PowerPC systems do not (do) assume that
19909 unaligned memory references are handled by the system.
19911 @item -mrelocatable
19912 @itemx -mno-relocatable
19913 @opindex mrelocatable
19914 @opindex mno-relocatable
19915 Generate code that allows (does not allow) a static executable to be
19916 relocated to a different address at run time.  A simple embedded
19917 PowerPC system loader should relocate the entire contents of
19918 @code{.got2} and 4-byte locations listed in the @code{.fixup} section,
19919 a table of 32-bit addresses generated by this option.  For this to
19920 work, all objects linked together must be compiled with
19921 @option{-mrelocatable} or @option{-mrelocatable-lib}.
19922 @option{-mrelocatable} code aligns the stack to an 8-byte boundary.
19924 @item -mrelocatable-lib
19925 @itemx -mno-relocatable-lib
19926 @opindex mrelocatable-lib
19927 @opindex mno-relocatable-lib
19928 Like @option{-mrelocatable}, @option{-mrelocatable-lib} generates a
19929 @code{.fixup} section to allow static executables to be relocated at
19930 run time, but @option{-mrelocatable-lib} does not use the smaller stack
19931 alignment of @option{-mrelocatable}.  Objects compiled with
19932 @option{-mrelocatable-lib} may be linked with objects compiled with
19933 any combination of the @option{-mrelocatable} options.
19935 @item -mno-toc
19936 @itemx -mtoc
19937 @opindex mno-toc
19938 @opindex mtoc
19939 On System V.4 and embedded PowerPC systems do not (do) assume that
19940 register 2 contains a pointer to a global area pointing to the addresses
19941 used in the program.
19943 @item -mlittle
19944 @itemx -mlittle-endian
19945 @opindex mlittle
19946 @opindex mlittle-endian
19947 On System V.4 and embedded PowerPC systems compile code for the
19948 processor in little-endian mode.  The @option{-mlittle-endian} option is
19949 the same as @option{-mlittle}.
19951 @item -mbig
19952 @itemx -mbig-endian
19953 @opindex mbig
19954 @opindex mbig-endian
19955 On System V.4 and embedded PowerPC systems compile code for the
19956 processor in big-endian mode.  The @option{-mbig-endian} option is
19957 the same as @option{-mbig}.
19959 @item -mdynamic-no-pic
19960 @opindex mdynamic-no-pic
19961 On Darwin and Mac OS X systems, compile code so that it is not
19962 relocatable, but that its external references are relocatable.  The
19963 resulting code is suitable for applications, but not shared
19964 libraries.
19966 @item -msingle-pic-base
19967 @opindex msingle-pic-base
19968 Treat the register used for PIC addressing as read-only, rather than
19969 loading it in the prologue for each function.  The runtime system is
19970 responsible for initializing this register with an appropriate value
19971 before execution begins.
19973 @item -mprioritize-restricted-insns=@var{priority}
19974 @opindex mprioritize-restricted-insns
19975 This option controls the priority that is assigned to
19976 dispatch-slot restricted instructions during the second scheduling
19977 pass.  The argument @var{priority} takes the value @samp{0}, @samp{1},
19978 or @samp{2} to assign no, highest, or second-highest (respectively) 
19979 priority to dispatch-slot restricted
19980 instructions.
19982 @item -msched-costly-dep=@var{dependence_type}
19983 @opindex msched-costly-dep
19984 This option controls which dependences are considered costly
19985 by the target during instruction scheduling.  The argument
19986 @var{dependence_type} takes one of the following values:
19988 @table @asis
19989 @item @samp{no}
19990 No dependence is costly.
19992 @item @samp{all}
19993 All dependences are costly.
19995 @item @samp{true_store_to_load}
19996 A true dependence from store to load is costly.
19998 @item @samp{store_to_load}
19999 Any dependence from store to load is costly.
20001 @item @var{number}
20002 Any dependence for which the latency is greater than or equal to 
20003 @var{number} is costly.
20004 @end table
20006 @item -minsert-sched-nops=@var{scheme}
20007 @opindex minsert-sched-nops
20008 This option controls which NOP insertion scheme is used during
20009 the second scheduling pass.  The argument @var{scheme} takes one of the
20010 following values:
20012 @table @asis
20013 @item @samp{no}
20014 Don't insert NOPs.
20016 @item @samp{pad}
20017 Pad with NOPs any dispatch group that has vacant issue slots,
20018 according to the scheduler's grouping.
20020 @item @samp{regroup_exact}
20021 Insert NOPs to force costly dependent insns into
20022 separate groups.  Insert exactly as many NOPs as needed to force an insn
20023 to a new group, according to the estimated processor grouping.
20025 @item @var{number}
20026 Insert NOPs to force costly dependent insns into
20027 separate groups.  Insert @var{number} NOPs to force an insn to a new group.
20028 @end table
20030 @item -mcall-sysv
20031 @opindex mcall-sysv
20032 On System V.4 and embedded PowerPC systems compile code using calling
20033 conventions that adhere to the March 1995 draft of the System V
20034 Application Binary Interface, PowerPC processor supplement.  This is the
20035 default unless you configured GCC using @samp{powerpc-*-eabiaix}.
20037 @item -mcall-sysv-eabi
20038 @itemx -mcall-eabi
20039 @opindex mcall-sysv-eabi
20040 @opindex mcall-eabi
20041 Specify both @option{-mcall-sysv} and @option{-meabi} options.
20043 @item -mcall-sysv-noeabi
20044 @opindex mcall-sysv-noeabi
20045 Specify both @option{-mcall-sysv} and @option{-mno-eabi} options.
20047 @item -mcall-aixdesc
20048 @opindex m
20049 On System V.4 and embedded PowerPC systems compile code for the AIX
20050 operating system.
20052 @item -mcall-linux
20053 @opindex mcall-linux
20054 On System V.4 and embedded PowerPC systems compile code for the
20055 Linux-based GNU system.
20057 @item -mcall-freebsd
20058 @opindex mcall-freebsd
20059 On System V.4 and embedded PowerPC systems compile code for the
20060 FreeBSD operating system.
20062 @item -mcall-netbsd
20063 @opindex mcall-netbsd
20064 On System V.4 and embedded PowerPC systems compile code for the
20065 NetBSD operating system.
20067 @item -mcall-openbsd
20068 @opindex mcall-netbsd
20069 On System V.4 and embedded PowerPC systems compile code for the
20070 OpenBSD operating system.
20072 @item -maix-struct-return
20073 @opindex maix-struct-return
20074 Return all structures in memory (as specified by the AIX ABI)@.
20076 @item -msvr4-struct-return
20077 @opindex msvr4-struct-return
20078 Return structures smaller than 8 bytes in registers (as specified by the
20079 SVR4 ABI)@.
20081 @item -mabi=@var{abi-type}
20082 @opindex mabi
20083 Extend the current ABI with a particular extension, or remove such extension.
20084 Valid values are @var{altivec}, @var{no-altivec}, @var{spe},
20085 @var{no-spe}, @var{ibmlongdouble}, @var{ieeelongdouble},
20086 @var{elfv1}, @var{elfv2}@.
20088 @item -mabi=spe
20089 @opindex mabi=spe
20090 Extend the current ABI with SPE ABI extensions.  This does not change
20091 the default ABI, instead it adds the SPE ABI extensions to the current
20092 ABI@.
20094 @item -mabi=no-spe
20095 @opindex mabi=no-spe
20096 Disable Book-E SPE ABI extensions for the current ABI@.
20098 @item -mabi=ibmlongdouble
20099 @opindex mabi=ibmlongdouble
20100 Change the current ABI to use IBM extended-precision long double.
20101 This is a PowerPC 32-bit SYSV ABI option.
20103 @item -mabi=ieeelongdouble
20104 @opindex mabi=ieeelongdouble
20105 Change the current ABI to use IEEE extended-precision long double.
20106 This is a PowerPC 32-bit Linux ABI option.
20108 @item -mabi=elfv1
20109 @opindex mabi=elfv1
20110 Change the current ABI to use the ELFv1 ABI.
20111 This is the default ABI for big-endian PowerPC 64-bit Linux.
20112 Overriding the default ABI requires special system support and is
20113 likely to fail in spectacular ways.
20115 @item -mabi=elfv2
20116 @opindex mabi=elfv2
20117 Change the current ABI to use the ELFv2 ABI.
20118 This is the default ABI for little-endian PowerPC 64-bit Linux.
20119 Overriding the default ABI requires special system support and is
20120 likely to fail in spectacular ways.
20122 @item -mprototype
20123 @itemx -mno-prototype
20124 @opindex mprototype
20125 @opindex mno-prototype
20126 On System V.4 and embedded PowerPC systems assume that all calls to
20127 variable argument functions are properly prototyped.  Otherwise, the
20128 compiler must insert an instruction before every non-prototyped call to
20129 set or clear bit 6 of the condition code register (@var{CR}) to
20130 indicate whether floating-point values are passed in the floating-point
20131 registers in case the function takes variable arguments.  With
20132 @option{-mprototype}, only calls to prototyped variable argument functions
20133 set or clear the bit.
20135 @item -msim
20136 @opindex msim
20137 On embedded PowerPC systems, assume that the startup module is called
20138 @file{sim-crt0.o} and that the standard C libraries are @file{libsim.a} and
20139 @file{libc.a}.  This is the default for @samp{powerpc-*-eabisim}
20140 configurations.
20142 @item -mmvme
20143 @opindex mmvme
20144 On embedded PowerPC systems, assume that the startup module is called
20145 @file{crt0.o} and the standard C libraries are @file{libmvme.a} and
20146 @file{libc.a}.
20148 @item -mads
20149 @opindex mads
20150 On embedded PowerPC systems, assume that the startup module is called
20151 @file{crt0.o} and the standard C libraries are @file{libads.a} and
20152 @file{libc.a}.
20154 @item -myellowknife
20155 @opindex myellowknife
20156 On embedded PowerPC systems, assume that the startup module is called
20157 @file{crt0.o} and the standard C libraries are @file{libyk.a} and
20158 @file{libc.a}.
20160 @item -mvxworks
20161 @opindex mvxworks
20162 On System V.4 and embedded PowerPC systems, specify that you are
20163 compiling for a VxWorks system.
20165 @item -memb
20166 @opindex memb
20167 On embedded PowerPC systems, set the @var{PPC_EMB} bit in the ELF flags
20168 header to indicate that @samp{eabi} extended relocations are used.
20170 @item -meabi
20171 @itemx -mno-eabi
20172 @opindex meabi
20173 @opindex mno-eabi
20174 On System V.4 and embedded PowerPC systems do (do not) adhere to the
20175 Embedded Applications Binary Interface (EABI), which is a set of
20176 modifications to the System V.4 specifications.  Selecting @option{-meabi}
20177 means that the stack is aligned to an 8-byte boundary, a function
20178 @code{__eabi} is called from @code{main} to set up the EABI
20179 environment, and the @option{-msdata} option can use both @code{r2} and
20180 @code{r13} to point to two separate small data areas.  Selecting
20181 @option{-mno-eabi} means that the stack is aligned to a 16-byte boundary,
20182 no EABI initialization function is called from @code{main}, and the
20183 @option{-msdata} option only uses @code{r13} to point to a single
20184 small data area.  The @option{-meabi} option is on by default if you
20185 configured GCC using one of the @samp{powerpc*-*-eabi*} options.
20187 @item -msdata=eabi
20188 @opindex msdata=eabi
20189 On System V.4 and embedded PowerPC systems, put small initialized
20190 @code{const} global and static data in the @samp{.sdata2} section, which
20191 is pointed to by register @code{r2}.  Put small initialized
20192 non-@code{const} global and static data in the @samp{.sdata} section,
20193 which is pointed to by register @code{r13}.  Put small uninitialized
20194 global and static data in the @samp{.sbss} section, which is adjacent to
20195 the @samp{.sdata} section.  The @option{-msdata=eabi} option is
20196 incompatible with the @option{-mrelocatable} option.  The
20197 @option{-msdata=eabi} option also sets the @option{-memb} option.
20199 @item -msdata=sysv
20200 @opindex msdata=sysv
20201 On System V.4 and embedded PowerPC systems, put small global and static
20202 data in the @samp{.sdata} section, which is pointed to by register
20203 @code{r13}.  Put small uninitialized global and static data in the
20204 @samp{.sbss} section, which is adjacent to the @samp{.sdata} section.
20205 The @option{-msdata=sysv} option is incompatible with the
20206 @option{-mrelocatable} option.
20208 @item -msdata=default
20209 @itemx -msdata
20210 @opindex msdata=default
20211 @opindex msdata
20212 On System V.4 and embedded PowerPC systems, if @option{-meabi} is used,
20213 compile code the same as @option{-msdata=eabi}, otherwise compile code the
20214 same as @option{-msdata=sysv}.
20216 @item -msdata=data
20217 @opindex msdata=data
20218 On System V.4 and embedded PowerPC systems, put small global
20219 data in the @samp{.sdata} section.  Put small uninitialized global
20220 data in the @samp{.sbss} section.  Do not use register @code{r13}
20221 to address small data however.  This is the default behavior unless
20222 other @option{-msdata} options are used.
20224 @item -msdata=none
20225 @itemx -mno-sdata
20226 @opindex msdata=none
20227 @opindex mno-sdata
20228 On embedded PowerPC systems, put all initialized global and static data
20229 in the @samp{.data} section, and all uninitialized data in the
20230 @samp{.bss} section.
20232 @item -mblock-move-inline-limit=@var{num}
20233 @opindex mblock-move-inline-limit
20234 Inline all block moves (such as calls to @code{memcpy} or structure
20235 copies) less than or equal to @var{num} bytes.  The minimum value for
20236 @var{num} is 32 bytes on 32-bit targets and 64 bytes on 64-bit
20237 targets.  The default value is target-specific.
20239 @item -G @var{num}
20240 @opindex G
20241 @cindex smaller data references (PowerPC)
20242 @cindex .sdata/.sdata2 references (PowerPC)
20243 On embedded PowerPC systems, put global and static items less than or
20244 equal to @var{num} bytes into the small data or BSS sections instead of
20245 the normal data or BSS section.  By default, @var{num} is 8.  The
20246 @option{-G @var{num}} switch is also passed to the linker.
20247 All modules should be compiled with the same @option{-G @var{num}} value.
20249 @item -mregnames
20250 @itemx -mno-regnames
20251 @opindex mregnames
20252 @opindex mno-regnames
20253 On System V.4 and embedded PowerPC systems do (do not) emit register
20254 names in the assembly language output using symbolic forms.
20256 @item -mlongcall
20257 @itemx -mno-longcall
20258 @opindex mlongcall
20259 @opindex mno-longcall
20260 By default assume that all calls are far away so that a longer and more
20261 expensive calling sequence is required.  This is required for calls
20262 farther than 32 megabytes (33,554,432 bytes) from the current location.
20263 A short call is generated if the compiler knows
20264 the call cannot be that far away.  This setting can be overridden by
20265 the @code{shortcall} function attribute, or by @code{#pragma
20266 longcall(0)}.
20268 Some linkers are capable of detecting out-of-range calls and generating
20269 glue code on the fly.  On these systems, long calls are unnecessary and
20270 generate slower code.  As of this writing, the AIX linker can do this,
20271 as can the GNU linker for PowerPC/64.  It is planned to add this feature
20272 to the GNU linker for 32-bit PowerPC systems as well.
20274 On Darwin/PPC systems, @code{#pragma longcall} generates @code{jbsr
20275 callee, L42}, plus a @dfn{branch island} (glue code).  The two target
20276 addresses represent the callee and the branch island.  The
20277 Darwin/PPC linker prefers the first address and generates a @code{bl
20278 callee} if the PPC @code{bl} instruction reaches the callee directly;
20279 otherwise, the linker generates @code{bl L42} to call the branch
20280 island.  The branch island is appended to the body of the
20281 calling function; it computes the full 32-bit address of the callee
20282 and jumps to it.
20284 On Mach-O (Darwin) systems, this option directs the compiler emit to
20285 the glue for every direct call, and the Darwin linker decides whether
20286 to use or discard it.
20288 In the future, GCC may ignore all longcall specifications
20289 when the linker is known to generate glue.
20291 @item -mtls-markers
20292 @itemx -mno-tls-markers
20293 @opindex mtls-markers
20294 @opindex mno-tls-markers
20295 Mark (do not mark) calls to @code{__tls_get_addr} with a relocation
20296 specifying the function argument.  The relocation allows the linker to
20297 reliably associate function call with argument setup instructions for
20298 TLS optimization, which in turn allows GCC to better schedule the
20299 sequence.
20301 @item -pthread
20302 @opindex pthread
20303 Adds support for multithreading with the @dfn{pthreads} library.
20304 This option sets flags for both the preprocessor and linker.
20306 @item -mrecip
20307 @itemx -mno-recip
20308 @opindex mrecip
20309 This option enables use of the reciprocal estimate and
20310 reciprocal square root estimate instructions with additional
20311 Newton-Raphson steps to increase precision instead of doing a divide or
20312 square root and divide for floating-point arguments.  You should use
20313 the @option{-ffast-math} option when using @option{-mrecip} (or at
20314 least @option{-funsafe-math-optimizations},
20315 @option{-finite-math-only}, @option{-freciprocal-math} and
20316 @option{-fno-trapping-math}).  Note that while the throughput of the
20317 sequence is generally higher than the throughput of the non-reciprocal
20318 instruction, the precision of the sequence can be decreased by up to 2
20319 ulp (i.e.@: the inverse of 1.0 equals 0.99999994) for reciprocal square
20320 roots.
20322 @item -mrecip=@var{opt}
20323 @opindex mrecip=opt
20324 This option controls which reciprocal estimate instructions
20325 may be used.  @var{opt} is a comma-separated list of options, which may
20326 be preceded by a @code{!} to invert the option:
20327 @code{all}: enable all estimate instructions,
20328 @code{default}: enable the default instructions, equivalent to @option{-mrecip},
20329 @code{none}: disable all estimate instructions, equivalent to @option{-mno-recip};
20330 @code{div}: enable the reciprocal approximation instructions for both single and double precision;
20331 @code{divf}: enable the single-precision reciprocal approximation instructions;
20332 @code{divd}: enable the double-precision reciprocal approximation instructions;
20333 @code{rsqrt}: enable the reciprocal square root approximation instructions for both single and double precision;
20334 @code{rsqrtf}: enable the single-precision reciprocal square root approximation instructions;
20335 @code{rsqrtd}: enable the double-precision reciprocal square root approximation instructions;
20337 So, for example, @option{-mrecip=all,!rsqrtd} enables
20338 all of the reciprocal estimate instructions, except for the
20339 @code{FRSQRTE}, @code{XSRSQRTEDP}, and @code{XVRSQRTEDP} instructions
20340 which handle the double-precision reciprocal square root calculations.
20342 @item -mrecip-precision
20343 @itemx -mno-recip-precision
20344 @opindex mrecip-precision
20345 Assume (do not assume) that the reciprocal estimate instructions
20346 provide higher-precision estimates than is mandated by the PowerPC
20347 ABI.  Selecting @option{-mcpu=power6}, @option{-mcpu=power7} or
20348 @option{-mcpu=power8} automatically selects @option{-mrecip-precision}.
20349 The double-precision square root estimate instructions are not generated by
20350 default on low-precision machines, since they do not provide an
20351 estimate that converges after three steps.
20353 @item -mveclibabi=@var{type}
20354 @opindex mveclibabi
20355 Specifies the ABI type to use for vectorizing intrinsics using an
20356 external library.  The only type supported at present is @code{mass},
20357 which specifies to use IBM's Mathematical Acceleration Subsystem
20358 (MASS) libraries for vectorizing intrinsics using external libraries.
20359 GCC currently emits calls to @code{acosd2}, @code{acosf4},
20360 @code{acoshd2}, @code{acoshf4}, @code{asind2}, @code{asinf4},
20361 @code{asinhd2}, @code{asinhf4}, @code{atan2d2}, @code{atan2f4},
20362 @code{atand2}, @code{atanf4}, @code{atanhd2}, @code{atanhf4},
20363 @code{cbrtd2}, @code{cbrtf4}, @code{cosd2}, @code{cosf4},
20364 @code{coshd2}, @code{coshf4}, @code{erfcd2}, @code{erfcf4},
20365 @code{erfd2}, @code{erff4}, @code{exp2d2}, @code{exp2f4},
20366 @code{expd2}, @code{expf4}, @code{expm1d2}, @code{expm1f4},
20367 @code{hypotd2}, @code{hypotf4}, @code{lgammad2}, @code{lgammaf4},
20368 @code{log10d2}, @code{log10f4}, @code{log1pd2}, @code{log1pf4},
20369 @code{log2d2}, @code{log2f4}, @code{logd2}, @code{logf4},
20370 @code{powd2}, @code{powf4}, @code{sind2}, @code{sinf4}, @code{sinhd2},
20371 @code{sinhf4}, @code{sqrtd2}, @code{sqrtf4}, @code{tand2},
20372 @code{tanf4}, @code{tanhd2}, and @code{tanhf4} when generating code
20373 for power7.  Both @option{-ftree-vectorize} and
20374 @option{-funsafe-math-optimizations} must also be enabled.  The MASS
20375 libraries must be specified at link time.
20377 @item -mfriz
20378 @itemx -mno-friz
20379 @opindex mfriz
20380 Generate (do not generate) the @code{friz} instruction when the
20381 @option{-funsafe-math-optimizations} option is used to optimize
20382 rounding of floating-point values to 64-bit integer and back to floating
20383 point.  The @code{friz} instruction does not return the same value if
20384 the floating-point number is too large to fit in an integer.
20386 @item -mpointers-to-nested-functions
20387 @itemx -mno-pointers-to-nested-functions
20388 @opindex mpointers-to-nested-functions
20389 Generate (do not generate) code to load up the static chain register
20390 (@var{r11}) when calling through a pointer on AIX and 64-bit Linux
20391 systems where a function pointer points to a 3-word descriptor giving
20392 the function address, TOC value to be loaded in register @var{r2}, and
20393 static chain value to be loaded in register @var{r11}.  The
20394 @option{-mpointers-to-nested-functions} is on by default.  You cannot
20395 call through pointers to nested functions or pointers
20396 to functions compiled in other languages that use the static chain if
20397 you use the @option{-mno-pointers-to-nested-functions}.
20399 @item -msave-toc-indirect
20400 @itemx -mno-save-toc-indirect
20401 @opindex msave-toc-indirect
20402 Generate (do not generate) code to save the TOC value in the reserved
20403 stack location in the function prologue if the function calls through
20404 a pointer on AIX and 64-bit Linux systems.  If the TOC value is not
20405 saved in the prologue, it is saved just before the call through the
20406 pointer.  The @option{-mno-save-toc-indirect} option is the default.
20408 @item -mcompat-align-parm
20409 @itemx -mno-compat-align-parm
20410 @opindex mcompat-align-parm
20411 Generate (do not generate) code to pass structure parameters with a
20412 maximum alignment of 64 bits, for compatibility with older versions
20413 of GCC.
20415 Older versions of GCC (prior to 4.9.0) incorrectly did not align a
20416 structure parameter on a 128-bit boundary when that structure contained
20417 a member requiring 128-bit alignment.  This is corrected in more
20418 recent versions of GCC.  This option may be used to generate code
20419 that is compatible with functions compiled with older versions of
20420 GCC.
20422 The @option{-mno-compat-align-parm} option is the default.
20423 @end table
20425 @node RX Options
20426 @subsection RX Options
20427 @cindex RX Options
20429 These command-line options are defined for RX targets:
20431 @table @gcctabopt
20432 @item -m64bit-doubles
20433 @itemx -m32bit-doubles
20434 @opindex m64bit-doubles
20435 @opindex m32bit-doubles
20436 Make the @code{double} data type be 64 bits (@option{-m64bit-doubles})
20437 or 32 bits (@option{-m32bit-doubles}) in size.  The default is
20438 @option{-m32bit-doubles}.  @emph{Note} RX floating-point hardware only
20439 works on 32-bit values, which is why the default is
20440 @option{-m32bit-doubles}.
20442 @item -fpu
20443 @itemx -nofpu
20444 @opindex fpu
20445 @opindex nofpu
20446 Enables (@option{-fpu}) or disables (@option{-nofpu}) the use of RX
20447 floating-point hardware.  The default is enabled for the @var{RX600}
20448 series and disabled for the @var{RX200} series.
20450 Floating-point instructions are only generated for 32-bit floating-point 
20451 values, however, so the FPU hardware is not used for doubles if the
20452 @option{-m64bit-doubles} option is used.
20454 @emph{Note} If the @option{-fpu} option is enabled then
20455 @option{-funsafe-math-optimizations} is also enabled automatically.
20456 This is because the RX FPU instructions are themselves unsafe.
20458 @item -mcpu=@var{name}
20459 @opindex -mcpu
20460 Selects the type of RX CPU to be targeted.  Currently three types are
20461 supported, the generic @var{RX600} and @var{RX200} series hardware and
20462 the specific @var{RX610} CPU.  The default is @var{RX600}.
20464 The only difference between @var{RX600} and @var{RX610} is that the
20465 @var{RX610} does not support the @code{MVTIPL} instruction.
20467 The @var{RX200} series does not have a hardware floating-point unit
20468 and so @option{-nofpu} is enabled by default when this type is
20469 selected.
20471 @item -mbig-endian-data
20472 @itemx -mlittle-endian-data
20473 @opindex mbig-endian-data
20474 @opindex mlittle-endian-data
20475 Store data (but not code) in the big-endian format.  The default is
20476 @option{-mlittle-endian-data}, i.e.@: to store data in the little-endian
20477 format.
20479 @item -msmall-data-limit=@var{N}
20480 @opindex msmall-data-limit
20481 Specifies the maximum size in bytes of global and static variables
20482 which can be placed into the small data area.  Using the small data
20483 area can lead to smaller and faster code, but the size of area is
20484 limited and it is up to the programmer to ensure that the area does
20485 not overflow.  Also when the small data area is used one of the RX's
20486 registers (usually @code{r13}) is reserved for use pointing to this
20487 area, so it is no longer available for use by the compiler.  This
20488 could result in slower and/or larger code if variables are pushed onto
20489 the stack instead of being held in this register.
20491 Note, common variables (variables that have not been initialized) and
20492 constants are not placed into the small data area as they are assigned
20493 to other sections in the output executable.
20495 The default value is zero, which disables this feature.  Note, this
20496 feature is not enabled by default with higher optimization levels
20497 (@option{-O2} etc) because of the potentially detrimental effects of
20498 reserving a register.  It is up to the programmer to experiment and
20499 discover whether this feature is of benefit to their program.  See the
20500 description of the @option{-mpid} option for a description of how the
20501 actual register to hold the small data area pointer is chosen.
20503 @item -msim
20504 @itemx -mno-sim
20505 @opindex msim
20506 @opindex mno-sim
20507 Use the simulator runtime.  The default is to use the libgloss
20508 board-specific runtime.
20510 @item -mas100-syntax
20511 @itemx -mno-as100-syntax
20512 @opindex mas100-syntax
20513 @opindex mno-as100-syntax
20514 When generating assembler output use a syntax that is compatible with
20515 Renesas's AS100 assembler.  This syntax can also be handled by the GAS
20516 assembler, but it has some restrictions so it is not generated by default.
20518 @item -mmax-constant-size=@var{N}
20519 @opindex mmax-constant-size
20520 Specifies the maximum size, in bytes, of a constant that can be used as
20521 an operand in a RX instruction.  Although the RX instruction set does
20522 allow constants of up to 4 bytes in length to be used in instructions,
20523 a longer value equates to a longer instruction.  Thus in some
20524 circumstances it can be beneficial to restrict the size of constants
20525 that are used in instructions.  Constants that are too big are instead
20526 placed into a constant pool and referenced via register indirection.
20528 The value @var{N} can be between 0 and 4.  A value of 0 (the default)
20529 or 4 means that constants of any size are allowed.
20531 @item -mrelax
20532 @opindex mrelax
20533 Enable linker relaxation.  Linker relaxation is a process whereby the
20534 linker attempts to reduce the size of a program by finding shorter
20535 versions of various instructions.  Disabled by default.
20537 @item -mint-register=@var{N}
20538 @opindex mint-register
20539 Specify the number of registers to reserve for fast interrupt handler
20540 functions.  The value @var{N} can be between 0 and 4.  A value of 1
20541 means that register @code{r13} is reserved for the exclusive use
20542 of fast interrupt handlers.  A value of 2 reserves @code{r13} and
20543 @code{r12}.  A value of 3 reserves @code{r13}, @code{r12} and
20544 @code{r11}, and a value of 4 reserves @code{r13} through @code{r10}.
20545 A value of 0, the default, does not reserve any registers.
20547 @item -msave-acc-in-interrupts
20548 @opindex msave-acc-in-interrupts
20549 Specifies that interrupt handler functions should preserve the
20550 accumulator register.  This is only necessary if normal code might use
20551 the accumulator register, for example because it performs 64-bit
20552 multiplications.  The default is to ignore the accumulator as this
20553 makes the interrupt handlers faster.
20555 @item -mpid
20556 @itemx -mno-pid
20557 @opindex mpid
20558 @opindex mno-pid
20559 Enables the generation of position independent data.  When enabled any
20560 access to constant data is done via an offset from a base address
20561 held in a register.  This allows the location of constant data to be
20562 determined at run time without requiring the executable to be
20563 relocated, which is a benefit to embedded applications with tight
20564 memory constraints.  Data that can be modified is not affected by this
20565 option.
20567 Note, using this feature reserves a register, usually @code{r13}, for
20568 the constant data base address.  This can result in slower and/or
20569 larger code, especially in complicated functions.
20571 The actual register chosen to hold the constant data base address
20572 depends upon whether the @option{-msmall-data-limit} and/or the
20573 @option{-mint-register} command-line options are enabled.  Starting
20574 with register @code{r13} and proceeding downwards, registers are
20575 allocated first to satisfy the requirements of @option{-mint-register},
20576 then @option{-mpid} and finally @option{-msmall-data-limit}.  Thus it
20577 is possible for the small data area register to be @code{r8} if both
20578 @option{-mint-register=4} and @option{-mpid} are specified on the
20579 command line.
20581 By default this feature is not enabled.  The default can be restored
20582 via the @option{-mno-pid} command-line option.
20584 @item -mno-warn-multiple-fast-interrupts
20585 @itemx -mwarn-multiple-fast-interrupts
20586 @opindex mno-warn-multiple-fast-interrupts
20587 @opindex mwarn-multiple-fast-interrupts
20588 Prevents GCC from issuing a warning message if it finds more than one
20589 fast interrupt handler when it is compiling a file.  The default is to
20590 issue a warning for each extra fast interrupt handler found, as the RX
20591 only supports one such interrupt.
20593 @end table
20595 @emph{Note:} The generic GCC command-line option @option{-ffixed-@var{reg}}
20596 has special significance to the RX port when used with the
20597 @code{interrupt} function attribute.  This attribute indicates a
20598 function intended to process fast interrupts.  GCC ensures
20599 that it only uses the registers @code{r10}, @code{r11}, @code{r12}
20600 and/or @code{r13} and only provided that the normal use of the
20601 corresponding registers have been restricted via the
20602 @option{-ffixed-@var{reg}} or @option{-mint-register} command-line
20603 options.
20605 @node S/390 and zSeries Options
20606 @subsection S/390 and zSeries Options
20607 @cindex S/390 and zSeries Options
20609 These are the @samp{-m} options defined for the S/390 and zSeries architecture.
20611 @table @gcctabopt
20612 @item -mhard-float
20613 @itemx -msoft-float
20614 @opindex mhard-float
20615 @opindex msoft-float
20616 Use (do not use) the hardware floating-point instructions and registers
20617 for floating-point operations.  When @option{-msoft-float} is specified,
20618 functions in @file{libgcc.a} are used to perform floating-point
20619 operations.  When @option{-mhard-float} is specified, the compiler
20620 generates IEEE floating-point instructions.  This is the default.
20622 @item -mhard-dfp
20623 @itemx -mno-hard-dfp
20624 @opindex mhard-dfp
20625 @opindex mno-hard-dfp
20626 Use (do not use) the hardware decimal-floating-point instructions for
20627 decimal-floating-point operations.  When @option{-mno-hard-dfp} is
20628 specified, functions in @file{libgcc.a} are used to perform
20629 decimal-floating-point operations.  When @option{-mhard-dfp} is
20630 specified, the compiler generates decimal-floating-point hardware
20631 instructions.  This is the default for @option{-march=z9-ec} or higher.
20633 @item -mlong-double-64
20634 @itemx -mlong-double-128
20635 @opindex mlong-double-64
20636 @opindex mlong-double-128
20637 These switches control the size of @code{long double} type. A size
20638 of 64 bits makes the @code{long double} type equivalent to the @code{double}
20639 type. This is the default.
20641 @item -mbackchain
20642 @itemx -mno-backchain
20643 @opindex mbackchain
20644 @opindex mno-backchain
20645 Store (do not store) the address of the caller's frame as backchain pointer
20646 into the callee's stack frame.
20647 A backchain may be needed to allow debugging using tools that do not understand
20648 DWARF 2 call frame information.
20649 When @option{-mno-packed-stack} is in effect, the backchain pointer is stored
20650 at the bottom of the stack frame; when @option{-mpacked-stack} is in effect,
20651 the backchain is placed into the topmost word of the 96/160 byte register
20652 save area.
20654 In general, code compiled with @option{-mbackchain} is call-compatible with
20655 code compiled with @option{-mmo-backchain}; however, use of the backchain
20656 for debugging purposes usually requires that the whole binary is built with
20657 @option{-mbackchain}.  Note that the combination of @option{-mbackchain},
20658 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
20659 to build a linux kernel use @option{-msoft-float}.
20661 The default is to not maintain the backchain.
20663 @item -mpacked-stack
20664 @itemx -mno-packed-stack
20665 @opindex mpacked-stack
20666 @opindex mno-packed-stack
20667 Use (do not use) the packed stack layout.  When @option{-mno-packed-stack} is
20668 specified, the compiler uses the all fields of the 96/160 byte register save
20669 area only for their default purpose; unused fields still take up stack space.
20670 When @option{-mpacked-stack} is specified, register save slots are densely
20671 packed at the top of the register save area; unused space is reused for other
20672 purposes, allowing for more efficient use of the available stack space.
20673 However, when @option{-mbackchain} is also in effect, the topmost word of
20674 the save area is always used to store the backchain, and the return address
20675 register is always saved two words below the backchain.
20677 As long as the stack frame backchain is not used, code generated with
20678 @option{-mpacked-stack} is call-compatible with code generated with
20679 @option{-mno-packed-stack}.  Note that some non-FSF releases of GCC 2.95 for
20680 S/390 or zSeries generated code that uses the stack frame backchain at run
20681 time, not just for debugging purposes.  Such code is not call-compatible
20682 with code compiled with @option{-mpacked-stack}.  Also, note that the
20683 combination of @option{-mbackchain},
20684 @option{-mpacked-stack} and @option{-mhard-float} is not supported.  In order
20685 to build a linux kernel use @option{-msoft-float}.
20687 The default is to not use the packed stack layout.
20689 @item -msmall-exec
20690 @itemx -mno-small-exec
20691 @opindex msmall-exec
20692 @opindex mno-small-exec
20693 Generate (or do not generate) code using the @code{bras} instruction
20694 to do subroutine calls.
20695 This only works reliably if the total executable size does not
20696 exceed 64k.  The default is to use the @code{basr} instruction instead,
20697 which does not have this limitation.
20699 @item -m64
20700 @itemx -m31
20701 @opindex m64
20702 @opindex m31
20703 When @option{-m31} is specified, generate code compliant to the
20704 GNU/Linux for S/390 ABI@.  When @option{-m64} is specified, generate
20705 code compliant to the GNU/Linux for zSeries ABI@.  This allows GCC in
20706 particular to generate 64-bit instructions.  For the @samp{s390}
20707 targets, the default is @option{-m31}, while the @samp{s390x}
20708 targets default to @option{-m64}.
20710 @item -mzarch
20711 @itemx -mesa
20712 @opindex mzarch
20713 @opindex mesa
20714 When @option{-mzarch} is specified, generate code using the
20715 instructions available on z/Architecture.
20716 When @option{-mesa} is specified, generate code using the
20717 instructions available on ESA/390.  Note that @option{-mesa} is
20718 not possible with @option{-m64}.
20719 When generating code compliant to the GNU/Linux for S/390 ABI,
20720 the default is @option{-mesa}.  When generating code compliant
20721 to the GNU/Linux for zSeries ABI, the default is @option{-mzarch}.
20723 @item -mmvcle
20724 @itemx -mno-mvcle
20725 @opindex mmvcle
20726 @opindex mno-mvcle
20727 Generate (or do not generate) code using the @code{mvcle} instruction
20728 to perform block moves.  When @option{-mno-mvcle} is specified,
20729 use a @code{mvc} loop instead.  This is the default unless optimizing for
20730 size.
20732 @item -mdebug
20733 @itemx -mno-debug
20734 @opindex mdebug
20735 @opindex mno-debug
20736 Print (or do not print) additional debug information when compiling.
20737 The default is to not print debug information.
20739 @item -march=@var{cpu-type}
20740 @opindex march
20741 Generate code that runs on @var{cpu-type}, which is the name of a system
20742 representing a certain processor type.  Possible values for
20743 @var{cpu-type} are @samp{g5}, @samp{g6}, @samp{z900}, @samp{z990},
20744 @samp{z9-109}, @samp{z9-ec} and @samp{z10}.
20745 When generating code using the instructions available on z/Architecture,
20746 the default is @option{-march=z900}.  Otherwise, the default is
20747 @option{-march=g5}.
20749 @item -mtune=@var{cpu-type}
20750 @opindex mtune
20751 Tune to @var{cpu-type} everything applicable about the generated code,
20752 except for the ABI and the set of available instructions.
20753 The list of @var{cpu-type} values is the same as for @option{-march}.
20754 The default is the value used for @option{-march}.
20756 @item -mtpf-trace
20757 @itemx -mno-tpf-trace
20758 @opindex mtpf-trace
20759 @opindex mno-tpf-trace
20760 Generate code that adds (does not add) in TPF OS specific branches to trace
20761 routines in the operating system.  This option is off by default, even
20762 when compiling for the TPF OS@.
20764 @item -mfused-madd
20765 @itemx -mno-fused-madd
20766 @opindex mfused-madd
20767 @opindex mno-fused-madd
20768 Generate code that uses (does not use) the floating-point multiply and
20769 accumulate instructions.  These instructions are generated by default if
20770 hardware floating point is used.
20772 @item -mwarn-framesize=@var{framesize}
20773 @opindex mwarn-framesize
20774 Emit a warning if the current function exceeds the given frame size.  Because
20775 this is a compile-time check it doesn't need to be a real problem when the program
20776 runs.  It is intended to identify functions that most probably cause
20777 a stack overflow.  It is useful to be used in an environment with limited stack
20778 size e.g.@: the linux kernel.
20780 @item -mwarn-dynamicstack
20781 @opindex mwarn-dynamicstack
20782 Emit a warning if the function calls @code{alloca} or uses dynamically-sized
20783 arrays.  This is generally a bad idea with a limited stack size.
20785 @item -mstack-guard=@var{stack-guard}
20786 @itemx -mstack-size=@var{stack-size}
20787 @opindex mstack-guard
20788 @opindex mstack-size
20789 If these options are provided the S/390 back end emits additional instructions in
20790 the function prologue that trigger a trap if the stack size is @var{stack-guard}
20791 bytes above the @var{stack-size} (remember that the stack on S/390 grows downward).
20792 If the @var{stack-guard} option is omitted the smallest power of 2 larger than
20793 the frame size of the compiled function is chosen.
20794 These options are intended to be used to help debugging stack overflow problems.
20795 The additionally emitted code causes only little overhead and hence can also be
20796 used in production-like systems without greater performance degradation.  The given
20797 values have to be exact powers of 2 and @var{stack-size} has to be greater than
20798 @var{stack-guard} without exceeding 64k.
20799 In order to be efficient the extra code makes the assumption that the stack starts
20800 at an address aligned to the value given by @var{stack-size}.
20801 The @var{stack-guard} option can only be used in conjunction with @var{stack-size}.
20803 @item -mhotpatch[=@var{halfwords}]
20804 @itemx -mno-hotpatch
20805 @opindex mhotpatch
20806 If the hotpatch option is enabled, a ``hot-patching'' function
20807 prologue is generated for all functions in the compilation unit.
20808 The funtion label is prepended with the given number of two-byte
20809 Nop instructions (@var{halfwords}, maximum 1000000) or 12 Nop
20810 instructions if no argument is present.  Functions with a
20811 hot-patching prologue are never inlined automatically, and a
20812 hot-patching prologue is never generated for functions
20813 that are explicitly inline.
20815 This option can be overridden for individual functions with the
20816 @code{hotpatch} attribute.
20817 @end table
20819 @node Score Options
20820 @subsection Score Options
20821 @cindex Score Options
20823 These options are defined for Score implementations:
20825 @table @gcctabopt
20826 @item -meb
20827 @opindex meb
20828 Compile code for big-endian mode.  This is the default.
20830 @item -mel
20831 @opindex mel
20832 Compile code for little-endian mode.
20834 @item -mnhwloop
20835 @opindex mnhwloop
20836 Disable generation of @code{bcnz} instructions.
20838 @item -muls
20839 @opindex muls
20840 Enable generation of unaligned load and store instructions.
20842 @item -mmac
20843 @opindex mmac
20844 Enable the use of multiply-accumulate instructions. Disabled by default.
20846 @item -mscore5
20847 @opindex mscore5
20848 Specify the SCORE5 as the target architecture.
20850 @item -mscore5u
20851 @opindex mscore5u
20852 Specify the SCORE5U of the target architecture.
20854 @item -mscore7
20855 @opindex mscore7
20856 Specify the SCORE7 as the target architecture. This is the default.
20858 @item -mscore7d
20859 @opindex mscore7d
20860 Specify the SCORE7D as the target architecture.
20861 @end table
20863 @node SH Options
20864 @subsection SH Options
20866 These @samp{-m} options are defined for the SH implementations:
20868 @table @gcctabopt
20869 @item -m1
20870 @opindex m1
20871 Generate code for the SH1.
20873 @item -m2
20874 @opindex m2
20875 Generate code for the SH2.
20877 @item -m2e
20878 Generate code for the SH2e.
20880 @item -m2a-nofpu
20881 @opindex m2a-nofpu
20882 Generate code for the SH2a without FPU, or for a SH2a-FPU in such a way
20883 that the floating-point unit is not used.
20885 @item -m2a-single-only
20886 @opindex m2a-single-only
20887 Generate code for the SH2a-FPU, in such a way that no double-precision
20888 floating-point operations are used.
20890 @item -m2a-single
20891 @opindex m2a-single
20892 Generate code for the SH2a-FPU assuming the floating-point unit is in
20893 single-precision mode by default.
20895 @item -m2a
20896 @opindex m2a
20897 Generate code for the SH2a-FPU assuming the floating-point unit is in
20898 double-precision mode by default.
20900 @item -m3
20901 @opindex m3
20902 Generate code for the SH3.
20904 @item -m3e
20905 @opindex m3e
20906 Generate code for the SH3e.
20908 @item -m4-nofpu
20909 @opindex m4-nofpu
20910 Generate code for the SH4 without a floating-point unit.
20912 @item -m4-single-only
20913 @opindex m4-single-only
20914 Generate code for the SH4 with a floating-point unit that only
20915 supports single-precision arithmetic.
20917 @item -m4-single
20918 @opindex m4-single
20919 Generate code for the SH4 assuming the floating-point unit is in
20920 single-precision mode by default.
20922 @item -m4
20923 @opindex m4
20924 Generate code for the SH4.
20926 @item -m4-100
20927 @opindex m4-100
20928 Generate code for SH4-100.
20930 @item -m4-100-nofpu
20931 @opindex m4-100-nofpu
20932 Generate code for SH4-100 in such a way that the
20933 floating-point unit is not used.
20935 @item -m4-100-single
20936 @opindex m4-100-single
20937 Generate code for SH4-100 assuming the floating-point unit is in
20938 single-precision mode by default.
20940 @item -m4-100-single-only
20941 @opindex m4-100-single-only
20942 Generate code for SH4-100 in such a way that no double-precision
20943 floating-point operations are used.
20945 @item -m4-200
20946 @opindex m4-200
20947 Generate code for SH4-200.
20949 @item -m4-200-nofpu
20950 @opindex m4-200-nofpu
20951 Generate code for SH4-200 without in such a way that the
20952 floating-point unit is not used.
20954 @item -m4-200-single
20955 @opindex m4-200-single
20956 Generate code for SH4-200 assuming the floating-point unit is in
20957 single-precision mode by default.
20959 @item -m4-200-single-only
20960 @opindex m4-200-single-only
20961 Generate code for SH4-200 in such a way that no double-precision
20962 floating-point operations are used.
20964 @item -m4-300
20965 @opindex m4-300
20966 Generate code for SH4-300.
20968 @item -m4-300-nofpu
20969 @opindex m4-300-nofpu
20970 Generate code for SH4-300 without in such a way that the
20971 floating-point unit is not used.
20973 @item -m4-300-single
20974 @opindex m4-300-single
20975 Generate code for SH4-300 in such a way that no double-precision
20976 floating-point operations are used.
20978 @item -m4-300-single-only
20979 @opindex m4-300-single-only
20980 Generate code for SH4-300 in such a way that no double-precision
20981 floating-point operations are used.
20983 @item -m4-340
20984 @opindex m4-340
20985 Generate code for SH4-340 (no MMU, no FPU).
20987 @item -m4-500
20988 @opindex m4-500
20989 Generate code for SH4-500 (no FPU).  Passes @option{-isa=sh4-nofpu} to the
20990 assembler.
20992 @item -m4a-nofpu
20993 @opindex m4a-nofpu
20994 Generate code for the SH4al-dsp, or for a SH4a in such a way that the
20995 floating-point unit is not used.
20997 @item -m4a-single-only
20998 @opindex m4a-single-only
20999 Generate code for the SH4a, in such a way that no double-precision
21000 floating-point operations are used.
21002 @item -m4a-single
21003 @opindex m4a-single
21004 Generate code for the SH4a assuming the floating-point unit is in
21005 single-precision mode by default.
21007 @item -m4a
21008 @opindex m4a
21009 Generate code for the SH4a.
21011 @item -m4al
21012 @opindex m4al
21013 Same as @option{-m4a-nofpu}, except that it implicitly passes
21014 @option{-dsp} to the assembler.  GCC doesn't generate any DSP
21015 instructions at the moment.
21017 @item -m5-32media
21018 @opindex m5-32media
21019 Generate 32-bit code for SHmedia.
21021 @item -m5-32media-nofpu
21022 @opindex m5-32media-nofpu
21023 Generate 32-bit code for SHmedia in such a way that the
21024 floating-point unit is not used.
21026 @item -m5-64media
21027 @opindex m5-64media
21028 Generate 64-bit code for SHmedia.
21030 @item -m5-64media-nofpu
21031 @opindex m5-64media-nofpu
21032 Generate 64-bit code for SHmedia in such a way that the
21033 floating-point unit is not used.
21035 @item -m5-compact
21036 @opindex m5-compact
21037 Generate code for SHcompact.
21039 @item -m5-compact-nofpu
21040 @opindex m5-compact-nofpu
21041 Generate code for SHcompact in such a way that the
21042 floating-point unit is not used.
21044 @item -mb
21045 @opindex mb
21046 Compile code for the processor in big-endian mode.
21048 @item -ml
21049 @opindex ml
21050 Compile code for the processor in little-endian mode.
21052 @item -mdalign
21053 @opindex mdalign
21054 Align doubles at 64-bit boundaries.  Note that this changes the calling
21055 conventions, and thus some functions from the standard C library do
21056 not work unless you recompile it first with @option{-mdalign}.
21058 @item -mrelax
21059 @opindex mrelax
21060 Shorten some address references at link time, when possible; uses the
21061 linker option @option{-relax}.
21063 @item -mbigtable
21064 @opindex mbigtable
21065 Use 32-bit offsets in @code{switch} tables.  The default is to use
21066 16-bit offsets.
21068 @item -mbitops
21069 @opindex mbitops
21070 Enable the use of bit manipulation instructions on SH2A.
21072 @item -mfmovd
21073 @opindex mfmovd
21074 Enable the use of the instruction @code{fmovd}.  Check @option{-mdalign} for
21075 alignment constraints.
21077 @item -mrenesas
21078 @opindex mrenesas
21079 Comply with the calling conventions defined by Renesas.
21081 @item -mno-renesas
21082 @opindex mno-renesas
21083 Comply with the calling conventions defined for GCC before the Renesas
21084 conventions were available.  This option is the default for all
21085 targets of the SH toolchain.
21087 @item -mnomacsave
21088 @opindex mnomacsave
21089 Mark the @code{MAC} register as call-clobbered, even if
21090 @option{-mrenesas} is given.
21092 @item -mieee
21093 @itemx -mno-ieee
21094 @opindex mieee
21095 @opindex mno-ieee
21096 Control the IEEE compliance of floating-point comparisons, which affects the
21097 handling of cases where the result of a comparison is unordered.  By default
21098 @option{-mieee} is implicitly enabled.  If @option{-ffinite-math-only} is
21099 enabled @option{-mno-ieee} is implicitly set, which results in faster
21100 floating-point greater-equal and less-equal comparisons.  The implcit settings
21101 can be overridden by specifying either @option{-mieee} or @option{-mno-ieee}.
21103 @item -minline-ic_invalidate
21104 @opindex minline-ic_invalidate
21105 Inline code to invalidate instruction cache entries after setting up
21106 nested function trampolines.
21107 This option has no effect if @option{-musermode} is in effect and the selected
21108 code generation option (e.g. @option{-m4}) does not allow the use of the @code{icbi}
21109 instruction.
21110 If the selected code generation option does not allow the use of the @code{icbi}
21111 instruction, and @option{-musermode} is not in effect, the inlined code
21112 manipulates the instruction cache address array directly with an associative
21113 write.  This not only requires privileged mode at run time, but it also
21114 fails if the cache line had been mapped via the TLB and has become unmapped.
21116 @item -misize
21117 @opindex misize
21118 Dump instruction size and location in the assembly code.
21120 @item -mpadstruct
21121 @opindex mpadstruct
21122 This option is deprecated.  It pads structures to multiple of 4 bytes,
21123 which is incompatible with the SH ABI@.
21125 @item -matomic-model=@var{model}
21126 @opindex matomic-model=@var{model}
21127 Sets the model of atomic operations and additional parameters as a comma
21128 separated list.  For details on the atomic built-in functions see
21129 @ref{__atomic Builtins}.  The following models and parameters are supported:
21131 @table @samp
21133 @item none
21134 Disable compiler generated atomic sequences and emit library calls for atomic
21135 operations.  This is the default if the target is not @code{sh*-*-linux*}.
21137 @item soft-gusa
21138 Generate GNU/Linux compatible gUSA software atomic sequences for the atomic
21139 built-in functions.  The generated atomic sequences require additional support
21140 from the interrupt/exception handling code of the system and are only suitable
21141 for SH3* and SH4* single-core systems.  This option is enabled by default when
21142 the target is @code{sh*-*-linux*} and SH3* or SH4*.  When the target is SH4A,
21143 this option will also partially utilize the hardware atomic instructions
21144 @code{movli.l} and @code{movco.l} to create more efficient code, unless
21145 @samp{strict} is specified.  
21147 @item soft-tcb
21148 Generate software atomic sequences that use a variable in the thread control
21149 block.  This is a variation of the gUSA sequences which can also be used on
21150 SH1* and SH2* targets.  The generated atomic sequences require additional
21151 support from the interrupt/exception handling code of the system and are only
21152 suitable for single-core systems.  When using this model, the @samp{gbr-offset=}
21153 parameter has to be specified as well.
21155 @item soft-imask
21156 Generate software atomic sequences that temporarily disable interrupts by
21157 setting @code{SR.IMASK = 1111}.  This model works only when the program runs
21158 in privileged mode and is only suitable for single-core systems.  Additional
21159 support from the interrupt/exception handling code of the system is not
21160 required.  This model is enabled by default when the target is
21161 @code{sh*-*-linux*} and SH1* or SH2*.
21163 @item hard-llcs
21164 Generate hardware atomic sequences using the @code{movli.l} and @code{movco.l}
21165 instructions only.  This is only available on SH4A and is suitable for
21166 multi-core systems.  Since the hardware instructions support only 32 bit atomic
21167 variables access to 8 or 16 bit variables is emulated with 32 bit accesses.
21168 Code compiled with this option will also be compatible with other software
21169 atomic model interrupt/exception handling systems if executed on an SH4A
21170 system.  Additional support from the interrupt/exception handling code of the
21171 system is not required for this model.
21173 @item gbr-offset=
21174 This parameter specifies the offset in bytes of the variable in the thread
21175 control block structure that should be used by the generated atomic sequences
21176 when the @samp{soft-tcb} model has been selected.  For other models this
21177 parameter is ignored.  The specified value must be an integer multiple of four
21178 and in the range 0-1020.
21180 @item strict
21181 This parameter prevents mixed usage of multiple atomic models, even though they
21182 would be compatible, and will make the compiler generate atomic sequences of the
21183 specified model only.
21185 @end table
21187 @item -mtas
21188 @opindex mtas
21189 Generate the @code{tas.b} opcode for @code{__atomic_test_and_set}.
21190 Notice that depending on the particular hardware and software configuration
21191 this can degrade overall performance due to the operand cache line flushes
21192 that are implied by the @code{tas.b} instruction.  On multi-core SH4A
21193 processors the @code{tas.b} instruction must be used with caution since it
21194 can result in data corruption for certain cache configurations.
21196 @item -mprefergot
21197 @opindex mprefergot
21198 When generating position-independent code, emit function calls using
21199 the Global Offset Table instead of the Procedure Linkage Table.
21201 @item -musermode
21202 @itemx -mno-usermode
21203 @opindex musermode
21204 @opindex mno-usermode
21205 Don't allow (allow) the compiler generating privileged mode code.  Specifying
21206 @option{-musermode} also implies @option{-mno-inline-ic_invalidate} if the
21207 inlined code would not work in user mode.  @option{-musermode} is the default
21208 when the target is @code{sh*-*-linux*}.  If the target is SH1* or SH2*
21209 @option{-musermode} has no effect, since there is no user mode.
21211 @item -multcost=@var{number}
21212 @opindex multcost=@var{number}
21213 Set the cost to assume for a multiply insn.
21215 @item -mdiv=@var{strategy}
21216 @opindex mdiv=@var{strategy}
21217 Set the division strategy to be used for integer division operations.
21218 For SHmedia @var{strategy} can be one of: 
21220 @table @samp
21222 @item fp 
21223 Performs the operation in floating point.  This has a very high latency,
21224 but needs only a few instructions, so it might be a good choice if
21225 your code has enough easily-exploitable ILP to allow the compiler to
21226 schedule the floating-point instructions together with other instructions.
21227 Division by zero causes a floating-point exception.
21229 @item inv
21230 Uses integer operations to calculate the inverse of the divisor,
21231 and then multiplies the dividend with the inverse.  This strategy allows
21232 CSE and hoisting of the inverse calculation.  Division by zero calculates
21233 an unspecified result, but does not trap.
21235 @item inv:minlat
21236 A variant of @samp{inv} where, if no CSE or hoisting opportunities
21237 have been found, or if the entire operation has been hoisted to the same
21238 place, the last stages of the inverse calculation are intertwined with the
21239 final multiply to reduce the overall latency, at the expense of using a few
21240 more instructions, and thus offering fewer scheduling opportunities with
21241 other code.
21243 @item call
21244 Calls a library function that usually implements the @samp{inv:minlat}
21245 strategy.
21246 This gives high code density for @code{m5-*media-nofpu} compilations.
21248 @item call2
21249 Uses a different entry point of the same library function, where it
21250 assumes that a pointer to a lookup table has already been set up, which
21251 exposes the pointer load to CSE and code hoisting optimizations.
21253 @item inv:call
21254 @itemx inv:call2
21255 @itemx inv:fp
21256 Use the @samp{inv} algorithm for initial
21257 code generation, but if the code stays unoptimized, revert to the @samp{call},
21258 @samp{call2}, or @samp{fp} strategies, respectively.  Note that the
21259 potentially-trapping side effect of division by zero is carried by a
21260 separate instruction, so it is possible that all the integer instructions
21261 are hoisted out, but the marker for the side effect stays where it is.
21262 A recombination to floating-point operations or a call is not possible
21263 in that case.
21265 @item inv20u
21266 @itemx inv20l
21267 Variants of the @samp{inv:minlat} strategy.  In the case
21268 that the inverse calculation is not separated from the multiply, they speed
21269 up division where the dividend fits into 20 bits (plus sign where applicable)
21270 by inserting a test to skip a number of operations in this case; this test
21271 slows down the case of larger dividends.  @samp{inv20u} assumes the case of a such
21272 a small dividend to be unlikely, and @samp{inv20l} assumes it to be likely.
21274 @end table
21276 For targets other than SHmedia @var{strategy} can be one of:
21278 @table @samp
21280 @item call-div1
21281 Calls a library function that uses the single-step division instruction
21282 @code{div1} to perform the operation.  Division by zero calculates an
21283 unspecified result and does not trap.  This is the default except for SH4,
21284 SH2A and SHcompact.
21286 @item call-fp
21287 Calls a library function that performs the operation in double precision
21288 floating point.  Division by zero causes a floating-point exception.  This is
21289 the default for SHcompact with FPU.  Specifying this for targets that do not
21290 have a double precision FPU will default to @code{call-div1}.
21292 @item call-table
21293 Calls a library function that uses a lookup table for small divisors and
21294 the @code{div1} instruction with case distinction for larger divisors.  Division
21295 by zero calculates an unspecified result and does not trap.  This is the default
21296 for SH4.  Specifying this for targets that do not have dynamic shift
21297 instructions will default to @code{call-div1}.
21299 @end table
21301 When a division strategy has not been specified the default strategy will be
21302 selected based on the current target.  For SH2A the default strategy is to
21303 use the @code{divs} and @code{divu} instructions instead of library function
21304 calls.
21306 @item -maccumulate-outgoing-args
21307 @opindex maccumulate-outgoing-args
21308 Reserve space once for outgoing arguments in the function prologue rather
21309 than around each call.  Generally beneficial for performance and size.  Also
21310 needed for unwinding to avoid changing the stack frame around conditional code.
21312 @item -mdivsi3_libfunc=@var{name}
21313 @opindex mdivsi3_libfunc=@var{name}
21314 Set the name of the library function used for 32-bit signed division to
21315 @var{name}.
21316 This only affects the name used in the @samp{call} and @samp{inv:call}
21317 division strategies, and the compiler still expects the same
21318 sets of input/output/clobbered registers as if this option were not present.
21320 @item -mfixed-range=@var{register-range}
21321 @opindex mfixed-range
21322 Generate code treating the given register range as fixed registers.
21323 A fixed register is one that the register allocator can not use.  This is
21324 useful when compiling kernel code.  A register range is specified as
21325 two registers separated by a dash.  Multiple register ranges can be
21326 specified separated by a comma.
21328 @item -mindexed-addressing
21329 @opindex mindexed-addressing
21330 Enable the use of the indexed addressing mode for SHmedia32/SHcompact.
21331 This is only safe if the hardware and/or OS implement 32-bit wrap-around
21332 semantics for the indexed addressing mode.  The architecture allows the
21333 implementation of processors with 64-bit MMU, which the OS could use to
21334 get 32-bit addressing, but since no current hardware implementation supports
21335 this or any other way to make the indexed addressing mode safe to use in
21336 the 32-bit ABI, the default is @option{-mno-indexed-addressing}.
21338 @item -mgettrcost=@var{number}
21339 @opindex mgettrcost=@var{number}
21340 Set the cost assumed for the @code{gettr} instruction to @var{number}.
21341 The default is 2 if @option{-mpt-fixed} is in effect, 100 otherwise.
21343 @item -mpt-fixed
21344 @opindex mpt-fixed
21345 Assume @code{pt*} instructions won't trap.  This generally generates
21346 better-scheduled code, but is unsafe on current hardware.
21347 The current architecture
21348 definition says that @code{ptabs} and @code{ptrel} trap when the target 
21349 anded with 3 is 3.
21350 This has the unintentional effect of making it unsafe to schedule these
21351 instructions before a branch, or hoist them out of a loop.  For example,
21352 @code{__do_global_ctors}, a part of @file{libgcc}
21353 that runs constructors at program
21354 startup, calls functions in a list which is delimited by @minus{}1.  With the
21355 @option{-mpt-fixed} option, the @code{ptabs} is done before testing against @minus{}1.
21356 That means that all the constructors run a bit more quickly, but when
21357 the loop comes to the end of the list, the program crashes because @code{ptabs}
21358 loads @minus{}1 into a target register.  
21360 Since this option is unsafe for any
21361 hardware implementing the current architecture specification, the default
21362 is @option{-mno-pt-fixed}.  Unless specified explicitly with 
21363 @option{-mgettrcost}, @option{-mno-pt-fixed} also implies @option{-mgettrcost=100};
21364 this deters register allocation from using target registers for storing
21365 ordinary integers.
21367 @item -minvalid-symbols
21368 @opindex minvalid-symbols
21369 Assume symbols might be invalid.  Ordinary function symbols generated by
21370 the compiler are always valid to load with
21371 @code{movi}/@code{shori}/@code{ptabs} or
21372 @code{movi}/@code{shori}/@code{ptrel},
21373 but with assembler and/or linker tricks it is possible
21374 to generate symbols that cause @code{ptabs} or @code{ptrel} to trap.
21375 This option is only meaningful when @option{-mno-pt-fixed} is in effect.
21376 It prevents cross-basic-block CSE, hoisting and most scheduling
21377 of symbol loads.  The default is @option{-mno-invalid-symbols}.
21379 @item -mbranch-cost=@var{num}
21380 @opindex mbranch-cost=@var{num}
21381 Assume @var{num} to be the cost for a branch instruction.  Higher numbers
21382 make the compiler try to generate more branch-free code if possible.  
21383 If not specified the value is selected depending on the processor type that
21384 is being compiled for.
21386 @item -mzdcbranch
21387 @itemx -mno-zdcbranch
21388 @opindex mzdcbranch
21389 @opindex mno-zdcbranch
21390 Assume (do not assume) that zero displacement conditional branch instructions
21391 @code{bt} and @code{bf} are fast.  If @option{-mzdcbranch} is specified, the
21392 compiler will try to prefer zero displacement branch code sequences.  This is
21393 enabled by default when generating code for SH4 and SH4A.  It can be explicitly
21394 disabled by specifying @option{-mno-zdcbranch}.
21396 @item -mfused-madd
21397 @itemx -mno-fused-madd
21398 @opindex mfused-madd
21399 @opindex mno-fused-madd
21400 Generate code that uses (does not use) the floating-point multiply and
21401 accumulate instructions.  These instructions are generated by default
21402 if hardware floating point is used.  The machine-dependent
21403 @option{-mfused-madd} option is now mapped to the machine-independent
21404 @option{-ffp-contract=fast} option, and @option{-mno-fused-madd} is
21405 mapped to @option{-ffp-contract=off}.
21407 @item -mfsca
21408 @itemx -mno-fsca
21409 @opindex mfsca
21410 @opindex mno-fsca
21411 Allow or disallow the compiler to emit the @code{fsca} instruction for sine
21412 and cosine approximations.  The option @code{-mfsca} must be used in
21413 combination with @code{-funsafe-math-optimizations}.  It is enabled by default
21414 when generating code for SH4A.  Using @code{-mno-fsca} disables sine and cosine
21415 approximations even if @code{-funsafe-math-optimizations} is in effect.
21417 @item -mfsrra
21418 @itemx -mno-fsrra
21419 @opindex mfsrra
21420 @opindex mno-fsrra
21421 Allow or disallow the compiler to emit the @code{fsrra} instruction for
21422 reciprocal square root approximations.  The option @code{-mfsrra} must be used
21423 in combination with @code{-funsafe-math-optimizations} and
21424 @code{-ffinite-math-only}.  It is enabled by default when generating code for
21425 SH4A.  Using @code{-mno-fsrra} disables reciprocal square root approximations
21426 even if @code{-funsafe-math-optimizations} and @code{-ffinite-math-only} are
21427 in effect.
21429 @item -mpretend-cmove
21430 @opindex mpretend-cmove
21431 Prefer zero-displacement conditional branches for conditional move instruction
21432 patterns.  This can result in faster code on the SH4 processor.
21434 @end table
21436 @node Solaris 2 Options
21437 @subsection Solaris 2 Options
21438 @cindex Solaris 2 options
21440 These @samp{-m} options are supported on Solaris 2:
21442 @table @gcctabopt
21443 @item -mclear-hwcap
21444 @opindex mclear-hwcap
21445 @option{-mclear-hwcap} tells the compiler to remove the hardware
21446 capabilities generated by the Solaris assembler.  This is only necessary
21447 when object files use ISA extensions not supported by the current
21448 machine, but check at runtime whether or not to use them.
21450 @item -mimpure-text
21451 @opindex mimpure-text
21452 @option{-mimpure-text}, used in addition to @option{-shared}, tells
21453 the compiler to not pass @option{-z text} to the linker when linking a
21454 shared object.  Using this option, you can link position-dependent
21455 code into a shared object.
21457 @option{-mimpure-text} suppresses the ``relocations remain against
21458 allocatable but non-writable sections'' linker error message.
21459 However, the necessary relocations trigger copy-on-write, and the
21460 shared object is not actually shared across processes.  Instead of
21461 using @option{-mimpure-text}, you should compile all source code with
21462 @option{-fpic} or @option{-fPIC}.
21464 @end table
21466 These switches are supported in addition to the above on Solaris 2:
21468 @table @gcctabopt
21469 @item -pthreads
21470 @opindex pthreads
21471 Add support for multithreading using the POSIX threads library.  This
21472 option sets flags for both the preprocessor and linker.  This option does
21473 not affect the thread safety of object code produced  by the compiler or
21474 that of libraries supplied with it.
21476 @item -pthread
21477 @opindex pthread
21478 This is a synonym for @option{-pthreads}.
21479 @end table
21481 @node SPARC Options
21482 @subsection SPARC Options
21483 @cindex SPARC options
21485 These @samp{-m} options are supported on the SPARC:
21487 @table @gcctabopt
21488 @item -mno-app-regs
21489 @itemx -mapp-regs
21490 @opindex mno-app-regs
21491 @opindex mapp-regs
21492 Specify @option{-mapp-regs} to generate output using the global registers
21493 2 through 4, which the SPARC SVR4 ABI reserves for applications.  Like the
21494 global register 1, each global register 2 through 4 is then treated as an
21495 allocable register that is clobbered by function calls.  This is the default.
21497 To be fully SVR4 ABI-compliant at the cost of some performance loss,
21498 specify @option{-mno-app-regs}.  You should compile libraries and system
21499 software with this option.
21501 @item -mflat
21502 @itemx -mno-flat
21503 @opindex mflat
21504 @opindex mno-flat
21505 With @option{-mflat}, the compiler does not generate save/restore instructions
21506 and uses a ``flat'' or single register window model.  This model is compatible
21507 with the regular register window model.  The local registers and the input
21508 registers (0--5) are still treated as ``call-saved'' registers and are
21509 saved on the stack as needed.
21511 With @option{-mno-flat} (the default), the compiler generates save/restore
21512 instructions (except for leaf functions).  This is the normal operating mode.
21514 @item -mfpu
21515 @itemx -mhard-float
21516 @opindex mfpu
21517 @opindex mhard-float
21518 Generate output containing floating-point instructions.  This is the
21519 default.
21521 @item -mno-fpu
21522 @itemx -msoft-float
21523 @opindex mno-fpu
21524 @opindex msoft-float
21525 Generate output containing library calls for floating point.
21526 @strong{Warning:} the requisite libraries are not available for all SPARC
21527 targets.  Normally the facilities of the machine's usual C compiler are
21528 used, but this cannot be done directly in cross-compilation.  You must make
21529 your own arrangements to provide suitable library functions for
21530 cross-compilation.  The embedded targets @samp{sparc-*-aout} and
21531 @samp{sparclite-*-*} do provide software floating-point support.
21533 @option{-msoft-float} changes the calling convention in the output file;
21534 therefore, it is only useful if you compile @emph{all} of a program with
21535 this option.  In particular, you need to compile @file{libgcc.a}, the
21536 library that comes with GCC, with @option{-msoft-float} in order for
21537 this to work.
21539 @item -mhard-quad-float
21540 @opindex mhard-quad-float
21541 Generate output containing quad-word (long double) floating-point
21542 instructions.
21544 @item -msoft-quad-float
21545 @opindex msoft-quad-float
21546 Generate output containing library calls for quad-word (long double)
21547 floating-point instructions.  The functions called are those specified
21548 in the SPARC ABI@.  This is the default.
21550 As of this writing, there are no SPARC implementations that have hardware
21551 support for the quad-word floating-point instructions.  They all invoke
21552 a trap handler for one of these instructions, and then the trap handler
21553 emulates the effect of the instruction.  Because of the trap handler overhead,
21554 this is much slower than calling the ABI library routines.  Thus the
21555 @option{-msoft-quad-float} option is the default.
21557 @item -mno-unaligned-doubles
21558 @itemx -munaligned-doubles
21559 @opindex mno-unaligned-doubles
21560 @opindex munaligned-doubles
21561 Assume that doubles have 8-byte alignment.  This is the default.
21563 With @option{-munaligned-doubles}, GCC assumes that doubles have 8-byte
21564 alignment only if they are contained in another type, or if they have an
21565 absolute address.  Otherwise, it assumes they have 4-byte alignment.
21566 Specifying this option avoids some rare compatibility problems with code
21567 generated by other compilers.  It is not the default because it results
21568 in a performance loss, especially for floating-point code.
21570 @item -muser-mode
21571 @itemx -mno-user-mode
21572 @opindex muser-mode
21573 @opindex mno-user-mode
21574 Do not generate code that can only run in supervisor mode.  This is relevant
21575 only for the @code{casa} instruction emitted for the LEON3 processor.  The
21576 default is @option{-mno-user-mode}.
21578 @item -mno-faster-structs
21579 @itemx -mfaster-structs
21580 @opindex mno-faster-structs
21581 @opindex mfaster-structs
21582 With @option{-mfaster-structs}, the compiler assumes that structures
21583 should have 8-byte alignment.  This enables the use of pairs of
21584 @code{ldd} and @code{std} instructions for copies in structure
21585 assignment, in place of twice as many @code{ld} and @code{st} pairs.
21586 However, the use of this changed alignment directly violates the SPARC
21587 ABI@.  Thus, it's intended only for use on targets where the developer
21588 acknowledges that their resulting code is not directly in line with
21589 the rules of the ABI@.
21591 @item -mcpu=@var{cpu_type}
21592 @opindex mcpu
21593 Set the instruction set, register set, and instruction scheduling parameters
21594 for machine type @var{cpu_type}.  Supported values for @var{cpu_type} are
21595 @samp{v7}, @samp{cypress}, @samp{v8}, @samp{supersparc}, @samp{hypersparc},
21596 @samp{leon}, @samp{leon3}, @samp{leon3v7}, @samp{sparclite}, @samp{f930},
21597 @samp{f934}, @samp{sparclite86x}, @samp{sparclet}, @samp{tsc701}, @samp{v9},
21598 @samp{ultrasparc}, @samp{ultrasparc3}, @samp{niagara}, @samp{niagara2},
21599 @samp{niagara3} and @samp{niagara4}.
21601 Native Solaris and GNU/Linux toolchains also support the value @samp{native},
21602 which selects the best architecture option for the host processor.
21603 @option{-mcpu=native} has no effect if GCC does not recognize
21604 the processor.
21606 Default instruction scheduling parameters are used for values that select
21607 an architecture and not an implementation.  These are @samp{v7}, @samp{v8},
21608 @samp{sparclite}, @samp{sparclet}, @samp{v9}.
21610 Here is a list of each supported architecture and their supported
21611 implementations.
21613 @table @asis
21614 @item v7
21615 cypress, leon3v7
21617 @item v8
21618 supersparc, hypersparc, leon, leon3
21620 @item sparclite
21621 f930, f934, sparclite86x
21623 @item sparclet
21624 tsc701
21626 @item v9
21627 ultrasparc, ultrasparc3, niagara, niagara2, niagara3, niagara4
21628 @end table
21630 By default (unless configured otherwise), GCC generates code for the V7
21631 variant of the SPARC architecture.  With @option{-mcpu=cypress}, the compiler
21632 additionally optimizes it for the Cypress CY7C602 chip, as used in the
21633 SPARCStation/SPARCServer 3xx series.  This is also appropriate for the older
21634 SPARCStation 1, 2, IPX etc.
21636 With @option{-mcpu=v8}, GCC generates code for the V8 variant of the SPARC
21637 architecture.  The only difference from V7 code is that the compiler emits
21638 the integer multiply and integer divide instructions which exist in SPARC-V8
21639 but not in SPARC-V7.  With @option{-mcpu=supersparc}, the compiler additionally
21640 optimizes it for the SuperSPARC chip, as used in the SPARCStation 10, 1000 and
21641 2000 series.
21643 With @option{-mcpu=sparclite}, GCC generates code for the SPARClite variant of
21644 the SPARC architecture.  This adds the integer multiply, integer divide step
21645 and scan (@code{ffs}) instructions which exist in SPARClite but not in SPARC-V7.
21646 With @option{-mcpu=f930}, the compiler additionally optimizes it for the
21647 Fujitsu MB86930 chip, which is the original SPARClite, with no FPU@.  With
21648 @option{-mcpu=f934}, the compiler additionally optimizes it for the Fujitsu
21649 MB86934 chip, which is the more recent SPARClite with FPU@.
21651 With @option{-mcpu=sparclet}, GCC generates code for the SPARClet variant of
21652 the SPARC architecture.  This adds the integer multiply, multiply/accumulate,
21653 integer divide step and scan (@code{ffs}) instructions which exist in SPARClet
21654 but not in SPARC-V7.  With @option{-mcpu=tsc701}, the compiler additionally
21655 optimizes it for the TEMIC SPARClet chip.
21657 With @option{-mcpu=v9}, GCC generates code for the V9 variant of the SPARC
21658 architecture.  This adds 64-bit integer and floating-point move instructions,
21659 3 additional floating-point condition code registers and conditional move
21660 instructions.  With @option{-mcpu=ultrasparc}, the compiler additionally
21661 optimizes it for the Sun UltraSPARC I/II/IIi chips.  With
21662 @option{-mcpu=ultrasparc3}, the compiler additionally optimizes it for the
21663 Sun UltraSPARC III/III+/IIIi/IIIi+/IV/IV+ chips.  With
21664 @option{-mcpu=niagara}, the compiler additionally optimizes it for
21665 Sun UltraSPARC T1 chips.  With @option{-mcpu=niagara2}, the compiler
21666 additionally optimizes it for Sun UltraSPARC T2 chips. With
21667 @option{-mcpu=niagara3}, the compiler additionally optimizes it for Sun
21668 UltraSPARC T3 chips.  With @option{-mcpu=niagara4}, the compiler
21669 additionally optimizes it for Sun UltraSPARC T4 chips.
21671 @item -mtune=@var{cpu_type}
21672 @opindex mtune
21673 Set the instruction scheduling parameters for machine type
21674 @var{cpu_type}, but do not set the instruction set or register set that the
21675 option @option{-mcpu=@var{cpu_type}} does.
21677 The same values for @option{-mcpu=@var{cpu_type}} can be used for
21678 @option{-mtune=@var{cpu_type}}, but the only useful values are those
21679 that select a particular CPU implementation.  Those are @samp{cypress},
21680 @samp{supersparc}, @samp{hypersparc}, @samp{leon}, @samp{leon3},
21681 @samp{leon3v7}, @samp{f930}, @samp{f934}, @samp{sparclite86x}, @samp{tsc701},
21682 @samp{ultrasparc}, @samp{ultrasparc3}, @samp{niagara}, @samp{niagara2},
21683 @samp{niagara3} and @samp{niagara4}.  With native Solaris and GNU/Linux
21684 toolchains, @samp{native} can also be used.
21686 @item -mv8plus
21687 @itemx -mno-v8plus
21688 @opindex mv8plus
21689 @opindex mno-v8plus
21690 With @option{-mv8plus}, GCC generates code for the SPARC-V8+ ABI@.  The
21691 difference from the V8 ABI is that the global and out registers are
21692 considered 64 bits wide.  This is enabled by default on Solaris in 32-bit
21693 mode for all SPARC-V9 processors.
21695 @item -mvis
21696 @itemx -mno-vis
21697 @opindex mvis
21698 @opindex mno-vis
21699 With @option{-mvis}, GCC generates code that takes advantage of the UltraSPARC
21700 Visual Instruction Set extensions.  The default is @option{-mno-vis}.
21702 @item -mvis2
21703 @itemx -mno-vis2
21704 @opindex mvis2
21705 @opindex mno-vis2
21706 With @option{-mvis2}, GCC generates code that takes advantage of
21707 version 2.0 of the UltraSPARC Visual Instruction Set extensions.  The
21708 default is @option{-mvis2} when targeting a cpu that supports such
21709 instructions, such as UltraSPARC-III and later.  Setting @option{-mvis2}
21710 also sets @option{-mvis}.
21712 @item -mvis3
21713 @itemx -mno-vis3
21714 @opindex mvis3
21715 @opindex mno-vis3
21716 With @option{-mvis3}, GCC generates code that takes advantage of
21717 version 3.0 of the UltraSPARC Visual Instruction Set extensions.  The
21718 default is @option{-mvis3} when targeting a cpu that supports such
21719 instructions, such as niagara-3 and later.  Setting @option{-mvis3}
21720 also sets @option{-mvis2} and @option{-mvis}.
21722 @item -mcbcond
21723 @itemx -mno-cbcond
21724 @opindex mcbcond
21725 @opindex mno-cbcond
21726 With @option{-mcbcond}, GCC generates code that takes advantage of
21727 compare-and-branch instructions, as defined in the Sparc Architecture 2011.
21728 The default is @option{-mcbcond} when targeting a cpu that supports such
21729 instructions, such as niagara-4 and later.
21731 @item -mpopc
21732 @itemx -mno-popc
21733 @opindex mpopc
21734 @opindex mno-popc
21735 With @option{-mpopc}, GCC generates code that takes advantage of the UltraSPARC
21736 population count instruction.  The default is @option{-mpopc}
21737 when targeting a cpu that supports such instructions, such as Niagara-2 and
21738 later.
21740 @item -mfmaf
21741 @itemx -mno-fmaf
21742 @opindex mfmaf
21743 @opindex mno-fmaf
21744 With @option{-mfmaf}, GCC generates code that takes advantage of the UltraSPARC
21745 Fused Multiply-Add Floating-point extensions.  The default is @option{-mfmaf}
21746 when targeting a cpu that supports such instructions, such as Niagara-3 and
21747 later.
21749 @item -mfix-at697f
21750 @opindex mfix-at697f
21751 Enable the documented workaround for the single erratum of the Atmel AT697F
21752 processor (which corresponds to erratum #13 of the AT697E processor).
21754 @item -mfix-ut699
21755 @opindex mfix-ut699
21756 Enable the documented workarounds for the floating-point errata and the data
21757 cache nullify errata of the UT699 processor.
21758 @end table
21760 These @samp{-m} options are supported in addition to the above
21761 on SPARC-V9 processors in 64-bit environments:
21763 @table @gcctabopt
21764 @item -m32
21765 @itemx -m64
21766 @opindex m32
21767 @opindex m64
21768 Generate code for a 32-bit or 64-bit environment.
21769 The 32-bit environment sets int, long and pointer to 32 bits.
21770 The 64-bit environment sets int to 32 bits and long and pointer
21771 to 64 bits.
21773 @item -mcmodel=@var{which}
21774 @opindex mcmodel
21775 Set the code model to one of
21777 @table @samp
21778 @item medlow
21779 The Medium/Low code model: 64-bit addresses, programs
21780 must be linked in the low 32 bits of memory.  Programs can be statically
21781 or dynamically linked.
21783 @item medmid
21784 The Medium/Middle code model: 64-bit addresses, programs
21785 must be linked in the low 44 bits of memory, the text and data segments must
21786 be less than 2GB in size and the data segment must be located within 2GB of
21787 the text segment.
21789 @item medany
21790 The Medium/Anywhere code model: 64-bit addresses, programs
21791 may be linked anywhere in memory, the text and data segments must be less
21792 than 2GB in size and the data segment must be located within 2GB of the
21793 text segment.
21795 @item embmedany
21796 The Medium/Anywhere code model for embedded systems:
21797 64-bit addresses, the text and data segments must be less than 2GB in
21798 size, both starting anywhere in memory (determined at link time).  The
21799 global register %g4 points to the base of the data segment.  Programs
21800 are statically linked and PIC is not supported.
21801 @end table
21803 @item -mmemory-model=@var{mem-model}
21804 @opindex mmemory-model
21805 Set the memory model in force on the processor to one of
21807 @table @samp
21808 @item default
21809 The default memory model for the processor and operating system.
21811 @item rmo
21812 Relaxed Memory Order
21814 @item pso
21815 Partial Store Order
21817 @item tso
21818 Total Store Order
21820 @item sc
21821 Sequential Consistency
21822 @end table
21824 These memory models are formally defined in Appendix D of the Sparc V9
21825 architecture manual, as set in the processor's @code{PSTATE.MM} field.
21827 @item -mstack-bias
21828 @itemx -mno-stack-bias
21829 @opindex mstack-bias
21830 @opindex mno-stack-bias
21831 With @option{-mstack-bias}, GCC assumes that the stack pointer, and
21832 frame pointer if present, are offset by @minus{}2047 which must be added back
21833 when making stack frame references.  This is the default in 64-bit mode.
21834 Otherwise, assume no such offset is present.
21835 @end table
21837 @node SPU Options
21838 @subsection SPU Options
21839 @cindex SPU options
21841 These @samp{-m} options are supported on the SPU:
21843 @table @gcctabopt
21844 @item -mwarn-reloc
21845 @itemx -merror-reloc
21846 @opindex mwarn-reloc
21847 @opindex merror-reloc
21849 The loader for SPU does not handle dynamic relocations.  By default, GCC
21850 gives an error when it generates code that requires a dynamic
21851 relocation.  @option{-mno-error-reloc} disables the error,
21852 @option{-mwarn-reloc} generates a warning instead.
21854 @item -msafe-dma
21855 @itemx -munsafe-dma
21856 @opindex msafe-dma
21857 @opindex munsafe-dma
21859 Instructions that initiate or test completion of DMA must not be
21860 reordered with respect to loads and stores of the memory that is being
21861 accessed.
21862 With @option{-munsafe-dma} you must use the @code{volatile} keyword to protect
21863 memory accesses, but that can lead to inefficient code in places where the
21864 memory is known to not change.  Rather than mark the memory as volatile,
21865 you can use @option{-msafe-dma} to tell the compiler to treat
21866 the DMA instructions as potentially affecting all memory.  
21868 @item -mbranch-hints
21869 @opindex mbranch-hints
21871 By default, GCC generates a branch hint instruction to avoid
21872 pipeline stalls for always-taken or probably-taken branches.  A hint
21873 is not generated closer than 8 instructions away from its branch.
21874 There is little reason to disable them, except for debugging purposes,
21875 or to make an object a little bit smaller.
21877 @item -msmall-mem
21878 @itemx -mlarge-mem
21879 @opindex msmall-mem
21880 @opindex mlarge-mem
21882 By default, GCC generates code assuming that addresses are never larger
21883 than 18 bits.  With @option{-mlarge-mem} code is generated that assumes
21884 a full 32-bit address.
21886 @item -mstdmain
21887 @opindex mstdmain
21889 By default, GCC links against startup code that assumes the SPU-style
21890 main function interface (which has an unconventional parameter list).
21891 With @option{-mstdmain}, GCC links your program against startup
21892 code that assumes a C99-style interface to @code{main}, including a
21893 local copy of @code{argv} strings.
21895 @item -mfixed-range=@var{register-range}
21896 @opindex mfixed-range
21897 Generate code treating the given register range as fixed registers.
21898 A fixed register is one that the register allocator cannot use.  This is
21899 useful when compiling kernel code.  A register range is specified as
21900 two registers separated by a dash.  Multiple register ranges can be
21901 specified separated by a comma.
21903 @item -mea32
21904 @itemx -mea64
21905 @opindex mea32
21906 @opindex mea64
21907 Compile code assuming that pointers to the PPU address space accessed
21908 via the @code{__ea} named address space qualifier are either 32 or 64
21909 bits wide.  The default is 32 bits.  As this is an ABI-changing option,
21910 all object code in an executable must be compiled with the same setting.
21912 @item -maddress-space-conversion
21913 @itemx -mno-address-space-conversion
21914 @opindex maddress-space-conversion
21915 @opindex mno-address-space-conversion
21916 Allow/disallow treating the @code{__ea} address space as superset
21917 of the generic address space.  This enables explicit type casts
21918 between @code{__ea} and generic pointer as well as implicit
21919 conversions of generic pointers to @code{__ea} pointers.  The
21920 default is to allow address space pointer conversions.
21922 @item -mcache-size=@var{cache-size}
21923 @opindex mcache-size
21924 This option controls the version of libgcc that the compiler links to an
21925 executable and selects a software-managed cache for accessing variables
21926 in the @code{__ea} address space with a particular cache size.  Possible
21927 options for @var{cache-size} are @samp{8}, @samp{16}, @samp{32}, @samp{64}
21928 and @samp{128}.  The default cache size is 64KB.
21930 @item -matomic-updates
21931 @itemx -mno-atomic-updates
21932 @opindex matomic-updates
21933 @opindex mno-atomic-updates
21934 This option controls the version of libgcc that the compiler links to an
21935 executable and selects whether atomic updates to the software-managed
21936 cache of PPU-side variables are used.  If you use atomic updates, changes
21937 to a PPU variable from SPU code using the @code{__ea} named address space
21938 qualifier do not interfere with changes to other PPU variables residing
21939 in the same cache line from PPU code.  If you do not use atomic updates,
21940 such interference may occur; however, writing back cache lines is
21941 more efficient.  The default behavior is to use atomic updates.
21943 @item -mdual-nops
21944 @itemx -mdual-nops=@var{n}
21945 @opindex mdual-nops
21946 By default, GCC inserts nops to increase dual issue when it expects
21947 it to increase performance.  @var{n} can be a value from 0 to 10.  A
21948 smaller @var{n} inserts fewer nops.  10 is the default, 0 is the
21949 same as @option{-mno-dual-nops}.  Disabled with @option{-Os}.
21951 @item -mhint-max-nops=@var{n}
21952 @opindex mhint-max-nops
21953 Maximum number of nops to insert for a branch hint.  A branch hint must
21954 be at least 8 instructions away from the branch it is affecting.  GCC
21955 inserts up to @var{n} nops to enforce this, otherwise it does not
21956 generate the branch hint.
21958 @item -mhint-max-distance=@var{n}
21959 @opindex mhint-max-distance
21960 The encoding of the branch hint instruction limits the hint to be within
21961 256 instructions of the branch it is affecting.  By default, GCC makes
21962 sure it is within 125.
21964 @item -msafe-hints
21965 @opindex msafe-hints
21966 Work around a hardware bug that causes the SPU to stall indefinitely.
21967 By default, GCC inserts the @code{hbrp} instruction to make sure
21968 this stall won't happen.
21970 @end table
21972 @node System V Options
21973 @subsection Options for System V
21975 These additional options are available on System V Release 4 for
21976 compatibility with other compilers on those systems:
21978 @table @gcctabopt
21979 @item -G
21980 @opindex G
21981 Create a shared object.
21982 It is recommended that @option{-symbolic} or @option{-shared} be used instead.
21984 @item -Qy
21985 @opindex Qy
21986 Identify the versions of each tool used by the compiler, in a
21987 @code{.ident} assembler directive in the output.
21989 @item -Qn
21990 @opindex Qn
21991 Refrain from adding @code{.ident} directives to the output file (this is
21992 the default).
21994 @item -YP,@var{dirs}
21995 @opindex YP
21996 Search the directories @var{dirs}, and no others, for libraries
21997 specified with @option{-l}.
21999 @item -Ym,@var{dir}
22000 @opindex Ym
22001 Look in the directory @var{dir} to find the M4 preprocessor.
22002 The assembler uses this option.
22003 @c This is supposed to go with a -Yd for predefined M4 macro files, but
22004 @c the generic assembler that comes with Solaris takes just -Ym.
22005 @end table
22007 @node TILE-Gx Options
22008 @subsection TILE-Gx Options
22009 @cindex TILE-Gx options
22011 These @samp{-m} options are supported on the TILE-Gx:
22013 @table @gcctabopt
22014 @item -mcmodel=small
22015 @opindex mcmodel=small
22016 Generate code for the small model.  The distance for direct calls is
22017 limited to 500M in either direction.  PC-relative addresses are 32
22018 bits.  Absolute addresses support the full address range.
22020 @item -mcmodel=large
22021 @opindex mcmodel=large
22022 Generate code for the large model.  There is no limitation on call
22023 distance, pc-relative addresses, or absolute addresses.
22025 @item -mcpu=@var{name}
22026 @opindex mcpu
22027 Selects the type of CPU to be targeted.  Currently the only supported
22028 type is @samp{tilegx}.
22030 @item -m32
22031 @itemx -m64
22032 @opindex m32
22033 @opindex m64
22034 Generate code for a 32-bit or 64-bit environment.  The 32-bit
22035 environment sets int, long, and pointer to 32 bits.  The 64-bit
22036 environment sets int to 32 bits and long and pointer to 64 bits.
22038 @item -mbig-endian
22039 @itemx -mlittle-endian
22040 @opindex mbig-endian
22041 @opindex mlittle-endian
22042 Generate code in big/little endian mode, respectively.
22043 @end table
22045 @node TILEPro Options
22046 @subsection TILEPro Options
22047 @cindex TILEPro options
22049 These @samp{-m} options are supported on the TILEPro:
22051 @table @gcctabopt
22052 @item -mcpu=@var{name}
22053 @opindex mcpu
22054 Selects the type of CPU to be targeted.  Currently the only supported
22055 type is @samp{tilepro}.
22057 @item -m32
22058 @opindex m32
22059 Generate code for a 32-bit environment, which sets int, long, and
22060 pointer to 32 bits.  This is the only supported behavior so the flag
22061 is essentially ignored.
22062 @end table
22064 @node V850 Options
22065 @subsection V850 Options
22066 @cindex V850 Options
22068 These @samp{-m} options are defined for V850 implementations:
22070 @table @gcctabopt
22071 @item -mlong-calls
22072 @itemx -mno-long-calls
22073 @opindex mlong-calls
22074 @opindex mno-long-calls
22075 Treat all calls as being far away (near).  If calls are assumed to be
22076 far away, the compiler always loads the function's address into a
22077 register, and calls indirect through the pointer.
22079 @item -mno-ep
22080 @itemx -mep
22081 @opindex mno-ep
22082 @opindex mep
22083 Do not optimize (do optimize) basic blocks that use the same index
22084 pointer 4 or more times to copy pointer into the @code{ep} register, and
22085 use the shorter @code{sld} and @code{sst} instructions.  The @option{-mep}
22086 option is on by default if you optimize.
22088 @item -mno-prolog-function
22089 @itemx -mprolog-function
22090 @opindex mno-prolog-function
22091 @opindex mprolog-function
22092 Do not use (do use) external functions to save and restore registers
22093 at the prologue and epilogue of a function.  The external functions
22094 are slower, but use less code space if more than one function saves
22095 the same number of registers.  The @option{-mprolog-function} option
22096 is on by default if you optimize.
22098 @item -mspace
22099 @opindex mspace
22100 Try to make the code as small as possible.  At present, this just turns
22101 on the @option{-mep} and @option{-mprolog-function} options.
22103 @item -mtda=@var{n}
22104 @opindex mtda
22105 Put static or global variables whose size is @var{n} bytes or less into
22106 the tiny data area that register @code{ep} points to.  The tiny data
22107 area can hold up to 256 bytes in total (128 bytes for byte references).
22109 @item -msda=@var{n}
22110 @opindex msda
22111 Put static or global variables whose size is @var{n} bytes or less into
22112 the small data area that register @code{gp} points to.  The small data
22113 area can hold up to 64 kilobytes.
22115 @item -mzda=@var{n}
22116 @opindex mzda
22117 Put static or global variables whose size is @var{n} bytes or less into
22118 the first 32 kilobytes of memory.
22120 @item -mv850
22121 @opindex mv850
22122 Specify that the target processor is the V850.
22124 @item -mv850e3v5
22125 @opindex mv850e3v5
22126 Specify that the target processor is the V850E3V5.  The preprocessor
22127 constant @samp{__v850e3v5__} is defined if this option is used.
22129 @item -mv850e2v4
22130 @opindex mv850e2v4
22131 Specify that the target processor is the V850E3V5.  This is an alias for
22132 the @option{-mv850e3v5} option.
22134 @item -mv850e2v3
22135 @opindex mv850e2v3
22136 Specify that the target processor is the V850E2V3.  The preprocessor
22137 constant @samp{__v850e2v3__} is defined if this option is used.
22139 @item -mv850e2
22140 @opindex mv850e2
22141 Specify that the target processor is the V850E2.  The preprocessor
22142 constant @samp{__v850e2__} is defined if this option is used.
22144 @item -mv850e1
22145 @opindex mv850e1
22146 Specify that the target processor is the V850E1.  The preprocessor
22147 constants @samp{__v850e1__} and @samp{__v850e__} are defined if
22148 this option is used.
22150 @item -mv850es
22151 @opindex mv850es
22152 Specify that the target processor is the V850ES.  This is an alias for
22153 the @option{-mv850e1} option.
22155 @item -mv850e
22156 @opindex mv850e
22157 Specify that the target processor is the V850E@.  The preprocessor
22158 constant @samp{__v850e__} is defined if this option is used.
22160 If neither @option{-mv850} nor @option{-mv850e} nor @option{-mv850e1}
22161 nor @option{-mv850e2} nor @option{-mv850e2v3} nor @option{-mv850e3v5}
22162 are defined then a default target processor is chosen and the
22163 relevant @samp{__v850*__} preprocessor constant is defined.
22165 The preprocessor constants @samp{__v850} and @samp{__v851__} are always
22166 defined, regardless of which processor variant is the target.
22168 @item -mdisable-callt
22169 @itemx -mno-disable-callt
22170 @opindex mdisable-callt
22171 @opindex mno-disable-callt
22172 This option suppresses generation of the @code{CALLT} instruction for the
22173 v850e, v850e1, v850e2, v850e2v3 and v850e3v5 flavors of the v850
22174 architecture.
22176 This option is enabled by default when the RH850 ABI is
22177 in use (see @option{-mrh850-abi}), and disabled by default when the
22178 GCC ABI is in use.  If @code{CALLT} instructions are being generated
22179 then the C preprocessor symbol @code{__V850_CALLT__} will be defined.
22181 @item -mrelax
22182 @itemx -mno-relax
22183 @opindex mrelax
22184 @opindex mno-relax
22185 Pass on (or do not pass on) the @option{-mrelax} command line option
22186 to the assembler.
22188 @item -mlong-jumps
22189 @itemx -mno-long-jumps
22190 @opindex mlong-jumps
22191 @opindex mno-long-jumps
22192 Disable (or re-enable) the generation of PC-relative jump instructions.
22194 @item -msoft-float
22195 @itemx -mhard-float
22196 @opindex msoft-float
22197 @opindex mhard-float
22198 Disable (or re-enable) the generation of hardware floating point
22199 instructions.  This option is only significant when the target
22200 architecture is @samp{V850E2V3} or higher.  If hardware floating point
22201 instructions are being generated then the C preprocessor symbol
22202 @code{__FPU_OK__} will be defined, otherwise the symbol
22203 @code{__NO_FPU__} will be defined.
22205 @item -mloop
22206 @opindex mloop
22207 Enables the use of the e3v5 LOOP instruction.  The use of this
22208 instruction is not enabled by default when the e3v5 architecture is
22209 selected because its use is still experimental.
22211 @item -mrh850-abi
22212 @itemx -mghs
22213 @opindex mrh850-abi
22214 @opindex mghs
22215 Enables support for the RH850 version of the V850 ABI.  This is the
22216 default.  With this version of the ABI the following rules apply:
22218 @itemize
22219 @item
22220 Integer sized structures and unions are returned via a memory pointer
22221 rather than a register.
22223 @item
22224 Large structures and unions (more than 8 bytes in size) are passed by
22225 value.
22227 @item
22228 Functions are aligned to 16-bit boundaries.
22230 @item
22231 The @option{-m8byte-align} command line option is supported.
22233 @item
22234 The @option{-mdisable-callt} command line option is enabled by
22235 default.  The @option{-mno-disable-callt} command line option is not
22236 supported.
22237 @end itemize
22239 When this version of the ABI is enabled the C preprocessor symbol
22240 @code{__V850_RH850_ABI__} is defined.
22242 @item -mgcc-abi
22243 @opindex mgcc-abi
22244 Enables support for the old GCC version of the V850 ABI.  With this
22245 version of the ABI the following rules apply:
22247 @itemize
22248 @item
22249 Integer sized structures and unions are returned in register @code{r10}.
22251 @item
22252 Large structures and unions (more than 8 bytes in size) are passed by
22253 reference.
22255 @item
22256 Functions are aligned to 32-bit boundaries, unless optimizing for
22257 size.
22259 @item
22260 The @option{-m8byte-align} command line option is not supported.
22262 @item
22263 The @option{-mdisable-callt} command line option is supported but not
22264 enabled by default.
22265 @end itemize
22267 When this version of the ABI is enabled the C preprocessor symbol
22268 @code{__V850_GCC_ABI__} is defined.
22270 @item -m8byte-align
22271 @itemx -mno-8byte-align
22272 @opindex m8byte-align
22273 @opindex mno-8byte-align
22274 Enables support for @code{doubles} and @code{long long} types to be
22275 aligned on 8-byte boundaries.  The default is to restrict the
22276 alignment of all objects to at most 4-bytes.  When
22277 @option{-m8byte-align} is in effect the C preprocessor symbol
22278 @code{__V850_8BYTE_ALIGN__} will be defined.
22280 @item -mbig-switch
22281 @opindex mbig-switch
22282 Generate code suitable for big switch tables.  Use this option only if
22283 the assembler/linker complain about out of range branches within a switch
22284 table.
22286 @item -mapp-regs
22287 @opindex mapp-regs
22288 This option causes r2 and r5 to be used in the code generated by
22289 the compiler.  This setting is the default.
22291 @item -mno-app-regs
22292 @opindex mno-app-regs
22293 This option causes r2 and r5 to be treated as fixed registers.
22295 @end table
22297 @node VAX Options
22298 @subsection VAX Options
22299 @cindex VAX options
22301 These @samp{-m} options are defined for the VAX:
22303 @table @gcctabopt
22304 @item -munix
22305 @opindex munix
22306 Do not output certain jump instructions (@code{aobleq} and so on)
22307 that the Unix assembler for the VAX cannot handle across long
22308 ranges.
22310 @item -mgnu
22311 @opindex mgnu
22312 Do output those jump instructions, on the assumption that the
22313 GNU assembler is being used.
22315 @item -mg
22316 @opindex mg
22317 Output code for G-format floating-point numbers instead of D-format.
22318 @end table
22320 @node VMS Options
22321 @subsection VMS Options
22323 These @samp{-m} options are defined for the VMS implementations:
22325 @table @gcctabopt
22326 @item -mvms-return-codes
22327 @opindex mvms-return-codes
22328 Return VMS condition codes from @code{main}. The default is to return POSIX-style
22329 condition (e.g.@ error) codes.
22331 @item -mdebug-main=@var{prefix}
22332 @opindex mdebug-main=@var{prefix}
22333 Flag the first routine whose name starts with @var{prefix} as the main
22334 routine for the debugger.
22336 @item -mmalloc64
22337 @opindex mmalloc64
22338 Default to 64-bit memory allocation routines.
22340 @item -mpointer-size=@var{size}
22341 @opindex -mpointer-size=@var{size}
22342 Set the default size of pointers. Possible options for @var{size} are
22343 @samp{32} or @samp{short} for 32 bit pointers, @samp{64} or @samp{long}
22344 for 64 bit pointers, and @samp{no} for supporting only 32 bit pointers.
22345 The later option disables @code{pragma pointer_size}.
22346 @end table
22348 @node VxWorks Options
22349 @subsection VxWorks Options
22350 @cindex VxWorks Options
22352 The options in this section are defined for all VxWorks targets.
22353 Options specific to the target hardware are listed with the other
22354 options for that target.
22356 @table @gcctabopt
22357 @item -mrtp
22358 @opindex mrtp
22359 GCC can generate code for both VxWorks kernels and real time processes
22360 (RTPs).  This option switches from the former to the latter.  It also
22361 defines the preprocessor macro @code{__RTP__}.
22363 @item -non-static
22364 @opindex non-static
22365 Link an RTP executable against shared libraries rather than static
22366 libraries.  The options @option{-static} and @option{-shared} can
22367 also be used for RTPs (@pxref{Link Options}); @option{-static}
22368 is the default.
22370 @item -Bstatic
22371 @itemx -Bdynamic
22372 @opindex Bstatic
22373 @opindex Bdynamic
22374 These options are passed down to the linker.  They are defined for
22375 compatibility with Diab.
22377 @item -Xbind-lazy
22378 @opindex Xbind-lazy
22379 Enable lazy binding of function calls.  This option is equivalent to
22380 @option{-Wl,-z,now} and is defined for compatibility with Diab.
22382 @item -Xbind-now
22383 @opindex Xbind-now
22384 Disable lazy binding of function calls.  This option is the default and
22385 is defined for compatibility with Diab.
22386 @end table
22388 @node x86-64 Options
22389 @subsection x86-64 Options
22390 @cindex x86-64 options
22392 These are listed under @xref{i386 and x86-64 Options}.
22394 @node Xstormy16 Options
22395 @subsection Xstormy16 Options
22396 @cindex Xstormy16 Options
22398 These options are defined for Xstormy16:
22400 @table @gcctabopt
22401 @item -msim
22402 @opindex msim
22403 Choose startup files and linker script suitable for the simulator.
22404 @end table
22406 @node Xtensa Options
22407 @subsection Xtensa Options
22408 @cindex Xtensa Options
22410 These options are supported for Xtensa targets:
22412 @table @gcctabopt
22413 @item -mconst16
22414 @itemx -mno-const16
22415 @opindex mconst16
22416 @opindex mno-const16
22417 Enable or disable use of @code{CONST16} instructions for loading
22418 constant values.  The @code{CONST16} instruction is currently not a
22419 standard option from Tensilica.  When enabled, @code{CONST16}
22420 instructions are always used in place of the standard @code{L32R}
22421 instructions.  The use of @code{CONST16} is enabled by default only if
22422 the @code{L32R} instruction is not available.
22424 @item -mfused-madd
22425 @itemx -mno-fused-madd
22426 @opindex mfused-madd
22427 @opindex mno-fused-madd
22428 Enable or disable use of fused multiply/add and multiply/subtract
22429 instructions in the floating-point option.  This has no effect if the
22430 floating-point option is not also enabled.  Disabling fused multiply/add
22431 and multiply/subtract instructions forces the compiler to use separate
22432 instructions for the multiply and add/subtract operations.  This may be
22433 desirable in some cases where strict IEEE 754-compliant results are
22434 required: the fused multiply add/subtract instructions do not round the
22435 intermediate result, thereby producing results with @emph{more} bits of
22436 precision than specified by the IEEE standard.  Disabling fused multiply
22437 add/subtract instructions also ensures that the program output is not
22438 sensitive to the compiler's ability to combine multiply and add/subtract
22439 operations.
22441 @item -mserialize-volatile
22442 @itemx -mno-serialize-volatile
22443 @opindex mserialize-volatile
22444 @opindex mno-serialize-volatile
22445 When this option is enabled, GCC inserts @code{MEMW} instructions before
22446 @code{volatile} memory references to guarantee sequential consistency.
22447 The default is @option{-mserialize-volatile}.  Use
22448 @option{-mno-serialize-volatile} to omit the @code{MEMW} instructions.
22450 @item -mforce-no-pic
22451 @opindex mforce-no-pic
22452 For targets, like GNU/Linux, where all user-mode Xtensa code must be
22453 position-independent code (PIC), this option disables PIC for compiling
22454 kernel code.
22456 @item -mtext-section-literals
22457 @itemx -mno-text-section-literals
22458 @opindex mtext-section-literals
22459 @opindex mno-text-section-literals
22460 Control the treatment of literal pools.  The default is
22461 @option{-mno-text-section-literals}, which places literals in a separate
22462 section in the output file.  This allows the literal pool to be placed
22463 in a data RAM/ROM, and it also allows the linker to combine literal
22464 pools from separate object files to remove redundant literals and
22465 improve code size.  With @option{-mtext-section-literals}, the literals
22466 are interspersed in the text section in order to keep them as close as
22467 possible to their references.  This may be necessary for large assembly
22468 files.
22470 @item -mtarget-align
22471 @itemx -mno-target-align
22472 @opindex mtarget-align
22473 @opindex mno-target-align
22474 When this option is enabled, GCC instructs the assembler to
22475 automatically align instructions to reduce branch penalties at the
22476 expense of some code density.  The assembler attempts to widen density
22477 instructions to align branch targets and the instructions following call
22478 instructions.  If there are not enough preceding safe density
22479 instructions to align a target, no widening is performed.  The
22480 default is @option{-mtarget-align}.  These options do not affect the
22481 treatment of auto-aligned instructions like @code{LOOP}, which the
22482 assembler always aligns, either by widening density instructions or
22483 by inserting NOP instructions.
22485 @item -mlongcalls
22486 @itemx -mno-longcalls
22487 @opindex mlongcalls
22488 @opindex mno-longcalls
22489 When this option is enabled, GCC instructs the assembler to translate
22490 direct calls to indirect calls unless it can determine that the target
22491 of a direct call is in the range allowed by the call instruction.  This
22492 translation typically occurs for calls to functions in other source
22493 files.  Specifically, the assembler translates a direct @code{CALL}
22494 instruction into an @code{L32R} followed by a @code{CALLX} instruction.
22495 The default is @option{-mno-longcalls}.  This option should be used in
22496 programs where the call target can potentially be out of range.  This
22497 option is implemented in the assembler, not the compiler, so the
22498 assembly code generated by GCC still shows direct call
22499 instructions---look at the disassembled object code to see the actual
22500 instructions.  Note that the assembler uses an indirect call for
22501 every cross-file call, not just those that really are out of range.
22502 @end table
22504 @node zSeries Options
22505 @subsection zSeries Options
22506 @cindex zSeries options
22508 These are listed under @xref{S/390 and zSeries Options}.
22510 @node Code Gen Options
22511 @section Options for Code Generation Conventions
22512 @cindex code generation conventions
22513 @cindex options, code generation
22514 @cindex run-time options
22516 These machine-independent options control the interface conventions
22517 used in code generation.
22519 Most of them have both positive and negative forms; the negative form
22520 of @option{-ffoo} is @option{-fno-foo}.  In the table below, only
22521 one of the forms is listed---the one that is not the default.  You
22522 can figure out the other form by either removing @samp{no-} or adding
22525 @table @gcctabopt
22526 @item -fbounds-check
22527 @opindex fbounds-check
22528 For front ends that support it, generate additional code to check that
22529 indices used to access arrays are within the declared range.  This is
22530 currently only supported by the Java and Fortran front ends, where
22531 this option defaults to true and false respectively.
22533 @item -fstack-reuse=@var{reuse-level}
22534 @opindex fstack_reuse
22535 This option controls stack space reuse for user declared local/auto variables
22536 and compiler generated temporaries.  @var{reuse_level} can be @samp{all},
22537 @samp{named_vars}, or @samp{none}. @samp{all} enables stack reuse for all
22538 local variables and temporaries, @samp{named_vars} enables the reuse only for
22539 user defined local variables with names, and @samp{none} disables stack reuse
22540 completely. The default value is @samp{all}. The option is needed when the
22541 program extends the lifetime of a scoped local variable or a compiler generated
22542 temporary beyond the end point defined by the language.  When a lifetime of
22543 a variable ends, and if the variable lives in memory, the optimizing compiler
22544 has the freedom to reuse its stack space with other temporaries or scoped
22545 local variables whose live range does not overlap with it. Legacy code extending
22546 local lifetime will likely to break with the stack reuse optimization.
22548 For example,
22550 @smallexample
22551    int *p;
22552    @{
22553      int local1;
22555      p = &local1;
22556      local1 = 10;
22557      ....
22558    @}
22559    @{
22560       int local2;
22561       local2 = 20;
22562       ...
22563    @}
22565    if (*p == 10)  // out of scope use of local1
22566      @{
22568      @}
22569 @end smallexample
22571 Another example:
22572 @smallexample
22574    struct A
22575    @{
22576        A(int k) : i(k), j(k) @{ @}
22577        int i;
22578        int j;
22579    @};
22581    A *ap;
22583    void foo(const A& ar)
22584    @{
22585       ap = &ar;
22586    @}
22588    void bar()
22589    @{
22590       foo(A(10)); // temp object's lifetime ends when foo returns
22592       @{
22593         A a(20);
22594         ....
22595       @}
22596       ap->i+= 10;  // ap references out of scope temp whose space
22597                    // is reused with a. What is the value of ap->i?
22598    @}
22600 @end smallexample
22602 The lifetime of a compiler generated temporary is well defined by the C++
22603 standard. When a lifetime of a temporary ends, and if the temporary lives
22604 in memory, the optimizing compiler has the freedom to reuse its stack
22605 space with other temporaries or scoped local variables whose live range
22606 does not overlap with it. However some of the legacy code relies on
22607 the behavior of older compilers in which temporaries' stack space is
22608 not reused, the aggressive stack reuse can lead to runtime errors. This
22609 option is used to control the temporary stack reuse optimization.
22611 @item -ftrapv
22612 @opindex ftrapv
22613 This option generates traps for signed overflow on addition, subtraction,
22614 multiplication operations.
22616 @item -fwrapv
22617 @opindex fwrapv
22618 This option instructs the compiler to assume that signed arithmetic
22619 overflow of addition, subtraction and multiplication wraps around
22620 using twos-complement representation.  This flag enables some optimizations
22621 and disables others.  This option is enabled by default for the Java
22622 front end, as required by the Java language specification.
22624 @item -fexceptions
22625 @opindex fexceptions
22626 Enable exception handling.  Generates extra code needed to propagate
22627 exceptions.  For some targets, this implies GCC generates frame
22628 unwind information for all functions, which can produce significant data
22629 size overhead, although it does not affect execution.  If you do not
22630 specify this option, GCC enables it by default for languages like
22631 C++ that normally require exception handling, and disables it for
22632 languages like C that do not normally require it.  However, you may need
22633 to enable this option when compiling C code that needs to interoperate
22634 properly with exception handlers written in C++.  You may also wish to
22635 disable this option if you are compiling older C++ programs that don't
22636 use exception handling.
22638 @item -fnon-call-exceptions
22639 @opindex fnon-call-exceptions
22640 Generate code that allows trapping instructions to throw exceptions.
22641 Note that this requires platform-specific runtime support that does
22642 not exist everywhere.  Moreover, it only allows @emph{trapping}
22643 instructions to throw exceptions, i.e.@: memory references or floating-point
22644 instructions.  It does not allow exceptions to be thrown from
22645 arbitrary signal handlers such as @code{SIGALRM}.
22647 @item -fdelete-dead-exceptions
22648 @opindex fdelete-dead-exceptions
22649 Consider that instructions that may throw exceptions but don't otherwise
22650 contribute to the execution of the program can be optimized away.
22651 This option is enabled by default for the Ada front end, as permitted by
22652 the Ada language specification.
22653 Optimization passes that cause dead exceptions to be removed are enabled independently at different optimization levels.
22655 @item -funwind-tables
22656 @opindex funwind-tables
22657 Similar to @option{-fexceptions}, except that it just generates any needed
22658 static data, but does not affect the generated code in any other way.
22659 You normally do not need to enable this option; instead, a language processor
22660 that needs this handling enables it on your behalf.
22662 @item -fasynchronous-unwind-tables
22663 @opindex fasynchronous-unwind-tables
22664 Generate unwind table in DWARF 2 format, if supported by target machine.  The
22665 table is exact at each instruction boundary, so it can be used for stack
22666 unwinding from asynchronous events (such as debugger or garbage collector).
22668 @item -fno-gnu-unique
22669 @opindex fno-gnu-unique
22670 On systems with recent GNU assembler and C library, the C++ compiler
22671 uses the @code{STB_GNU_UNIQUE} binding to make sure that definitions
22672 of template static data members and static local variables in inline
22673 functions are unique even in the presence of @code{RTLD_LOCAL}; this
22674 is necessary to avoid problems with a library used by two different
22675 @code{RTLD_LOCAL} plugins depending on a definition in one of them and
22676 therefore disagreeing with the other one about the binding of the
22677 symbol.  But this causes @code{dlclose} to be ignored for affected
22678 DSOs; if your program relies on reinitialization of a DSO via
22679 @code{dlclose} and @code{dlopen}, you can use
22680 @option{-fno-gnu-unique}.
22682 @item -fpcc-struct-return
22683 @opindex fpcc-struct-return
22684 Return ``short'' @code{struct} and @code{union} values in memory like
22685 longer ones, rather than in registers.  This convention is less
22686 efficient, but it has the advantage of allowing intercallability between
22687 GCC-compiled files and files compiled with other compilers, particularly
22688 the Portable C Compiler (pcc).
22690 The precise convention for returning structures in memory depends
22691 on the target configuration macros.
22693 Short structures and unions are those whose size and alignment match
22694 that of some integer type.
22696 @strong{Warning:} code compiled with the @option{-fpcc-struct-return}
22697 switch is not binary compatible with code compiled with the
22698 @option{-freg-struct-return} switch.
22699 Use it to conform to a non-default application binary interface.
22701 @item -freg-struct-return
22702 @opindex freg-struct-return
22703 Return @code{struct} and @code{union} values in registers when possible.
22704 This is more efficient for small structures than
22705 @option{-fpcc-struct-return}.
22707 If you specify neither @option{-fpcc-struct-return} nor
22708 @option{-freg-struct-return}, GCC defaults to whichever convention is
22709 standard for the target.  If there is no standard convention, GCC
22710 defaults to @option{-fpcc-struct-return}, except on targets where GCC is
22711 the principal compiler.  In those cases, we can choose the standard, and
22712 we chose the more efficient register return alternative.
22714 @strong{Warning:} code compiled with the @option{-freg-struct-return}
22715 switch is not binary compatible with code compiled with the
22716 @option{-fpcc-struct-return} switch.
22717 Use it to conform to a non-default application binary interface.
22719 @item -fshort-enums
22720 @opindex fshort-enums
22721 Allocate to an @code{enum} type only as many bytes as it needs for the
22722 declared range of possible values.  Specifically, the @code{enum} type
22723 is equivalent to the smallest integer type that has enough room.
22725 @strong{Warning:} the @option{-fshort-enums} switch causes GCC to generate
22726 code that is not binary compatible with code generated without that switch.
22727 Use it to conform to a non-default application binary interface.
22729 @item -fshort-double
22730 @opindex fshort-double
22731 Use the same size for @code{double} as for @code{float}.
22733 @strong{Warning:} the @option{-fshort-double} switch causes GCC to generate
22734 code that is not binary compatible with code generated without that switch.
22735 Use it to conform to a non-default application binary interface.
22737 @item -fshort-wchar
22738 @opindex fshort-wchar
22739 Override the underlying type for @samp{wchar_t} to be @samp{short
22740 unsigned int} instead of the default for the target.  This option is
22741 useful for building programs to run under WINE@.
22743 @strong{Warning:} the @option{-fshort-wchar} switch causes GCC to generate
22744 code that is not binary compatible with code generated without that switch.
22745 Use it to conform to a non-default application binary interface.
22747 @item -fno-common
22748 @opindex fno-common
22749 In C code, controls the placement of uninitialized global variables.
22750 Unix C compilers have traditionally permitted multiple definitions of
22751 such variables in different compilation units by placing the variables
22752 in a common block.
22753 This is the behavior specified by @option{-fcommon}, and is the default
22754 for GCC on most targets.
22755 On the other hand, this behavior is not required by ISO C, and on some
22756 targets may carry a speed or code size penalty on variable references.
22757 The @option{-fno-common} option specifies that the compiler should place
22758 uninitialized global variables in the data section of the object file,
22759 rather than generating them as common blocks.
22760 This has the effect that if the same variable is declared
22761 (without @code{extern}) in two different compilations,
22762 you get a multiple-definition error when you link them.
22763 In this case, you must compile with @option{-fcommon} instead.
22764 Compiling with @option{-fno-common} is useful on targets for which
22765 it provides better performance, or if you wish to verify that the
22766 program will work on other systems that always treat uninitialized
22767 variable declarations this way.
22769 @item -fno-ident
22770 @opindex fno-ident
22771 Ignore the @samp{#ident} directive.
22773 @item -finhibit-size-directive
22774 @opindex finhibit-size-directive
22775 Don't output a @code{.size} assembler directive, or anything else that
22776 would cause trouble if the function is split in the middle, and the
22777 two halves are placed at locations far apart in memory.  This option is
22778 used when compiling @file{crtstuff.c}; you should not need to use it
22779 for anything else.
22781 @item -fverbose-asm
22782 @opindex fverbose-asm
22783 Put extra commentary information in the generated assembly code to
22784 make it more readable.  This option is generally only of use to those
22785 who actually need to read the generated assembly code (perhaps while
22786 debugging the compiler itself).
22788 @option{-fno-verbose-asm}, the default, causes the
22789 extra information to be omitted and is useful when comparing two assembler
22790 files.
22792 @item -frecord-gcc-switches
22793 @opindex frecord-gcc-switches
22794 This switch causes the command line used to invoke the
22795 compiler to be recorded into the object file that is being created.
22796 This switch is only implemented on some targets and the exact format
22797 of the recording is target and binary file format dependent, but it
22798 usually takes the form of a section containing ASCII text.  This
22799 switch is related to the @option{-fverbose-asm} switch, but that
22800 switch only records information in the assembler output file as
22801 comments, so it never reaches the object file.
22802 See also @option{-grecord-gcc-switches} for another
22803 way of storing compiler options into the object file.
22805 @item -fpic
22806 @opindex fpic
22807 @cindex global offset table
22808 @cindex PIC
22809 Generate position-independent code (PIC) suitable for use in a shared
22810 library, if supported for the target machine.  Such code accesses all
22811 constant addresses through a global offset table (GOT)@.  The dynamic
22812 loader resolves the GOT entries when the program starts (the dynamic
22813 loader is not part of GCC; it is part of the operating system).  If
22814 the GOT size for the linked executable exceeds a machine-specific
22815 maximum size, you get an error message from the linker indicating that
22816 @option{-fpic} does not work; in that case, recompile with @option{-fPIC}
22817 instead.  (These maximums are 8k on the SPARC and 32k
22818 on the m68k and RS/6000.  The 386 has no such limit.)
22820 Position-independent code requires special support, and therefore works
22821 only on certain machines.  For the 386, GCC supports PIC for System V
22822 but not for the Sun 386i.  Code generated for the IBM RS/6000 is always
22823 position-independent.
22825 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
22826 are defined to 1.
22828 @item -fPIC
22829 @opindex fPIC
22830 If supported for the target machine, emit position-independent code,
22831 suitable for dynamic linking and avoiding any limit on the size of the
22832 global offset table.  This option makes a difference on the m68k,
22833 PowerPC and SPARC@.
22835 Position-independent code requires special support, and therefore works
22836 only on certain machines.
22838 When this flag is set, the macros @code{__pic__} and @code{__PIC__}
22839 are defined to 2.
22841 @item -fpie
22842 @itemx -fPIE
22843 @opindex fpie
22844 @opindex fPIE
22845 These options are similar to @option{-fpic} and @option{-fPIC}, but
22846 generated position independent code can be only linked into executables.
22847 Usually these options are used when @option{-pie} GCC option is
22848 used during linking.
22850 @option{-fpie} and @option{-fPIE} both define the macros
22851 @code{__pie__} and @code{__PIE__}.  The macros have the value 1
22852 for @option{-fpie} and 2 for @option{-fPIE}.
22854 @item -fno-jump-tables
22855 @opindex fno-jump-tables
22856 Do not use jump tables for switch statements even where it would be
22857 more efficient than other code generation strategies.  This option is
22858 of use in conjunction with @option{-fpic} or @option{-fPIC} for
22859 building code that forms part of a dynamic linker and cannot
22860 reference the address of a jump table.  On some targets, jump tables
22861 do not require a GOT and this option is not needed.
22863 @item -ffixed-@var{reg}
22864 @opindex ffixed
22865 Treat the register named @var{reg} as a fixed register; generated code
22866 should never refer to it (except perhaps as a stack pointer, frame
22867 pointer or in some other fixed role).
22869 @var{reg} must be the name of a register.  The register names accepted
22870 are machine-specific and are defined in the @code{REGISTER_NAMES}
22871 macro in the machine description macro file.
22873 This flag does not have a negative form, because it specifies a
22874 three-way choice.
22876 @item -fcall-used-@var{reg}
22877 @opindex fcall-used
22878 Treat the register named @var{reg} as an allocable register that is
22879 clobbered by function calls.  It may be allocated for temporaries or
22880 variables that do not live across a call.  Functions compiled this way
22881 do not save and restore the register @var{reg}.
22883 It is an error to use this flag with the frame pointer or stack pointer.
22884 Use of this flag for other registers that have fixed pervasive roles in
22885 the machine's execution model produces disastrous results.
22887 This flag does not have a negative form, because it specifies a
22888 three-way choice.
22890 @item -fcall-saved-@var{reg}
22891 @opindex fcall-saved
22892 Treat the register named @var{reg} as an allocable register saved by
22893 functions.  It may be allocated even for temporaries or variables that
22894 live across a call.  Functions compiled this way save and restore
22895 the register @var{reg} if they use it.
22897 It is an error to use this flag with the frame pointer or stack pointer.
22898 Use of this flag for other registers that have fixed pervasive roles in
22899 the machine's execution model produces disastrous results.
22901 A different sort of disaster results from the use of this flag for
22902 a register in which function values may be returned.
22904 This flag does not have a negative form, because it specifies a
22905 three-way choice.
22907 @item -fpack-struct[=@var{n}]
22908 @opindex fpack-struct
22909 Without a value specified, pack all structure members together without
22910 holes.  When a value is specified (which must be a small power of two), pack
22911 structure members according to this value, representing the maximum
22912 alignment (that is, objects with default alignment requirements larger than
22913 this are output potentially unaligned at the next fitting location.
22915 @strong{Warning:} the @option{-fpack-struct} switch causes GCC to generate
22916 code that is not binary compatible with code generated without that switch.
22917 Additionally, it makes the code suboptimal.
22918 Use it to conform to a non-default application binary interface.
22920 @item -finstrument-functions
22921 @opindex finstrument-functions
22922 Generate instrumentation calls for entry and exit to functions.  Just
22923 after function entry and just before function exit, the following
22924 profiling functions are called with the address of the current
22925 function and its call site.  (On some platforms,
22926 @code{__builtin_return_address} does not work beyond the current
22927 function, so the call site information may not be available to the
22928 profiling functions otherwise.)
22930 @smallexample
22931 void __cyg_profile_func_enter (void *this_fn,
22932                                void *call_site);
22933 void __cyg_profile_func_exit  (void *this_fn,
22934                                void *call_site);
22935 @end smallexample
22937 The first argument is the address of the start of the current function,
22938 which may be looked up exactly in the symbol table.
22940 This instrumentation is also done for functions expanded inline in other
22941 functions.  The profiling calls indicate where, conceptually, the
22942 inline function is entered and exited.  This means that addressable
22943 versions of such functions must be available.  If all your uses of a
22944 function are expanded inline, this may mean an additional expansion of
22945 code size.  If you use @samp{extern inline} in your C code, an
22946 addressable version of such functions must be provided.  (This is
22947 normally the case anyway, but if you get lucky and the optimizer always
22948 expands the functions inline, you might have gotten away without
22949 providing static copies.)
22951 A function may be given the attribute @code{no_instrument_function}, in
22952 which case this instrumentation is not done.  This can be used, for
22953 example, for the profiling functions listed above, high-priority
22954 interrupt routines, and any functions from which the profiling functions
22955 cannot safely be called (perhaps signal handlers, if the profiling
22956 routines generate output or allocate memory).
22958 @item -finstrument-functions-exclude-file-list=@var{file},@var{file},@dots{}
22959 @opindex finstrument-functions-exclude-file-list
22961 Set the list of functions that are excluded from instrumentation (see
22962 the description of @code{-finstrument-functions}).  If the file that
22963 contains a function definition matches with one of @var{file}, then
22964 that function is not instrumented.  The match is done on substrings:
22965 if the @var{file} parameter is a substring of the file name, it is
22966 considered to be a match.
22968 For example:
22970 @smallexample
22971 -finstrument-functions-exclude-file-list=/bits/stl,include/sys
22972 @end smallexample
22974 @noindent
22975 excludes any inline function defined in files whose pathnames
22976 contain @code{/bits/stl} or @code{include/sys}.
22978 If, for some reason, you want to include letter @code{','} in one of
22979 @var{sym}, write @code{'\,'}. For example,
22980 @code{-finstrument-functions-exclude-file-list='\,\,tmp'}
22981 (note the single quote surrounding the option).
22983 @item -finstrument-functions-exclude-function-list=@var{sym},@var{sym},@dots{}
22984 @opindex finstrument-functions-exclude-function-list
22986 This is similar to @code{-finstrument-functions-exclude-file-list},
22987 but this option sets the list of function names to be excluded from
22988 instrumentation.  The function name to be matched is its user-visible
22989 name, such as @code{vector<int> blah(const vector<int> &)}, not the
22990 internal mangled name (e.g., @code{_Z4blahRSt6vectorIiSaIiEE}).  The
22991 match is done on substrings: if the @var{sym} parameter is a substring
22992 of the function name, it is considered to be a match.  For C99 and C++
22993 extended identifiers, the function name must be given in UTF-8, not
22994 using universal character names.
22996 @item -fstack-check
22997 @opindex fstack-check
22998 Generate code to verify that you do not go beyond the boundary of the
22999 stack.  You should specify this flag if you are running in an
23000 environment with multiple threads, but you only rarely need to specify it in
23001 a single-threaded environment since stack overflow is automatically
23002 detected on nearly all systems if there is only one stack.
23004 Note that this switch does not actually cause checking to be done; the
23005 operating system or the language runtime must do that.  The switch causes
23006 generation of code to ensure that they see the stack being extended.
23008 You can additionally specify a string parameter: @code{no} means no
23009 checking, @code{generic} means force the use of old-style checking,
23010 @code{specific} means use the best checking method and is equivalent
23011 to bare @option{-fstack-check}.
23013 Old-style checking is a generic mechanism that requires no specific
23014 target support in the compiler but comes with the following drawbacks:
23016 @enumerate
23017 @item
23018 Modified allocation strategy for large objects: they are always
23019 allocated dynamically if their size exceeds a fixed threshold.
23021 @item
23022 Fixed limit on the size of the static frame of functions: when it is
23023 topped by a particular function, stack checking is not reliable and
23024 a warning is issued by the compiler.
23026 @item
23027 Inefficiency: because of both the modified allocation strategy and the
23028 generic implementation, code performance is hampered.
23029 @end enumerate
23031 Note that old-style stack checking is also the fallback method for
23032 @code{specific} if no target support has been added in the compiler.
23034 @item -fstack-limit-register=@var{reg}
23035 @itemx -fstack-limit-symbol=@var{sym}
23036 @itemx -fno-stack-limit
23037 @opindex fstack-limit-register
23038 @opindex fstack-limit-symbol
23039 @opindex fno-stack-limit
23040 Generate code to ensure that the stack does not grow beyond a certain value,
23041 either the value of a register or the address of a symbol.  If a larger
23042 stack is required, a signal is raised at run time.  For most targets,
23043 the signal is raised before the stack overruns the boundary, so
23044 it is possible to catch the signal without taking special precautions.
23046 For instance, if the stack starts at absolute address @samp{0x80000000}
23047 and grows downwards, you can use the flags
23048 @option{-fstack-limit-symbol=__stack_limit} and
23049 @option{-Wl,--defsym,__stack_limit=0x7ffe0000} to enforce a stack limit
23050 of 128KB@.  Note that this may only work with the GNU linker.
23052 @item -fsplit-stack
23053 @opindex fsplit-stack
23054 Generate code to automatically split the stack before it overflows.
23055 The resulting program has a discontiguous stack which can only
23056 overflow if the program is unable to allocate any more memory.  This
23057 is most useful when running threaded programs, as it is no longer
23058 necessary to calculate a good stack size to use for each thread.  This
23059 is currently only implemented for the i386 and x86_64 back ends running
23060 GNU/Linux.
23062 When code compiled with @option{-fsplit-stack} calls code compiled
23063 without @option{-fsplit-stack}, there may not be much stack space
23064 available for the latter code to run.  If compiling all code,
23065 including library code, with @option{-fsplit-stack} is not an option,
23066 then the linker can fix up these calls so that the code compiled
23067 without @option{-fsplit-stack} always has a large stack.  Support for
23068 this is implemented in the gold linker in GNU binutils release 2.21
23069 and later.
23071 @item -fleading-underscore
23072 @opindex fleading-underscore
23073 This option and its counterpart, @option{-fno-leading-underscore}, forcibly
23074 change the way C symbols are represented in the object file.  One use
23075 is to help link with legacy assembly code.
23077 @strong{Warning:} the @option{-fleading-underscore} switch causes GCC to
23078 generate code that is not binary compatible with code generated without that
23079 switch.  Use it to conform to a non-default application binary interface.
23080 Not all targets provide complete support for this switch.
23082 @item -ftls-model=@var{model}
23083 @opindex ftls-model
23084 Alter the thread-local storage model to be used (@pxref{Thread-Local}).
23085 The @var{model} argument should be one of @code{global-dynamic},
23086 @code{local-dynamic}, @code{initial-exec} or @code{local-exec}.
23087 Note that the choice is subject to optimization: the compiler may use
23088 a more efficient model for symbols not visible outside of the translation
23089 unit, or if @option{-fpic} is not given on the command line.
23091 The default without @option{-fpic} is @code{initial-exec}; with
23092 @option{-fpic} the default is @code{global-dynamic}.
23094 @item -fvisibility=@var{default|internal|hidden|protected}
23095 @opindex fvisibility
23096 Set the default ELF image symbol visibility to the specified option---all
23097 symbols are marked with this unless overridden within the code.
23098 Using this feature can very substantially improve linking and
23099 load times of shared object libraries, produce more optimized
23100 code, provide near-perfect API export and prevent symbol clashes.
23101 It is @strong{strongly} recommended that you use this in any shared objects
23102 you distribute.
23104 Despite the nomenclature, @code{default} always means public; i.e.,
23105 available to be linked against from outside the shared object.
23106 @code{protected} and @code{internal} are pretty useless in real-world
23107 usage so the only other commonly used option is @code{hidden}.
23108 The default if @option{-fvisibility} isn't specified is
23109 @code{default}, i.e., make every
23110 symbol public---this causes the same behavior as previous versions of
23111 GCC@.
23113 A good explanation of the benefits offered by ensuring ELF
23114 symbols have the correct visibility is given by ``How To Write
23115 Shared Libraries'' by Ulrich Drepper (which can be found at
23116 @w{@uref{http://people.redhat.com/~drepper/}})---however a superior
23117 solution made possible by this option to marking things hidden when
23118 the default is public is to make the default hidden and mark things
23119 public.  This is the norm with DLLs on Windows and with @option{-fvisibility=hidden}
23120 and @code{__attribute__ ((visibility("default")))} instead of
23121 @code{__declspec(dllexport)} you get almost identical semantics with
23122 identical syntax.  This is a great boon to those working with
23123 cross-platform projects.
23125 For those adding visibility support to existing code, you may find
23126 @samp{#pragma GCC visibility} of use.  This works by you enclosing
23127 the declarations you wish to set visibility for with (for example)
23128 @samp{#pragma GCC visibility push(hidden)} and
23129 @samp{#pragma GCC visibility pop}.
23130 Bear in mind that symbol visibility should be viewed @strong{as
23131 part of the API interface contract} and thus all new code should
23132 always specify visibility when it is not the default; i.e., declarations
23133 only for use within the local DSO should @strong{always} be marked explicitly
23134 as hidden as so to avoid PLT indirection overheads---making this
23135 abundantly clear also aids readability and self-documentation of the code.
23136 Note that due to ISO C++ specification requirements, @code{operator new} and
23137 @code{operator delete} must always be of default visibility.
23139 Be aware that headers from outside your project, in particular system
23140 headers and headers from any other library you use, may not be
23141 expecting to be compiled with visibility other than the default.  You
23142 may need to explicitly say @samp{#pragma GCC visibility push(default)}
23143 before including any such headers.
23145 @samp{extern} declarations are not affected by @option{-fvisibility}, so
23146 a lot of code can be recompiled with @option{-fvisibility=hidden} with
23147 no modifications.  However, this means that calls to @code{extern}
23148 functions with no explicit visibility use the PLT, so it is more
23149 effective to use @code{__attribute ((visibility))} and/or
23150 @code{#pragma GCC visibility} to tell the compiler which @code{extern}
23151 declarations should be treated as hidden.
23153 Note that @option{-fvisibility} does affect C++ vague linkage
23154 entities. This means that, for instance, an exception class that is
23155 be thrown between DSOs must be explicitly marked with default
23156 visibility so that the @samp{type_info} nodes are unified between
23157 the DSOs.
23159 An overview of these techniques, their benefits and how to use them
23160 is at @uref{http://gcc.gnu.org/@/wiki/@/Visibility}.
23162 @item -fstrict-volatile-bitfields
23163 @opindex fstrict-volatile-bitfields
23164 This option should be used if accesses to volatile bit-fields (or other
23165 structure fields, although the compiler usually honors those types
23166 anyway) should use a single access of the width of the
23167 field's type, aligned to a natural alignment if possible.  For
23168 example, targets with memory-mapped peripheral registers might require
23169 all such accesses to be 16 bits wide; with this flag you can
23170 declare all peripheral bit-fields as @code{unsigned short} (assuming short
23171 is 16 bits on these targets) to force GCC to use 16-bit accesses
23172 instead of, perhaps, a more efficient 32-bit access.
23174 If this option is disabled, the compiler uses the most efficient
23175 instruction.  In the previous example, that might be a 32-bit load
23176 instruction, even though that accesses bytes that do not contain
23177 any portion of the bit-field, or memory-mapped registers unrelated to
23178 the one being updated.
23180 In some cases, such as when the @code{packed} attribute is applied to a 
23181 structure field, it may not be possible to access the field with a single
23182 read or write that is correctly aligned for the target machine.  In this
23183 case GCC falls back to generating multiple accesses rather than code that 
23184 will fault or truncate the result at run time.
23186 Note:  Due to restrictions of the C/C++11 memory model, write accesses are
23187 not allowed to touch non bit-field members.  It is therefore recommended
23188 to define all bits of the field's type as bit-field members.
23190 The default value of this option is determined by the application binary
23191 interface for the target processor.
23193 @item -fsync-libcalls
23194 @opindex fsync-libcalls
23195 This option controls whether any out-of-line instance of the @code{__sync}
23196 family of functions may be used to implement the C++11 @code{__atomic}
23197 family of functions.
23199 The default value of this option is enabled, thus the only useful form
23200 of the option is @option{-fno-sync-libcalls}.  This option is used in
23201 the implementation of the @file{libatomic} runtime library.
23203 @end table
23205 @c man end
23207 @node Environment Variables
23208 @section Environment Variables Affecting GCC
23209 @cindex environment variables
23211 @c man begin ENVIRONMENT
23212 This section describes several environment variables that affect how GCC
23213 operates.  Some of them work by specifying directories or prefixes to use
23214 when searching for various kinds of files.  Some are used to specify other
23215 aspects of the compilation environment.
23217 Note that you can also specify places to search using options such as
23218 @option{-B}, @option{-I} and @option{-L} (@pxref{Directory Options}).  These
23219 take precedence over places specified using environment variables, which
23220 in turn take precedence over those specified by the configuration of GCC@.
23221 @xref{Driver,, Controlling the Compilation Driver @file{gcc}, gccint,
23222 GNU Compiler Collection (GCC) Internals}.
23224 @table @env
23225 @item LANG
23226 @itemx LC_CTYPE
23227 @c @itemx LC_COLLATE
23228 @itemx LC_MESSAGES
23229 @c @itemx LC_MONETARY
23230 @c @itemx LC_NUMERIC
23231 @c @itemx LC_TIME
23232 @itemx LC_ALL
23233 @findex LANG
23234 @findex LC_CTYPE
23235 @c @findex LC_COLLATE
23236 @findex LC_MESSAGES
23237 @c @findex LC_MONETARY
23238 @c @findex LC_NUMERIC
23239 @c @findex LC_TIME
23240 @findex LC_ALL
23241 @cindex locale
23242 These environment variables control the way that GCC uses
23243 localization information which allows GCC to work with different
23244 national conventions.  GCC inspects the locale categories
23245 @env{LC_CTYPE} and @env{LC_MESSAGES} if it has been configured to do
23246 so.  These locale categories can be set to any value supported by your
23247 installation.  A typical value is @samp{en_GB.UTF-8} for English in the United
23248 Kingdom encoded in UTF-8.
23250 The @env{LC_CTYPE} environment variable specifies character
23251 classification.  GCC uses it to determine the character boundaries in
23252 a string; this is needed for some multibyte encodings that contain quote
23253 and escape characters that are otherwise interpreted as a string
23254 end or escape.
23256 The @env{LC_MESSAGES} environment variable specifies the language to
23257 use in diagnostic messages.
23259 If the @env{LC_ALL} environment variable is set, it overrides the value
23260 of @env{LC_CTYPE} and @env{LC_MESSAGES}; otherwise, @env{LC_CTYPE}
23261 and @env{LC_MESSAGES} default to the value of the @env{LANG}
23262 environment variable.  If none of these variables are set, GCC
23263 defaults to traditional C English behavior.
23265 @item TMPDIR
23266 @findex TMPDIR
23267 If @env{TMPDIR} is set, it specifies the directory to use for temporary
23268 files.  GCC uses temporary files to hold the output of one stage of
23269 compilation which is to be used as input to the next stage: for example,
23270 the output of the preprocessor, which is the input to the compiler
23271 proper.
23273 @item GCC_COMPARE_DEBUG
23274 @findex GCC_COMPARE_DEBUG
23275 Setting @env{GCC_COMPARE_DEBUG} is nearly equivalent to passing
23276 @option{-fcompare-debug} to the compiler driver.  See the documentation
23277 of this option for more details.
23279 @item GCC_EXEC_PREFIX
23280 @findex GCC_EXEC_PREFIX
23281 If @env{GCC_EXEC_PREFIX} is set, it specifies a prefix to use in the
23282 names of the subprograms executed by the compiler.  No slash is added
23283 when this prefix is combined with the name of a subprogram, but you can
23284 specify a prefix that ends with a slash if you wish.
23286 If @env{GCC_EXEC_PREFIX} is not set, GCC attempts to figure out
23287 an appropriate prefix to use based on the pathname it is invoked with.
23289 If GCC cannot find the subprogram using the specified prefix, it
23290 tries looking in the usual places for the subprogram.
23292 The default value of @env{GCC_EXEC_PREFIX} is
23293 @file{@var{prefix}/lib/gcc/} where @var{prefix} is the prefix to
23294 the installed compiler. In many cases @var{prefix} is the value
23295 of @code{prefix} when you ran the @file{configure} script.
23297 Other prefixes specified with @option{-B} take precedence over this prefix.
23299 This prefix is also used for finding files such as @file{crt0.o} that are
23300 used for linking.
23302 In addition, the prefix is used in an unusual way in finding the
23303 directories to search for header files.  For each of the standard
23304 directories whose name normally begins with @samp{/usr/local/lib/gcc}
23305 (more precisely, with the value of @env{GCC_INCLUDE_DIR}), GCC tries
23306 replacing that beginning with the specified prefix to produce an
23307 alternate directory name.  Thus, with @option{-Bfoo/}, GCC searches
23308 @file{foo/bar} just before it searches the standard directory 
23309 @file{/usr/local/lib/bar}.
23310 If a standard directory begins with the configured
23311 @var{prefix} then the value of @var{prefix} is replaced by
23312 @env{GCC_EXEC_PREFIX} when looking for header files.
23314 @item COMPILER_PATH
23315 @findex COMPILER_PATH
23316 The value of @env{COMPILER_PATH} is a colon-separated list of
23317 directories, much like @env{PATH}.  GCC tries the directories thus
23318 specified when searching for subprograms, if it can't find the
23319 subprograms using @env{GCC_EXEC_PREFIX}.
23321 @item LIBRARY_PATH
23322 @findex LIBRARY_PATH
23323 The value of @env{LIBRARY_PATH} is a colon-separated list of
23324 directories, much like @env{PATH}.  When configured as a native compiler,
23325 GCC tries the directories thus specified when searching for special
23326 linker files, if it can't find them using @env{GCC_EXEC_PREFIX}.  Linking
23327 using GCC also uses these directories when searching for ordinary
23328 libraries for the @option{-l} option (but directories specified with
23329 @option{-L} come first).
23331 @item LANG
23332 @findex LANG
23333 @cindex locale definition
23334 This variable is used to pass locale information to the compiler.  One way in
23335 which this information is used is to determine the character set to be used
23336 when character literals, string literals and comments are parsed in C and C++.
23337 When the compiler is configured to allow multibyte characters,
23338 the following values for @env{LANG} are recognized:
23340 @table @samp
23341 @item C-JIS
23342 Recognize JIS characters.
23343 @item C-SJIS
23344 Recognize SJIS characters.
23345 @item C-EUCJP
23346 Recognize EUCJP characters.
23347 @end table
23349 If @env{LANG} is not defined, or if it has some other value, then the
23350 compiler uses @code{mblen} and @code{mbtowc} as defined by the default locale to
23351 recognize and translate multibyte characters.
23352 @end table
23354 @noindent
23355 Some additional environment variables affect the behavior of the
23356 preprocessor.
23358 @include cppenv.texi
23360 @c man end
23362 @node Precompiled Headers
23363 @section Using Precompiled Headers
23364 @cindex precompiled headers
23365 @cindex speed of compilation
23367 Often large projects have many header files that are included in every
23368 source file.  The time the compiler takes to process these header files
23369 over and over again can account for nearly all of the time required to
23370 build the project.  To make builds faster, GCC allows you to
23371 @dfn{precompile} a header file.
23373 To create a precompiled header file, simply compile it as you would any
23374 other file, if necessary using the @option{-x} option to make the driver
23375 treat it as a C or C++ header file.  You may want to use a
23376 tool like @command{make} to keep the precompiled header up-to-date when
23377 the headers it contains change.
23379 A precompiled header file is searched for when @code{#include} is
23380 seen in the compilation.  As it searches for the included file
23381 (@pxref{Search Path,,Search Path,cpp,The C Preprocessor}) the
23382 compiler looks for a precompiled header in each directory just before it
23383 looks for the include file in that directory.  The name searched for is
23384 the name specified in the @code{#include} with @samp{.gch} appended.  If
23385 the precompiled header file can't be used, it is ignored.
23387 For instance, if you have @code{#include "all.h"}, and you have
23388 @file{all.h.gch} in the same directory as @file{all.h}, then the
23389 precompiled header file is used if possible, and the original
23390 header is used otherwise.
23392 Alternatively, you might decide to put the precompiled header file in a
23393 directory and use @option{-I} to ensure that directory is searched
23394 before (or instead of) the directory containing the original header.
23395 Then, if you want to check that the precompiled header file is always
23396 used, you can put a file of the same name as the original header in this
23397 directory containing an @code{#error} command.
23399 This also works with @option{-include}.  So yet another way to use
23400 precompiled headers, good for projects not designed with precompiled
23401 header files in mind, is to simply take most of the header files used by
23402 a project, include them from another header file, precompile that header
23403 file, and @option{-include} the precompiled header.  If the header files
23404 have guards against multiple inclusion, they are skipped because
23405 they've already been included (in the precompiled header).
23407 If you need to precompile the same header file for different
23408 languages, targets, or compiler options, you can instead make a
23409 @emph{directory} named like @file{all.h.gch}, and put each precompiled
23410 header in the directory, perhaps using @option{-o}.  It doesn't matter
23411 what you call the files in the directory; every precompiled header in
23412 the directory is considered.  The first precompiled header
23413 encountered in the directory that is valid for this compilation is
23414 used; they're searched in no particular order.
23416 There are many other possibilities, limited only by your imagination,
23417 good sense, and the constraints of your build system.
23419 A precompiled header file can be used only when these conditions apply:
23421 @itemize
23422 @item
23423 Only one precompiled header can be used in a particular compilation.
23425 @item
23426 A precompiled header can't be used once the first C token is seen.  You
23427 can have preprocessor directives before a precompiled header; you cannot
23428 include a precompiled header from inside another header.
23430 @item
23431 The precompiled header file must be produced for the same language as
23432 the current compilation.  You can't use a C precompiled header for a C++
23433 compilation.
23435 @item
23436 The precompiled header file must have been produced by the same compiler
23437 binary as the current compilation is using.
23439 @item
23440 Any macros defined before the precompiled header is included must
23441 either be defined in the same way as when the precompiled header was
23442 generated, or must not affect the precompiled header, which usually
23443 means that they don't appear in the precompiled header at all.
23445 The @option{-D} option is one way to define a macro before a
23446 precompiled header is included; using a @code{#define} can also do it.
23447 There are also some options that define macros implicitly, like
23448 @option{-O} and @option{-Wdeprecated}; the same rule applies to macros
23449 defined this way.
23451 @item If debugging information is output when using the precompiled
23452 header, using @option{-g} or similar, the same kind of debugging information
23453 must have been output when building the precompiled header.  However,
23454 a precompiled header built using @option{-g} can be used in a compilation
23455 when no debugging information is being output.
23457 @item The same @option{-m} options must generally be used when building
23458 and using the precompiled header.  @xref{Submodel Options},
23459 for any cases where this rule is relaxed.
23461 @item Each of the following options must be the same when building and using
23462 the precompiled header:
23464 @gccoptlist{-fexceptions}
23466 @item
23467 Some other command-line options starting with @option{-f},
23468 @option{-p}, or @option{-O} must be defined in the same way as when
23469 the precompiled header was generated.  At present, it's not clear
23470 which options are safe to change and which are not; the safest choice
23471 is to use exactly the same options when generating and using the
23472 precompiled header.  The following are known to be safe:
23474 @gccoptlist{-fmessage-length=  -fpreprocessed  -fsched-interblock @gol
23475 -fsched-spec  -fsched-spec-load  -fsched-spec-load-dangerous @gol
23476 -fsched-verbose=@var{number}  -fschedule-insns  -fvisibility= @gol
23477 -pedantic-errors}
23479 @end itemize
23481 For all of these except the last, the compiler automatically
23482 ignores the precompiled header if the conditions aren't met.  If you
23483 find an option combination that doesn't work and doesn't cause the
23484 precompiled header to be ignored, please consider filing a bug report,
23485 see @ref{Bugs}.
23487 If you do use differing options when generating and using the
23488 precompiled header, the actual behavior is a mixture of the
23489 behavior for the options.  For instance, if you use @option{-g} to
23490 generate the precompiled header but not when using it, you may or may
23491 not get debugging information for routines in the precompiled header.