xref: /netbsd-src/external/gpl3/gcc/dist/gcc/doc/sourcebuild.texi (revision bdc22b2e01993381dcefeff2bc9b56ca75a4235c)
1@c Copyright (C) 2002-2016 Free Software Foundation, Inc.
2@c This is part of the GCC manual.
3@c For copying conditions, see the file gcc.texi.
4
5@node Source Tree
6@chapter Source Tree Structure and Build System
7
8This chapter describes the structure of the GCC source tree, and how
9GCC is built.  The user documentation for building and installing GCC
10is in a separate manual (@uref{http://gcc.gnu.org/install/}), with
11which it is presumed that you are familiar.
12
13@menu
14* Configure Terms:: Configuration terminology and history.
15* Top Level::       The top level source directory.
16* gcc Directory::   The @file{gcc} subdirectory.
17@end menu
18
19@include configterms.texi
20
21@node Top Level
22@section Top Level Source Directory
23
24The top level source directory in a GCC distribution contains several
25files and directories that are shared with other software
26distributions such as that of GNU Binutils.  It also contains several
27subdirectories that contain parts of GCC and its runtime libraries:
28
29@table @file
30@item boehm-gc
31The Boehm conservative garbage collector, used as part of the Java
32runtime library.
33
34@item config
35Autoconf macros and Makefile fragments used throughout the tree.
36
37@item contrib
38Contributed scripts that may be found useful in conjunction with GCC@.
39One of these, @file{contrib/texi2pod.pl}, is used to generate man
40pages from Texinfo manuals as part of the GCC build process.
41
42@item fixincludes
43The support for fixing system headers to work with GCC@.  See
44@file{fixincludes/README} for more information.  The headers fixed by
45this mechanism are installed in @file{@var{libsubdir}/include-fixed}.
46Along with those headers, @file{README-fixinc} is also installed, as
47@file{@var{libsubdir}/include-fixed/README}.
48
49@item gcc
50The main sources of GCC itself (except for runtime libraries),
51including optimizers, support for different target architectures,
52language front ends, and testsuites.  @xref{gcc Directory, , The
53@file{gcc} Subdirectory}, for details.
54
55@item gnattools
56Support tools for GNAT.
57
58@item include
59Headers for the @code{libiberty} library.
60
61@item intl
62GNU @code{libintl}, from GNU @code{gettext}, for systems which do not
63include it in @code{libc}.
64
65@item libada
66The Ada runtime library.
67
68@item libatomic
69The runtime support library for atomic operations (e.g. for @code{__sync}
70and @code{__atomic}).
71
72@item libcpp
73The C preprocessor library.
74
75@item libdecnumber
76The Decimal Float support library.
77
78@item libffi
79The @code{libffi} library, used as part of the Java runtime library.
80
81@item libgcc
82The GCC runtime library.
83
84@item libgfortran
85The Fortran runtime library.
86
87@item libgo
88The Go runtime library.  The bulk of this library is mirrored from the
89@uref{http://code.google.com/@/p/@/go/, master Go repository}.
90
91@item libgomp
92The GNU Offloading and Multi Processing Runtime Library.
93
94@item libiberty
95The @code{libiberty} library, used for portability and for some
96generally useful data structures and algorithms.  @xref{Top, ,
97Introduction, libiberty, @sc{gnu} libiberty}, for more information
98about this library.
99
100@item libitm
101The runtime support library for transactional memory.
102
103@item libjava
104The Java runtime library.
105
106@item libobjc
107The Objective-C and Objective-C++ runtime library.
108
109@item libquadmath
110The runtime support library for quad-precision math operations.
111
112@item libssp
113The Stack protector runtime library.
114
115@item libstdc++-v3
116The C++ runtime library.
117
118@item lto-plugin
119Plugin used by the linker if link-time optimizations are enabled.
120
121@item maintainer-scripts
122Scripts used by the @code{gccadmin} account on @code{gcc.gnu.org}.
123
124@item zlib
125The @code{zlib} compression library, used by the Java front end, as
126part of the Java runtime library, and for compressing and uncompressing
127GCC's intermediate language in LTO object files.
128@end table
129
130The build system in the top level directory, including how recursion
131into subdirectories works and how building runtime libraries for
132multilibs is handled, is documented in a separate manual, included
133with GNU Binutils.  @xref{Top, , GNU configure and build system,
134configure, The GNU configure and build system}, for details.
135
136@node gcc Directory
137@section The @file{gcc} Subdirectory
138
139The @file{gcc} directory contains many files that are part of the C
140sources of GCC, other files used as part of the configuration and
141build process, and subdirectories including documentation and a
142testsuite.  The files that are sources of GCC are documented in a
143separate chapter.  @xref{Passes, , Passes and Files of the Compiler}.
144
145@menu
146* Subdirectories:: Subdirectories of @file{gcc}.
147* Configuration::  The configuration process, and the files it uses.
148* Build::          The build system in the @file{gcc} directory.
149* Makefile::       Targets in @file{gcc/Makefile}.
150* Library Files::  Library source files and headers under @file{gcc/}.
151* Headers::        Headers installed by GCC.
152* Documentation::  Building documentation in GCC.
153* Front End::      Anatomy of a language front end.
154* Back End::       Anatomy of a target back end.
155@end menu
156
157@node Subdirectories
158@subsection Subdirectories of @file{gcc}
159
160The @file{gcc} directory contains the following subdirectories:
161
162@table @file
163@item @var{language}
164Subdirectories for various languages.  Directories containing a file
165@file{config-lang.in} are language subdirectories.  The contents of
166the subdirectories @file{c} (for C), @file{cp} (for C++),
167@file{objc} (for Objective-C), @file{objcp} (for Objective-C++),
168and @file{lto} (for LTO) are documented in this
169manual (@pxref{Passes, , Passes and Files of the Compiler});
170those for other languages are not.  @xref{Front End, ,
171Anatomy of a Language Front End}, for details of the files in these
172directories.
173
174@item common
175Source files shared between the compiler drivers (such as
176@command{gcc}) and the compilers proper (such as @file{cc1}).  If an
177architecture defines target hooks shared between those places, it also
178has a subdirectory in @file{common/config}.  @xref{Target Structure}.
179
180@item config
181Configuration files for supported architectures and operating
182systems.  @xref{Back End, , Anatomy of a Target Back End}, for
183details of the files in this directory.
184
185@item doc
186Texinfo documentation for GCC, together with automatically generated
187man pages and support for converting the installation manual to
188HTML@.  @xref{Documentation}.
189
190@item ginclude
191System headers installed by GCC, mainly those required by the C
192standard of freestanding implementations.  @xref{Headers, , Headers
193Installed by GCC}, for details of when these and other headers are
194installed.
195
196@item po
197Message catalogs with translations of messages produced by GCC into
198various languages, @file{@var{language}.po}.  This directory also
199contains @file{gcc.pot}, the template for these message catalogues,
200@file{exgettext}, a wrapper around @command{gettext} to extract the
201messages from the GCC sources and create @file{gcc.pot}, which is run
202by @samp{make gcc.pot}, and @file{EXCLUDES}, a list of files from
203which messages should not be extracted.
204
205@item testsuite
206The GCC testsuites (except for those for runtime libraries).
207@xref{Testsuites}.
208@end table
209
210@node Configuration
211@subsection Configuration in the @file{gcc} Directory
212
213The @file{gcc} directory is configured with an Autoconf-generated
214script @file{configure}.  The @file{configure} script is generated
215from @file{configure.ac} and @file{aclocal.m4}.  From the files
216@file{configure.ac} and @file{acconfig.h}, Autoheader generates the
217file @file{config.in}.  The file @file{cstamp-h.in} is used as a
218timestamp.
219
220@menu
221* Config Fragments::     Scripts used by @file{configure}.
222* System Config::        The @file{config.build}, @file{config.host}, and
223                         @file{config.gcc} files.
224* Configuration Files::  Files created by running @file{configure}.
225@end menu
226
227@node Config Fragments
228@subsubsection Scripts Used by @file{configure}
229
230@file{configure} uses some other scripts to help in its work:
231
232@itemize @bullet
233@item The standard GNU @file{config.sub} and @file{config.guess}
234files, kept in the top level directory, are used.
235
236@item The file @file{config.gcc} is used to handle configuration
237specific to the particular target machine.  The file
238@file{config.build} is used to handle configuration specific to the
239particular build machine.  The file @file{config.host} is used to handle
240configuration specific to the particular host machine.  (In general,
241these should only be used for features that cannot reasonably be tested in
242Autoconf feature tests.)
243@xref{System Config, , The @file{config.build}; @file{config.host};
244and @file{config.gcc} Files}, for details of the contents of these files.
245
246@item Each language subdirectory has a file
247@file{@var{language}/config-lang.in} that is used for
248front-end-specific configuration.  @xref{Front End Config, , The Front
249End @file{config-lang.in} File}, for details of this file.
250
251@item A helper script @file{configure.frag} is used as part of
252creating the output of @file{configure}.
253@end itemize
254
255@node System Config
256@subsubsection The @file{config.build}; @file{config.host}; and @file{config.gcc} Files
257
258The @file{config.build} file contains specific rules for particular systems
259which GCC is built on.  This should be used as rarely as possible, as the
260behavior of the build system can always be detected by autoconf.
261
262The @file{config.host} file contains specific rules for particular systems
263which GCC will run on.  This is rarely needed.
264
265The @file{config.gcc} file contains specific rules for particular systems
266which GCC will generate code for.  This is usually needed.
267
268Each file has a list of the shell variables it sets, with descriptions, at the
269top of the file.
270
271FIXME: document the contents of these files, and what variables should
272be set to control build, host and target configuration.
273
274@include configfiles.texi
275
276@node Build
277@subsection Build System in the @file{gcc} Directory
278
279FIXME: describe the build system, including what is built in what
280stages.  Also list the various source files that are used in the build
281process but aren't source files of GCC itself and so aren't documented
282below (@pxref{Passes}).
283
284@include makefile.texi
285
286@node Library Files
287@subsection Library Source Files and Headers under the @file{gcc} Directory
288
289FIXME: list here, with explanation, all the C source files and headers
290under the @file{gcc} directory that aren't built into the GCC
291executable but rather are part of runtime libraries and object files,
292such as @file{crtstuff.c} and @file{unwind-dw2.c}.  @xref{Headers, ,
293Headers Installed by GCC}, for more information about the
294@file{ginclude} directory.
295
296@node Headers
297@subsection Headers Installed by GCC
298
299In general, GCC expects the system C library to provide most of the
300headers to be used with it.  However, GCC will fix those headers if
301necessary to make them work with GCC, and will install some headers
302required of freestanding implementations.  These headers are installed
303in @file{@var{libsubdir}/include}.  Headers for non-C runtime
304libraries are also installed by GCC; these are not documented here.
305(FIXME: document them somewhere.)
306
307Several of the headers GCC installs are in the @file{ginclude}
308directory.  These headers, @file{iso646.h},
309@file{stdarg.h}, @file{stdbool.h}, and @file{stddef.h},
310are installed in @file{@var{libsubdir}/include},
311unless the target Makefile fragment (@pxref{Target Fragment})
312overrides this by setting @code{USER_H}.
313
314In addition to these headers and those generated by fixing system
315headers to work with GCC, some other headers may also be installed in
316@file{@var{libsubdir}/include}.  @file{config.gcc} may set
317@code{extra_headers}; this specifies additional headers under
318@file{config} to be installed on some systems.
319
320GCC installs its own version of @code{<float.h>}, from @file{ginclude/float.h}.
321This is done to cope with command-line options that change the
322representation of floating point numbers.
323
324GCC also installs its own version of @code{<limits.h>}; this is generated
325from @file{glimits.h}, together with @file{limitx.h} and
326@file{limity.h} if the system also has its own version of
327@code{<limits.h>}.  (GCC provides its own header because it is
328required of ISO C freestanding implementations, but needs to include
329the system header from its own header as well because other standards
330such as POSIX specify additional values to be defined in
331@code{<limits.h>}.)  The system's @code{<limits.h>} header is used via
332@file{@var{libsubdir}/include/syslimits.h}, which is copied from
333@file{gsyslimits.h} if it does not need fixing to work with GCC; if it
334needs fixing, @file{syslimits.h} is the fixed copy.
335
336GCC can also install @code{<tgmath.h>}.  It will do this when
337@file{config.gcc} sets @code{use_gcc_tgmath} to @code{yes}.
338
339@node Documentation
340@subsection Building Documentation
341
342The main GCC documentation is in the form of manuals in Texinfo
343format.  These are installed in Info format; DVI versions may be
344generated by @samp{make dvi}, PDF versions by @samp{make pdf}, and
345HTML versions by @samp{make html}.  In addition, some man pages are
346generated from the Texinfo manuals, there are some other text files
347with miscellaneous documentation, and runtime libraries have their own
348documentation outside the @file{gcc} directory.  FIXME: document the
349documentation for runtime libraries somewhere.
350
351@menu
352* Texinfo Manuals::      GCC manuals in Texinfo format.
353* Man Page Generation::  Generating man pages from Texinfo manuals.
354* Miscellaneous Docs::   Miscellaneous text files with documentation.
355@end menu
356
357@node Texinfo Manuals
358@subsubsection Texinfo Manuals
359
360The manuals for GCC as a whole, and the C and C++ front ends, are in
361files @file{doc/*.texi}.  Other front ends have their own manuals in
362files @file{@var{language}/*.texi}.  Common files
363@file{doc/include/*.texi} are provided which may be included in
364multiple manuals; the following files are in @file{doc/include}:
365
366@table @file
367@item fdl.texi
368The GNU Free Documentation License.
369@item funding.texi
370The section ``Funding Free Software''.
371@item gcc-common.texi
372Common definitions for manuals.
373@item gpl_v3.texi
374The GNU General Public License.
375@item texinfo.tex
376A copy of @file{texinfo.tex} known to work with the GCC manuals.
377@end table
378
379DVI-formatted manuals are generated by @samp{make dvi}, which uses
380@command{texi2dvi} (via the Makefile macro @code{$(TEXI2DVI)}).
381PDF-formatted manuals are generated by @samp{make pdf}, which uses
382@command{texi2pdf} (via the Makefile macro @code{$(TEXI2PDF)}).  HTML
383formatted manuals are generated by @samp{make html}.  Info
384manuals are generated by @samp{make info} (which is run as part of
385a bootstrap); this generates the manuals in the source directory,
386using @command{makeinfo} via the Makefile macro @code{$(MAKEINFO)},
387and they are included in release distributions.
388
389Manuals are also provided on the GCC web site, in both HTML and
390PostScript forms.  This is done via the script
391@file{maintainer-scripts/update_web_docs_svn}.  Each manual to be
392provided online must be listed in the definition of @code{MANUALS} in
393that file; a file @file{@var{name}.texi} must only appear once in the
394source tree, and the output manual must have the same name as the
395source file.  (However, other Texinfo files, included in manuals but
396not themselves the root files of manuals, may have names that appear
397more than once in the source tree.)  The manual file
398@file{@var{name}.texi} should only include other files in its own
399directory or in @file{doc/include}.  HTML manuals will be generated by
400@samp{makeinfo --html}, PostScript manuals by @command{texi2dvi}
401and @command{dvips}, and PDF manuals by @command{texi2pdf}.
402All Texinfo files that are parts of manuals must
403be version-controlled, even if they are generated files, for the
404generation of online manuals to work.
405
406The installation manual, @file{doc/install.texi}, is also provided on
407the GCC web site.  The HTML version is generated by the script
408@file{doc/install.texi2html}.
409
410@node Man Page Generation
411@subsubsection Man Page Generation
412
413Because of user demand, in addition to full Texinfo manuals, man pages
414are provided which contain extracts from those manuals.  These man
415pages are generated from the Texinfo manuals using
416@file{contrib/texi2pod.pl} and @command{pod2man}.  (The man page for
417@command{g++}, @file{cp/g++.1}, just contains a @samp{.so} reference
418to @file{gcc.1}, but all the other man pages are generated from
419Texinfo manuals.)
420
421Because many systems may not have the necessary tools installed to
422generate the man pages, they are only generated if the
423@file{configure} script detects that recent enough tools are
424installed, and the Makefiles allow generating man pages to fail
425without aborting the build.  Man pages are also included in release
426distributions.  They are generated in the source directory.
427
428Magic comments in Texinfo files starting @samp{@@c man} control what
429parts of a Texinfo file go into a man page.  Only a subset of Texinfo
430is supported by @file{texi2pod.pl}, and it may be necessary to add
431support for more Texinfo features to this script when generating new
432man pages.  To improve the man page output, some special Texinfo
433macros are provided in @file{doc/include/gcc-common.texi} which
434@file{texi2pod.pl} understands:
435
436@table @code
437@item @@gcctabopt
438Use in the form @samp{@@table @@gcctabopt} for tables of options,
439where for printed output the effect of @samp{@@code} is better than
440that of @samp{@@option} but for man page output a different effect is
441wanted.
442@item @@gccoptlist
443Use for summary lists of options in manuals.
444@item @@gol
445Use at the end of each line inside @samp{@@gccoptlist}.  This is
446necessary to avoid problems with differences in how the
447@samp{@@gccoptlist} macro is handled by different Texinfo formatters.
448@end table
449
450FIXME: describe the @file{texi2pod.pl} input language and magic
451comments in more detail.
452
453@node Miscellaneous Docs
454@subsubsection Miscellaneous Documentation
455
456In addition to the formal documentation that is installed by GCC,
457there are several other text files in the @file{gcc} subdirectory
458with miscellaneous documentation:
459
460@table @file
461@item ABOUT-GCC-NLS
462Notes on GCC's Native Language Support.  FIXME: this should be part of
463this manual rather than a separate file.
464@item ABOUT-NLS
465Notes on the Free Translation Project.
466@item COPYING
467@itemx COPYING3
468The GNU General Public License, Versions 2 and 3.
469@item COPYING.LIB
470@itemx COPYING3.LIB
471The GNU Lesser General Public License, Versions 2.1 and 3.
472@item *ChangeLog*
473@itemx */ChangeLog*
474Change log files for various parts of GCC@.
475@item LANGUAGES
476Details of a few changes to the GCC front-end interface.  FIXME: the
477information in this file should be part of general documentation of
478the front-end interface in this manual.
479@item ONEWS
480Information about new features in old versions of GCC@.  (For recent
481versions, the information is on the GCC web site.)
482@item README.Portability
483Information about portability issues when writing code in GCC@.  FIXME:
484why isn't this part of this manual or of the GCC Coding Conventions?
485@end table
486
487FIXME: document such files in subdirectories, at least @file{config},
488@file{c}, @file{cp}, @file{objc}, @file{testsuite}.
489
490@node Front End
491@subsection Anatomy of a Language Front End
492
493A front end for a language in GCC has the following parts:
494
495@itemize @bullet
496@item
497A directory @file{@var{language}} under @file{gcc} containing source
498files for that front end.  @xref{Front End Directory, , The Front End
499@file{@var{language}} Directory}, for details.
500@item
501A mention of the language in the list of supported languages in
502@file{gcc/doc/install.texi}.
503@item
504A mention of the name under which the language's runtime library is
505recognized by @option{--enable-shared=@var{package}} in the
506documentation of that option in @file{gcc/doc/install.texi}.
507@item
508A mention of any special prerequisites for building the front end in
509the documentation of prerequisites in @file{gcc/doc/install.texi}.
510@item
511Details of contributors to that front end in
512@file{gcc/doc/contrib.texi}.  If the details are in that front end's
513own manual then there should be a link to that manual's list in
514@file{contrib.texi}.
515@item
516Information about support for that language in
517@file{gcc/doc/frontends.texi}.
518@item
519Information about standards for that language, and the front end's
520support for them, in @file{gcc/doc/standards.texi}.  This may be a
521link to such information in the front end's own manual.
522@item
523Details of source file suffixes for that language and @option{-x
524@var{lang}} options supported, in @file{gcc/doc/invoke.texi}.
525@item
526Entries in @code{default_compilers} in @file{gcc.c} for source file
527suffixes for that language.
528@item
529Preferably testsuites, which may be under @file{gcc/testsuite} or
530runtime library directories.  FIXME: document somewhere how to write
531testsuite harnesses.
532@item
533Probably a runtime library for the language, outside the @file{gcc}
534directory.  FIXME: document this further.
535@item
536Details of the directories of any runtime libraries in
537@file{gcc/doc/sourcebuild.texi}.
538@item
539Check targets in @file{Makefile.def} for the top-level @file{Makefile}
540to check just the compiler or the compiler and runtime library for the
541language.
542@end itemize
543
544If the front end is added to the official GCC source repository, the
545following are also necessary:
546
547@itemize @bullet
548@item
549At least one Bugzilla component for bugs in that front end and runtime
550libraries.  This category needs to be added to the Bugzilla database.
551@item
552Normally, one or more maintainers of that front end listed in
553@file{MAINTAINERS}.
554@item
555Mentions on the GCC web site in @file{index.html} and
556@file{frontends.html}, with any relevant links on
557@file{readings.html}.  (Front ends that are not an official part of
558GCC may also be listed on @file{frontends.html}, with relevant links.)
559@item
560A news item on @file{index.html}, and possibly an announcement on the
561@email{gcc-announce@@gcc.gnu.org} mailing list.
562@item
563The front end's manuals should be mentioned in
564@file{maintainer-scripts/update_web_docs_svn} (@pxref{Texinfo Manuals})
565and the online manuals should be linked to from
566@file{onlinedocs/index.html}.
567@item
568Any old releases or CVS repositories of the front end, before its
569inclusion in GCC, should be made available on the GCC FTP site
570@uref{ftp://gcc.gnu.org/pub/gcc/old-releases/}.
571@item
572The release and snapshot script @file{maintainer-scripts/gcc_release}
573should be updated to generate appropriate tarballs for this front end.
574@item
575If this front end includes its own version files that include the
576current date, @file{maintainer-scripts/update_version} should be
577updated accordingly.
578@end itemize
579
580@menu
581* Front End Directory::  The front end @file{@var{language}} directory.
582* Front End Config::     The front end @file{config-lang.in} file.
583* Front End Makefile::   The front end @file{Make-lang.in} file.
584@end menu
585
586@node Front End Directory
587@subsubsection The Front End @file{@var{language}} Directory
588
589A front end @file{@var{language}} directory contains the source files
590of that front end (but not of any runtime libraries, which should be
591outside the @file{gcc} directory).  This includes documentation, and
592possibly some subsidiary programs built alongside the front end.
593Certain files are special and other parts of the compiler depend on
594their names:
595
596@table @file
597@item config-lang.in
598This file is required in all language subdirectories.  @xref{Front End
599Config, , The Front End @file{config-lang.in} File}, for details of
600its contents
601@item Make-lang.in
602This file is required in all language subdirectories.  @xref{Front End
603Makefile, , The Front End @file{Make-lang.in} File}, for details of its
604contents.
605@item lang.opt
606This file registers the set of switches that the front end accepts on
607the command line, and their @option{--help} text.  @xref{Options}.
608@item lang-specs.h
609This file provides entries for @code{default_compilers} in
610@file{gcc.c} which override the default of giving an error that a
611compiler for that language is not installed.
612@item @var{language}-tree.def
613This file, which need not exist, defines any language-specific tree
614codes.
615@end table
616
617@node Front End Config
618@subsubsection The Front End @file{config-lang.in} File
619
620Each language subdirectory contains a @file{config-lang.in} file.
621This file is a shell script that may define some variables describing
622the language:
623
624@table @code
625@item language
626This definition must be present, and gives the name of the language
627for some purposes such as arguments to @option{--enable-languages}.
628@item lang_requires
629If defined, this variable lists (space-separated) language front ends
630other than C that this front end requires to be enabled (with the
631names given being their @code{language} settings).  For example, the
632Java front end depends on the C++ front end, so sets
633@samp{lang_requires=c++}.
634@item subdir_requires
635If defined, this variable lists (space-separated) front end directories
636other than C that this front end requires to be present.  For example,
637the Objective-C++ front end uses source files from the C++ and
638Objective-C front ends, so sets @samp{subdir_requires="cp objc"}.
639@item target_libs
640If defined, this variable lists (space-separated) targets in the top
641level @file{Makefile} to build the runtime libraries for this
642language, such as @code{target-libobjc}.
643@item lang_dirs
644If defined, this variable lists (space-separated) top level
645directories (parallel to @file{gcc}), apart from the runtime libraries,
646that should not be configured if this front end is not built.
647@item build_by_default
648If defined to @samp{no}, this language front end is not built unless
649enabled in a @option{--enable-languages} argument.  Otherwise, front
650ends are built by default, subject to any special logic in
651@file{configure.ac} (as is present to disable the Ada front end if the
652Ada compiler is not already installed).
653@item boot_language
654If defined to @samp{yes}, this front end is built in stage1 of the
655bootstrap.  This is only relevant to front ends written in their own
656languages.
657@item compilers
658If defined, a space-separated list of compiler executables that will
659be run by the driver.  The names here will each end
660with @samp{\$(exeext)}.
661@item outputs
662If defined, a space-separated list of files that should be generated
663by @file{configure} substituting values in them.  This mechanism can
664be used to create a file @file{@var{language}/Makefile} from
665@file{@var{language}/Makefile.in}, but this is deprecated, building
666everything from the single @file{gcc/Makefile} is preferred.
667@item gtfiles
668If defined, a space-separated list of files that should be scanned by
669@file{gengtype.c} to generate the garbage collection tables and routines for
670this language.  This excludes the files that are common to all front
671ends.  @xref{Type Information}.
672
673@end table
674
675@node Front End Makefile
676@subsubsection The Front End @file{Make-lang.in} File
677
678Each language subdirectory contains a @file{Make-lang.in} file.  It contains
679targets @code{@var{lang}.@var{hook}} (where @code{@var{lang}} is the
680setting of @code{language} in @file{config-lang.in}) for the following
681values of @code{@var{hook}}, and any other Makefile rules required to
682build those targets (which may if necessary use other Makefiles
683specified in @code{outputs} in @file{config-lang.in}, although this is
684deprecated).  It also adds any testsuite targets that can use the
685standard rule in @file{gcc/Makefile.in} to the variable
686@code{lang_checks}.
687
688@table @code
689@item all.cross
690@itemx start.encap
691@itemx rest.encap
692FIXME: exactly what goes in each of these targets?
693@item tags
694Build an @command{etags} @file{TAGS} file in the language subdirectory
695in the source tree.
696@item info
697Build info documentation for the front end, in the build directory.
698This target is only called by @samp{make bootstrap} if a suitable
699version of @command{makeinfo} is available, so does not need to check
700for this, and should fail if an error occurs.
701@item dvi
702Build DVI documentation for the front end, in the build directory.
703This should be done using @code{$(TEXI2DVI)}, with appropriate
704@option{-I} arguments pointing to directories of included files.
705@item pdf
706Build PDF documentation for the front end, in the build directory.
707This should be done using @code{$(TEXI2PDF)}, with appropriate
708@option{-I} arguments pointing to directories of included files.
709@item html
710Build HTML documentation for the front end, in the build directory.
711@item man
712Build generated man pages for the front end from Texinfo manuals
713(@pxref{Man Page Generation}), in the build directory.  This target
714is only called if the necessary tools are available, but should ignore
715errors so as not to stop the build if errors occur; man pages are
716optional and the tools involved may be installed in a broken way.
717@item install-common
718Install everything that is part of the front end, apart from the
719compiler executables listed in @code{compilers} in
720@file{config-lang.in}.
721@item install-info
722Install info documentation for the front end, if it is present in the
723source directory.  This target should have dependencies on info files
724that should be installed.
725@item install-man
726Install man pages for the front end.  This target should ignore
727errors.
728@item install-plugin
729Install headers needed for plugins.
730@item srcextra
731Copies its dependencies into the source directory.  This generally should
732be used for generated files such as Bison output files which are not
733version-controlled, but should be included in any release tarballs.  This
734target will be executed during a bootstrap if
735@samp{--enable-generated-files-in-srcdir} was specified as a
736@file{configure} option.
737@item srcinfo
738@itemx srcman
739Copies its dependencies into the source directory.  These targets will be
740executed during a bootstrap if @samp{--enable-generated-files-in-srcdir}
741was specified as a @file{configure} option.
742@item uninstall
743Uninstall files installed by installing the compiler.  This is
744currently documented not to be supported, so the hook need not do
745anything.
746@item mostlyclean
747@itemx clean
748@itemx distclean
749@itemx maintainer-clean
750The language parts of the standard GNU
751@samp{*clean} targets.  @xref{Standard Targets, , Standard Targets for
752Users, standards, GNU Coding Standards}, for details of the standard
753targets.  For GCC, @code{maintainer-clean} should delete
754all generated files in the source directory that are not version-controlled,
755but should not delete anything that is.
756@end table
757
758@file{Make-lang.in} must also define a variable @code{@var{lang}_OBJS}
759to a list of host object files that are used by that language.
760
761@node Back End
762@subsection Anatomy of a Target Back End
763
764A back end for a target architecture in GCC has the following parts:
765
766@itemize @bullet
767@item
768A directory @file{@var{machine}} under @file{gcc/config}, containing a
769machine description @file{@var{machine}.md} file (@pxref{Machine Desc,
770, Machine Descriptions}), header files @file{@var{machine}.h} and
771@file{@var{machine}-protos.h} and a source file @file{@var{machine}.c}
772(@pxref{Target Macros, , Target Description Macros and Functions}),
773possibly a target Makefile fragment @file{t-@var{machine}}
774(@pxref{Target Fragment, , The Target Makefile Fragment}), and maybe
775some other files.  The names of these files may be changed from the
776defaults given by explicit specifications in @file{config.gcc}.
777@item
778If necessary, a file @file{@var{machine}-modes.def} in the
779@file{@var{machine}} directory, containing additional machine modes to
780represent condition codes.  @xref{Condition Code}, for further details.
781@item
782An optional @file{@var{machine}.opt} file in the @file{@var{machine}}
783directory, containing a list of target-specific options.  You can also
784add other option files using the @code{extra_options} variable in
785@file{config.gcc}.  @xref{Options}.
786@item
787Entries in @file{config.gcc} (@pxref{System Config, , The
788@file{config.gcc} File}) for the systems with this target
789architecture.
790@item
791Documentation in @file{gcc/doc/invoke.texi} for any command-line
792options supported by this target (@pxref{Run-time Target, , Run-time
793Target Specification}).  This means both entries in the summary table
794of options and details of the individual options.
795@item
796Documentation in @file{gcc/doc/extend.texi} for any target-specific
797attributes supported (@pxref{Target Attributes, , Defining
798target-specific uses of @code{__attribute__}}), including where the
799same attribute is already supported on some targets, which are
800enumerated in the manual.
801@item
802Documentation in @file{gcc/doc/extend.texi} for any target-specific
803pragmas supported.
804@item
805Documentation in @file{gcc/doc/extend.texi} of any target-specific
806built-in functions supported.
807@item
808Documentation in @file{gcc/doc/extend.texi} of any target-specific
809format checking styles supported.
810@item
811Documentation in @file{gcc/doc/md.texi} of any target-specific
812constraint letters (@pxref{Machine Constraints, , Constraints for
813Particular Machines}).
814@item
815A note in @file{gcc/doc/contrib.texi} under the person or people who
816contributed the target support.
817@item
818Entries in @file{gcc/doc/install.texi} for all target triplets
819supported with this target architecture, giving details of any special
820notes about installation for this target, or saying that there are no
821special notes if there are none.
822@item
823Possibly other support outside the @file{gcc} directory for runtime
824libraries.  FIXME: reference docs for this.  The @code{libstdc++} porting
825manual needs to be installed as info for this to work, or to be a
826chapter of this manual.
827@end itemize
828
829If the back end is added to the official GCC source repository, the
830following are also necessary:
831
832@itemize @bullet
833@item
834An entry for the target architecture in @file{readings.html} on the
835GCC web site, with any relevant links.
836@item
837Details of the properties of the back end and target architecture in
838@file{backends.html} on the GCC web site.
839@item
840A news item about the contribution of support for that target
841architecture, in @file{index.html} on the GCC web site.
842@item
843Normally, one or more maintainers of that target listed in
844@file{MAINTAINERS}.  Some existing architectures may be unmaintained,
845but it would be unusual to add support for a target that does not have
846a maintainer when support is added.
847@item
848Target triplets covering all @file{config.gcc} stanzas for the target,
849in the list in @file{contrib/config-list.mk}.
850@end itemize
851
852@node Testsuites
853@chapter Testsuites
854
855GCC contains several testsuites to help maintain compiler quality.
856Most of the runtime libraries and language front ends in GCC have
857testsuites.  Currently only the C language testsuites are documented
858here; FIXME: document the others.
859
860@menu
861* Test Idioms::     Idioms used in testsuite code.
862* Test Directives:: Directives used within DejaGnu tests.
863* Ada Tests::       The Ada language testsuites.
864* C Tests::         The C language testsuites.
865* libgcj Tests::    The Java library testsuites.
866* LTO Testing::     Support for testing link-time optimizations.
867* gcov Testing::    Support for testing gcov.
868* profopt Testing:: Support for testing profile-directed optimizations.
869* compat Testing::  Support for testing binary compatibility.
870* Torture Tests::   Support for torture testing using multiple options.
871@end menu
872
873@node Test Idioms
874@section Idioms Used in Testsuite Code
875
876In general, C testcases have a trailing @file{-@var{n}.c}, starting
877with @file{-1.c}, in case other testcases with similar names are added
878later.  If the test is a test of some well-defined feature, it should
879have a name referring to that feature such as
880@file{@var{feature}-1.c}.  If it does not test a well-defined feature
881but just happens to exercise a bug somewhere in the compiler, and a
882bug report has been filed for this bug in the GCC bug database,
883@file{pr@var{bug-number}-1.c} is the appropriate form of name.
884Otherwise (for miscellaneous bugs not filed in the GCC bug database),
885and previously more generally, test cases are named after the date on
886which they were added.  This allows people to tell at a glance whether
887a test failure is because of a recently found bug that has not yet
888been fixed, or whether it may be a regression, but does not give any
889other information about the bug or where discussion of it may be
890found.  Some other language testsuites follow similar conventions.
891
892In the @file{gcc.dg} testsuite, it is often necessary to test that an
893error is indeed a hard error and not just a warning---for example,
894where it is a constraint violation in the C standard, which must
895become an error with @option{-pedantic-errors}.  The following idiom,
896where the first line shown is line @var{line} of the file and the line
897that generates the error, is used for this:
898
899@smallexample
900/* @{ dg-bogus "warning" "warning in place of error" @} */
901/* @{ dg-error "@var{regexp}" "@var{message}" @{ target *-*-* @} @var{line} @} */
902@end smallexample
903
904It may be necessary to check that an expression is an integer constant
905expression and has a certain value.  To check that @code{@var{E}} has
906value @code{@var{V}}, an idiom similar to the following is used:
907
908@smallexample
909char x[((E) == (V) ? 1 : -1)];
910@end smallexample
911
912In @file{gcc.dg} tests, @code{__typeof__} is sometimes used to make
913assertions about the types of expressions.  See, for example,
914@file{gcc.dg/c99-condexpr-1.c}.  The more subtle uses depend on the
915exact rules for the types of conditional expressions in the C
916standard; see, for example, @file{gcc.dg/c99-intconst-1.c}.
917
918It is useful to be able to test that optimizations are being made
919properly.  This cannot be done in all cases, but it can be done where
920the optimization will lead to code being optimized away (for example,
921where flow analysis or alias analysis should show that certain code
922cannot be called) or to functions not being called because they have
923been expanded as built-in functions.  Such tests go in
924@file{gcc.c-torture/execute}.  Where code should be optimized away, a
925call to a nonexistent function such as @code{link_failure ()} may be
926inserted; a definition
927
928@smallexample
929#ifndef __OPTIMIZE__
930void
931link_failure (void)
932@{
933  abort ();
934@}
935#endif
936@end smallexample
937
938@noindent
939will also be needed so that linking still succeeds when the test is
940run without optimization.  When all calls to a built-in function
941should have been optimized and no calls to the non-built-in version of
942the function should remain, that function may be defined as
943@code{static} to call @code{abort ()} (although redeclaring a function
944as static may not work on all targets).
945
946All testcases must be portable.  Target-specific testcases must have
947appropriate code to avoid causing failures on unsupported systems;
948unfortunately, the mechanisms for this differ by directory.
949
950FIXME: discuss non-C testsuites here.
951
952@node Test Directives
953@section Directives used within DejaGnu tests
954
955@menu
956* Directives::  Syntax and descriptions of test directives.
957* Selectors:: Selecting targets to which a test applies.
958* Effective-Target Keywords:: Keywords describing target attributes.
959* Add Options:: Features for @code{dg-add-options}
960* Require Support:: Variants of @code{dg-require-@var{support}}
961* Final Actions:: Commands for use in @code{dg-final}
962@end menu
963
964@node Directives
965@subsection Syntax and Descriptions of test directives
966
967Test directives appear within comments in a test source file and begin
968with @code{dg-}.  Some of these are defined within DejaGnu and others
969are local to the GCC testsuite.
970
971The order in which test directives appear in a test can be important:
972directives local to GCC sometimes override information used by the
973DejaGnu directives, which know nothing about the GCC directives, so the
974DejaGnu directives must precede GCC directives.
975
976Several test directives include selectors (@pxref{Selectors, , })
977which are usually preceded by the keyword @code{target} or @code{xfail}.
978
979@subsubsection Specify how to build the test
980
981@table @code
982@item @{ dg-do @var{do-what-keyword} [@{ target/xfail @var{selector} @}] @}
983@var{do-what-keyword} specifies how the test is compiled and whether
984it is executed.  It is one of:
985
986@table @code
987@item preprocess
988Compile with @option{-E} to run only the preprocessor.
989@item compile
990Compile with @option{-S} to produce an assembly code file.
991@item assemble
992Compile with @option{-c} to produce a relocatable object file.
993@item link
994Compile, assemble, and link to produce an executable file.
995@item run
996Produce and run an executable file, which is expected to return
997an exit code of 0.
998@end table
999
1000The default is @code{compile}.  That can be overridden for a set of
1001tests by redefining @code{dg-do-what-default} within the @code{.exp}
1002file for those tests.
1003
1004If the directive includes the optional @samp{@{ target @var{selector} @}}
1005then the test is skipped unless the target system matches the
1006@var{selector}.
1007
1008If @var{do-what-keyword} is @code{run} and the directive includes
1009the optional @samp{@{ xfail @var{selector} @}} and the selector is met
1010then the test is expected to fail.  The @code{xfail} clause is ignored
1011for other values of @var{do-what-keyword}; those tests can use
1012directive @code{dg-xfail-if}.
1013@end table
1014
1015@subsubsection Specify additional compiler options
1016
1017@table @code
1018@item @{ dg-options @var{options} [@{ target @var{selector} @}] @}
1019This DejaGnu directive provides a list of compiler options, to be used
1020if the target system matches @var{selector}, that replace the default
1021options used for this set of tests.
1022
1023@item @{ dg-add-options @var{feature} @dots{} @}
1024Add any compiler options that are needed to access certain features.
1025This directive does nothing on targets that enable the features by
1026default, or that don't provide them at all.  It must come after
1027all @code{dg-options} directives.
1028For supported values of @var{feature} see @ref{Add Options, ,}.
1029
1030@item @{ dg-additional-options @var{options} [@{ target @var{selector} @}] @}
1031This directive provides a list of compiler options, to be used
1032if the target system matches @var{selector}, that are added to the default
1033options used for this set of tests.
1034@end table
1035
1036@subsubsection Modify the test timeout value
1037
1038The normal timeout limit, in seconds, is found by searching the
1039following in order:
1040
1041@itemize @bullet
1042@item the value defined by an earlier @code{dg-timeout} directive in
1043the test
1044
1045@item variable @var{tool_timeout} defined by the set of tests
1046
1047@item @var{gcc},@var{timeout} set in the target board
1048
1049@item 300
1050@end itemize
1051
1052@table @code
1053@item @{ dg-timeout @var{n} [@{target @var{selector} @}] @}
1054Set the time limit for the compilation and for the execution of the test
1055to the specified number of seconds.
1056
1057@item @{ dg-timeout-factor @var{x} [@{ target @var{selector} @}] @}
1058Multiply the normal time limit for compilation and execution of the test
1059by the specified floating-point factor.
1060@end table
1061
1062@subsubsection Skip a test for some targets
1063
1064@table @code
1065@item @{ dg-skip-if @var{comment} @{ @var{selector} @} [@{ @var{include-opts} @} [@{ @var{exclude-opts} @}]] @}
1066Arguments @var{include-opts} and @var{exclude-opts} are lists in which
1067each element is a string of zero or more GCC options.
1068Skip the test if all of the following conditions are met:
1069@itemize @bullet
1070@item the test system is included in @var{selector}
1071
1072@item for at least one of the option strings in @var{include-opts},
1073every option from that string is in the set of options with which
1074the test would be compiled; use @samp{"*"} for an @var{include-opts} list
1075that matches any options; that is the default if @var{include-opts} is
1076not specified
1077
1078@item for each of the option strings in @var{exclude-opts}, at least one
1079option from that string is not in the set of options with which the test
1080would be compiled; use @samp{""} for an empty @var{exclude-opts} list;
1081that is the default if @var{exclude-opts} is not specified
1082@end itemize
1083
1084For example, to skip a test if option @code{-Os} is present:
1085
1086@smallexample
1087/* @{ dg-skip-if "" @{ *-*-* @}  @{ "-Os" @} @{ "" @} @} */
1088@end smallexample
1089
1090To skip a test if both options @code{-O2} and @code{-g} are present:
1091
1092@smallexample
1093/* @{ dg-skip-if "" @{ *-*-* @}  @{ "-O2 -g" @} @{ "" @} @} */
1094@end smallexample
1095
1096To skip a test if either @code{-O2} or @code{-O3} is present:
1097
1098@smallexample
1099/* @{ dg-skip-if "" @{ *-*-* @}  @{ "-O2" "-O3" @} @{ "" @} @} */
1100@end smallexample
1101
1102To skip a test unless option @code{-Os} is present:
1103
1104@smallexample
1105/* @{ dg-skip-if "" @{ *-*-* @}  @{ "*" @} @{ "-Os" @} @} */
1106@end smallexample
1107
1108To skip a test if either @code{-O2} or @code{-O3} is used with @code{-g}
1109but not if @code{-fpic} is also present:
1110
1111@smallexample
1112/* @{ dg-skip-if "" @{ *-*-* @}  @{ "-O2 -g" "-O3 -g" @} @{ "-fpic" @} @} */
1113@end smallexample
1114
1115@item @{ dg-require-effective-target @var{keyword} [@{ @var{selector} @}] @}
1116Skip the test if the test target, including current multilib flags,
1117is not covered by the effective-target keyword.
1118If the directive includes the optional @samp{@{ @var{selector} @}}
1119then the effective-target test is only performed if the target system
1120matches the @var{selector}.
1121This directive must appear after any @code{dg-do} directive in the test
1122and before any @code{dg-additional-sources} directive.
1123@xref{Effective-Target Keywords, , }.
1124
1125@item @{ dg-require-@var{support} args @}
1126Skip the test if the target does not provide the required support.
1127These directives must appear after any @code{dg-do} directive in the test
1128and before any @code{dg-additional-sources} directive.
1129They require at least one argument, which can be an empty string if the
1130specific procedure does not examine the argument.
1131@xref{Require Support, , }, for a complete list of these directives.
1132@end table
1133
1134@subsubsection Expect a test to fail for some targets
1135
1136@table @code
1137@item  @{ dg-xfail-if @var{comment} @{ @var{selector} @} [@{ @var{include-opts} @} [@{ @var{exclude-opts} @}]] @}
1138Expect the test to fail if the conditions (which are the same as for
1139@code{dg-skip-if}) are met.  This does not affect the execute step.
1140
1141@item  @{ dg-xfail-run-if @var{comment} @{ @var{selector} @} [@{ @var{include-opts} @} [@{ @var{exclude-opts} @}]] @}
1142Expect the execute step of a test to fail if the conditions (which are
1143the same as for @code{dg-skip-if}) are met.
1144@end table
1145
1146@subsubsection Expect the test executable to fail
1147
1148@table @code
1149@item  @{ dg-shouldfail @var{comment} [@{ @var{selector} @} [@{ @var{include-opts} @} [@{ @var{exclude-opts} @}]]] @}
1150Expect the test executable to return a nonzero exit status if the
1151conditions (which are the same as for @code{dg-skip-if}) are met.
1152@end table
1153
1154@subsubsection Verify compiler messages
1155
1156@table @code
1157@item @{ dg-error @var{regexp} [@var{comment} [@{ target/xfail @var{selector} @} [@var{line}] @}]] @}
1158This DejaGnu directive appears on a source line that is expected to get
1159an error message, or else specifies the source line associated with the
1160message.  If there is no message for that line or if the text of that
1161message is not matched by @var{regexp} then the check fails and
1162@var{comment} is included in the @code{FAIL} message.  The check does
1163not look for the string @samp{error} unless it is part of @var{regexp}.
1164
1165@item @{ dg-warning @var{regexp} [@var{comment} [@{ target/xfail @var{selector} @} [@var{line}] @}]] @}
1166This DejaGnu directive appears on a source line that is expected to get
1167a warning message, or else specifies the source line associated with the
1168message.  If there is no message for that line or if the text of that
1169message is not matched by @var{regexp} then the check fails and
1170@var{comment} is included in the @code{FAIL} message.  The check does
1171not look for the string @samp{warning} unless it is part of @var{regexp}.
1172
1173@item @{ dg-message @var{regexp} [@var{comment} [@{ target/xfail @var{selector} @} [@var{line}] @}]] @}
1174The line is expected to get a message other than an error or warning.
1175If there is no message for that line or if the text of that message is
1176not matched by @var{regexp} then the check fails and @var{comment} is
1177included in the @code{FAIL} message.
1178
1179@item @{ dg-bogus @var{regexp} [@var{comment} [@{ target/xfail @var{selector} @} [@var{line}] @}]] @}
1180This DejaGnu directive appears on a source line that should not get a
1181message matching @var{regexp}, or else specifies the source line
1182associated with the bogus message.  It is usually used with @samp{xfail}
1183to indicate that the message is a known problem for a particular set of
1184targets.
1185
1186@item @{ dg-excess-errors @var{comment} [@{ target/xfail @var{selector} @}] @}
1187This DejaGnu directive indicates that the test is expected to fail due
1188to compiler messages that are not handled by @samp{dg-error},
1189@samp{dg-warning} or @samp{dg-bogus}.  For this directive @samp{xfail}
1190has the same effect as @samp{target}.
1191
1192@item @{ dg-prune-output @var{regexp} @}
1193Prune messages matching @var{regexp} from the test output.
1194@end table
1195
1196@subsubsection Verify output of the test executable
1197
1198@table @code
1199@item @{ dg-output @var{regexp} [@{ target/xfail @var{selector} @}] @}
1200This DejaGnu directive compares @var{regexp} to the combined output
1201that the test executable writes to @file{stdout} and @file{stderr}.
1202@end table
1203
1204@subsubsection Specify additional files for a test
1205
1206@table @code
1207@item @{ dg-additional-files "@var{filelist}" @}
1208Specify additional files, other than source files, that must be copied
1209to the system where the compiler runs.
1210
1211@item @{ dg-additional-sources "@var{filelist}" @}
1212Specify additional source files to appear in the compile line
1213following the main test file.
1214@end table
1215
1216@subsubsection Add checks at the end of a test
1217
1218@table @code
1219@item @{ dg-final @{ @var{local-directive} @} @}
1220This DejaGnu directive is placed within a comment anywhere in the
1221source file and is processed after the test has been compiled and run.
1222Multiple @samp{dg-final} commands are processed in the order in which
1223they appear in the source file.  @xref{Final Actions, , }, for a list
1224of directives that can be used within @code{dg-final}.
1225@end table
1226
1227@node Selectors
1228@subsection Selecting targets to which a test applies
1229
1230Several test directives include @var{selector}s to limit the targets
1231for which a test is run or to declare that a test is expected to fail
1232on particular targets.
1233
1234A selector is:
1235@itemize @bullet
1236@item one or more target triplets, possibly including wildcard characters;
1237use @samp{*-*-*} to match any target
1238@item a single effective-target keyword (@pxref{Effective-Target Keywords})
1239@item a logical expression
1240@end itemize
1241
1242Depending on the context, the selector specifies whether a test is
1243skipped and reported as unsupported or is expected to fail.  A context
1244that allows either @samp{target} or @samp{xfail} also allows
1245@samp{@{ target @var{selector1} xfail @var{selector2} @}}
1246to skip the test for targets that don't match @var{selector1} and the
1247test to fail for targets that match @var{selector2}.
1248
1249A selector expression appears within curly braces and uses a single
1250logical operator: one of @samp{!}, @samp{&&}, or @samp{||}.  An
1251operand is another selector expression, an effective-target keyword,
1252a single target triplet, or a list of target triplets within quotes or
1253curly braces.  For example:
1254
1255@smallexample
1256@{ target @{ ! "hppa*-*-* ia64*-*-*" @} @}
1257@{ target @{ powerpc*-*-* && lp64 @} @}
1258@{ xfail @{ lp64 || vect_no_align @} @}
1259@end smallexample
1260
1261@node Effective-Target Keywords
1262@subsection Keywords describing target attributes
1263
1264Effective-target keywords identify sets of targets that support
1265particular functionality.  They are used to limit tests to be run only
1266for particular targets, or to specify that particular sets of targets
1267are expected to fail some tests.
1268
1269Effective-target keywords are defined in @file{lib/target-supports.exp} in
1270the GCC testsuite, with the exception of those that are documented as
1271being local to a particular test directory.
1272
1273The @samp{effective target} takes into account all of the compiler options
1274with which the test will be compiled, including the multilib options.
1275By convention, keywords ending in @code{_nocache} can also include options
1276specified for the particular test in an earlier @code{dg-options} or
1277@code{dg-add-options} directive.
1278
1279@subsubsection Data type sizes
1280
1281@table @code
1282@item ilp32
1283Target has 32-bit @code{int}, @code{long}, and pointers.
1284
1285@item lp64
1286Target has 32-bit @code{int}, 64-bit @code{long} and pointers.
1287
1288@item llp64
1289Target has 32-bit @code{int} and @code{long}, 64-bit @code{long long}
1290and pointers.
1291
1292@item double64
1293Target has 64-bit @code{double}.
1294
1295@item double64plus
1296Target has @code{double} that is 64 bits or longer.
1297
1298@item longdouble128
1299Target has 128-bit @code{long double}.
1300
1301@item int32plus
1302Target has @code{int} that is at 32 bits or longer.
1303
1304@item int16
1305Target has @code{int} that is 16 bits or shorter.
1306
1307@item long_neq_int
1308Target has @code{int} and @code{long} with different sizes.
1309
1310@item large_double
1311Target supports @code{double} that is longer than @code{float}.
1312
1313@item large_long_double
1314Target supports @code{long double} that is longer than @code{double}.
1315
1316@item ptr32plus
1317Target has pointers that are 32 bits or longer.
1318
1319@item size32plus
1320Target supports array and structure sizes that are 32 bits or longer.
1321
1322@item 4byte_wchar_t
1323Target has @code{wchar_t} that is at least 4 bytes.
1324@end table
1325
1326@subsubsection Fortran-specific attributes
1327
1328@table @code
1329@item fortran_integer_16
1330Target supports Fortran @code{integer} that is 16 bytes or longer.
1331
1332@item fortran_large_int
1333Target supports Fortran @code{integer} kinds larger than @code{integer(8)}.
1334
1335@item fortran_large_real
1336Target supports Fortran @code{real} kinds larger than @code{real(8)}.
1337@end table
1338
1339@subsubsection Vector-specific attributes
1340
1341@table @code
1342@item vect_condition
1343Target supports vector conditional operations.
1344
1345@item vect_double
1346Target supports hardware vectors of @code{double}.
1347
1348@item vect_float
1349Target supports hardware vectors of @code{float}.
1350
1351@item vect_int
1352Target supports hardware vectors of @code{int}.
1353
1354@item vect_long
1355Target supports hardware vectors of @code{long}.
1356
1357@item vect_long_long
1358Target supports hardware vectors of @code{long long}.
1359
1360@item vect_aligned_arrays
1361Target aligns arrays to vector alignment boundary.
1362
1363@item vect_hw_misalign
1364Target supports a vector misalign access.
1365
1366@item vect_no_align
1367Target does not support a vector alignment mechanism.
1368
1369@item vect_no_int_min_max
1370Target does not support a vector min and max instruction on @code{int}.
1371
1372@item vect_no_int_add
1373Target does not support a vector add instruction on @code{int}.
1374
1375@item vect_no_bitwise
1376Target does not support vector bitwise instructions.
1377
1378@item vect_char_mult
1379Target supports @code{vector char} multiplication.
1380
1381@item vect_short_mult
1382Target supports @code{vector short} multiplication.
1383
1384@item vect_int_mult
1385Target supports @code{vector int} multiplication.
1386
1387@item vect_extract_even_odd
1388Target supports vector even/odd element extraction.
1389
1390@item vect_extract_even_odd_wide
1391Target supports vector even/odd element extraction of vectors with elements
1392@code{SImode} or larger.
1393
1394@item vect_interleave
1395Target supports vector interleaving.
1396
1397@item vect_strided
1398Target supports vector interleaving and extract even/odd.
1399
1400@item vect_strided_wide
1401Target supports vector interleaving and extract even/odd for wide
1402element types.
1403
1404@item vect_perm
1405Target supports vector permutation.
1406
1407@item vect_shift
1408Target supports a hardware vector shift operation.
1409
1410@item vect_widen_sum_hi_to_si
1411Target supports a vector widening summation of @code{short} operands
1412into @code{int} results, or can promote (unpack) from @code{short}
1413to @code{int}.
1414
1415@item vect_widen_sum_qi_to_hi
1416Target supports a vector widening summation of @code{char} operands
1417into @code{short} results, or can promote (unpack) from @code{char}
1418to @code{short}.
1419
1420@item vect_widen_sum_qi_to_si
1421Target supports a vector widening summation of @code{char} operands
1422into @code{int} results.
1423
1424@item vect_widen_mult_qi_to_hi
1425Target supports a vector widening multiplication of @code{char} operands
1426into @code{short} results, or can promote (unpack) from @code{char} to
1427@code{short} and perform non-widening multiplication of @code{short}.
1428
1429@item vect_widen_mult_hi_to_si
1430Target supports a vector widening multiplication of @code{short} operands
1431into @code{int} results, or can promote (unpack) from @code{short} to
1432@code{int} and perform non-widening multiplication of @code{int}.
1433
1434@item vect_widen_mult_si_to_di_pattern
1435Target supports a vector widening multiplication of @code{int} operands
1436into @code{long} results.
1437
1438@item vect_sdot_qi
1439Target supports a vector dot-product of @code{signed char}.
1440
1441@item vect_udot_qi
1442Target supports a vector dot-product of @code{unsigned char}.
1443
1444@item vect_sdot_hi
1445Target supports a vector dot-product of @code{signed short}.
1446
1447@item vect_udot_hi
1448Target supports a vector dot-product of @code{unsigned short}.
1449
1450@item vect_pack_trunc
1451Target supports a vector demotion (packing) of @code{short} to @code{char}
1452and from @code{int} to @code{short} using modulo arithmetic.
1453
1454@item vect_unpack
1455Target supports a vector promotion (unpacking) of @code{char} to @code{short}
1456and from @code{char} to @code{int}.
1457
1458@item vect_intfloat_cvt
1459Target supports conversion from @code{signed int} to @code{float}.
1460
1461@item vect_uintfloat_cvt
1462Target supports conversion from @code{unsigned int} to @code{float}.
1463
1464@item vect_floatint_cvt
1465Target supports conversion from @code{float} to @code{signed int}.
1466
1467@item vect_floatuint_cvt
1468Target supports conversion from @code{float} to @code{unsigned int}.
1469
1470@item vect_max_reduc
1471Target supports max reduction for vectors.
1472@end table
1473
1474@subsubsection Thread Local Storage attributes
1475
1476@table @code
1477@item tls
1478Target supports thread-local storage.
1479
1480@item tls_native
1481Target supports native (rather than emulated) thread-local storage.
1482
1483@item tls_runtime
1484Test system supports executing TLS executables.
1485@end table
1486
1487@subsubsection Decimal floating point attributes
1488
1489@table @code
1490@item dfp
1491Targets supports compiling decimal floating point extension to C.
1492
1493@item dfp_nocache
1494Including the options used to compile this particular test, the
1495target supports compiling decimal floating point extension to C.
1496
1497@item dfprt
1498Test system can execute decimal floating point tests.
1499
1500@item dfprt_nocache
1501Including the options used to compile this particular test, the
1502test system can execute decimal floating point tests.
1503
1504@item hard_dfp
1505Target generates decimal floating point instructions with current options.
1506@end table
1507
1508@subsubsection ARM-specific attributes
1509
1510@table @code
1511@item arm32
1512ARM target generates 32-bit code.
1513
1514@item arm_eabi
1515ARM target adheres to the ABI for the ARM Architecture.
1516
1517@item arm_fp_ok
1518@anchor{arm_fp_ok}
1519ARM target defines @code{__ARM_FP} using @code{-mfloat-abi=softfp} or
1520equivalent options.  Some multilibs may be incompatible with these
1521options.
1522
1523@item arm_hf_eabi
1524ARM target adheres to the VFP and Advanced SIMD Register Arguments
1525variant of the ABI for the ARM Architecture (as selected with
1526@code{-mfloat-abi=hard}).
1527
1528@item arm_hard_vfp_ok
1529ARM target supports @code{-mfpu=vfp -mfloat-abi=hard}.
1530Some multilibs may be incompatible with these options.
1531
1532@item arm_iwmmxt_ok
1533ARM target supports @code{-mcpu=iwmmxt}.
1534Some multilibs may be incompatible with this option.
1535
1536@item arm_neon
1537ARM target supports generating NEON instructions.
1538
1539@item arm_tune_string_ops_prefer_neon
1540Test CPU tune supports inlining string operations with NEON instructions.
1541
1542@item arm_neon_hw
1543Test system supports executing NEON instructions.
1544
1545@item arm_neonv2_hw
1546Test system supports executing NEON v2 instructions.
1547
1548@item arm_neon_ok
1549@anchor{arm_neon_ok}
1550ARM Target supports @code{-mfpu=neon -mfloat-abi=softfp} or compatible
1551options.  Some multilibs may be incompatible with these options.
1552
1553@item arm_neonv2_ok
1554@anchor{arm_neonv2_ok}
1555ARM Target supports @code{-mfpu=neon-vfpv4 -mfloat-abi=softfp} or compatible
1556options.  Some multilibs may be incompatible with these options.
1557
1558@item arm_neon_fp16_ok
1559@anchor{arm_neon_fp16_ok}
1560ARM Target supports @code{-mfpu=neon-fp16 -mfloat-abi=softfp} or compatible
1561options, including @code{-mfp16-format=ieee} if necessary to obtain the
1562@code{__fp16} type.  Some multilibs may be incompatible with these options.
1563
1564@item arm_neon_fp16_hw
1565Test system supports executing Neon half-precision float instructions.
1566(Implies previous.)
1567
1568@item arm_thumb1_ok
1569ARM target generates Thumb-1 code for @code{-mthumb}.
1570
1571@item arm_thumb2_ok
1572ARM target generates Thumb-2 code for @code{-mthumb}.
1573
1574@item arm_vfp_ok
1575ARM target supports @code{-mfpu=vfp -mfloat-abi=softfp}.
1576Some multilibs may be incompatible with these options.
1577
1578@item arm_vfp3_ok
1579@anchor{arm_vfp3_ok}
1580ARM target supports @code{-mfpu=vfp3 -mfloat-abi=softfp}.
1581Some multilibs may be incompatible with these options.
1582
1583@item arm_v8_vfp_ok
1584ARM target supports @code{-mfpu=fp-armv8 -mfloat-abi=softfp}.
1585Some multilibs may be incompatible with these options.
1586
1587@item arm_v8_neon_ok
1588ARM target supports @code{-mfpu=neon-fp-armv8 -mfloat-abi=softfp}.
1589Some multilibs may be incompatible with these options.
1590
1591@item arm_v8_1a_neon_ok
1592ARM target supports options to generate ARMv8.1 Adv.SIMD instructions.
1593Some multilibs may be incompatible with these options.
1594
1595@item arm_v8_1a_neon_hw
1596ARM target supports executing ARMv8.1 Adv.SIMD instructions.  Some
1597multilibs may be incompatible with the options needed.  Implies
1598arm_v8_1a_neon_ok.
1599
1600@item arm_prefer_ldrd_strd
1601ARM target prefers @code{LDRD} and @code{STRD} instructions over
1602@code{LDM} and @code{STM} instructions.
1603
1604@end table
1605
1606@subsubsection AArch64-specific attributes
1607
1608@table @code
1609@item aarch64_asm_<ext>_ok
1610AArch64 assembler supports the architecture extension @code{ext} via the
1611@code{.arch_extension} pseudo-op.
1612@item aarch64_tiny
1613AArch64 target which generates instruction sequences for tiny memory model.
1614@item aarch64_small
1615AArch64 target which generates instruction sequences for small memory model.
1616@item aarch64_large
1617AArch64 target which generates instruction sequences for large memory model.
1618@item aarch64_little_endian
1619AArch64 target which generates instruction sequences for little endian.
1620@item aarch64_big_endian
1621AArch64 target which generates instruction sequences for big endian.
1622@item aarch64_small_fpic
1623Binutils installed on test system supports relocation types required by -fpic
1624for AArch64 small memory model.
1625
1626@end table
1627
1628@subsubsection MIPS-specific attributes
1629
1630@table @code
1631@item mips64
1632MIPS target supports 64-bit instructions.
1633
1634@item nomips16
1635MIPS target does not produce MIPS16 code.
1636
1637@item mips16_attribute
1638MIPS target can generate MIPS16 code.
1639
1640@item mips_loongson
1641MIPS target is a Loongson-2E or -2F target using an ABI that supports
1642the Loongson vector modes.
1643
1644@item mips_newabi_large_long_double
1645MIPS target supports @code{long double} larger than @code{double}
1646when using the new ABI.
1647
1648@item mpaired_single
1649MIPS target supports @code{-mpaired-single}.
1650@end table
1651
1652@subsubsection PowerPC-specific attributes
1653
1654@table @code
1655
1656@item dfp_hw
1657PowerPC target supports executing hardware DFP instructions.
1658
1659@item p8vector_hw
1660PowerPC target supports executing VSX instructions (ISA 2.07).
1661
1662@item powerpc64
1663Test system supports executing 64-bit instructions.
1664
1665@item powerpc_altivec
1666PowerPC target supports AltiVec.
1667
1668@item powerpc_altivec_ok
1669PowerPC target supports @code{-maltivec}.
1670
1671@item powerpc_eabi_ok
1672PowerPC target supports @code{-meabi}.
1673
1674@item powerpc_elfv2
1675PowerPC target supports @code{-mabi=elfv2}.
1676
1677@item powerpc_fprs
1678PowerPC target supports floating-point registers.
1679
1680@item powerpc_hard_double
1681PowerPC target supports hardware double-precision floating-point.
1682
1683@item powerpc_htm_ok
1684PowerPC target supports @code{-mhtm}
1685
1686@item powerpc_p8vector_ok
1687PowerPC target supports @code{-mpower8-vector}
1688
1689@item powerpc_ppu_ok
1690PowerPC target supports @code{-mcpu=cell}.
1691
1692@item powerpc_spe
1693PowerPC target supports PowerPC SPE.
1694
1695@item powerpc_spe_nocache
1696Including the options used to compile this particular test, the
1697PowerPC target supports PowerPC SPE.
1698
1699@item powerpc_spu
1700PowerPC target supports PowerPC SPU.
1701
1702@item powerpc_vsx_ok
1703PowerPC target supports @code{-mvsx}.
1704
1705@item powerpc_405_nocache
1706Including the options used to compile this particular test, the
1707PowerPC target supports PowerPC 405.
1708
1709@item ppc_recip_hw
1710PowerPC target supports executing reciprocal estimate instructions.
1711
1712@item spu_auto_overlay
1713SPU target has toolchain that supports automatic overlay generation.
1714
1715@item vmx_hw
1716PowerPC target supports executing AltiVec instructions.
1717
1718@item vsx_hw
1719PowerPC target supports executing VSX instructions (ISA 2.06).
1720@end table
1721
1722@subsubsection Other hardware attributes
1723
1724@table @code
1725@item avx
1726Target supports compiling @code{avx} instructions.
1727
1728@item avx_runtime
1729Target supports the execution of @code{avx} instructions.
1730
1731@item cell_hw
1732Test system can execute AltiVec and Cell PPU instructions.
1733
1734@item coldfire_fpu
1735Target uses a ColdFire FPU.
1736
1737@item hard_float
1738Target supports FPU instructions.
1739
1740@item non_strict_align
1741Target does not require strict alignment.
1742
1743@item sqrt_insn
1744Target has a square root instruction that the compiler can generate.
1745
1746@item sse
1747Target supports compiling @code{sse} instructions.
1748
1749@item sse_runtime
1750Target supports the execution of @code{sse} instructions.
1751
1752@item sse2
1753Target supports compiling @code{sse2} instructions.
1754
1755@item sse2_runtime
1756Target supports the execution of @code{sse2} instructions.
1757
1758@item sync_char_short
1759Target supports atomic operations on @code{char} and @code{short}.
1760
1761@item sync_int_long
1762Target supports atomic operations on @code{int} and @code{long}.
1763
1764@item ultrasparc_hw
1765Test environment appears to run executables on a simulator that
1766accepts only @code{EM_SPARC} executables and chokes on @code{EM_SPARC32PLUS}
1767or @code{EM_SPARCV9} executables.
1768
1769@item vect_cmdline_needed
1770Target requires a command line argument to enable a SIMD instruction set.
1771
1772@item pie_copyreloc
1773The x86-64 target linker supports PIE with copy reloc.
1774@end table
1775
1776@subsubsection Environment attributes
1777
1778@table @code
1779@item c
1780The language for the compiler under test is C.
1781
1782@item c++
1783The language for the compiler under test is C++.
1784
1785@item c99_runtime
1786Target provides a full C99 runtime.
1787
1788@item correct_iso_cpp_string_wchar_protos
1789Target @code{string.h} and @code{wchar.h} headers provide C++ required
1790overloads for @code{strchr} etc. functions.
1791
1792@item dummy_wcsftime
1793Target uses a dummy @code{wcsftime} function that always returns zero.
1794
1795@item fd_truncate
1796Target can truncate a file from a file descriptor, as used by
1797@file{libgfortran/io/unix.c:fd_truncate}; i.e. @code{ftruncate} or
1798@code{chsize}.
1799
1800@item freestanding
1801Target is @samp{freestanding} as defined in section 4 of the C99 standard.
1802Effectively, it is a target which supports no extra headers or libraries
1803other than what is considered essential.
1804
1805@item init_priority
1806Target supports constructors with initialization priority arguments.
1807
1808@item inttypes_types
1809Target has the basic signed and unsigned types in @code{inttypes.h}.
1810This is for tests that GCC's notions of these types agree with those
1811in the header, as some systems have only @code{inttypes.h}.
1812
1813@item lax_strtofp
1814Target might have errors of a few ULP in string to floating-point
1815conversion functions and overflow is not always detected correctly by
1816those functions.
1817
1818@item mempcpy
1819Target provides @code{mempcpy} function.
1820
1821@item mmap
1822Target supports @code{mmap}.
1823
1824@item newlib
1825Target supports Newlib.
1826
1827@item pow10
1828Target provides @code{pow10} function.
1829
1830@item pthread
1831Target can compile using @code{pthread.h} with no errors or warnings.
1832
1833@item pthread_h
1834Target has @code{pthread.h}.
1835
1836@item run_expensive_tests
1837Expensive testcases (usually those that consume excessive amounts of CPU
1838time) should be run on this target.  This can be enabled by setting the
1839@env{GCC_TEST_RUN_EXPENSIVE} environment variable to a non-empty string.
1840
1841@item simulator
1842Test system runs executables on a simulator (i.e. slowly) rather than
1843hardware (i.e. fast).
1844
1845@item stabs
1846Target supports the stabs debugging format.
1847
1848@item stdint_types
1849Target has the basic signed and unsigned C types in @code{stdint.h}.
1850This will be obsolete when GCC ensures a working @code{stdint.h} for
1851all targets.
1852
1853@item stpcpy
1854Target provides @code{stpcpy} function.
1855
1856@item trampolines
1857Target supports trampolines.
1858
1859@item uclibc
1860Target supports uClibc.
1861
1862@item unwrapped
1863Target does not use a status wrapper.
1864
1865@item vxworks_kernel
1866Target is a VxWorks kernel.
1867
1868@item vxworks_rtp
1869Target is a VxWorks RTP.
1870
1871@item wchar
1872Target supports wide characters.
1873@end table
1874
1875@subsubsection Other attributes
1876
1877@table @code
1878@item automatic_stack_alignment
1879Target supports automatic stack alignment.
1880
1881@item cxa_atexit
1882Target uses @code{__cxa_atexit}.
1883
1884@item default_packed
1885Target has packed layout of structure members by default.
1886
1887@item fgraphite
1888Target supports Graphite optimizations.
1889
1890@item fixed_point
1891Target supports fixed-point extension to C.
1892
1893@item fopenacc
1894Target supports OpenACC via @option{-fopenacc}.
1895
1896@item fopenmp
1897Target supports OpenMP via @option{-fopenmp}.
1898
1899@item fpic
1900Target supports @option{-fpic} and @option{-fPIC}.
1901
1902@item freorder
1903Target supports @option{-freorder-blocks-and-partition}.
1904
1905@item fstack_protector
1906Target supports @option{-fstack-protector}.
1907
1908@item gas
1909Target uses GNU @command{as}.
1910
1911@item gc_sections
1912Target supports @option{--gc-sections}.
1913
1914@item gld
1915Target uses GNU @command{ld}.
1916
1917@item keeps_null_pointer_checks
1918Target keeps null pointer checks, either due to the use of
1919@option{-fno-delete-null-pointer-checks} or hardwired into the target.
1920
1921@item lto
1922Compiler has been configured to support link-time optimization (LTO).
1923
1924@item naked_functions
1925Target supports the @code{naked} function attribute.
1926
1927@item named_sections
1928Target supports named sections.
1929
1930@item natural_alignment_32
1931Target uses natural alignment (aligned to type size) for types of
193232 bits or less.
1933
1934@item target_natural_alignment_64
1935Target uses natural alignment (aligned to type size) for types of
193664 bits or less.
1937
1938@item nonpic
1939Target does not generate PIC by default.
1940
1941@item pie_enabled
1942Target generates PIE by default.
1943
1944@item pcc_bitfield_type_matters
1945Target defines @code{PCC_BITFIELD_TYPE_MATTERS}.
1946
1947@item pe_aligned_commons
1948Target supports @option{-mpe-aligned-commons}.
1949
1950@item pie
1951Target supports @option{-pie}, @option{-fpie} and @option{-fPIE}.
1952
1953@item rdynamic
1954Target supports @option{-rdynamic}.
1955
1956@item section_anchors
1957Target supports section anchors.
1958
1959@item short_enums
1960Target defaults to short enums.
1961
1962@item static
1963Target supports @option{-static}.
1964
1965@item static_libgfortran
1966Target supports statically linking @samp{libgfortran}.
1967
1968@item string_merging
1969Target supports merging string constants at link time.
1970
1971@item ucn
1972Target supports compiling and assembling UCN.
1973
1974@item ucn_nocache
1975Including the options used to compile this particular test, the
1976target supports compiling and assembling UCN.
1977
1978@item unaligned_stack
1979Target does not guarantee that its @code{STACK_BOUNDARY} is greater than
1980or equal to the required vector alignment.
1981
1982@item vector_alignment_reachable
1983Vector alignment is reachable for types of 32 bits or less.
1984
1985@item vector_alignment_reachable_for_64bit
1986Vector alignment is reachable for types of 64 bits or less.
1987
1988@item wchar_t_char16_t_compatible
1989Target supports @code{wchar_t} that is compatible with @code{char16_t}.
1990
1991@item wchar_t_char32_t_compatible
1992Target supports @code{wchar_t} that is compatible with @code{char32_t}.
1993
1994@item comdat_group
1995Target uses comdat groups.
1996@end table
1997
1998@subsubsection Local to tests in @code{gcc.target/i386}
1999
2000@table @code
2001@item 3dnow
2002Target supports compiling @code{3dnow} instructions.
2003
2004@item aes
2005Target supports compiling @code{aes} instructions.
2006
2007@item fma4
2008Target supports compiling @code{fma4} instructions.
2009
2010@item ms_hook_prologue
2011Target supports attribute @code{ms_hook_prologue}.
2012
2013@item pclmul
2014Target supports compiling @code{pclmul} instructions.
2015
2016@item sse3
2017Target supports compiling @code{sse3} instructions.
2018
2019@item sse4
2020Target supports compiling @code{sse4} instructions.
2021
2022@item sse4a
2023Target supports compiling @code{sse4a} instructions.
2024
2025@item ssse3
2026Target supports compiling @code{ssse3} instructions.
2027
2028@item vaes
2029Target supports compiling @code{vaes} instructions.
2030
2031@item vpclmul
2032Target supports compiling @code{vpclmul} instructions.
2033
2034@item xop
2035Target supports compiling @code{xop} instructions.
2036@end table
2037
2038@subsubsection Local to tests in @code{gcc.target/spu/ea}
2039
2040@table @code
2041@item ealib
2042Target @code{__ea} library functions are available.
2043@end table
2044
2045@subsubsection Local to tests in @code{gcc.test-framework}
2046
2047@table @code
2048@item no
2049Always returns 0.
2050
2051@item yes
2052Always returns 1.
2053@end table
2054
2055@node Add Options
2056@subsection Features for @code{dg-add-options}
2057
2058The supported values of @var{feature} for directive @code{dg-add-options}
2059are:
2060
2061@table @code
2062@item arm_fp
2063@code{__ARM_FP} definition.  Only ARM targets support this feature, and only then
2064in certain modes; see the @ref{arm_fp_ok,,arm_fp_ok effective target
2065keyword}.
2066
2067@item arm_neon
2068NEON support.  Only ARM targets support this feature, and only then
2069in certain modes; see the @ref{arm_neon_ok,,arm_neon_ok effective target
2070keyword}.
2071
2072@item arm_neon_fp16
2073NEON and half-precision floating point support.  Only ARM targets
2074support this feature, and only then in certain modes; see
2075the @ref{arm_neon_fp16_ok,,arm_neon_fp16_ok effective target keyword}.
2076
2077@item arm_vfp3
2078arm vfp3 floating point support; see
2079the @ref{arm_vfp3_ok,,arm_vfp3_ok effective target keyword}.
2080
2081@item bind_pic_locally
2082Add the target-specific flags needed to enable functions to bind
2083locally when using pic/PIC passes in the testsuite.
2084
2085@item c99_runtime
2086Add the target-specific flags needed to access the C99 runtime.
2087
2088@item ieee
2089Add the target-specific flags needed to enable full IEEE
2090compliance mode.
2091
2092@item mips16_attribute
2093@code{mips16} function attributes.
2094Only MIPS targets support this feature, and only then in certain modes.
2095
2096@item tls
2097Add the target-specific flags needed to use thread-local storage.
2098@end table
2099
2100@node Require Support
2101@subsection Variants of @code{dg-require-@var{support}}
2102
2103A few of the @code{dg-require} directives take arguments.
2104
2105@table @code
2106@item dg-require-iconv @var{codeset}
2107Skip the test if the target does not support iconv.  @var{codeset} is
2108the codeset to convert to.
2109
2110@item dg-require-profiling @var{profopt}
2111Skip the test if the target does not support profiling with option
2112@var{profopt}.
2113
2114@item dg-require-visibility @var{vis}
2115Skip the test if the target does not support the @code{visibility} attribute.
2116If @var{vis} is @code{""}, support for @code{visibility("hidden")} is
2117checked, for @code{visibility("@var{vis}")} otherwise.
2118@end table
2119
2120The original @code{dg-require} directives were defined before there
2121was support for effective-target keywords.  The directives that do not
2122take arguments could be replaced with effective-target keywords.
2123
2124@table @code
2125@item dg-require-alias ""
2126Skip the test if the target does not support the @samp{alias} attribute.
2127
2128@item dg-require-ascii-locale ""
2129Skip the test if the host does not support an ASCII locale.
2130
2131@item dg-require-compat-dfp ""
2132Skip this test unless both compilers in a @file{compat} testsuite
2133support decimal floating point.
2134
2135@item dg-require-cxa-atexit ""
2136Skip the test if the target does not support @code{__cxa_atexit}.
2137This is equivalent to @code{dg-require-effective-target cxa_atexit}.
2138
2139@item dg-require-dll ""
2140Skip the test if the target does not support DLL attributes.
2141
2142@item dg-require-fork ""
2143Skip the test if the target does not support @code{fork}.
2144
2145@item dg-require-gc-sections ""
2146Skip the test if the target's linker does not support the
2147@code{--gc-sections} flags.
2148This is equivalent to @code{dg-require-effective-target gc-sections}.
2149
2150@item dg-require-host-local ""
2151Skip the test if the host is remote, rather than the same as the build
2152system.  Some tests are incompatible with DejaGnu's handling of remote
2153hosts, which involves copying the source file to the host and compiling
2154it with a relative path and "@code{-o a.out}".
2155
2156@item dg-require-mkfifo ""
2157Skip the test if the target does not support @code{mkfifo}.
2158
2159@item dg-require-named-sections ""
2160Skip the test is the target does not support named sections.
2161This is equivalent to @code{dg-require-effective-target named_sections}.
2162
2163@item dg-require-weak ""
2164Skip the test if the target does not support weak symbols.
2165
2166@item dg-require-weak-override ""
2167Skip the test if the target does not support overriding weak symbols.
2168@end table
2169
2170@node Final Actions
2171@subsection Commands for use in @code{dg-final}
2172
2173The GCC testsuite defines the following directives to be used within
2174@code{dg-final}.
2175
2176@subsubsection Scan a particular file
2177
2178@table @code
2179@item scan-file @var{filename} @var{regexp} [@{ target/xfail @var{selector} @}]
2180Passes if @var{regexp} matches text in @var{filename}.
2181@item scan-file-not @var{filename} @var{regexp} [@{ target/xfail @var{selector} @}]
2182Passes if @var{regexp} does not match text in @var{filename}.
2183@item scan-module @var{module} @var{regexp} [@{ target/xfail @var{selector} @}]
2184Passes if @var{regexp} matches in Fortran module @var{module}.
2185@end table
2186
2187@subsubsection Scan the assembly output
2188
2189@table @code
2190@item scan-assembler @var{regex} [@{ target/xfail @var{selector} @}]
2191Passes if @var{regex} matches text in the test's assembler output.
2192
2193@item scan-assembler-not @var{regex} [@{ target/xfail @var{selector} @}]
2194Passes if @var{regex} does not match text in the test's assembler output.
2195
2196@item scan-assembler-times @var{regex} @var{num} [@{ target/xfail @var{selector} @}]
2197Passes if @var{regex} is matched exactly @var{num} times in the test's
2198assembler output.
2199
2200@item scan-assembler-dem @var{regex} [@{ target/xfail @var{selector} @}]
2201Passes if @var{regex} matches text in the test's demangled assembler output.
2202
2203@item scan-assembler-dem-not @var{regex} [@{ target/xfail @var{selector} @}]
2204Passes if @var{regex} does not match text in the test's demangled assembler
2205output.
2206
2207@item scan-hidden @var{symbol} [@{ target/xfail @var{selector} @}]
2208Passes if @var{symbol} is defined as a hidden symbol in the test's
2209assembly output.
2210
2211@item scan-not-hidden @var{symbol} [@{ target/xfail @var{selector} @}]
2212Passes if @var{symbol} is not defined as a hidden symbol in the test's
2213assembly output.
2214@end table
2215
2216@subsubsection Scan optimization dump files
2217
2218These commands are available for @var{kind} of @code{tree}, @code{rtl},
2219and @code{ipa}.
2220
2221@table @code
2222@item scan-@var{kind}-dump @var{regex} @var{suffix} [@{ target/xfail @var{selector} @}]
2223Passes if @var{regex} matches text in the dump file with suffix @var{suffix}.
2224
2225@item scan-@var{kind}-dump-not @var{regex} @var{suffix} [@{ target/xfail @var{selector} @}]
2226Passes if @var{regex} does not match text in the dump file with suffix
2227@var{suffix}.
2228
2229@item scan-@var{kind}-dump-times @var{regex} @var{num} @var{suffix} [@{ target/xfail @var{selector} @}]
2230Passes if @var{regex} is found exactly @var{num} times in the dump file
2231with suffix @var{suffix}.
2232
2233@item scan-@var{kind}-dump-dem @var{regex} @var{suffix} [@{ target/xfail @var{selector} @}]
2234Passes if @var{regex} matches demangled text in the dump file with
2235suffix @var{suffix}.
2236
2237@item scan-@var{kind}-dump-dem-not @var{regex} @var{suffix} [@{ target/xfail @var{selector} @}]
2238Passes if @var{regex} does not match demangled text in the dump file with
2239suffix @var{suffix}.
2240@end table
2241
2242@subsubsection Verify that an output files exists or not
2243
2244@table @code
2245@item output-exists [@{ target/xfail @var{selector} @}]
2246Passes if compiler output file exists.
2247
2248@item output-exists-not [@{ target/xfail @var{selector} @}]
2249Passes if compiler output file does not exist.
2250@end table
2251
2252@subsubsection Check for LTO tests
2253
2254@table @code
2255@item scan-symbol @var{regexp} [@{ target/xfail @var{selector} @}]
2256Passes if the pattern is present in the final executable.
2257@end table
2258
2259@subsubsection Checks for @command{gcov} tests
2260
2261@table @code
2262@item run-gcov @var{sourcefile}
2263Check line counts in @command{gcov} tests.
2264
2265@item run-gcov [branches] [calls] @{ @var{opts} @var{sourcefile} @}
2266Check branch and/or call counts, in addition to line counts, in
2267@command{gcov} tests.
2268@end table
2269
2270@subsubsection Clean up generated test files
2271
2272Usually the test-framework removes files that were generated during
2273testing. If a testcase, for example, uses any dumping mechanism to
2274inspect a passes dump file, the testsuite recognized the dump option
2275passed to the tool and schedules a final cleanup to remove these files.
2276
2277There are, however, following additional cleanup directives that can be
2278used to annotate a testcase "manually".
2279@table @code
2280@item cleanup-coverage-files
2281Removes coverage data files generated for this test.
2282
2283@item cleanup-modules "@var{list-of-extra-modules}"
2284Removes Fortran module files generated for this test, excluding the
2285module names listed in keep-modules.
2286Cleaning up module files is usually done automatically by the testsuite
2287by looking at the source files and removing the modules after the test
2288has been executed.
2289@smallexample
2290module MoD1
2291end module MoD1
2292module Mod2
2293end module Mod2
2294module moD3
2295end module moD3
2296module mod4
2297end module mod4
2298! @{ dg-final @{ cleanup-modules "mod1 mod2" @} @} ! redundant
2299! @{ dg-final @{ keep-modules "mod3 mod4" @} @}
2300@end smallexample
2301
2302@item keep-modules "@var{list-of-modules-not-to-delete}"
2303Whitespace separated list of module names that should not be deleted by
2304cleanup-modules.
2305If the list of modules is empty, all modules defined in this file are kept.
2306@smallexample
2307module maybe_unneeded
2308end module maybe_unneeded
2309module keep1
2310end module keep1
2311module keep2
2312end module keep2
2313! @{ dg-final @{ keep-modules "keep1 keep2" @} @} ! just keep these two
2314! @{ dg-final @{ keep-modules "" @} @} ! keep all
2315@end smallexample
2316
2317@item dg-keep-saved-temps "@var{list-of-suffixes-not-to-delete}"
2318Whitespace separated list of suffixes that should not be deleted
2319automatically in a testcase that uses @option{-save-temps}.
2320@smallexample
2321// @{ dg-options "-save-temps -fpch-preprocess -I." @}
2322int main() @{ return 0; @}
2323// @{ dg-keep-saved-temps ".s" @} ! just keep assembler file
2324// @{ dg-keep-saved-temps ".s" ".i" @} ! ... and .i
2325// @{ dg-keep-saved-temps ".ii" ".o" @} ! or just .ii and .o
2326@end smallexample
2327
2328@item cleanup-profile-file
2329Removes profiling files generated for this test.
2330
2331@item cleanup-repo-files
2332Removes files generated for this test for @option{-frepo}.
2333
2334@end table
2335
2336@node Ada Tests
2337@section Ada Language Testsuites
2338
2339The Ada testsuite includes executable tests from the ACATS
2340testsuite, publicly available at
2341@uref{http://www.ada-auth.org/acats.html}.
2342
2343These tests are integrated in the GCC testsuite in the
2344@file{ada/acats} directory, and
2345enabled automatically when running @code{make check}, assuming
2346the Ada language has been enabled when configuring GCC@.
2347
2348You can also run the Ada testsuite independently, using
2349@code{make check-ada}, or run a subset of the tests by specifying which
2350chapter to run, e.g.:
2351
2352@smallexample
2353$ make check-ada CHAPTERS="c3 c9"
2354@end smallexample
2355
2356The tests are organized by directory, each directory corresponding to
2357a chapter of the Ada Reference Manual.  So for example, @file{c9} corresponds
2358to chapter 9, which deals with tasking features of the language.
2359
2360There is also an extra chapter called @file{gcc} containing a template for
2361creating new executable tests, although this is deprecated in favor of
2362the @file{gnat.dg} testsuite.
2363
2364The tests are run using two @command{sh} scripts: @file{run_acats} and
2365@file{run_all.sh}.  To run the tests using a simulator or a cross
2366target, see the small
2367customization section at the top of @file{run_all.sh}.
2368
2369These tests are run using the build tree: they can be run without doing
2370a @code{make install}.
2371
2372@node C Tests
2373@section C Language Testsuites
2374
2375GCC contains the following C language testsuites, in the
2376@file{gcc/testsuite} directory:
2377
2378@table @file
2379@item gcc.dg
2380This contains tests of particular features of the C compiler, using the
2381more modern @samp{dg} harness.  Correctness tests for various compiler
2382features should go here if possible.
2383
2384Magic comments determine whether the file
2385is preprocessed, compiled, linked or run.  In these tests, error and warning
2386message texts are compared against expected texts or regular expressions
2387given in comments.  These tests are run with the options @samp{-ansi -pedantic}
2388unless other options are given in the test.  Except as noted below they
2389are not run with multiple optimization options.
2390@item gcc.dg/compat
2391This subdirectory contains tests for binary compatibility using
2392@file{lib/compat.exp}, which in turn uses the language-independent support
2393(@pxref{compat Testing, , Support for testing binary compatibility}).
2394@item gcc.dg/cpp
2395This subdirectory contains tests of the preprocessor.
2396@item gcc.dg/debug
2397This subdirectory contains tests for debug formats.  Tests in this
2398subdirectory are run for each debug format that the compiler supports.
2399@item gcc.dg/format
2400This subdirectory contains tests of the @option{-Wformat} format
2401checking.  Tests in this directory are run with and without
2402@option{-DWIDE}.
2403@item gcc.dg/noncompile
2404This subdirectory contains tests of code that should not compile and
2405does not need any special compilation options.  They are run with
2406multiple optimization options, since sometimes invalid code crashes
2407the compiler with optimization.
2408@item gcc.dg/special
2409FIXME: describe this.
2410
2411@item gcc.c-torture
2412This contains particular code fragments which have historically broken easily.
2413These tests are run with multiple optimization options, so tests for features
2414which only break at some optimization levels belong here.  This also contains
2415tests to check that certain optimizations occur.  It might be worthwhile to
2416separate the correctness tests cleanly from the code quality tests, but
2417it hasn't been done yet.
2418
2419@item gcc.c-torture/compat
2420FIXME: describe this.
2421
2422This directory should probably not be used for new tests.
2423@item gcc.c-torture/compile
2424This testsuite contains test cases that should compile, but do not
2425need to link or run.  These test cases are compiled with several
2426different combinations of optimization options.  All warnings are
2427disabled for these test cases, so this directory is not suitable if
2428you wish to test for the presence or absence of compiler warnings.
2429While special options can be set, and tests disabled on specific
2430platforms, by the use of @file{.x} files, mostly these test cases
2431should not contain platform dependencies.  FIXME: discuss how defines
2432such as @code{NO_LABEL_VALUES} and @code{STACK_SIZE} are used.
2433@item gcc.c-torture/execute
2434This testsuite contains test cases that should compile, link and run;
2435otherwise the same comments as for @file{gcc.c-torture/compile} apply.
2436@item gcc.c-torture/execute/ieee
2437This contains tests which are specific to IEEE floating point.
2438@item gcc.c-torture/unsorted
2439FIXME: describe this.
2440
2441This directory should probably not be used for new tests.
2442@item gcc.misc-tests
2443This directory contains C tests that require special handling.  Some
2444of these tests have individual expect files, and others share
2445special-purpose expect files:
2446
2447@table @file
2448@item @code{bprob*.c}
2449Test @option{-fbranch-probabilities} using
2450@file{gcc.misc-tests/bprob.exp}, which
2451in turn uses the generic, language-independent framework
2452(@pxref{profopt Testing, , Support for testing profile-directed
2453optimizations}).
2454
2455@item @code{gcov*.c}
2456Test @command{gcov} output using @file{gcov.exp}, which in turn uses the
2457language-independent support (@pxref{gcov Testing, , Support for testing gcov}).
2458
2459@item @code{i386-pf-*.c}
2460Test i386-specific support for data prefetch using @file{i386-prefetch.exp}.
2461@end table
2462
2463@item gcc.test-framework
2464@table @file
2465@item @code{dg-*.c}
2466Test the testsuite itself using @file{gcc.test-framework/test-framework.exp}.
2467@end table
2468
2469@end table
2470
2471FIXME: merge in @file{testsuite/README.gcc} and discuss the format of
2472test cases and magic comments more.
2473
2474@node libgcj Tests
2475@section The Java library testsuites.
2476
2477Runtime tests are executed via @samp{make check} in the
2478@file{@var{target}/libjava/testsuite} directory in the build
2479tree.  Additional runtime tests can be checked into this testsuite.
2480
2481Regression testing of the core packages in libgcj is also covered by the
2482Mauve testsuite.  The @uref{http://sourceware.org/mauve/,,Mauve Project}
2483develops tests for the Java Class Libraries.  These tests are run as part
2484of libgcj testing by placing the Mauve tree within the libjava testsuite
2485sources at @file{libjava/testsuite/libjava.mauve/mauve}, or by specifying
2486the location of that tree when invoking @samp{make}, as in
2487@samp{make MAUVEDIR=~/mauve check}.
2488
2489To detect regressions, a mechanism in @file{mauve.exp} compares the
2490failures for a test run against the list of expected failures in
2491@file{libjava/testsuite/libjava.mauve/xfails} from the source hierarchy.
2492Update this file when adding new failing tests to Mauve, or when fixing
2493bugs in libgcj that had caused Mauve test failures.
2494
2495We encourage developers to contribute test cases to Mauve.
2496
2497@node LTO Testing
2498@section Support for testing link-time optimizations
2499
2500Tests for link-time optimizations usually require multiple source files
2501that are compiled separately, perhaps with different sets of options.
2502There are several special-purpose test directives used for these tests.
2503
2504@table @code
2505@item @{ dg-lto-do @var{do-what-keyword} @}
2506@var{do-what-keyword} specifies how the test is compiled and whether
2507it is executed.  It is one of:
2508
2509@table @code
2510@item assemble
2511Compile with @option{-c} to produce a relocatable object file.
2512@item link
2513Compile, assemble, and link to produce an executable file.
2514@item run
2515Produce and run an executable file, which is expected to return
2516an exit code of 0.
2517@end table
2518
2519The default is @code{assemble}.  That can be overridden for a set of
2520tests by redefining @code{dg-do-what-default} within the @code{.exp}
2521file for those tests.
2522
2523Unlike @code{dg-do}, @code{dg-lto-do} does not support an optional
2524@samp{target} or @samp{xfail} list.  Use @code{dg-skip-if},
2525@code{dg-xfail-if}, or @code{dg-xfail-run-if}.
2526
2527@item @{ dg-lto-options @{ @{ @var{options} @} [@{ @var{options} @}] @} [@{ target @var{selector} @}]@}
2528This directive provides a list of one or more sets of compiler options
2529to override @var{LTO_OPTIONS}.  Each test will be compiled and run with
2530each of these sets of options.
2531
2532@item @{ dg-extra-ld-options @var{options} [@{ target @var{selector} @}]@}
2533This directive adds @var{options} to the linker options used.
2534
2535@item @{ dg-suppress-ld-options @var{options} [@{ target @var{selector} @}]@}
2536This directive removes @var{options} from the set of linker options used.
2537@end table
2538
2539@node gcov Testing
2540@section Support for testing @command{gcov}
2541
2542Language-independent support for testing @command{gcov}, and for checking
2543that branch profiling produces expected values, is provided by the
2544expect file @file{lib/gcov.exp}.  @command{gcov} tests also rely on procedures
2545in @file{lib/gcc-dg.exp} to compile and run the test program.  A typical
2546@command{gcov} test contains the following DejaGnu commands within comments:
2547
2548@smallexample
2549@{ dg-options "-fprofile-arcs -ftest-coverage" @}
2550@{ dg-do run @{ target native @} @}
2551@{ dg-final @{ run-gcov sourcefile @} @}
2552@end smallexample
2553
2554Checks of @command{gcov} output can include line counts, branch percentages,
2555and call return percentages.  All of these checks are requested via
2556commands that appear in comments in the test's source file.
2557Commands to check line counts are processed by default.
2558Commands to check branch percentages and call return percentages are
2559processed if the @command{run-gcov} command has arguments @code{branches}
2560or @code{calls}, respectively.  For example, the following specifies
2561checking both, as well as passing @option{-b} to @command{gcov}:
2562
2563@smallexample
2564@{ dg-final @{ run-gcov branches calls @{ -b sourcefile @} @} @}
2565@end smallexample
2566
2567A line count command appears within a comment on the source line
2568that is expected to get the specified count and has the form
2569@code{count(@var{cnt})}.  A test should only check line counts for
2570lines that will get the same count for any architecture.
2571
2572Commands to check branch percentages (@code{branch}) and call
2573return percentages (@code{returns}) are very similar to each other.
2574A beginning command appears on or before the first of a range of
2575lines that will report the percentage, and the ending command
2576follows that range of lines.  The beginning command can include a
2577list of percentages, all of which are expected to be found within
2578the range.  A range is terminated by the next command of the same
2579kind.  A command @code{branch(end)} or @code{returns(end)} marks
2580the end of a range without starting a new one.  For example:
2581
2582@smallexample
2583if (i > 10 && j > i && j < 20)  /* @r{branch(27 50 75)} */
2584                                /* @r{branch(end)} */
2585  foo (i, j);
2586@end smallexample
2587
2588For a call return percentage, the value specified is the
2589percentage of calls reported to return.  For a branch percentage,
2590the value is either the expected percentage or 100 minus that
2591value, since the direction of a branch can differ depending on the
2592target or the optimization level.
2593
2594Not all branches and calls need to be checked.  A test should not
2595check for branches that might be optimized away or replaced with
2596predicated instructions.  Don't check for calls inserted by the
2597compiler or ones that might be inlined or optimized away.
2598
2599A single test can check for combinations of line counts, branch
2600percentages, and call return percentages.  The command to check a
2601line count must appear on the line that will report that count, but
2602commands to check branch percentages and call return percentages can
2603bracket the lines that report them.
2604
2605@node profopt Testing
2606@section Support for testing profile-directed optimizations
2607
2608The file @file{profopt.exp} provides language-independent support for
2609checking correct execution of a test built with profile-directed
2610optimization.  This testing requires that a test program be built and
2611executed twice.  The first time it is compiled to generate profile
2612data, and the second time it is compiled to use the data that was
2613generated during the first execution.  The second execution is to
2614verify that the test produces the expected results.
2615
2616To check that the optimization actually generated better code, a
2617test can be built and run a third time with normal optimizations to
2618verify that the performance is better with the profile-directed
2619optimizations.  @file{profopt.exp} has the beginnings of this kind
2620of support.
2621
2622@file{profopt.exp} provides generic support for profile-directed
2623optimizations.  Each set of tests that uses it provides information
2624about a specific optimization:
2625
2626@table @code
2627@item tool
2628tool being tested, e.g., @command{gcc}
2629
2630@item profile_option
2631options used to generate profile data
2632
2633@item feedback_option
2634options used to optimize using that profile data
2635
2636@item prof_ext
2637suffix of profile data files
2638
2639@item PROFOPT_OPTIONS
2640list of options with which to run each test, similar to the lists for
2641torture tests
2642
2643@item @{ dg-final-generate @{ @var{local-directive} @} @}
2644This directive is similar to @code{dg-final}, but the
2645@var{local-directive} is run after the generation of profile data.
2646
2647@item @{ dg-final-use @{ @var{local-directive} @} @}
2648The @var{local-directive} is run after the profile data have been
2649used.
2650@end table
2651
2652@node compat Testing
2653@section Support for testing binary compatibility
2654
2655The file @file{compat.exp} provides language-independent support for
2656binary compatibility testing.  It supports testing interoperability of
2657two compilers that follow the same ABI, or of multiple sets of
2658compiler options that should not affect binary compatibility.  It is
2659intended to be used for testsuites that complement ABI testsuites.
2660
2661A test supported by this framework has three parts, each in a
2662separate source file: a main program and two pieces that interact
2663with each other to split up the functionality being tested.
2664
2665@table @file
2666@item @var{testname}_main.@var{suffix}
2667Contains the main program, which calls a function in file
2668@file{@var{testname}_x.@var{suffix}}.
2669
2670@item @var{testname}_x.@var{suffix}
2671Contains at least one call to a function in
2672@file{@var{testname}_y.@var{suffix}}.
2673
2674@item @var{testname}_y.@var{suffix}
2675Shares data with, or gets arguments from,
2676@file{@var{testname}_x.@var{suffix}}.
2677@end table
2678
2679Within each test, the main program and one functional piece are
2680compiled by the GCC under test.  The other piece can be compiled by
2681an alternate compiler.  If no alternate compiler is specified,
2682then all three source files are all compiled by the GCC under test.
2683You can specify pairs of sets of compiler options.  The first element
2684of such a pair specifies options used with the GCC under test, and the
2685second element of the pair specifies options used with the alternate
2686compiler.  Each test is compiled with each pair of options.
2687
2688@file{compat.exp} defines default pairs of compiler options.
2689These can be overridden by defining the environment variable
2690@env{COMPAT_OPTIONS} as:
2691
2692@smallexample
2693COMPAT_OPTIONS="[list [list @{@var{tst1}@} @{@var{alt1}@}]
2694  @dots{}[list @{@var{tstn}@} @{@var{altn}@}]]"
2695@end smallexample
2696
2697where @var{tsti} and @var{alti} are lists of options, with @var{tsti}
2698used by the compiler under test and @var{alti} used by the alternate
2699compiler.  For example, with
2700@code{[list [list @{-g -O0@} @{-O3@}] [list @{-fpic@} @{-fPIC -O2@}]]},
2701the test is first built with @option{-g -O0} by the compiler under
2702test and with @option{-O3} by the alternate compiler.  The test is
2703built a second time using @option{-fpic} by the compiler under test
2704and @option{-fPIC -O2} by the alternate compiler.
2705
2706An alternate compiler is specified by defining an environment
2707variable to be the full pathname of an installed compiler; for C
2708define @env{ALT_CC_UNDER_TEST}, and for C++ define
2709@env{ALT_CXX_UNDER_TEST}.  These will be written to the
2710@file{site.exp} file used by DejaGnu.  The default is to build each
2711test with the compiler under test using the first of each pair of
2712compiler options from @env{COMPAT_OPTIONS}.  When
2713@env{ALT_CC_UNDER_TEST} or
2714@env{ALT_CXX_UNDER_TEST} is @code{same}, each test is built using
2715the compiler under test but with combinations of the options from
2716@env{COMPAT_OPTIONS}.
2717
2718To run only the C++ compatibility suite using the compiler under test
2719and another version of GCC using specific compiler options, do the
2720following from @file{@var{objdir}/gcc}:
2721
2722@smallexample
2723rm site.exp
2724make -k \
2725  ALT_CXX_UNDER_TEST=$@{alt_prefix@}/bin/g++ \
2726  COMPAT_OPTIONS="@var{lists as shown above}" \
2727  check-c++ \
2728  RUNTESTFLAGS="compat.exp"
2729@end smallexample
2730
2731A test that fails when the source files are compiled with different
2732compilers, but passes when the files are compiled with the same
2733compiler, demonstrates incompatibility of the generated code or
2734runtime support.  A test that fails for the alternate compiler but
2735passes for the compiler under test probably tests for a bug that was
2736fixed in the compiler under test but is present in the alternate
2737compiler.
2738
2739The binary compatibility tests support a small number of test framework
2740commands that appear within comments in a test file.
2741
2742@table @code
2743@item dg-require-*
2744These commands can be used in @file{@var{testname}_main.@var{suffix}}
2745to skip the test if specific support is not available on the target.
2746
2747@item dg-options
2748The specified options are used for compiling this particular source
2749file, appended to the options from @env{COMPAT_OPTIONS}.  When this
2750command appears in @file{@var{testname}_main.@var{suffix}} the options
2751are also used to link the test program.
2752
2753@item dg-xfail-if
2754This command can be used in a secondary source file to specify that
2755compilation is expected to fail for particular options on particular
2756targets.
2757@end table
2758
2759@node Torture Tests
2760@section Support for torture testing using multiple options
2761
2762Throughout the compiler testsuite there are several directories whose
2763tests are run multiple times, each with a different set of options.
2764These are known as torture tests.
2765@file{lib/torture-options.exp} defines procedures to
2766set up these lists:
2767
2768@table @code
2769@item torture-init
2770Initialize use of torture lists.
2771@item set-torture-options
2772Set lists of torture options to use for tests with and without loops.
2773Optionally combine a set of torture options with a set of other
2774options, as is done with Objective-C runtime options.
2775@item torture-finish
2776Finalize use of torture lists.
2777@end table
2778
2779The @file{.exp} file for a set of tests that use torture options must
2780include calls to these three procedures if:
2781
2782@itemize @bullet
2783@item It calls @code{gcc-dg-runtest} and overrides @var{DG_TORTURE_OPTIONS}.
2784
2785@item It calls @var{$@{tool@}}@code{-torture} or
2786@var{$@{tool@}}@code{-torture-execute}, where @var{tool} is @code{c},
2787@code{fortran}, or @code{objc}.
2788
2789@item It calls @code{dg-pch}.
2790@end itemize
2791
2792It is not necessary for a @file{.exp} file that calls @code{gcc-dg-runtest}
2793to call the torture procedures if the tests should use the list in
2794@var{DG_TORTURE_OPTIONS} defined in @file{gcc-dg.exp}.
2795
2796Most uses of torture options can override the default lists by defining
2797@var{TORTURE_OPTIONS} or add to the default list by defining
2798@var{ADDITIONAL_TORTURE_OPTIONS}.  Define these in a @file{.dejagnurc}
2799file or add them to the @file{site.exp} file; for example
2800
2801@smallexample
2802set ADDITIONAL_TORTURE_OPTIONS  [list \
2803  @{ -O2 -ftree-loop-linear @} \
2804  @{ -O2 -fpeel-loops @} ]
2805@end smallexample
2806