]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/doc/tm.texi
tm.texi.in (HANDLE_SYSV_PRAGMA, [...]): Remove.
[thirdparty/gcc.git] / gcc / doc / tm.texi
CommitLineData
c58b209a 1@c Copyright (C) 1988,1989,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,
9b7e6950 2@c 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
66647d44 3@c Free Software Foundation, Inc.
feca2ed3
JW
4@c This is part of the GCC manual.
5@c For copying conditions, see the file gcc.texi.
6
7@node Target Macros
672a6f42 8@chapter Target Description Macros and Functions
feca2ed3
JW
9@cindex machine description macros
10@cindex target description macros
11@cindex macros, target description
12@cindex @file{tm.h} macros
13
14In addition to the file @file{@var{machine}.md}, a machine description
15includes a C header file conventionally given the name
672a6f42
NB
16@file{@var{machine}.h} and a C source file named @file{@var{machine}.c}.
17The header file defines numerous macros that convey the information
18about the target machine that does not fit into the scheme of the
19@file{.md} file. The file @file{tm.h} should be a link to
20@file{@var{machine}.h}. The header file @file{config.h} includes
21@file{tm.h} and most compiler source files include @file{config.h}. The
648c546a 22source file defines a variable @code{targetm}, which is a structure
672a6f42
NB
23containing pointers to functions and data relating to the target
24machine. @file{@var{machine}.c} should also contain their definitions,
25if they are not defined elsewhere in GCC, and other functions called
26through the macros defined in the @file{.h} file.
feca2ed3
JW
27
28@menu
648c546a 29* Target Structure:: The @code{targetm} variable.
feca2ed3 30* Driver:: Controlling how the driver runs the compilation passes.
630d3d5a 31* Run-time Target:: Defining @samp{-m} options like @option{-m68000} and @option{-m68020}.
414c4dc4 32* Per-Function Data:: Defining data structures for per-function information.
feca2ed3
JW
33* Storage Layout:: Defining sizes and alignments of data.
34* Type Layout:: Defining sizes and properties of basic user data types.
35* Registers:: Naming and describing the hardware registers.
36* Register Classes:: Defining the classes of hardware registers.
f38840db 37* Old Constraints:: The old way to define machine-specific constraints.
feca2ed3 38* Stack and Calling:: Defining which way the stack grows and by how much.
6ccde948 39* Varargs:: Defining the varargs macros.
feca2ed3
JW
40* Trampolines:: Code set up at run time to enter a nested function.
41* Library Calls:: Controlling how library routines are implicitly called.
42* Addressing Modes:: Defining addressing modes valid for memory operands.
aacd3885 43* Anchored Addresses:: Defining how @option{-fsection-anchors} should work.
feca2ed3
JW
44* Condition Code:: Defining how insns update the condition code.
45* Costs:: Defining relative costs of different operations.
c237e94a 46* Scheduling:: Adjusting the behavior of the instruction scheduler.
feca2ed3 47* Sections:: Dividing storage into text, data, and other sections.
6ccde948 48* PIC:: Macros for position independent code.
feca2ed3
JW
49* Assembler Format:: Defining how to write insns and pseudo-ops to output.
50* Debugging Info:: Defining the format of debugging output.
b216cd4a 51* Floating Point:: Handling floating point for cross-compilers.
9f09b1f2 52* Mode Switching:: Insertion of mode-switching instructions.
91d231cb 53* Target Attributes:: Defining target-specific uses of @code{__attribute__}.
feb60f03 54* Emulated TLS:: Emulated TLS support.
d604bca3 55* MIPS Coprocessors:: MIPS coprocessor support and how to customize it.
7bb1ad93 56* PCH Target:: Validity checking for precompiled headers.
4185ae53 57* C++ ABI:: Controlling C++ ABI changes.
09e881c9 58* Named Address Spaces:: Adding support for named address spaces
feca2ed3
JW
59* Misc:: Everything else.
60@end menu
61
672a6f42 62@node Target Structure
648c546a 63@section The Global @code{targetm} Variable
672a6f42
NB
64@cindex target hooks
65@cindex target functions
66
f6897b10
SS
67@deftypevar {struct gcc_target} targetm
68The target @file{.c} file must define the global @code{targetm} variable
672a6f42
NB
69which contains pointers to functions and data relating to the target
70machine. The variable is declared in @file{target.h};
71@file{target-def.h} defines the macro @code{TARGET_INITIALIZER} which is
72used to initialize the variable, and macros for the default initializers
73for elements of the structure. The @file{.c} file should override those
74macros for which the default definition is inappropriate. For example:
75@smallexample
76#include "target.h"
77#include "target-def.h"
78
79/* @r{Initialize the GCC target structure.} */
80
91d231cb
JM
81#undef TARGET_COMP_TYPE_ATTRIBUTES
82#define TARGET_COMP_TYPE_ATTRIBUTES @var{machine}_comp_type_attributes
672a6f42 83
f6897b10 84struct gcc_target targetm = TARGET_INITIALIZER;
672a6f42
NB
85@end smallexample
86@end deftypevar
87
88Where a macro should be defined in the @file{.c} file in this manner to
648c546a 89form part of the @code{targetm} structure, it is documented below as a
672a6f42
NB
90``Target Hook'' with a prototype. Many macros will change in future
91from being defined in the @file{.h} file to being part of the
648c546a 92@code{targetm} structure.
672a6f42 93
feca2ed3
JW
94@node Driver
95@section Controlling the Compilation Driver, @file{gcc}
96@cindex driver
97@cindex controlling the compilation driver
98
99@c prevent bad page break with this line
100You can control the compilation driver.
101
a2c4f8e0 102@defmac DRIVER_SELF_SPECS
db36994b
RS
103A list of specs for the driver itself. It should be a suitable
104initializer for an array of strings, with no surrounding braces.
105
3bd6d4c4
AO
106The driver applies these specs to its own command line between loading
107default @file{specs} files (but not command-line specified ones) and
108choosing the multilib directory or running any subcommands. It
109applies them in the order given, so each spec can depend on the
110options added by earlier ones. It is also possible to remove options
111using @samp{%<@var{option}} in the usual way.
db36994b
RS
112
113This macro can be useful when a port has several interdependent target
114options. It provides a way of standardizing the command line so
115that the other specs are easier to write.
116
117Do not define this macro if it does not need to do anything.
a2c4f8e0 118@end defmac
db36994b 119
a2c4f8e0 120@defmac OPTION_DEFAULT_SPECS
7816bea0
DJ
121A list of specs used to support configure-time default options (i.e.@:
122@option{--with} options) in the driver. It should be a suitable initializer
123for an array of structures, each containing two strings, without the
124outermost pair of surrounding braces.
125
126The first item in the pair is the name of the default. This must match
127the code in @file{config.gcc} for the target. The second item is a spec
128to apply if a default with this name was specified. The string
129@samp{%(VALUE)} in the spec will be replaced by the value of the default
130everywhere it occurs.
131
132The driver will apply these specs to its own command line between loading
133default @file{specs} files and processing @code{DRIVER_SELF_SPECS}, using
134the same mechanism as @code{DRIVER_SELF_SPECS}.
135
136Do not define this macro if it does not need to do anything.
a2c4f8e0 137@end defmac
7816bea0 138
a2c4f8e0 139@defmac CPP_SPEC
a3a15b4d 140A C string constant that tells the GCC driver program options to
161d7b59
JM
141pass to CPP@. It can also specify how to translate options you
142give to GCC into options for GCC to pass to the CPP@.
feca2ed3
JW
143
144Do not define this macro if it does not need to do anything.
a2c4f8e0 145@end defmac
feca2ed3 146
a2c4f8e0 147@defmac CPLUSPLUS_CPP_SPEC
a9374841 148This macro is just like @code{CPP_SPEC}, but is used for C++, rather
161d7b59 149than C@. If you do not define this macro, then the value of
a9374841 150@code{CPP_SPEC} (if any) will be used instead.
a2c4f8e0 151@end defmac
a9374841 152
a2c4f8e0 153@defmac CC1_SPEC
a3a15b4d 154A C string constant that tells the GCC driver program options to
66519c70
JL
155pass to @code{cc1}, @code{cc1plus}, @code{f771}, and the other language
156front ends.
a3a15b4d 157It can also specify how to translate options you give to GCC into options
630d3d5a 158for GCC to pass to front ends.
feca2ed3
JW
159
160Do not define this macro if it does not need to do anything.
a2c4f8e0 161@end defmac
feca2ed3 162
a2c4f8e0 163@defmac CC1PLUS_SPEC
a3a15b4d 164A C string constant that tells the GCC driver program options to
feca2ed3 165pass to @code{cc1plus}. It can also specify how to translate options you
a3a15b4d 166give to GCC into options for GCC to pass to the @code{cc1plus}.
feca2ed3
JW
167
168Do not define this macro if it does not need to do anything.
1d96e5b4
FF
169Note that everything defined in CC1_SPEC is already passed to
170@code{cc1plus} so there is no need to duplicate the contents of
161d7b59 171CC1_SPEC in CC1PLUS_SPEC@.
a2c4f8e0 172@end defmac
feca2ed3 173
a2c4f8e0 174@defmac ASM_SPEC
a3a15b4d 175A C string constant that tells the GCC driver program options to
feca2ed3 176pass to the assembler. It can also specify how to translate options
a3a15b4d 177you give to GCC into options for GCC to pass to the assembler.
feca2ed3
JW
178See the file @file{sun3.h} for an example of this.
179
180Do not define this macro if it does not need to do anything.
a2c4f8e0 181@end defmac
feca2ed3 182
a2c4f8e0 183@defmac ASM_FINAL_SPEC
a3a15b4d 184A C string constant that tells the GCC driver program how to
feca2ed3
JW
185run any programs which cleanup after the normal assembler.
186Normally, this is not needed. See the file @file{mips.h} for
187an example of this.
188
189Do not define this macro if it does not need to do anything.
a2c4f8e0 190@end defmac
feca2ed3 191
a2c4f8e0 192@defmac AS_NEEDS_DASH_FOR_PIPED_INPUT
4977bab6
ZW
193Define this macro, with no value, if the driver should give the assembler
194an argument consisting of a single dash, @option{-}, to instruct it to
195read from its standard input (which will be a pipe connected to the
196output of the compiler proper). This argument is given after any
197@option{-o} option specifying the name of the output file.
198
199If you do not define this macro, the assembler is assumed to read its
200standard input if given no non-option arguments. If your assembler
201cannot read standard input at all, use a @samp{%@{pipe:%e@}} construct;
202see @file{mips.h} for instance.
a2c4f8e0 203@end defmac
4977bab6 204
a2c4f8e0 205@defmac LINK_SPEC
a3a15b4d 206A C string constant that tells the GCC driver program options to
feca2ed3 207pass to the linker. It can also specify how to translate options you
a3a15b4d 208give to GCC into options for GCC to pass to the linker.
feca2ed3
JW
209
210Do not define this macro if it does not need to do anything.
a2c4f8e0 211@end defmac
feca2ed3 212
a2c4f8e0 213@defmac LIB_SPEC
feca2ed3
JW
214Another C string constant used much like @code{LINK_SPEC}. The difference
215between the two is that @code{LIB_SPEC} is used at the end of the
216command given to the linker.
217
218If this macro is not defined, a default is provided that
219loads the standard C library from the usual place. See @file{gcc.c}.
a2c4f8e0 220@end defmac
feca2ed3 221
a2c4f8e0 222@defmac LIBGCC_SPEC
a3a15b4d 223Another C string constant that tells the GCC driver program
feca2ed3
JW
224how and when to place a reference to @file{libgcc.a} into the
225linker command line. This constant is placed both before and after
226the value of @code{LIB_SPEC}.
227
a3a15b4d 228If this macro is not defined, the GCC driver provides a default that
630d3d5a 229passes the string @option{-lgcc} to the linker.
a2c4f8e0 230@end defmac
feca2ed3 231
328163dc
MA
232@defmac REAL_LIBGCC_SPEC
233By default, if @code{ENABLE_SHARED_LIBGCC} is defined, the
234@code{LIBGCC_SPEC} is not directly used by the driver program but is
235instead modified to refer to different versions of @file{libgcc.a}
4ec7afd7
KH
236depending on the values of the command line flags @option{-static},
237@option{-shared}, @option{-static-libgcc}, and @option{-shared-libgcc}. On
328163dc
MA
238targets where these modifications are inappropriate, define
239@code{REAL_LIBGCC_SPEC} instead. @code{REAL_LIBGCC_SPEC} tells the
240driver how to place a reference to @file{libgcc} on the link command
241line, but, unlike @code{LIBGCC_SPEC}, it is used unmodified.
242@end defmac
243
743eeb5a
AM
244@defmac USE_LD_AS_NEEDED
245A macro that controls the modifications to @code{LIBGCC_SPEC}
246mentioned in @code{REAL_LIBGCC_SPEC}. If nonzero, a spec will be
247generated that uses --as-needed and the shared libgcc in place of the
248static exception handler library, when linking without any of
249@code{-static}, @code{-static-libgcc}, or @code{-shared-libgcc}.
250@end defmac
251
252@defmac LINK_EH_SPEC
253If defined, this C string constant is added to @code{LINK_SPEC}.
254When @code{USE_LD_AS_NEEDED} is zero or undefined, it also affects
255the modifications to @code{LIBGCC_SPEC} mentioned in
256@code{REAL_LIBGCC_SPEC}.
257@end defmac
258
a2c4f8e0 259@defmac STARTFILE_SPEC
feca2ed3
JW
260Another C string constant used much like @code{LINK_SPEC}. The
261difference between the two is that @code{STARTFILE_SPEC} is used at
262the very beginning of the command given to the linker.
263
264If this macro is not defined, a default is provided that loads the
265standard C startup file from the usual place. See @file{gcc.c}.
a2c4f8e0 266@end defmac
feca2ed3 267
a2c4f8e0 268@defmac ENDFILE_SPEC
feca2ed3
JW
269Another C string constant used much like @code{LINK_SPEC}. The
270difference between the two is that @code{ENDFILE_SPEC} is used at
271the very end of the command given to the linker.
272
273Do not define this macro if it does not need to do anything.
a2c4f8e0 274@end defmac
feca2ed3 275
a2c4f8e0 276@defmac THREAD_MODEL_SPEC
008355a6
AO
277GCC @code{-v} will print the thread model GCC was configured to use.
278However, this doesn't work on platforms that are multilibbed on thread
279models, such as AIX 4.3. On such platforms, define
280@code{THREAD_MODEL_SPEC} such that it evaluates to a string without
281blanks that names one of the recognized thread models. @code{%*}, the
282default value of this macro, will expand to the value of
283@code{thread_file} set in @file{config.gcc}.
a2c4f8e0 284@end defmac
008355a6 285
a2c4f8e0 286@defmac SYSROOT_SUFFIX_SPEC
73774972
EC
287Define this macro to add a suffix to the target sysroot when GCC is
288configured with a sysroot. This will cause GCC to search for usr/lib,
289et al, within sysroot+suffix.
a2c4f8e0 290@end defmac
e7f13528 291
a2c4f8e0 292@defmac SYSROOT_HEADERS_SUFFIX_SPEC
73774972
EC
293Define this macro to add a headers_suffix to the target sysroot when
294GCC is configured with a sysroot. This will cause GCC to pass the
f4314bb6 295updated sysroot+headers_suffix to CPP, causing it to search for
e7f13528 296usr/include, et al, within sysroot+headers_suffix.
a2c4f8e0 297@end defmac
e7f13528 298
a2c4f8e0 299@defmac EXTRA_SPECS
feca2ed3
JW
300Define this macro to provide additional specifications to put in the
301@file{specs} file that can be used in various specifications like
302@code{CC1_SPEC}.
303
304The definition should be an initializer for an array of structures,
305containing a string constant, that defines the specification name, and a
306string constant that provides the specification.
307
308Do not define this macro if it does not need to do anything.
309
310@code{EXTRA_SPECS} is useful when an architecture contains several
630d3d5a 311related targets, which have various @code{@dots{}_SPECS} which are similar
feca2ed3
JW
312to each other, and the maintainer would like one central place to keep
313these definitions.
314
315For example, the PowerPC System V.4 targets use @code{EXTRA_SPECS} to
316define either @code{_CALL_SYSV} when the System V calling sequence is
317used or @code{_CALL_AIX} when the older AIX-based calling sequence is
318used.
319
320The @file{config/rs6000/rs6000.h} target file defines:
321
3ab51846 322@smallexample
feca2ed3
JW
323#define EXTRA_SPECS \
324 @{ "cpp_sysv_default", CPP_SYSV_DEFAULT @},
325
326#define CPP_SYS_DEFAULT ""
3ab51846 327@end smallexample
feca2ed3
JW
328
329The @file{config/rs6000/sysv.h} target file defines:
330@smallexample
331#undef CPP_SPEC
332#define CPP_SPEC \
333"%@{posix: -D_POSIX_SOURCE @} \
50d440bc
NC
334%@{mcall-sysv: -D_CALL_SYSV @} \
335%@{!mcall-sysv: %(cpp_sysv_default) @} \
feca2ed3
JW
336%@{msoft-float: -D_SOFT_FLOAT@} %@{mcpu=403: -D_SOFT_FLOAT@}"
337
338#undef CPP_SYSV_DEFAULT
339#define CPP_SYSV_DEFAULT "-D_CALL_SYSV"
340@end smallexample
341
342while the @file{config/rs6000/eabiaix.h} target file defines
343@code{CPP_SYSV_DEFAULT} as:
344
345@smallexample
346#undef CPP_SYSV_DEFAULT
347#define CPP_SYSV_DEFAULT "-D_CALL_AIX"
348@end smallexample
a2c4f8e0 349@end defmac
feca2ed3 350
a2c4f8e0 351@defmac LINK_LIBGCC_SPECIAL_1
feca2ed3
JW
352Define this macro if the driver program should find the library
353@file{libgcc.a}. If you do not define this macro, the driver program will pass
630d3d5a 354the argument @option{-lgcc} to tell the linker to do the search.
a2c4f8e0 355@end defmac
feca2ed3 356
a2c4f8e0 357@defmac LINK_GCC_C_SEQUENCE_SPEC
bbd7687d
DM
358The sequence in which libgcc and libc are specified to the linker.
359By default this is @code{%G %L %G}.
a2c4f8e0 360@end defmac
bbd7687d 361
a2c4f8e0 362@defmac LINK_COMMAND_SPEC
9ec36da5
JL
363A C string constant giving the complete command line need to execute the
364linker. When you do this, you will need to update your port each time a
365change is made to the link command line within @file{gcc.c}. Therefore,
366define this macro only if you need to completely redefine the command
367line for invoking the linker and there is no other way to accomplish
bbd7687d
DM
368the effect you need. Overriding this macro may be avoidable by overriding
369@code{LINK_GCC_C_SEQUENCE_SPEC} instead.
a2c4f8e0 370@end defmac
9ec36da5 371
a2c4f8e0 372@defmac LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
2cc07db4 373A nonzero value causes @command{collect2} to remove duplicate @option{-L@var{directory}} search
5897739e
JO
374directories from linking commands. Do not give it a nonzero value if
375removing duplicate search directories changes the linker's semantics.
a2c4f8e0 376@end defmac
5897739e 377
a2c4f8e0 378@defmac MULTILIB_DEFAULTS
feca2ed3
JW
379Define this macro as a C expression for the initializer of an array of
380string to tell the driver program which options are defaults for this
381target and thus do not need to be handled specially when using
382@code{MULTILIB_OPTIONS}.
383
384Do not define this macro if @code{MULTILIB_OPTIONS} is not defined in
385the target makefile fragment or if none of the options listed in
386@code{MULTILIB_OPTIONS} are set by default.
387@xref{Target Fragment}.
a2c4f8e0 388@end defmac
feca2ed3 389
a2c4f8e0 390@defmac RELATIVE_PREFIX_NOT_LINKDIR
05739753 391Define this macro to tell @command{gcc} that it should only translate
630d3d5a 392a @option{-B} prefix into a @option{-L} linker option if the prefix
feca2ed3 393indicates an absolute file name.
a2c4f8e0 394@end defmac
feca2ed3 395
a2c4f8e0 396@defmac MD_EXEC_PREFIX
feca2ed3
JW
397If defined, this macro is an additional prefix to try after
398@code{STANDARD_EXEC_PREFIX}. @code{MD_EXEC_PREFIX} is not searched
1401cf37 399when the compiler is built as a cross
5505263f
JL
400compiler. If you define @code{MD_EXEC_PREFIX}, then be sure to add it
401to the list of directories used to find the assembler in @file{configure.in}.
a2c4f8e0 402@end defmac
feca2ed3 403
a2c4f8e0 404@defmac STANDARD_STARTFILE_PREFIX
feca2ed3 405Define this macro as a C string constant if you wish to override the
0d037580 406standard choice of @code{libdir} as the default prefix to
feca2ed3 407try when searching for startup files such as @file{crt0.o}.
0d037580
DJ
408@code{STANDARD_STARTFILE_PREFIX} is not searched when the compiler
409is built as a cross compiler.
a2c4f8e0 410@end defmac
feca2ed3 411
656c7a3a
AL
412@defmac STANDARD_STARTFILE_PREFIX_1
413Define this macro as a C string constant if you wish to override the
414standard choice of @code{/lib} as a prefix to try after the default prefix
415when searching for startup files such as @file{crt0.o}.
416@code{STANDARD_STARTFILE_PREFIX_1} is not searched when the compiler
417is built as a cross compiler.
418@end defmac
419
420@defmac STANDARD_STARTFILE_PREFIX_2
421Define this macro as a C string constant if you wish to override the
422standard choice of @code{/lib} as yet another prefix to try after the
423default prefix when searching for startup files such as @file{crt0.o}.
424@code{STANDARD_STARTFILE_PREFIX_2} is not searched when the compiler
425is built as a cross compiler.
426@end defmac
427
a2c4f8e0 428@defmac MD_STARTFILE_PREFIX
feca2ed3
JW
429If defined, this macro supplies an additional prefix to try after the
430standard prefixes. @code{MD_EXEC_PREFIX} is not searched when the
1401cf37 431compiler is built as a cross compiler.
a2c4f8e0 432@end defmac
feca2ed3 433
a2c4f8e0 434@defmac MD_STARTFILE_PREFIX_1
feca2ed3 435If defined, this macro supplies yet another prefix to try after the
1401cf37
MLI
436standard prefixes. It is not searched when the compiler is built as a
437cross compiler.
a2c4f8e0 438@end defmac
feca2ed3 439
a2c4f8e0 440@defmac INIT_ENVIRONMENT
e9a25f70 441Define this macro as a C string constant if you wish to set environment
feca2ed3
JW
442variables for programs called by the driver, such as the assembler and
443loader. The driver passes the value of this macro to @code{putenv} to
444initialize the necessary environment variables.
a2c4f8e0 445@end defmac
feca2ed3 446
a2c4f8e0 447@defmac LOCAL_INCLUDE_DIR
feca2ed3
JW
448Define this macro as a C string constant if you wish to override the
449standard choice of @file{/usr/local/include} as the default prefix to
450try when searching for local header files. @code{LOCAL_INCLUDE_DIR}
451comes before @code{SYSTEM_INCLUDE_DIR} in the search order.
452
c237e94a
ZW
453Cross compilers do not search either @file{/usr/local/include} or its
454replacement.
a2c4f8e0 455@end defmac
feca2ed3 456
a2c4f8e0 457@defmac SYSTEM_INCLUDE_DIR
feca2ed3
JW
458Define this macro as a C string constant if you wish to specify a
459system-specific directory to search for header files before the standard
460directory. @code{SYSTEM_INCLUDE_DIR} comes before
461@code{STANDARD_INCLUDE_DIR} in the search order.
462
463Cross compilers do not use this macro and do not search the directory
464specified.
a2c4f8e0 465@end defmac
feca2ed3 466
a2c4f8e0 467@defmac STANDARD_INCLUDE_DIR
feca2ed3
JW
468Define this macro as a C string constant if you wish to override the
469standard choice of @file{/usr/include} as the default prefix to
470try when searching for header files.
471
a2c4f8e0 472Cross compilers ignore this macro and do not search either
feca2ed3 473@file{/usr/include} or its replacement.
a2c4f8e0 474@end defmac
feca2ed3 475
a2c4f8e0 476@defmac STANDARD_INCLUDE_COMPONENT
e9a25f70
JL
477The ``component'' corresponding to @code{STANDARD_INCLUDE_DIR}.
478See @code{INCLUDE_DEFAULTS}, below, for the description of components.
479If you do not define this macro, no component is used.
a2c4f8e0 480@end defmac
e9a25f70 481
a2c4f8e0 482@defmac INCLUDE_DEFAULTS
feca2ed3 483Define this macro if you wish to override the entire default search path
e9a25f70
JL
484for include files. For a native compiler, the default search path
485usually consists of @code{GCC_INCLUDE_DIR}, @code{LOCAL_INCLUDE_DIR},
feca2ed3
JW
486@code{SYSTEM_INCLUDE_DIR}, @code{GPLUSPLUS_INCLUDE_DIR}, and
487@code{STANDARD_INCLUDE_DIR}. In addition, @code{GPLUSPLUS_INCLUDE_DIR}
488and @code{GCC_INCLUDE_DIR} are defined automatically by @file{Makefile},
161d7b59 489and specify private search areas for GCC@. The directory
feca2ed3
JW
490@code{GPLUSPLUS_INCLUDE_DIR} is used only for C++ programs.
491
492The definition should be an initializer for an array of structures.
e9a25f70 493Each array element should have four elements: the directory name (a
9f6dc500
HPN
494string constant), the component name (also a string constant), a flag
495for C++-only directories,
e9a25f70
JL
496and a flag showing that the includes in the directory don't need to be
497wrapped in @code{extern @samp{C}} when compiling C++. Mark the end of
498the array with a null element.
499
500The component name denotes what GNU package the include file is part of,
4bd0bee9 501if any, in all uppercase letters. For example, it might be @samp{GCC}
9f6dc500 502or @samp{BINUTILS}. If the package is part of a vendor-supplied
e9a25f70
JL
503operating system, code the component name as @samp{0}.
504
e9a25f70 505For example, here is the definition used for VAX/VMS:
feca2ed3 506
3ab51846 507@smallexample
feca2ed3
JW
508#define INCLUDE_DEFAULTS \
509@{ \
e9a25f70
JL
510 @{ "GNU_GXX_INCLUDE:", "G++", 1, 1@}, \
511 @{ "GNU_CC_INCLUDE:", "GCC", 0, 0@}, \
512 @{ "SYS$SYSROOT:[SYSLIB.]", 0, 0, 0@}, \
513 @{ ".", 0, 0, 0@}, \
514 @{ 0, 0, 0, 0@} \
feca2ed3 515@}
3ab51846 516@end smallexample
a2c4f8e0 517@end defmac
feca2ed3
JW
518
519Here is the order of prefixes tried for exec files:
520
521@enumerate
522@item
630d3d5a 523Any prefixes specified by the user with @option{-B}.
feca2ed3
JW
524
525@item
fe037b8a
CD
526The environment variable @code{GCC_EXEC_PREFIX} or, if @code{GCC_EXEC_PREFIX}
527is not set and the compiler has not been installed in the configure-time
528@var{prefix}, the location in which the compiler has actually been installed.
feca2ed3
JW
529
530@item
531The directories specified by the environment variable @code{COMPILER_PATH}.
532
533@item
fe037b8a
CD
534The macro @code{STANDARD_EXEC_PREFIX}, if the compiler has been installed
535in the configured-time @var{prefix}.
feca2ed3
JW
536
537@item
fe037b8a 538The location @file{/usr/libexec/gcc/}, but only if this is a native compiler.
feca2ed3
JW
539
540@item
fe037b8a
CD
541The location @file{/usr/lib/gcc/}, but only if this is a native compiler.
542
543@item
544The macro @code{MD_EXEC_PREFIX}, if defined, but only if this is a native
545compiler.
feca2ed3
JW
546@end enumerate
547
548Here is the order of prefixes tried for startfiles:
549
550@enumerate
551@item
630d3d5a 552Any prefixes specified by the user with @option{-B}.
feca2ed3
JW
553
554@item
fe037b8a
CD
555The environment variable @code{GCC_EXEC_PREFIX} or its automatically determined
556value based on the installed toolchain location.
feca2ed3
JW
557
558@item
559The directories specified by the environment variable @code{LIBRARY_PATH}
512b62fb 560(or port-specific name; native only, cross compilers do not use this).
feca2ed3
JW
561
562@item
fe037b8a
CD
563The macro @code{STANDARD_EXEC_PREFIX}, but only if the toolchain is installed
564in the configured @var{prefix} or this is a native compiler.
feca2ed3
JW
565
566@item
fe037b8a
CD
567The location @file{/usr/lib/gcc/}, but only if this is a native compiler.
568
569@item
570The macro @code{MD_EXEC_PREFIX}, if defined, but only if this is a native
571compiler.
feca2ed3
JW
572
573@item
fe037b8a
CD
574The macro @code{MD_STARTFILE_PREFIX}, if defined, but only if this is a
575native compiler, or we have a target system root.
feca2ed3
JW
576
577@item
fe037b8a
CD
578The macro @code{MD_STARTFILE_PREFIX_1}, if defined, but only if this is a
579native compiler, or we have a target system root.
feca2ed3
JW
580
581@item
fe037b8a
CD
582The macro @code{STANDARD_STARTFILE_PREFIX}, with any sysroot modifications.
583If this path is relative it will be prefixed by @code{GCC_EXEC_PREFIX} and
584the machine suffix or @code{STANDARD_EXEC_PREFIX} and the machine suffix.
feca2ed3
JW
585
586@item
fe037b8a
CD
587The macro @code{STANDARD_STARTFILE_PREFIX_1}, but only if this is a native
588compiler, or we have a target system root. The default for this macro is
feca2ed3
JW
589@file{/lib/}.
590
591@item
fe037b8a
CD
592The macro @code{STANDARD_STARTFILE_PREFIX_2}, but only if this is a native
593compiler, or we have a target system root. The default for this macro is
feca2ed3
JW
594@file{/usr/lib/}.
595@end enumerate
596
597@node Run-time Target
598@section Run-time Target Specification
599@cindex run-time target specification
600@cindex predefined macros
601@cindex target specifications
602
603@c prevent bad page break with this line
604Here are run-time target specifications.
605
a2c4f8e0 606@defmac TARGET_CPU_CPP_BUILTINS ()
12a41c22 607This function-like macro expands to a block of code that defines
44082375 608built-in preprocessor macros and assertions for the target CPU, using
1f95326c 609the functions @code{builtin_define}, @code{builtin_define_std} and
cb60f38d 610@code{builtin_assert}. When the front end
12a41c22
NB
611calls this macro it provides a trailing semicolon, and since it has
612finished command line option processing your code can use those
613results freely.
3df89291
NB
614
615@code{builtin_assert} takes a string in the form you pass to the
616command-line option @option{-A}, such as @code{cpu=mips}, and creates
d90a95fb 617the assertion. @code{builtin_define} takes a string in the form
3df89291
NB
618accepted by option @option{-D} and unconditionally defines the macro.
619
d90a95fb 620@code{builtin_define_std} takes a string representing the name of an
3df89291 621object-like macro. If it doesn't lie in the user's namespace,
d90a95fb 622@code{builtin_define_std} defines it unconditionally. Otherwise, it
3df89291
NB
623defines a version with two leading underscores, and another version
624with two leading and trailing underscores, and defines the original
625only if an ISO standard was not requested on the command line. For
626example, passing @code{unix} defines @code{__unix}, @code{__unix__}
627and possibly @code{unix}; passing @code{_mips} defines @code{__mips},
628@code{__mips__} and possibly @code{_mips}, and passing @code{_ABI64}
629defines only @code{_ABI64}.
630
e0322d5c
NB
631You can also test for the C dialect being compiled. The variable
632@code{c_language} is set to one of @code{clk_c}, @code{clk_cplusplus}
633or @code{clk_objective_c}. Note that if we are preprocessing
634assembler, this variable will be @code{clk_c} but the function-like
635macro @code{preprocessing_asm_p()} will return true, so you might want
ce3649d2 636to check for that first. If you need to check for strict ANSI, the
c219e1da
JDA
637variable @code{flag_iso} can be used. The function-like macro
638@code{preprocessing_trad_p()} can be used to check for traditional
639preprocessing.
a2c4f8e0 640@end defmac
e0322d5c 641
a2c4f8e0 642@defmac TARGET_OS_CPP_BUILTINS ()
12a41c22
NB
643Similarly to @code{TARGET_CPU_CPP_BUILTINS} but this macro is optional
644and is used for the target operating system instead.
a2c4f8e0 645@end defmac
12a41c22 646
a2c4f8e0 647@defmac TARGET_OBJFMT_CPP_BUILTINS ()
4e2e315f
NB
648Similarly to @code{TARGET_CPU_CPP_BUILTINS} but this macro is optional
649and is used for the target object format. @file{elfos.h} uses this
650macro to define @code{__ELF__}, so you probably do not need to define
651it yourself.
a2c4f8e0 652@end defmac
4e2e315f 653
a2c4f8e0 654@deftypevar {extern int} target_flags
75685792
RS
655This variable is declared in @file{options.h}, which is included before
656any target-specific headers.
a2c4f8e0 657@end deftypevar
feca2ed3 658
9e3be889 659@deftypevr {Target Hook} int TARGET_DEFAULT_TARGET_FLAGS
75685792
RS
660This variable specifies the initial value of @code{target_flags}.
661Its default setting is 0.
9e3be889 662@end deftypevr
75685792 663
bacf5b96
RS
664@cindex optional hardware or system features
665@cindex features, optional, in system conventions
666
75685792
RS
667@deftypefn {Target Hook} bool TARGET_HANDLE_OPTION (size_t @var{code}, const char *@var{arg}, int @var{value})
668This hook is called whenever the user specifies one of the
669target-specific options described by the @file{.opt} definition files
670(@pxref{Options}). It has the opportunity to do some option-specific
671processing and should return true if the option is valid. The default
672definition does nothing but return true.
673
674@var{code} specifies the @code{OPT_@var{name}} enumeration value
675associated with the selected option; @var{name} is just a rendering of
676the option name in which non-alphanumeric characters are replaced by
677underscores. @var{arg} specifies the string argument and is null if
678no argument was given. If the option is flagged as a @code{UInteger}
679(@pxref{Option properties}), @var{value} is the numeric value of the
680argument. Otherwise @var{value} is 1 if the positive form of the
681option was used and 0 if the ``no-'' form was.
682@end deftypefn
683
1f1d5130
MS
684@deftypefn {Target Hook} bool TARGET_HANDLE_C_OPTION (size_t @var{code}, const char *@var{arg}, int @var{value})
685This target hook is called whenever the user specifies one of the
686target-specific C language family options described by the @file{.opt}
687definition files(@pxref{Options}). It has the opportunity to do some
688option-specific processing and should return true if the option is
7a241624
JR
689valid. The arguments are like for @code{TARGET_HANDLE_OPTION}. The
690default definition does nothing but return false.
1f1d5130
MS
691
692In general, you should use @code{TARGET_HANDLE_OPTION} to handle
693options. However, if processing an option requires routines that are
694only available in the C (and related language) front ends, then you
695should use @code{TARGET_HANDLE_C_OPTION} instead.
696@end deftypefn
697
91ebb981
IS
698@deftypefn {Target Hook} tree TARGET_OBJC_CONSTRUCT_STRING_OBJECT (tree @var{string})
699Targets may provide a string object type that can be used within and between C, C++ and their respective Objective-C dialects. A string object might, for example, embed encoding and length information. These objects are considered opaque to the compiler and handled as references. An ideal implementation makes the composition of the string object match that of the Objective-C @code{NSString} (@code{NXString} for GNUStep), allowing efficient interworking between C-only and Objective-C code. If a target implements string objects then this hook should return a reference to such an object constructed from the normal `C' string representation provided in @var{string}. At present, the hook is used by Objective-C only, to obtain a common-format string object when the target provides one.
700@end deftypefn
701
702@deftypefn {Target Hook} bool TARGET_STRING_OBJECT_REF_TYPE_P (const_tree @var{stringref})
703If a target implements string objects then this hook should return @code{true} if @var{stringref} is a valid reference to such an object.
704@end deftypefn
705
706@deftypefn {Target Hook} void TARGET_CHECK_STRING_OBJECT_FORMAT_ARG (tree @var{format_arg}, tree @var{args_list})
707If a target implements string objects then this hook should should provide a facility to check the function arguments in @var{args_list} against the format specifiers in @var{format_arg} where the type of @var{format_arg} is one recognized as a valid string reference type.
26705988
IS
708@end deftypefn
709
a2c4f8e0 710@defmac TARGET_VERSION
feca2ed3
JW
711This macro is a C statement to print on @code{stderr} a string
712describing the particular machine description choice. Every machine
713description should define @code{TARGET_VERSION}. For example:
714
715@smallexample
716#ifdef MOTOROLA
717#define TARGET_VERSION \
718 fprintf (stderr, " (68k, Motorola syntax)");
719#else
720#define TARGET_VERSION \
721 fprintf (stderr, " (68k, MIT syntax)");
722#endif
723@end smallexample
a2c4f8e0 724@end defmac
feca2ed3 725
2b7e2984 726@deftypefn {Target Hook} void TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE (void)
74f7912a 727This target function is similar to the hook @code{TARGET_OPTION_OVERRIDE}
2b7e2984
SE
728but is called when the optimize level is changed via an attribute or
729pragma or when it is reset at the end of the code affected by the
730attribute or pragma. It is not called at the beginning of compilation
74f7912a
JR
731when @code{TARGET_OPTION_OVERRIDE} is called so if you want to perform these
732actions then, you should have @code{TARGET_OPTION_OVERRIDE} call
2b7e2984
SE
733@code{TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE}.
734@end deftypefn
735
c7b5e395 736@defmac C_COMMON_OVERRIDE_OPTIONS
c5387660
JM
737This is similar to the @code{TARGET_OPTION_OVERRIDE} hook
738but is only used in the C
c7b5e395
GK
739language frontends (C, Objective-C, C++, Objective-C++) and so can be
740used to alter option flag variables which only exist in those
741frontends.
742@end defmac
743
3020190e 744@deftypevr {Target Hook} {const struct default_options *} TARGET_OPTION_OPTIMIZATION_TABLE
feca2ed3 745Some machines may desire to change what optimizations are performed for
3020190e
JM
746various optimization levels. This variable, if defined, describes
747options to enable at particular sets of optimization levels. These
748options are processed once
feca2ed3 749just after the optimization level is determined and before the remainder
3020190e
JM
750of the command options have been parsed, so may be overridden by other
751options passed explicily.
feca2ed3 752
3020190e 753This processing is run once at program startup and when the optimization
a51fa0f4
MM
754options are changed via @code{#pragma GCC optimize} or by using the
755@code{optimize} attribute.
3020190e 756@end deftypevr
feca2ed3 757
7e4aae92
JM
758@deftypefn {Target Hook} void TARGET_OPTION_INIT_STRUCT (struct gcc_options *@var{opts})
759Set target-dependent initial values of fields in @var{opts}.
760@end deftypefn
761
128dc8e2
JM
762@deftypefn {Target Hook} void TARGET_OPTION_DEFAULT_PARAMS (void)
763Set target-dependent default values for @option{--param} settings, using calls to @code{set_default_param_value}.
764@end deftypefn
765
9ddb66ef 766@deftypefn {Target Hook} void TARGET_HELP (void)
67e6ba46
NC
767This hook is called in response to the user invoking
768@option{--target-help} on the command line. It gives the target a
769chance to display extra information on the target specific command
770line options found in its @file{.opt} file.
771@end deftypefn
772
3bd36029
RS
773@defmac SWITCHABLE_TARGET
774Some targets need to switch between substantially different subtargets
775during compilation. For example, the MIPS target has one subtarget for
776the traditional MIPS architecture and another for MIPS16. Source code
777can switch between these two subarchitectures using the @code{mips16}
778and @code{nomips16} attributes.
779
780Such subtargets can differ in things like the set of available
781registers, the set of available instructions, the costs of various
782operations, and so on. GCC caches a lot of this type of information
783in global variables, and recomputing them for each subtarget takes a
784significant amount of time. The compiler therefore provides a facility
785for maintaining several versions of the global variables and quickly
786switching between them; see @file{target-globals.h} for details.
787
788Define this macro to 1 if your target needs this facility. The default
789is 0.
790@end defmac
791
414c4dc4
NC
792@node Per-Function Data
793@section Defining data structures for per-function information.
794@cindex per-function data
795@cindex data structures
796
797If the target needs to store information on a per-function basis, GCC
798provides a macro and a couple of variables to allow this. Note, just
799using statics to store the information is a bad idea, since GCC supports
800nested functions, so you can be halfway through encoding one function
801when another one comes along.
802
803GCC defines a data structure called @code{struct function} which
804contains all of the data specific to an individual function. This
805structure contains a field called @code{machine} whose type is
806@code{struct machine_function *}, which can be used by targets to point
807to their own specific data.
808
809If a target needs per-function specific data it should define the type
e2500fed
GK
810@code{struct machine_function} and also the macro @code{INIT_EXPANDERS}.
811This macro should be used to initialize the function pointer
812@code{init_machine_status}. This pointer is explained below.
414c4dc4
NC
813
814One typical use of per-function, target specific data is to create an
815RTX to hold the register containing the function's return address. This
816RTX can then be used to implement the @code{__builtin_return_address}
817function, for level 0.
818
aee96fe9 819Note---earlier implementations of GCC used a single data area to hold
414c4dc4
NC
820all of the per-function information. Thus when processing of a nested
821function began the old per-function data had to be pushed onto a
822stack, and when the processing was finished, it had to be popped off the
823stack. GCC used to provide function pointers called
02f52e19 824@code{save_machine_status} and @code{restore_machine_status} to handle
414c4dc4
NC
825the saving and restoring of the target specific information. Since the
826single data area approach is no longer used, these pointers are no
827longer supported.
828
a2c4f8e0 829@defmac INIT_EXPANDERS
c21cd8b1 830Macro called to initialize any target specific information. This macro
414c4dc4 831is called once per function, before generation of any RTL has begun.
c21cd8b1 832The intention of this macro is to allow the initialization of the
a2c4f8e0
ZW
833function pointer @code{init_machine_status}.
834@end defmac
414c4dc4 835
a2c4f8e0
ZW
836@deftypevar {void (*)(struct function *)} init_machine_status
837If this function pointer is non-@code{NULL} it will be called once per
838function, before function compilation starts, in order to allow the
839target to perform any target specific initialization of the
840@code{struct function} structure. It is intended that this would be
841used to initialize the @code{machine} of that structure.
414c4dc4 842
8a36672b 843@code{struct machine_function} structures are expected to be freed by GC@.
e2500fed 844Generally, any memory that they reference must be allocated by using
a9429e29 845GC allocation, including the structure itself.
a2c4f8e0 846@end deftypevar
414c4dc4 847
feca2ed3
JW
848@node Storage Layout
849@section Storage Layout
850@cindex storage layout
851
852Note that the definitions of the macros in this table which are sizes or
853alignments measured in bits do not need to be constant. They can be C
854expressions that refer to static variables, such as the @code{target_flags}.
855@xref{Run-time Target}.
856
a2c4f8e0 857@defmac BITS_BIG_ENDIAN
feca2ed3
JW
858Define this macro to have the value 1 if the most significant bit in a
859byte has the lowest number; otherwise define it to have the value zero.
860This means that bit-field instructions count from the most significant
861bit. If the machine has no bit-field instructions, then this must still
862be defined, but it doesn't matter which value it is defined to. This
863macro need not be a constant.
864
865This macro does not affect the way structure fields are packed into
866bytes or words; that is controlled by @code{BYTES_BIG_ENDIAN}.
a2c4f8e0 867@end defmac
feca2ed3 868
a2c4f8e0 869@defmac BYTES_BIG_ENDIAN
feca2ed3
JW
870Define this macro to have the value 1 if the most significant byte in a
871word has the lowest number. This macro need not be a constant.
a2c4f8e0 872@end defmac
feca2ed3 873
a2c4f8e0 874@defmac WORDS_BIG_ENDIAN
feca2ed3
JW
875Define this macro to have the value 1 if, in a multiword object, the
876most significant word has the lowest number. This applies to both
a3a15b4d 877memory locations and registers; GCC fundamentally assumes that the
feca2ed3
JW
878order of words in memory is the same as the order in registers. This
879macro need not be a constant.
a2c4f8e0 880@end defmac
feca2ed3 881
a2c4f8e0 882@defmac FLOAT_WORDS_BIG_ENDIAN
feca2ed3
JW
883Define this macro to have the value 1 if @code{DFmode}, @code{XFmode} or
884@code{TFmode} floating point numbers are stored in memory with the word
885containing the sign bit at the lowest address; otherwise define it to
886have the value 0. This macro need not be a constant.
887
888You need not define this macro if the ordering is the same as for
889multi-word integers.
a2c4f8e0 890@end defmac
feca2ed3 891
a2c4f8e0 892@defmac BITS_PER_UNIT
feca2ed3 893Define this macro to be the number of bits in an addressable storage
5c60f03d 894unit (byte). If you do not define this macro the default is 8.
a2c4f8e0 895@end defmac
feca2ed3 896
a2c4f8e0 897@defmac BITS_PER_WORD
e81dd381
KG
898Number of bits in a word. If you do not define this macro, the default
899is @code{BITS_PER_UNIT * UNITS_PER_WORD}.
a2c4f8e0 900@end defmac
feca2ed3 901
a2c4f8e0 902@defmac MAX_BITS_PER_WORD
feca2ed3
JW
903Maximum number of bits in a word. If this is undefined, the default is
904@code{BITS_PER_WORD}. Otherwise, it is the constant value that is the
905largest value that @code{BITS_PER_WORD} can have at run-time.
a2c4f8e0 906@end defmac
feca2ed3 907
a2c4f8e0 908@defmac UNITS_PER_WORD
c4336539
PB
909Number of storage units in a word; normally the size of a general-purpose
910register, a power of two from 1 or 8.
a2c4f8e0 911@end defmac
feca2ed3 912
a2c4f8e0 913@defmac MIN_UNITS_PER_WORD
feca2ed3
JW
914Minimum number of units in a word. If this is undefined, the default is
915@code{UNITS_PER_WORD}. Otherwise, it is the constant value that is the
916smallest value that @code{UNITS_PER_WORD} can have at run-time.
a2c4f8e0 917@end defmac
feca2ed3 918
a2c4f8e0 919@defmac POINTER_SIZE
feca2ed3
JW
920Width of a pointer, in bits. You must specify a value no wider than the
921width of @code{Pmode}. If it is not equal to the width of @code{Pmode},
2465bf76
KG
922you must define @code{POINTERS_EXTEND_UNSIGNED}. If you do not specify
923a value the default is @code{BITS_PER_WORD}.
a2c4f8e0 924@end defmac
feca2ed3 925
a2c4f8e0 926@defmac POINTERS_EXTEND_UNSIGNED
4923a230
RS
927A C expression that determines how pointers should be extended from
928@code{ptr_mode} to either @code{Pmode} or @code{word_mode}. It is
929greater than zero if pointers should be zero-extended, zero if they
930should be sign-extended, and negative if some other sort of conversion
931is needed. In the last case, the extension is done by the target's
932@code{ptr_extend} instruction.
933
934You need not define this macro if the @code{ptr_mode}, @code{Pmode}
935and @code{word_mode} are all the same width.
a2c4f8e0 936@end defmac
feca2ed3 937
a2c4f8e0 938@defmac PROMOTE_MODE (@var{m}, @var{unsignedp}, @var{type})
feca2ed3
JW
939A macro to update @var{m} and @var{unsignedp} when an object whose type
940is @var{type} and which has the specified mode and signedness is to be
941stored in a register. This macro is only called when @var{type} is a
942scalar type.
943
944On most RISC machines, which only have operations that operate on a full
945register, define this macro to set @var{m} to @code{word_mode} if
946@var{m} is an integer mode narrower than @code{BITS_PER_WORD}. In most
947cases, only integer modes should be widened because wider-precision
948floating-point operations are usually more expensive than their narrower
949counterparts.
950
951For most machines, the macro definition does not change @var{unsignedp}.
952However, some machines, have instructions that preferentially handle
953either signed or unsigned quantities of certain modes. For example, on
954the DEC Alpha, 32-bit loads from memory and 32-bit add instructions
955sign-extend the result to 64 bits. On such machines, set
956@var{unsignedp} according to which kind of extension is more efficient.
957
958Do not define this macro if it would never modify @var{m}.
a2c4f8e0 959@end defmac
feca2ed3 960
9ddb66ef 961@deftypefn {Target Hook} {enum machine_mode} TARGET_PROMOTE_FUNCTION_MODE (const_tree @var{type}, enum machine_mode @var{mode}, int *@var{punsignedp}, const_tree @var{funtype}, int @var{for_return})
cde0f3fd
PB
962Like @code{PROMOTE_MODE}, but it is applied to outgoing function arguments or
963function return values. The target hook should return the new mode
964and possibly change @code{*@var{punsignedp}} if the promotion should
965change signedness. This function is called only for scalar @emph{or
966pointer} types.
967
666e3ceb
PB
968@var{for_return} allows to distinguish the promotion of arguments and
969return values. If it is @code{1}, a return value is being promoted and
970@code{TARGET_FUNCTION_VALUE} must perform the same promotions done here.
971If it is @code{2}, the returned mode should be that of the register in
972which an incoming parameter is copied, or the outgoing result is computed;
973then the hook should return the same mode as @code{promote_mode}, though
974the signedness may be different.
975
cde0f3fd
PB
976The default is to not promote arguments and return values. You can
977also define the hook to @code{default_promote_function_mode_always_promote}
978if you would like to apply the same rules given by @code{PROMOTE_MODE}.
61f71b34 979@end deftypefn
feca2ed3 980
a2c4f8e0 981@defmac PARM_BOUNDARY
feca2ed3
JW
982Normal alignment required for function parameters on the stack, in
983bits. All stack parameters receive at least this much alignment
984regardless of data type. On most machines, this is the same as the
985size of an integer.
a2c4f8e0 986@end defmac
feca2ed3 987
a2c4f8e0 988@defmac STACK_BOUNDARY
31cdd499
ZW
989Define this macro to the minimum alignment enforced by hardware for the
990stack pointer on this machine. The definition is a C expression for the
991desired alignment (measured in bits). This value is used as a default
992if @code{PREFERRED_STACK_BOUNDARY} is not defined. On most machines,
993this should be the same as @code{PARM_BOUNDARY}.
a2c4f8e0 994@end defmac
c795bca9 995
a2c4f8e0 996@defmac PREFERRED_STACK_BOUNDARY
31cdd499
ZW
997Define this macro if you wish to preserve a certain alignment for the
998stack pointer, greater than what the hardware enforces. The definition
999is a C expression for the desired alignment (measured in bits). This
1000macro must evaluate to a value equal to or larger than
1001@code{STACK_BOUNDARY}.
a2c4f8e0 1002@end defmac
feca2ed3 1003
2e3f842f
L
1004@defmac INCOMING_STACK_BOUNDARY
1005Define this macro if the incoming stack boundary may be different
1006from @code{PREFERRED_STACK_BOUNDARY}. This macro must evaluate
1007to a value equal to or larger than @code{STACK_BOUNDARY}.
1008@end defmac
1009
a2c4f8e0 1010@defmac FUNCTION_BOUNDARY
feca2ed3 1011Alignment required for a function entry point, in bits.
a2c4f8e0 1012@end defmac
feca2ed3 1013
a2c4f8e0 1014@defmac BIGGEST_ALIGNMENT
c4f46fde
DD
1015Biggest alignment that any data type can require on this machine, in
1016bits. Note that this is not the biggest alignment that is supported,
1017just the biggest alignment that, when violated, may cause a fault.
a2c4f8e0 1018@end defmac
feca2ed3 1019
95331614
OH
1020@defmac MALLOC_ABI_ALIGNMENT
1021Alignment, in bits, a C conformant malloc implementation has to
1022provide. If not defined, the default value is @code{BITS_PER_WORD}.
1023@end defmac
1024
6e4f1168
L
1025@defmac ATTRIBUTE_ALIGNED_VALUE
1026Alignment used by the @code{__attribute__ ((aligned))} construct. If
1027not defined, the default value is @code{BIGGEST_ALIGNMENT}.
1028@end defmac
1029
a2c4f8e0 1030@defmac MINIMUM_ATOMIC_ALIGNMENT
861bb6c1
JL
1031If defined, the smallest alignment, in bits, that can be given to an
1032object that can be referenced in one operation, without disturbing any
1033nearby object. Normally, this is @code{BITS_PER_UNIT}, but may be larger
1034on machines that don't have byte or half-word store operations.
a2c4f8e0 1035@end defmac
861bb6c1 1036
a2c4f8e0 1037@defmac BIGGEST_FIELD_ALIGNMENT
11cf4d18
JJ
1038Biggest alignment that any structure or union field can require on this
1039machine, in bits. If defined, this overrides @code{BIGGEST_ALIGNMENT} for
1040structure and union fields only, unless the field alignment has been set
1041by the @code{__attribute__ ((aligned (@var{n})))} construct.
a2c4f8e0 1042@end defmac
feca2ed3 1043
a2c4f8e0 1044@defmac ADJUST_FIELD_ALIGN (@var{field}, @var{computed})
feca2ed3 1045An expression for the alignment of a structure field @var{field} if the
ad9335eb
JJ
1046alignment computed in the usual way (including applying of
1047@code{BIGGEST_ALIGNMENT} and @code{BIGGEST_FIELD_ALIGNMENT} to the
1048alignment) is @var{computed}. It overrides alignment only if the
1049field alignment has not been set by the
1050@code{__attribute__ ((aligned (@var{n})))} construct.
a2c4f8e0 1051@end defmac
feca2ed3 1052
2e3f842f
L
1053@defmac MAX_STACK_ALIGNMENT
1054Biggest stack alignment guaranteed by the backend. Use this macro
1055to specify the maximum alignment of a variable on stack.
1056
1057If not defined, the default value is @code{STACK_BOUNDARY}.
1058
1059@c FIXME: The default should be @code{PREFERRED_STACK_BOUNDARY}.
1060@c But the fix for PR 32893 indicates that we can only guarantee
1061@c maximum stack alignment on stack up to @code{STACK_BOUNDARY}, not
1062@c @code{PREFERRED_STACK_BOUNDARY}, if stack alignment isn't supported.
1063@end defmac
1064
a2c4f8e0 1065@defmac MAX_OFILE_ALIGNMENT
feca2ed3
JW
1066Biggest alignment supported by the object file format of this machine.
1067Use this macro to limit the alignment which can be specified using the
1068@code{__attribute__ ((aligned (@var{n})))} construct. If not defined,
1069the default value is @code{BIGGEST_ALIGNMENT}.
11d90e2d
CD
1070
1071On systems that use ELF, the default (in @file{config/elfos.h}) is
1072the largest supported 32-bit ELF section alignment representable on
1073a 32-bit host e.g. @samp{(((unsigned HOST_WIDEST_INT) 1 << 28) * 8)}.
1074On 32-bit ELF the largest supported section alignment in bits is
1075@samp{(0x80000000 * 8)}, but this is not representable on 32-bit hosts.
a2c4f8e0 1076@end defmac
feca2ed3 1077
a2c4f8e0 1078@defmac DATA_ALIGNMENT (@var{type}, @var{basic-align})
a8d1550a 1079If defined, a C expression to compute the alignment for a variable in
8a198bd2
JW
1080the static store. @var{type} is the data type, and @var{basic-align} is
1081the alignment that the object would ordinarily have. The value of this
feca2ed3
JW
1082macro is used instead of that alignment to align the object.
1083
1084If this macro is not defined, then @var{basic-align} is used.
1085
1086@findex strcpy
1087One use of this macro is to increase alignment of medium-size data to
1088make it all fit in fewer cache lines. Another is to cause character
1089arrays to be word-aligned so that @code{strcpy} calls that copy
1090constants to character arrays can be done inline.
a2c4f8e0 1091@end defmac
feca2ed3 1092
a2c4f8e0 1093@defmac CONSTANT_ALIGNMENT (@var{constant}, @var{basic-align})
feca2ed3
JW
1094If defined, a C expression to compute the alignment given to a constant
1095that is being placed in memory. @var{constant} is the constant and
1096@var{basic-align} is the alignment that the object would ordinarily
1097have. The value of this macro is used instead of that alignment to
1098align the object.
1099
1100If this macro is not defined, then @var{basic-align} is used.
1101
1102The typical use of this macro is to increase alignment for string
1103constants to be word aligned so that @code{strcpy} calls that copy
1104constants can be done inline.
a2c4f8e0 1105@end defmac
feca2ed3 1106
a2c4f8e0 1107@defmac LOCAL_ALIGNMENT (@var{type}, @var{basic-align})
a8d1550a 1108If defined, a C expression to compute the alignment for a variable in
d16790f2
JW
1109the local store. @var{type} is the data type, and @var{basic-align} is
1110the alignment that the object would ordinarily have. The value of this
1111macro is used instead of that alignment to align the object.
1112
1113If this macro is not defined, then @var{basic-align} is used.
1114
1115One use of this macro is to increase alignment of medium-size data to
1116make it all fit in fewer cache lines.
4a6336ad
JR
1117
1118It the value of this macro has a type, it should be an unsigned type.
a2c4f8e0 1119@end defmac
d16790f2 1120
76fe54f0
L
1121@defmac STACK_SLOT_ALIGNMENT (@var{type}, @var{mode}, @var{basic-align})
1122If defined, a C expression to compute the alignment for stack slot.
1123@var{type} is the data type, @var{mode} is the widest mode available,
1124and @var{basic-align} is the alignment that the slot would ordinarily
1125have. The value of this macro is used instead of that alignment to
1126align the slot.
1127
1128If this macro is not defined, then @var{basic-align} is used when
1129@var{type} is @code{NULL}. Otherwise, @code{LOCAL_ALIGNMENT} will
1130be used.
1131
1132This macro is to set alignment of stack slot to the maximum alignment
1133of all possible modes which the slot may have.
4a6336ad
JR
1134
1135It the value of this macro has a type, it should be an unsigned type.
76fe54f0
L
1136@end defmac
1137
9bfaf89d
JJ
1138@defmac LOCAL_DECL_ALIGNMENT (@var{decl})
1139If defined, a C expression to compute the alignment for a local
1140variable @var{decl}.
1141
1142If this macro is not defined, then
1143@code{LOCAL_ALIGNMENT (TREE_TYPE (@var{decl}), DECL_ALIGN (@var{decl}))}
1144is used.
1145
1146One use of this macro is to increase alignment of medium-size data to
1147make it all fit in fewer cache lines.
4a6336ad
JR
1148
1149It the value of this macro has a type, it should be an unsigned type.
9bfaf89d
JJ
1150@end defmac
1151
ae58e548
JJ
1152@defmac MINIMUM_ALIGNMENT (@var{exp}, @var{mode}, @var{align})
1153If defined, a C expression to compute the minimum required alignment
1154for dynamic stack realignment purposes for @var{exp} (a type or decl),
1155@var{mode}, assuming normal alignment @var{align}.
1156
1157If this macro is not defined, then @var{align} will be used.
1158@end defmac
1159
a2c4f8e0 1160@defmac EMPTY_FIELD_BOUNDARY
c771326b 1161Alignment in bits to be given to a structure bit-field that follows an
feca2ed3
JW
1162empty field such as @code{int : 0;}.
1163
78d55cc8 1164If @code{PCC_BITFIELD_TYPE_MATTERS} is true, it overrides this macro.
a2c4f8e0 1165@end defmac
feca2ed3 1166
a2c4f8e0 1167@defmac STRUCTURE_SIZE_BOUNDARY
feca2ed3
JW
1168Number of bits which any structure or union's size must be a multiple of.
1169Each structure or union's size is rounded up to a multiple of this.
1170
1171If you do not define this macro, the default is the same as
1172@code{BITS_PER_UNIT}.
a2c4f8e0 1173@end defmac
feca2ed3 1174
a2c4f8e0 1175@defmac STRICT_ALIGNMENT
feca2ed3
JW
1176Define this macro to be the value 1 if instructions will fail to work
1177if given data not on the nominal alignment. If instructions will merely
1178go slower in that case, define this macro as 0.
a2c4f8e0 1179@end defmac
feca2ed3 1180
a2c4f8e0 1181@defmac PCC_BITFIELD_TYPE_MATTERS
feca2ed3 1182Define this if you wish to imitate the way many other C compilers handle
c771326b 1183alignment of bit-fields and the structures that contain them.
feca2ed3 1184
8dc65b6e
MM
1185The behavior is that the type written for a named bit-field (@code{int},
1186@code{short}, or other integer type) imposes an alignment for the entire
1187structure, as if the structure really did contain an ordinary field of
1188that type. In addition, the bit-field is placed within the structure so
1189that it would fit within such a field, not crossing a boundary for it.
1190
1191Thus, on most machines, a named bit-field whose type is written as
1192@code{int} would not cross a four-byte boundary, and would force
1193four-byte alignment for the whole structure. (The alignment used may
1194not be four bytes; it is controlled by the other alignment parameters.)
1195
1196An unnamed bit-field will not affect the alignment of the containing
1197structure.
feca2ed3
JW
1198
1199If the macro is defined, its definition should be a C expression;
1200a nonzero value for the expression enables this behavior.
1201
1202Note that if this macro is not defined, or its value is zero, some
c771326b 1203bit-fields may cross more than one alignment boundary. The compiler can
feca2ed3
JW
1204support such references if there are @samp{insv}, @samp{extv}, and
1205@samp{extzv} insns that can directly reference memory.
1206
c771326b 1207The other known way of making bit-fields work is to define
feca2ed3
JW
1208@code{STRUCTURE_SIZE_BOUNDARY} as large as @code{BIGGEST_ALIGNMENT}.
1209Then every structure can be accessed with fullwords.
1210
c771326b 1211Unless the machine has bit-field instructions or you define
feca2ed3
JW
1212@code{STRUCTURE_SIZE_BOUNDARY} that way, you must define
1213@code{PCC_BITFIELD_TYPE_MATTERS} to have a nonzero value.
1214
a3a15b4d 1215If your aim is to make GCC use the same conventions for laying out
c771326b 1216bit-fields as are used by another compiler, here is how to investigate
feca2ed3
JW
1217what the other compiler does. Compile and run this program:
1218
3ab51846 1219@smallexample
feca2ed3
JW
1220struct foo1
1221@{
1222 char x;
1223 char :0;
1224 char y;
1225@};
1226
1227struct foo2
1228@{
1229 char x;
1230 int :0;
1231 char y;
1232@};
1233
1234main ()
1235@{
1236 printf ("Size of foo1 is %d\n",
1237 sizeof (struct foo1));
1238 printf ("Size of foo2 is %d\n",
1239 sizeof (struct foo2));
1240 exit (0);
1241@}
3ab51846 1242@end smallexample
feca2ed3
JW
1243
1244If this prints 2 and 5, then the compiler's behavior is what you would
1245get from @code{PCC_BITFIELD_TYPE_MATTERS}.
a2c4f8e0 1246@end defmac
feca2ed3 1247
a2c4f8e0 1248@defmac BITFIELD_NBYTES_LIMITED
f913c102
AO
1249Like @code{PCC_BITFIELD_TYPE_MATTERS} except that its effect is limited
1250to aligning a bit-field within the structure.
a2c4f8e0 1251@end defmac
feca2ed3 1252
b5bde9ff 1253@deftypefn {Target Hook} bool TARGET_ALIGN_ANON_BITFIELD (void)
13c1cd82
PB
1254When @code{PCC_BITFIELD_TYPE_MATTERS} is true this hook will determine
1255whether unnamed bitfields affect the alignment of the containing
1256structure. The hook should return true if the structure should inherit
1257the alignment requirements of an unnamed bitfield's type.
1258@end deftypefn
1259
b5bde9ff 1260@deftypefn {Target Hook} bool TARGET_NARROW_VOLATILE_BITFIELD (void)
c2a64439
PB
1261This target hook should return @code{true} if accesses to volatile bitfields
1262should use the narrowest mode possible. It should return @code{false} if
1263these accesses should use the bitfield container type.
1264
1265The default is @code{!TARGET_STRICT_ALIGN}.
1266@end deftypefn
1267
a2c4f8e0 1268@defmac MEMBER_TYPE_FORCES_BLK (@var{field}, @var{mode})
31a02448 1269Return 1 if a structure or array containing @var{field} should be accessed using
9f6dc500
HPN
1270@code{BLKMODE}.
1271
182e515e
AH
1272If @var{field} is the only field in the structure, @var{mode} is its
1273mode, otherwise @var{mode} is VOIDmode. @var{mode} is provided in the
1274case where structures of one field would require the structure's mode to
1275retain the field's mode.
1276
8d8da227 1277Normally, this is not needed.
a2c4f8e0 1278@end defmac
9f6dc500 1279
a2c4f8e0 1280@defmac ROUND_TYPE_ALIGN (@var{type}, @var{computed}, @var{specified})
0003feb2
VM
1281Define this macro as an expression for the alignment of a type (given
1282by @var{type} as a tree node) if the alignment computed in the usual
1283way is @var{computed} and the alignment explicitly specified was
feca2ed3
JW
1284@var{specified}.
1285
1286The default is to use @var{specified} if it is larger; otherwise, use
1287the smaller of @var{computed} and @code{BIGGEST_ALIGNMENT}
a2c4f8e0 1288@end defmac
feca2ed3 1289
a2c4f8e0 1290@defmac MAX_FIXED_MODE_SIZE
feca2ed3
JW
1291An integer expression for the size in bits of the largest integer
1292machine mode that should actually be used. All integer machine modes of
1293this size or smaller can be used for structures and unions with the
1294appropriate sizes. If this macro is undefined, @code{GET_MODE_BITSIZE
1295(DImode)} is assumed.
a2c4f8e0 1296@end defmac
feca2ed3 1297
a2c4f8e0 1298@defmac STACK_SAVEAREA_MODE (@var{save_level})
73c8090f 1299If defined, an expression of type @code{enum machine_mode} that
39403d82
DE
1300specifies the mode of the save area operand of a
1301@code{save_stack_@var{level}} named pattern (@pxref{Standard Names}).
1302@var{save_level} is one of @code{SAVE_BLOCK}, @code{SAVE_FUNCTION}, or
1303@code{SAVE_NONLOCAL} and selects which of the three named patterns is
1304having its mode specified.
73c8090f
DE
1305
1306You need not define this macro if it always returns @code{Pmode}. You
1307would most commonly define this macro if the
1308@code{save_stack_@var{level}} patterns need to support both a 32- and a
130964-bit mode.
a2c4f8e0 1310@end defmac
73c8090f 1311
a2c4f8e0 1312@defmac STACK_SIZE_MODE
39403d82
DE
1313If defined, an expression of type @code{enum machine_mode} that
1314specifies the mode of the size increment operand of an
1315@code{allocate_stack} named pattern (@pxref{Standard Names}).
1316
1317You need not define this macro if it always returns @code{word_mode}.
1318You would most commonly define this macro if the @code{allocate_stack}
1319pattern needs to support both a 32- and a 64-bit mode.
a2c4f8e0 1320@end defmac
39403d82 1321
9ddb66ef 1322@deftypefn {Target Hook} {enum machine_mode} TARGET_LIBGCC_CMP_RETURN_MODE (void)
c7ff6e7a
AK
1323This target hook should return the mode to be used for the return value
1324of compare instructions expanded to libgcc calls. If not defined
1325@code{word_mode} is returned which is the right choice for a majority of
1326targets.
1327@end deftypefn
1328
9ddb66ef 1329@deftypefn {Target Hook} {enum machine_mode} TARGET_LIBGCC_SHIFT_COUNT_MODE (void)
c7ff6e7a
AK
1330This target hook should return the mode to be used for the shift count operand
1331of shift instructions expanded to libgcc calls. If not defined
1332@code{word_mode} is returned which is the right choice for a majority of
1333targets.
1334@end deftypefn
1335
8a9a2486
JR
1336@deftypefn {Target Hook} {enum machine_mode} TARGET_UNWIND_WORD_MODE (void)
1337Return machine mode to be used for @code{_Unwind_Word} type.
1338The default is to use @code{word_mode}.
1339@end deftypefn
1340
a2c4f8e0 1341@defmac ROUND_TOWARDS_ZERO
3fcaac1d 1342If defined, this macro should be true if the prevailing rounding
4099e2c2 1343mode is towards zero.
3fcaac1d 1344
4099e2c2
UW
1345Defining this macro only affects the way @file{libgcc.a} emulates
1346floating-point arithmetic.
3fcaac1d
RS
1347
1348Not defining this macro is equivalent to returning zero.
a2c4f8e0 1349@end defmac
3fcaac1d 1350
a2c4f8e0 1351@defmac LARGEST_EXPONENT_IS_NORMAL (@var{size})
4226378a 1352This macro should return true if floats with @var{size}
3fcaac1d
RS
1353bits do not have a NaN or infinity representation, but use the largest
1354exponent for normal numbers instead.
1355
4099e2c2 1356Defining this macro only affects the way @file{libgcc.a} emulates
3fcaac1d
RS
1357floating-point arithmetic.
1358
1359The default definition of this macro returns false for all sizes.
a2c4f8e0 1360@end defmac
feca2ed3 1361
9ddb66ef 1362@deftypefn {Target Hook} bool TARGET_MS_BITFIELD_LAYOUT_P (const_tree @var{record_type})
f913c102
AO
1363This target hook returns @code{true} if bit-fields in the given
1364@var{record_type} are to be laid out following the rules of Microsoft
1365Visual C/C++, namely: (i) a bit-field won't share the same storage
1366unit with the previous bit-field if their underlying types have
1367different sizes, and the bit-field will be aligned to the highest
1368alignment of the underlying types of itself and of the previous
1369bit-field; (ii) a zero-sized bit-field will affect the alignment of
1370the whole enclosing structure, even if it is unnamed; except that
1371(iii) a zero-sized bit-field will be disregarded unless it follows
6335b0aa 1372another bit-field of nonzero size. If this hook returns @code{true},
f913c102 1373other macros that control bit-field layout are ignored.
e4850f36
DR
1374
1375When a bit-field is inserted into a packed record, the whole size
1376of the underlying type is used by one or more same-size adjacent
1377bit-fields (that is, if its long:3, 32 bits is used in the record,
1378and any additional adjacent long bit-fields are packed into the same
8a36672b
JM
1379chunk of 32 bits. However, if the size changes, a new field of that
1380size is allocated). In an unpacked record, this is the same as using
e4850f36
DR
1381alignment, but not equivalent when packing.
1382
1383If both MS bit-fields and @samp{__attribute__((packed))} are used,
8a36672b 1384the latter will take precedence. If @samp{__attribute__((packed))} is
e4850f36
DR
1385used on a single field when MS bit-fields are in use, it will take
1386precedence for that field, but the alignment of the rest of the structure
1387may affect its placement.
f913c102
AO
1388@end deftypefn
1389
9ddb66ef 1390@deftypefn {Target Hook} bool TARGET_DECIMAL_FLOAT_SUPPORTED_P (void)
9a8ce21f 1391Returns true if the target supports decimal floating point.
9a8ce21f
JG
1392@end deftypefn
1393
9ddb66ef 1394@deftypefn {Target Hook} bool TARGET_FIXED_POINT_SUPPORTED_P (void)
ab22c1fa
CF
1395Returns true if the target supports fixed-point arithmetic.
1396@end deftypefn
1397
e41b2a33
PB
1398@deftypefn {Target Hook} void TARGET_EXPAND_TO_RTL_HOOK (void)
1399This hook is called just before expansion into rtl, allowing the target
1400to perform additional initializations or analysis before the expansion.
1401For example, the rs6000 port uses it to allocate a scratch stack slot
1402for use in copying SDmode values between memory and floating point
1403registers whenever the function being expanded has any SDmode
1404usage.
1405@end deftypefn
1406
1407@deftypefn {Target Hook} void TARGET_INSTANTIATE_DECLS (void)
1408This hook allows the backend to perform additional instantiations on rtl
1409that are not actually in any insns yet, but will be later.
1410@end deftypefn
1411
9ddb66ef 1412@deftypefn {Target Hook} {const char *} TARGET_MANGLE_TYPE (const_tree @var{type})
608063c3
JB
1413If your target defines any fundamental types, or any types your target
1414uses should be mangled differently from the default, define this hook
1415to return the appropriate encoding for these types as part of a C++
1416mangled name. The @var{type} argument is the tree structure representing
1417the type to be mangled. The hook may be applied to trees which are
1418not target-specific fundamental types; it should return @code{NULL}
1419for all such types, as well as arguments it does not recognize. If the
1420return value is not @code{NULL}, it must point to a statically-allocated
1421string constant.
f18eca82
ZL
1422
1423Target-specific fundamental types might be new fundamental types or
1424qualified versions of ordinary fundamental types. Encode new
1425fundamental types as @samp{@w{u @var{n} @var{name}}}, where @var{name}
1426is the name used for the type in source code, and @var{n} is the
1427length of @var{name} in decimal. Encode qualified versions of
1428ordinary types as @samp{@w{U @var{n} @var{name} @var{code}}}, where
1429@var{name} is the name used for the type qualifier in source code,
1430@var{n} is the length of @var{name} as above, and @var{code} is the
1431code used to represent the unqualified version of this type. (See
1432@code{write_builtin_type} in @file{cp/mangle.c} for the list of
1433codes.) In both cases the spaces are for clarity; do not include any
1434spaces in your string.
1435
608063c3
JB
1436This hook is applied to types prior to typedef resolution. If the mangled
1437name for a particular type depends only on that type's main variant, you
1438can perform typedef resolution yourself using @code{TYPE_MAIN_VARIANT}
1439before mangling.
1440
f18eca82
ZL
1441The default version of this hook always returns @code{NULL}, which is
1442appropriate for a target that does not define any new fundamental
1443types.
1444@end deftypefn
1445
feca2ed3
JW
1446@node Type Layout
1447@section Layout of Source Language Data Types
1448
1449These macros define the sizes and other characteristics of the standard
1450basic data types used in programs being compiled. Unlike the macros in
1451the previous section, these apply to specific features of C and related
1452languages, rather than to fundamental aspects of storage layout.
1453
a2c4f8e0 1454@defmac INT_TYPE_SIZE
feca2ed3
JW
1455A C expression for the size in bits of the type @code{int} on the
1456target machine. If you don't define this, the default is one word.
a2c4f8e0 1457@end defmac
feca2ed3 1458
a2c4f8e0 1459@defmac SHORT_TYPE_SIZE
feca2ed3
JW
1460A C expression for the size in bits of the type @code{short} on the
1461target machine. If you don't define this, the default is half a word.
1462(If this would be less than one storage unit, it is rounded up to one
1463unit.)
a2c4f8e0 1464@end defmac
feca2ed3 1465
a2c4f8e0 1466@defmac LONG_TYPE_SIZE
feca2ed3
JW
1467A C expression for the size in bits of the type @code{long} on the
1468target machine. If you don't define this, the default is one word.
a2c4f8e0 1469@end defmac
feca2ed3 1470
a2c4f8e0 1471@defmac ADA_LONG_TYPE_SIZE
1615c261 1472On some machines, the size used for the Ada equivalent of the type
8a36672b 1473@code{long} by a native Ada compiler differs from that used by C@. In
1615c261
RK
1474that situation, define this macro to be a C expression to be used for
1475the size of that type. If you don't define this, the default is the
1476value of @code{LONG_TYPE_SIZE}.
a2c4f8e0 1477@end defmac
1615c261 1478
a2c4f8e0 1479@defmac LONG_LONG_TYPE_SIZE
feca2ed3
JW
1480A C expression for the size in bits of the type @code{long long} on the
1481target machine. If you don't define this, the default is two
047c1c92 1482words. If you want to support GNU Ada on your machine, the value of this
feca2ed3 1483macro must be at least 64.
a2c4f8e0 1484@end defmac
feca2ed3 1485
a2c4f8e0 1486@defmac CHAR_TYPE_SIZE
feca2ed3 1487A C expression for the size in bits of the type @code{char} on the
c294bd99
HPN
1488target machine. If you don't define this, the default is
1489@code{BITS_PER_UNIT}.
a2c4f8e0 1490@end defmac
feca2ed3 1491
a2c4f8e0 1492@defmac BOOL_TYPE_SIZE
3d1ad9e5
JM
1493A C expression for the size in bits of the C++ type @code{bool} and
1494C99 type @code{_Bool} on the target machine. If you don't define
1495this, and you probably shouldn't, the default is @code{CHAR_TYPE_SIZE}.
a2c4f8e0 1496@end defmac
68eb4fb9 1497
a2c4f8e0 1498@defmac FLOAT_TYPE_SIZE
feca2ed3
JW
1499A C expression for the size in bits of the type @code{float} on the
1500target machine. If you don't define this, the default is one word.
a2c4f8e0 1501@end defmac
feca2ed3 1502
a2c4f8e0 1503@defmac DOUBLE_TYPE_SIZE
feca2ed3
JW
1504A C expression for the size in bits of the type @code{double} on the
1505target machine. If you don't define this, the default is two
1506words.
a2c4f8e0 1507@end defmac
feca2ed3 1508
a2c4f8e0 1509@defmac LONG_DOUBLE_TYPE_SIZE
feca2ed3
JW
1510A C expression for the size in bits of the type @code{long double} on
1511the target machine. If you don't define this, the default is two
1512words.
a2c4f8e0 1513@end defmac
feca2ed3 1514
325217ed
CF
1515@defmac SHORT_FRACT_TYPE_SIZE
1516A C expression for the size in bits of the type @code{short _Fract} on
1517the target machine. If you don't define this, the default is
1518@code{BITS_PER_UNIT}.
1519@end defmac
1520
1521@defmac FRACT_TYPE_SIZE
1522A C expression for the size in bits of the type @code{_Fract} on
1523the target machine. If you don't define this, the default is
1524@code{BITS_PER_UNIT * 2}.
1525@end defmac
1526
1527@defmac LONG_FRACT_TYPE_SIZE
1528A C expression for the size in bits of the type @code{long _Fract} on
1529the target machine. If you don't define this, the default is
1530@code{BITS_PER_UNIT * 4}.
1531@end defmac
1532
1533@defmac LONG_LONG_FRACT_TYPE_SIZE
1534A C expression for the size in bits of the type @code{long long _Fract} on
1535the target machine. If you don't define this, the default is
1536@code{BITS_PER_UNIT * 8}.
1537@end defmac
1538
1539@defmac SHORT_ACCUM_TYPE_SIZE
1540A C expression for the size in bits of the type @code{short _Accum} on
1541the target machine. If you don't define this, the default is
1542@code{BITS_PER_UNIT * 2}.
1543@end defmac
1544
1545@defmac ACCUM_TYPE_SIZE
1546A C expression for the size in bits of the type @code{_Accum} on
1547the target machine. If you don't define this, the default is
1548@code{BITS_PER_UNIT * 4}.
1549@end defmac
1550
1551@defmac LONG_ACCUM_TYPE_SIZE
1552A C expression for the size in bits of the type @code{long _Accum} on
1553the target machine. If you don't define this, the default is
1554@code{BITS_PER_UNIT * 8}.
1555@end defmac
1556
1557@defmac LONG_LONG_ACCUM_TYPE_SIZE
1558A C expression for the size in bits of the type @code{long long _Accum} on
1559the target machine. If you don't define this, the default is
1560@code{BITS_PER_UNIT * 16}.
1561@end defmac
1562
4e9db8b2
SE
1563@defmac LIBGCC2_LONG_DOUBLE_TYPE_SIZE
1564Define this macro if @code{LONG_DOUBLE_TYPE_SIZE} is not constant or
1565if you want routines in @file{libgcc2.a} for a size other than
1566@code{LONG_DOUBLE_TYPE_SIZE}. If you don't define this, the
1567default is @code{LONG_DOUBLE_TYPE_SIZE}.
1568@end defmac
1569
1570@defmac LIBGCC2_HAS_DF_MODE
a18bdccd 1571Define this macro if neither @code{DOUBLE_TYPE_SIZE} nor
4e9db8b2
SE
1572@code{LIBGCC2_LONG_DOUBLE_TYPE_SIZE} is
1573@code{DFmode} but you want @code{DFmode} routines in @file{libgcc2.a}
a18bdccd 1574anyway. If you don't define this and either @code{DOUBLE_TYPE_SIZE}
4e9db8b2
SE
1575or @code{LIBGCC2_LONG_DOUBLE_TYPE_SIZE} is 64 then the default is 1,
1576otherwise it is 0.
1577@end defmac
1578
1579@defmac LIBGCC2_HAS_XF_MODE
083cad55 1580Define this macro if @code{LIBGCC2_LONG_DOUBLE_TYPE_SIZE} is not
4e9db8b2
SE
1581@code{XFmode} but you want @code{XFmode} routines in @file{libgcc2.a}
1582anyway. If you don't define this and @code{LIBGCC2_LONG_DOUBLE_TYPE_SIZE}
1583is 80 then the default is 1, otherwise it is 0.
1584@end defmac
1585
1586@defmac LIBGCC2_HAS_TF_MODE
083cad55 1587Define this macro if @code{LIBGCC2_LONG_DOUBLE_TYPE_SIZE} is not
4e9db8b2
SE
1588@code{TFmode} but you want @code{TFmode} routines in @file{libgcc2.a}
1589anyway. If you don't define this and @code{LIBGCC2_LONG_DOUBLE_TYPE_SIZE}
1590is 128 then the default is 1, otherwise it is 0.
1591@end defmac
1592
4a73d865
JM
1593@defmac SF_SIZE
1594@defmacx DF_SIZE
1595@defmacx XF_SIZE
1596@defmacx TF_SIZE
1597Define these macros to be the size in bits of the mantissa of
1598@code{SFmode}, @code{DFmode}, @code{XFmode} and @code{TFmode} values,
1599if the defaults in @file{libgcc2.h} are inappropriate. By default,
1600@code{FLT_MANT_DIG} is used for @code{SF_SIZE}, @code{LDBL_MANT_DIG}
1601for @code{XF_SIZE} and @code{TF_SIZE}, and @code{DBL_MANT_DIG} or
1602@code{LDBL_MANT_DIG} for @code{DF_SIZE} according to whether
a18bdccd 1603@code{DOUBLE_TYPE_SIZE} or
4a73d865
JM
1604@code{LIBGCC2_LONG_DOUBLE_TYPE_SIZE} is 64.
1605@end defmac
1606
a2c4f8e0 1607@defmac TARGET_FLT_EVAL_METHOD
d57a4b98
RH
1608A C expression for the value for @code{FLT_EVAL_METHOD} in @file{float.h},
1609assuming, if applicable, that the floating-point control word is in its
1610default state. If you do not define this macro the value of
1611@code{FLT_EVAL_METHOD} will be zero.
a2c4f8e0 1612@end defmac
aaa2e8ef 1613
a2c4f8e0 1614@defmac WIDEST_HARDWARE_FP_SIZE
e9a25f70
JL
1615A C expression for the size in bits of the widest floating-point format
1616supported by the hardware. If you define this macro, you must specify a
1617value less than or equal to the value of @code{LONG_DOUBLE_TYPE_SIZE}.
1618If you do not define this macro, the value of @code{LONG_DOUBLE_TYPE_SIZE}
1619is the default.
a2c4f8e0 1620@end defmac
e9a25f70 1621
a2c4f8e0 1622@defmac DEFAULT_SIGNED_CHAR
feca2ed3
JW
1623An expression whose value is 1 or 0, according to whether the type
1624@code{char} should be signed or unsigned by default. The user can
630d3d5a
JM
1625always override this default with the options @option{-fsigned-char}
1626and @option{-funsigned-char}.
a2c4f8e0 1627@end defmac
feca2ed3 1628
221ee7c9
KH
1629@deftypefn {Target Hook} bool TARGET_DEFAULT_SHORT_ENUMS (void)
1630This target hook should return true if the compiler should give an
1631@code{enum} type only as many bytes as it takes to represent the range
1632of possible values of that type. It should return false if all
35afa569
KH
1633@code{enum} types should be allocated like @code{int}.
1634
221ee7c9
KH
1635The default is to return false.
1636@end deftypefn
35afa569 1637
a2c4f8e0 1638@defmac SIZE_TYPE
feca2ed3
JW
1639A C expression for a string describing the name of the data type to use
1640for size values. The typedef name @code{size_t} is defined using the
1641contents of the string.
1642
1643The string can contain more than one keyword. If so, separate them with
1644spaces, and write first any length keyword, then @code{unsigned} if
1645appropriate, and finally @code{int}. The string must exactly match one
1646of the data type names defined in the function
1647@code{init_decl_processing} in the file @file{c-decl.c}. You may not
1648omit @code{int} or change the order---that would cause the compiler to
1649crash on startup.
1650
1651If you don't define this macro, the default is @code{"long unsigned
1652int"}.
a2c4f8e0 1653@end defmac
feca2ed3 1654
a2c4f8e0 1655@defmac PTRDIFF_TYPE
feca2ed3
JW
1656A C expression for a string describing the name of the data type to use
1657for the result of subtracting two pointers. The typedef name
1658@code{ptrdiff_t} is defined using the contents of the string. See
1659@code{SIZE_TYPE} above for more information.
1660
1661If you don't define this macro, the default is @code{"long int"}.
a2c4f8e0 1662@end defmac
feca2ed3 1663
a2c4f8e0 1664@defmac WCHAR_TYPE
feca2ed3
JW
1665A C expression for a string describing the name of the data type to use
1666for wide characters. The typedef name @code{wchar_t} is defined using
1667the contents of the string. See @code{SIZE_TYPE} above for more
1668information.
1669
1670If you don't define this macro, the default is @code{"int"}.
a2c4f8e0 1671@end defmac
feca2ed3 1672
a2c4f8e0 1673@defmac WCHAR_TYPE_SIZE
feca2ed3
JW
1674A C expression for the size in bits of the data type for wide
1675characters. This is used in @code{cpp}, which cannot make use of
1676@code{WCHAR_TYPE}.
a2c4f8e0 1677@end defmac
feca2ed3 1678
a2c4f8e0 1679@defmac WINT_TYPE
1a67c7d3
JL
1680A C expression for a string describing the name of the data type to
1681use for wide characters passed to @code{printf} and returned from
1682@code{getwc}. The typedef name @code{wint_t} is defined using the
1683contents of the string. See @code{SIZE_TYPE} above for more
1684information.
1685
1686If you don't define this macro, the default is @code{"unsigned int"}.
a2c4f8e0 1687@end defmac
1a67c7d3 1688
a2c4f8e0 1689@defmac INTMAX_TYPE
b15ad712
JM
1690A C expression for a string describing the name of the data type that
1691can represent any value of any standard or extended signed integer type.
1692The typedef name @code{intmax_t} is defined using the contents of the
1693string. See @code{SIZE_TYPE} above for more information.
1694
1695If you don't define this macro, the default is the first of
1696@code{"int"}, @code{"long int"}, or @code{"long long int"} that has as
1697much precision as @code{long long int}.
a2c4f8e0 1698@end defmac
b15ad712 1699
a2c4f8e0 1700@defmac UINTMAX_TYPE
b15ad712
JM
1701A C expression for a string describing the name of the data type that
1702can represent any value of any standard or extended unsigned integer
1703type. The typedef name @code{uintmax_t} is defined using the contents
1704of the string. See @code{SIZE_TYPE} above for more information.
1705
1706If you don't define this macro, the default is the first of
1707@code{"unsigned int"}, @code{"long unsigned int"}, or @code{"long long
1708unsigned int"} that has as much precision as @code{long long unsigned
1709int}.
a2c4f8e0 1710@end defmac
b15ad712 1711
207bf79d
JM
1712@defmac SIG_ATOMIC_TYPE
1713@defmacx INT8_TYPE
1714@defmacx INT16_TYPE
1715@defmacx INT32_TYPE
1716@defmacx INT64_TYPE
1717@defmacx UINT8_TYPE
1718@defmacx UINT16_TYPE
1719@defmacx UINT32_TYPE
1720@defmacx UINT64_TYPE
1721@defmacx INT_LEAST8_TYPE
1722@defmacx INT_LEAST16_TYPE
1723@defmacx INT_LEAST32_TYPE
1724@defmacx INT_LEAST64_TYPE
1725@defmacx UINT_LEAST8_TYPE
1726@defmacx UINT_LEAST16_TYPE
1727@defmacx UINT_LEAST32_TYPE
1728@defmacx UINT_LEAST64_TYPE
1729@defmacx INT_FAST8_TYPE
1730@defmacx INT_FAST16_TYPE
1731@defmacx INT_FAST32_TYPE
1732@defmacx INT_FAST64_TYPE
1733@defmacx UINT_FAST8_TYPE
1734@defmacx UINT_FAST16_TYPE
1735@defmacx UINT_FAST32_TYPE
1736@defmacx UINT_FAST64_TYPE
1737@defmacx INTPTR_TYPE
1738@defmacx UINTPTR_TYPE
1739C expressions for the standard types @code{sig_atomic_t},
1740@code{int8_t}, @code{int16_t}, @code{int32_t}, @code{int64_t},
1741@code{uint8_t}, @code{uint16_t}, @code{uint32_t}, @code{uint64_t},
1742@code{int_least8_t}, @code{int_least16_t}, @code{int_least32_t},
1743@code{int_least64_t}, @code{uint_least8_t}, @code{uint_least16_t},
1744@code{uint_least32_t}, @code{uint_least64_t}, @code{int_fast8_t},
1745@code{int_fast16_t}, @code{int_fast32_t}, @code{int_fast64_t},
1746@code{uint_fast8_t}, @code{uint_fast16_t}, @code{uint_fast32_t},
1747@code{uint_fast64_t}, @code{intptr_t}, and @code{uintptr_t}. See
1748@code{SIZE_TYPE} above for more information.
1749
1750If any of these macros evaluates to a null pointer, the corresponding
1751type is not supported; if GCC is configured to provide
1752@code{<stdint.h>} in such a case, the header provided may not conform
1753to C99, depending on the type in question. The defaults for all of
1754these macros are null pointers.
1755@end defmac
1756
a2c4f8e0 1757@defmac TARGET_PTRMEMFUNC_VBIT_LOCATION
f3c55c97
AO
1758The C++ compiler represents a pointer-to-member-function with a struct
1759that looks like:
1760
3ab51846 1761@smallexample
f3c55c97
AO
1762 struct @{
1763 union @{
1764 void (*fn)();
1765 ptrdiff_t vtable_index;
1766 @};
1767 ptrdiff_t delta;
1768 @};
3ab51846 1769@end smallexample
f3c55c97
AO
1770
1771@noindent
1772The C++ compiler must use one bit to indicate whether the function that
1773will be called through a pointer-to-member-function is virtual.
1774Normally, we assume that the low-order bit of a function pointer must
1775always be zero. Then, by ensuring that the vtable_index is odd, we can
1776distinguish which variant of the union is in use. But, on some
1777platforms function pointers can be odd, and so this doesn't work. In
1778that case, we use the low-order bit of the @code{delta} field, and shift
1779the remainder of the @code{delta} field to the left.
1780
1781GCC will automatically make the right selection about where to store
1782this bit using the @code{FUNCTION_BOUNDARY} setting for your platform.
1783However, some platforms such as ARM/Thumb have @code{FUNCTION_BOUNDARY}
1784set such that functions always start at even addresses, but the lowest
1785bit of pointers to functions indicate whether the function at that
1786address is in ARM or Thumb mode. If this is the case of your
1787architecture, you should define this macro to
1788@code{ptrmemfunc_vbit_in_delta}.
1789
1790In general, you should not have to define this macro. On architectures
1791in which function addresses are always even, according to
1792@code{FUNCTION_BOUNDARY}, GCC will automatically define this macro to
1793@code{ptrmemfunc_vbit_in_pfn}.
a2c4f8e0 1794@end defmac
67231816 1795
a2c4f8e0 1796@defmac TARGET_VTABLE_USES_DESCRIPTORS
67231816 1797Normally, the C++ compiler uses function pointers in vtables. This
f282ffb3 1798macro allows the target to change to use ``function descriptors''
67231816
RH
1799instead. Function descriptors are found on targets for whom a
1800function pointer is actually a small data structure. Normally the
f282ffb3 1801data structure consists of the actual code address plus a data
67231816
RH
1802pointer to which the function's data is relative.
1803
1804If vtables are used, the value of this macro should be the number
1805of words that the function descriptor occupies.
a2c4f8e0 1806@end defmac
a6f5e048 1807
a2c4f8e0 1808@defmac TARGET_VTABLE_ENTRY_ALIGN
a6f5e048
RH
1809By default, the vtable entries are void pointers, the so the alignment
1810is the same as pointer alignment. The value of this macro specifies
1811the alignment of the vtable entry in bits. It should be defined only
1812when special alignment is necessary. */
a2c4f8e0 1813@end defmac
a6f5e048 1814
a2c4f8e0 1815@defmac TARGET_VTABLE_DATA_ENTRY_DISTANCE
a6f5e048
RH
1816There are a few non-descriptor entries in the vtable at offsets below
1817zero. If these entries must be padded (say, to preserve the alignment
1818specified by @code{TARGET_VTABLE_ENTRY_ALIGN}), set this to the number
1819of words in each data entry.
a2c4f8e0 1820@end defmac
b2b263e1 1821
feca2ed3
JW
1822@node Registers
1823@section Register Usage
1824@cindex register usage
1825
1826This section explains how to describe what registers the target machine
1827has, and how (in general) they can be used.
1828
1829The description of which registers a specific instruction can use is
1830done with register classes; see @ref{Register Classes}. For information
1831on using registers to access a stack frame, see @ref{Frame Registers}.
1832For passing values in registers, see @ref{Register Arguments}.
1833For returning values in registers, see @ref{Scalar Return}.
1834
1835@menu
6ccde948
RW
1836* Register Basics:: Number and kinds of registers.
1837* Allocation Order:: Order in which registers are allocated.
1838* Values in Registers:: What kinds of values each reg can hold.
1839* Leaf Functions:: Renumbering registers for leaf functions.
1840* Stack Registers:: Handling a register stack such as 80387.
feca2ed3
JW
1841@end menu
1842
1843@node Register Basics
1844@subsection Basic Characteristics of Registers
1845
1846@c prevent bad page break with this line
1847Registers have various characteristics.
1848
a2c4f8e0 1849@defmac FIRST_PSEUDO_REGISTER
feca2ed3
JW
1850Number of hardware registers known to the compiler. They receive
1851numbers 0 through @code{FIRST_PSEUDO_REGISTER-1}; thus, the first
1852pseudo register's number really is assigned the number
1853@code{FIRST_PSEUDO_REGISTER}.
a2c4f8e0 1854@end defmac
feca2ed3 1855
a2c4f8e0 1856@defmac FIXED_REGISTERS
feca2ed3
JW
1857@cindex fixed register
1858An initializer that says which registers are used for fixed purposes
1859all throughout the compiled code and are therefore not available for
1860general allocation. These would include the stack pointer, the frame
1861pointer (except on machines where that can be used as a general
1862register when no frame pointer is needed), the program counter on
1863machines where that is considered one of the addressable registers,
1864and any other numbered register with a standard use.
1865
1866This information is expressed as a sequence of numbers, separated by
1867commas and surrounded by braces. The @var{n}th number is 1 if
1868register @var{n} is fixed, 0 otherwise.
1869
1870The table initialized from this macro, and the table initialized by
1871the following one, may be overridden at run time either automatically,
1872by the actions of the macro @code{CONDITIONAL_REGISTER_USAGE}, or by
630d3d5a
JM
1873the user with the command options @option{-ffixed-@var{reg}},
1874@option{-fcall-used-@var{reg}} and @option{-fcall-saved-@var{reg}}.
a2c4f8e0 1875@end defmac
feca2ed3 1876
a2c4f8e0 1877@defmac CALL_USED_REGISTERS
feca2ed3
JW
1878@cindex call-used register
1879@cindex call-clobbered register
1880@cindex call-saved register
1881Like @code{FIXED_REGISTERS} but has 1 for each register that is
1882clobbered (in general) by function calls as well as for fixed
1883registers. This macro therefore identifies the registers that are not
1884available for general allocation of values that must live across
1885function calls.
1886
1887If a register has 0 in @code{CALL_USED_REGISTERS}, the compiler
1888automatically saves it on function entry and restores it on function
1889exit, if the register is used within the function.
a2c4f8e0 1890@end defmac
feca2ed3 1891
a2c4f8e0 1892@defmac CALL_REALLY_USED_REGISTERS
fc1296b7
AM
1893@cindex call-used register
1894@cindex call-clobbered register
1895@cindex call-saved register
f282ffb3
JM
1896Like @code{CALL_USED_REGISTERS} except this macro doesn't require
1897that the entire set of @code{FIXED_REGISTERS} be included.
fc1296b7 1898(@code{CALL_USED_REGISTERS} must be a superset of @code{FIXED_REGISTERS}).
f282ffb3 1899This macro is optional. If not specified, it defaults to the value
fc1296b7 1900of @code{CALL_USED_REGISTERS}.
a2c4f8e0 1901@end defmac
fc1296b7 1902
a2c4f8e0 1903@defmac HARD_REGNO_CALL_PART_CLOBBERED (@var{regno}, @var{mode})
1e326708
MH
1904@cindex call-used register
1905@cindex call-clobbered register
1906@cindex call-saved register
df2a54e9 1907A C expression that is nonzero if it is not permissible to store a
1e326708
MH
1908value of mode @var{mode} in hard register number @var{regno} across a
1909call without some part of it being clobbered. For most machines this
1910macro need not be defined. It is only required for machines that do not
1911preserve the entire contents of a register across a call.
a2c4f8e0 1912@end defmac
1e326708 1913
feca2ed3
JW
1914@findex fixed_regs
1915@findex call_used_regs
a2c4f8e0
ZW
1916@findex global_regs
1917@findex reg_names
1918@findex reg_class_contents
1919@defmac CONDITIONAL_REGISTER_USAGE
055177dc
NC
1920Zero or more C statements that may conditionally modify five variables
1921@code{fixed_regs}, @code{call_used_regs}, @code{global_regs},
c237e94a
ZW
1922@code{reg_names}, and @code{reg_class_contents}, to take into account
1923any dependence of these register sets on target flags. The first three
1924of these are of type @code{char []} (interpreted as Boolean vectors).
1925@code{global_regs} is a @code{const char *[]}, and
1926@code{reg_class_contents} is a @code{HARD_REG_SET}. Before the macro is
1927called, @code{fixed_regs}, @code{call_used_regs},
1928@code{reg_class_contents}, and @code{reg_names} have been initialized
055177dc 1929from @code{FIXED_REGISTERS}, @code{CALL_USED_REGISTERS},
c237e94a 1930@code{REG_CLASS_CONTENTS}, and @code{REGISTER_NAMES}, respectively.
630d3d5a 1931@code{global_regs} has been cleared, and any @option{-ffixed-@var{reg}},
c237e94a
ZW
1932@option{-fcall-used-@var{reg}} and @option{-fcall-saved-@var{reg}}
1933command options have been applied.
feca2ed3
JW
1934
1935You need not define this macro if it has no work to do.
1936
1937@cindex disabling certain registers
1938@cindex controlling register usage
1939If the usage of an entire class of registers depends on the target
1940flags, you may indicate this to GCC by using this macro to modify
1941@code{fixed_regs} and @code{call_used_regs} to 1 for each of the
161d7b59 1942registers in the classes which should not be used by GCC@. Also define
97488870
R
1943the macro @code{REG_CLASS_FROM_LETTER} / @code{REG_CLASS_FROM_CONSTRAINT}
1944to return @code{NO_REGS} if it
feca2ed3
JW
1945is called with a letter for a class that shouldn't be used.
1946
1947(However, if this class is not included in @code{GENERAL_REGS} and all
1948of the insn patterns whose constraints permit this class are
1949controlled by target switches, then GCC will automatically avoid using
1950these registers when the target switches are opposed to them.)
a2c4f8e0 1951@end defmac
feca2ed3 1952
a2c4f8e0 1953@defmac INCOMING_REGNO (@var{out})
feca2ed3
JW
1954Define this macro if the target machine has register windows. This C
1955expression returns the register number as seen by the called function
1956corresponding to the register number @var{out} as seen by the calling
1957function. Return @var{out} if register number @var{out} is not an
1958outbound register.
a2c4f8e0 1959@end defmac
feca2ed3 1960
a2c4f8e0 1961@defmac OUTGOING_REGNO (@var{in})
feca2ed3
JW
1962Define this macro if the target machine has register windows. This C
1963expression returns the register number as seen by the calling function
1964corresponding to the register number @var{in} as seen by the called
1965function. Return @var{in} if register number @var{in} is not an inbound
1966register.
a2c4f8e0 1967@end defmac
feca2ed3 1968
a2c4f8e0 1969@defmac LOCAL_REGNO (@var{regno})
fa80e43d
JL
1970Define this macro if the target machine has register windows. This C
1971expression returns true if the register is call-saved but is in the
1972register window. Unlike most call-saved registers, such registers
1973need not be explicitly restored on function exit or during non-local
1974gotos.
a2c4f8e0 1975@end defmac
fa80e43d 1976
a2c4f8e0 1977@defmac PC_REGNUM
feca2ed3
JW
1978If the program counter has a register number, define this as that
1979register number. Otherwise, do not define it.
a2c4f8e0 1980@end defmac
feca2ed3
JW
1981
1982@node Allocation Order
1983@subsection Order of Allocation of Registers
1984@cindex order of register allocation
1985@cindex register allocation order
1986
1987@c prevent bad page break with this line
1988Registers are allocated in order.
1989
a2c4f8e0 1990@defmac REG_ALLOC_ORDER
feca2ed3 1991If defined, an initializer for a vector of integers, containing the
a3a15b4d 1992numbers of hard registers in the order in which GCC should prefer
feca2ed3
JW
1993to use them (from most preferred to least).
1994
1995If this macro is not defined, registers are used lowest numbered first
1996(all else being equal).
1997
1998One use of this macro is on machines where the highest numbered
1999registers must always be saved and the save-multiple-registers
2000instruction supports only sequences of consecutive registers. On such
2001machines, define @code{REG_ALLOC_ORDER} to be an initializer that lists
956d6950 2002the highest numbered allocable register first.
a2c4f8e0 2003@end defmac
feca2ed3 2004
5a733826 2005@defmac ADJUST_REG_ALLOC_ORDER
feca2ed3
JW
2006A C statement (sans semicolon) to choose the order in which to allocate
2007hard registers for pseudo-registers local to a basic block.
2008
2009Store the desired register order in the array @code{reg_alloc_order}.
2010Element 0 should be the register to allocate first; element 1, the next
2011register; and so on.
2012
2013The macro body should not assume anything about the contents of
2014@code{reg_alloc_order} before execution of the macro.
2015
2016On most machines, it is not necessary to define this macro.
a2c4f8e0 2017@end defmac
feca2ed3 2018
5a733826
BS
2019@defmac HONOR_REG_ALLOC_ORDER
2020Normally, IRA tries to estimate the costs for saving a register in the
2021prologue and restoring it in the epilogue. This discourages it from
2022using call-saved registers. If a machine wants to ensure that IRA
2023allocates registers in the order given by REG_ALLOC_ORDER even if some
2024call-saved registers appear earlier than call-used ones, this macro
2025should be defined.
2026@end defmac
2027
058e97ec
VM
2028@defmac IRA_HARD_REGNO_ADD_COST_MULTIPLIER (@var{regno})
2029In some case register allocation order is not enough for the
2030Integrated Register Allocator (@acronym{IRA}) to generate a good code.
2031If this macro is defined, it should return a floating point value
2032based on @var{regno}. The cost of using @var{regno} for a pseudo will
2033be increased by approximately the pseudo's usage frequency times the
2034value returned by this macro. Not defining this macro is equivalent
2035to having it always return @code{0.0}.
2036
2037On most machines, it is not necessary to define this macro.
2038@end defmac
2039
feca2ed3
JW
2040@node Values in Registers
2041@subsection How Values Fit in Registers
2042
2043This section discusses the macros that describe which kinds of values
2044(specifically, which machine modes) each register can hold, and how many
2045consecutive registers are needed for a given mode.
2046
a2c4f8e0 2047@defmac HARD_REGNO_NREGS (@var{regno}, @var{mode})
feca2ed3
JW
2048A C expression for the number of consecutive hard registers, starting
2049at register number @var{regno}, required to hold a value of mode
79e168da
DD
2050@var{mode}. This macro must never return zero, even if a register
2051cannot hold the requested mode - indicate that with HARD_REGNO_MODE_OK
2052and/or CANNOT_CHANGE_MODE_CLASS instead.
feca2ed3
JW
2053
2054On a machine where all registers are exactly one word, a suitable
2055definition of this macro is
2056
2057@smallexample
2058#define HARD_REGNO_NREGS(REGNO, MODE) \
2059 ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) \
32bd3974 2060 / UNITS_PER_WORD)
feca2ed3 2061@end smallexample
a2c4f8e0 2062@end defmac
feca2ed3 2063
8521c414
JM
2064@defmac HARD_REGNO_NREGS_HAS_PADDING (@var{regno}, @var{mode})
2065A C expression that is nonzero if a value of mode @var{mode}, stored
2066in memory, ends with padding that causes it to take up more space than
2067in registers starting at register number @var{regno} (as determined by
2068multiplying GCC's notion of the size of the register when containing
2069this mode by the number of registers returned by
2070@code{HARD_REGNO_NREGS}). By default this is zero.
2071
2072For example, if a floating-point value is stored in three 32-bit
2073registers but takes up 128 bits in memory, then this would be
2074nonzero.
2075
2076This macros only needs to be defined if there are cases where
f1f4e530 2077@code{subreg_get_info}
8521c414
JM
2078would otherwise wrongly determine that a @code{subreg} can be
2079represented by an offset to the register number, when in fact such a
2080@code{subreg} would contain some of the padding not stored in
2081registers and so not be representable.
2082@end defmac
2083
2084@defmac HARD_REGNO_NREGS_WITH_PADDING (@var{regno}, @var{mode})
2085For values of @var{regno} and @var{mode} for which
2086@code{HARD_REGNO_NREGS_HAS_PADDING} returns nonzero, a C expression
2087returning the greater number of registers required to hold the value
2088including any padding. In the example above, the value would be four.
2089@end defmac
2090
ca0b6e3b
EB
2091@defmac REGMODE_NATURAL_SIZE (@var{mode})
2092Define this macro if the natural size of registers that hold values
2093of mode @var{mode} is not the word size. It is a C expression that
2094should give the natural size in bytes for the specified mode. It is
2095used by the register allocator to try to optimize its results. This
2096happens for example on SPARC 64-bit where the natural size of
2097floating-point registers is still 32-bit.
2098@end defmac
2099
a2c4f8e0 2100@defmac HARD_REGNO_MODE_OK (@var{regno}, @var{mode})
feca2ed3
JW
2101A C expression that is nonzero if it is permissible to store a value
2102of mode @var{mode} in hard register number @var{regno} (or in several
2103registers starting with that one). For a machine where all registers
2104are equivalent, a suitable definition is
2105
2106@smallexample
2107#define HARD_REGNO_MODE_OK(REGNO, MODE) 1
2108@end smallexample
2109
e9a25f70
JL
2110You need not include code to check for the numbers of fixed registers,
2111because the allocation mechanism considers them to be always occupied.
feca2ed3
JW
2112
2113@cindex register pairs
2114On some machines, double-precision values must be kept in even/odd
e9a25f70
JL
2115register pairs. You can implement that by defining this macro to reject
2116odd register numbers for such modes.
feca2ed3
JW
2117
2118The minimum requirement for a mode to be OK in a register is that the
2119@samp{mov@var{mode}} instruction pattern support moves between the
e9a25f70
JL
2120register and other hard register in the same class and that moving a
2121value into the register and back out not alter it.
feca2ed3 2122
e9a25f70
JL
2123Since the same instruction used to move @code{word_mode} will work for
2124all narrower integer modes, it is not necessary on any machine for
feca2ed3
JW
2125@code{HARD_REGNO_MODE_OK} to distinguish between these modes, provided
2126you define patterns @samp{movhi}, etc., to take advantage of this. This
2127is useful because of the interaction between @code{HARD_REGNO_MODE_OK}
2128and @code{MODES_TIEABLE_P}; it is very desirable for all integer modes
2129to be tieable.
2130
2131Many machines have special registers for floating point arithmetic.
2132Often people assume that floating point machine modes are allowed only
2133in floating point registers. This is not true. Any registers that
2134can hold integers can safely @emph{hold} a floating point machine
2135mode, whether or not floating arithmetic can be done on it in those
2136registers. Integer move instructions can be used to move the values.
2137
2138On some machines, though, the converse is true: fixed-point machine
2139modes may not go in floating registers. This is true if the floating
2140registers normalize any value stored in them, because storing a
2141non-floating value there would garble it. In this case,
2142@code{HARD_REGNO_MODE_OK} should reject fixed-point machine modes in
2143floating registers. But if the floating registers do not automatically
2144normalize, if you can store any bit pattern in one and retrieve it
2145unchanged without a trap, then any machine mode may go in a floating
2146register, so you can define this macro to say so.
2147
2148The primary significance of special floating registers is rather that
2149they are the registers acceptable in floating point arithmetic
2150instructions. However, this is of no concern to
2151@code{HARD_REGNO_MODE_OK}. You handle it by writing the proper
2152constraints for those instructions.
2153
2154On some machines, the floating registers are especially slow to access,
2155so that it is better to store a value in a stack frame than in such a
2156register if floating point arithmetic is not being done. As long as the
2157floating registers are not in class @code{GENERAL_REGS}, they will not
2158be used unless some pattern's constraint asks for one.
a2c4f8e0 2159@end defmac
feca2ed3 2160
150c9fe8
KH
2161@defmac HARD_REGNO_RENAME_OK (@var{from}, @var{to})
2162A C expression that is nonzero if it is OK to rename a hard register
2163@var{from} to another hard register @var{to}.
2164
2165One common use of this macro is to prevent renaming of a register to
2166another register that is not saved by a prologue in an interrupt
2167handler.
2168
2169The default is always nonzero.
2170@end defmac
2171
a2c4f8e0 2172@defmac MODES_TIEABLE_P (@var{mode1}, @var{mode2})
e9a25f70 2173A C expression that is nonzero if a value of mode
956d6950 2174@var{mode1} is accessible in mode @var{mode2} without copying.
feca2ed3
JW
2175
2176If @code{HARD_REGNO_MODE_OK (@var{r}, @var{mode1})} and
e9a25f70
JL
2177@code{HARD_REGNO_MODE_OK (@var{r}, @var{mode2})} are always the same for
2178any @var{r}, then @code{MODES_TIEABLE_P (@var{mode1}, @var{mode2})}
2179should be nonzero. If they differ for any @var{r}, you should define
2180this macro to return zero unless some other mechanism ensures the
956d6950 2181accessibility of the value in a narrower mode.
e9a25f70
JL
2182
2183You should define this macro to return nonzero in as many cases as
a3a15b4d 2184possible since doing so will allow GCC to perform better register
e9a25f70 2185allocation.
a2c4f8e0 2186@end defmac
7506f491 2187
dbc42c44
AS
2188@deftypefn {Target Hook} bool TARGET_HARD_REGNO_SCRATCH_OK (unsigned int @var{regno})
2189This target hook should return @code{true} if it is OK to use a hard register
2190@var{regno} as scratch reg in peephole2.
2191
2192One common use of this macro is to prevent using of a register that
2193is not saved by a prologue in an interrupt handler.
2194
2195The default version of this hook always returns @code{true}.
2196@end deftypefn
2197
a2c4f8e0 2198@defmac AVOID_CCMODE_COPIES
7506f491 2199Define this macro if the compiler should avoid copies to/from @code{CCmode}
a89608cb 2200registers. You should only define this macro if support for copying to/from
7506f491 2201@code{CCmode} is incomplete.
a2c4f8e0 2202@end defmac
feca2ed3
JW
2203
2204@node Leaf Functions
2205@subsection Handling Leaf Functions
2206
2207@cindex leaf functions
2208@cindex functions, leaf
2209On some machines, a leaf function (i.e., one which makes no calls) can run
2210more efficiently if it does not make its own register window. Often this
2211means it is required to receive its arguments in the registers where they
2212are passed by the caller, instead of the registers where they would
2213normally arrive.
2214
2215The special treatment for leaf functions generally applies only when
2216other conditions are met; for example, often they may use only those
2217registers for its own variables and temporaries. We use the term ``leaf
2218function'' to mean a function that is suitable for this special
2219handling, so that functions with no calls are not necessarily ``leaf
2220functions''.
2221
a3a15b4d 2222GCC assigns register numbers before it knows whether the function is
feca2ed3
JW
2223suitable for leaf function treatment. So it needs to renumber the
2224registers in order to output a leaf function. The following macros
2225accomplish this.
2226
a2c4f8e0 2227@defmac LEAF_REGISTERS
7d167afd 2228Name of a char vector, indexed by hard register number, which
feca2ed3
JW
2229contains 1 for a register that is allowable in a candidate for leaf
2230function treatment.
2231
2232If leaf function treatment involves renumbering the registers, then the
2233registers marked here should be the ones before renumbering---those that
a3a15b4d 2234GCC would ordinarily allocate. The registers which will actually be
feca2ed3
JW
2235used in the assembler code, after renumbering, should not be marked with 1
2236in this vector.
2237
2238Define this macro only if the target machine offers a way to optimize
2239the treatment of leaf functions.
a2c4f8e0 2240@end defmac
feca2ed3 2241
a2c4f8e0 2242@defmac LEAF_REG_REMAP (@var{regno})
feca2ed3
JW
2243A C expression whose value is the register number to which @var{regno}
2244should be renumbered, when a function is treated as a leaf function.
2245
2246If @var{regno} is a register number which should not appear in a leaf
630d3d5a 2247function before renumbering, then the expression should yield @minus{}1, which
feca2ed3
JW
2248will cause the compiler to abort.
2249
2250Define this macro only if the target machine offers a way to optimize the
2251treatment of leaf functions, and registers need to be renumbered to do
2252this.
a2c4f8e0 2253@end defmac
feca2ed3 2254
54ff41b7
JW
2255@findex current_function_is_leaf
2256@findex current_function_uses_only_leaf_regs
c237e94a
ZW
2257@code{TARGET_ASM_FUNCTION_PROLOGUE} and
2258@code{TARGET_ASM_FUNCTION_EPILOGUE} must usually treat leaf functions
2259specially. They can test the C variable @code{current_function_is_leaf}
2260which is nonzero for leaf functions. @code{current_function_is_leaf} is
2261set prior to local register allocation and is valid for the remaining
08c148a8
NB
2262compiler passes. They can also test the C variable
2263@code{current_function_uses_only_leaf_regs} which is nonzero for leaf
2264functions which only use leaf registers.
9ac617d4
EB
2265@code{current_function_uses_only_leaf_regs} is valid after all passes
2266that modify the instructions have been run and is only useful if
2267@code{LEAF_REGISTERS} is defined.
feca2ed3
JW
2268@c changed this to fix overfull. ALSO: why the "it" at the beginning
2269@c of the next paragraph?! --mew 2feb93
2270
2271@node Stack Registers
2272@subsection Registers That Form a Stack
2273
2274There are special features to handle computers where some of the
a2c4f8e0
ZW
2275``registers'' form a stack. Stack registers are normally written by
2276pushing onto the stack, and are numbered relative to the top of the
2277stack.
feca2ed3 2278
a3a15b4d 2279Currently, GCC can only handle one group of stack-like registers, and
a2c4f8e0
ZW
2280they must be consecutively numbered. Furthermore, the existing
2281support for stack-like registers is specific to the 80387 floating
2282point coprocessor. If you have a new architecture that uses
2283stack-like registers, you will need to do substantial work on
2284@file{reg-stack.c} and write your machine description to cooperate
2285with it, as well as defining these macros.
2286
2287@defmac STACK_REGS
feca2ed3 2288Define this if the machine has any stack-like registers.
a2c4f8e0 2289@end defmac
feca2ed3 2290
1833192f
VM
2291@defmac STACK_REG_COVER_CLASS
2292This is a cover class containing the stack registers. Define this if
2293the machine has any stack-like registers.
2294@end defmac
2295
a2c4f8e0 2296@defmac FIRST_STACK_REG
feca2ed3
JW
2297The number of the first stack-like register. This one is the top
2298of the stack.
a2c4f8e0 2299@end defmac
feca2ed3 2300
a2c4f8e0 2301@defmac LAST_STACK_REG
feca2ed3
JW
2302The number of the last stack-like register. This one is the bottom of
2303the stack.
a2c4f8e0 2304@end defmac
feca2ed3 2305
feca2ed3
JW
2306@node Register Classes
2307@section Register Classes
2308@cindex register class definitions
2309@cindex class definitions, register
2310
2311On many machines, the numbered registers are not all equivalent.
2312For example, certain registers may not be allowed for indexed addressing;
2313certain registers may not be allowed in some instructions. These machine
2314restrictions are described to the compiler using @dfn{register classes}.
2315
2316You define a number of register classes, giving each one a name and saying
2317which of the registers belong to it. Then you can specify register classes
2318that are allowed as operands to particular instruction patterns.
2319
2320@findex ALL_REGS
2321@findex NO_REGS
2322In general, each register will belong to several classes. In fact, one
2323class must be named @code{ALL_REGS} and contain all the registers. Another
2324class must be named @code{NO_REGS} and contain no registers. Often the
2325union of two classes will be another class; however, this is not required.
2326
2327@findex GENERAL_REGS
2328One of the classes must be named @code{GENERAL_REGS}. There is nothing
2329terribly special about the name, but the operand constraint letters
2330@samp{r} and @samp{g} specify this class. If @code{GENERAL_REGS} is
2331the same as @code{ALL_REGS}, just define it as a macro which expands
2332to @code{ALL_REGS}.
2333
2334Order the classes so that if class @var{x} is contained in class @var{y}
2335then @var{x} has a lower class number than @var{y}.
2336
2337The way classes other than @code{GENERAL_REGS} are specified in operand
2338constraints is through machine-dependent operand constraint letters.
2339You can define such letters to correspond to various classes, then use
2340them in operand constraints.
2341
2342You should define a class for the union of two classes whenever some
2343instruction allows both classes. For example, if an instruction allows
2344either a floating point (coprocessor) register or a general register for a
2345certain operand, you should define a class @code{FLOAT_OR_GENERAL_REGS}
2346which includes both of them. Otherwise you will get suboptimal code.
2347
2348You must also specify certain redundant information about the register
2349classes: for each class, which classes contain it and which ones are
2350contained in it; for each pair of classes, the largest class contained
2351in their union.
2352
2353When a value occupying several consecutive registers is expected in a
2354certain class, all the registers used must belong to that class.
2355Therefore, register classes cannot be used to enforce a requirement for
2356a register pair to start with an even-numbered register. The way to
2357specify this requirement is with @code{HARD_REGNO_MODE_OK}.
2358
2359Register classes used for input-operands of bitwise-and or shift
2360instructions have a special requirement: each such class must have, for
2361each fixed-point machine mode, a subclass whose registers can transfer that
2362mode to or from memory. For example, on some machines, the operations for
2363single-byte values (@code{QImode}) are limited to certain registers. When
2364this is so, each register class that is used in a bitwise-and or shift
2365instruction must have a subclass consisting of registers from which
2366single-byte values can be loaded or stored. This is so that
2367@code{PREFERRED_RELOAD_CLASS} can always have a possible value to return.
2368
a2c4f8e0 2369@deftp {Data type} {enum reg_class}
2eac577f
JM
2370An enumerated type that must be defined with all the register class names
2371as enumerated values. @code{NO_REGS} must be first. @code{ALL_REGS}
2372must be the last register class, followed by one more enumerated value,
feca2ed3
JW
2373@code{LIM_REG_CLASSES}, which is not a register class but rather
2374tells how many classes there are.
2375
2376Each register class has a number, which is the value of casting
2377the class name to type @code{int}. The number serves as an index
2378in many of the tables described below.
a2c4f8e0 2379@end deftp
feca2ed3 2380
a2c4f8e0 2381@defmac N_REG_CLASSES
feca2ed3
JW
2382The number of distinct register classes, defined as follows:
2383
3ab51846 2384@smallexample
feca2ed3 2385#define N_REG_CLASSES (int) LIM_REG_CLASSES
3ab51846 2386@end smallexample
a2c4f8e0 2387@end defmac
feca2ed3 2388
a2c4f8e0 2389@defmac REG_CLASS_NAMES
feca2ed3
JW
2390An initializer containing the names of the register classes as C string
2391constants. These names are used in writing some of the debugging dumps.
a2c4f8e0 2392@end defmac
feca2ed3 2393
a2c4f8e0 2394@defmac REG_CLASS_CONTENTS
feca2ed3
JW
2395An initializer containing the contents of the register classes, as integers
2396which are bit masks. The @var{n}th integer specifies the contents of class
2397@var{n}. The way the integer @var{mask} is interpreted is that
2398register @var{r} is in the class if @code{@var{mask} & (1 << @var{r})} is 1.
2399
2400When the machine has more than 32 registers, an integer does not suffice.
2401Then the integers are replaced by sub-initializers, braced groupings containing
2402several integers. Each sub-initializer must be suitable as an initializer
2403for the type @code{HARD_REG_SET} which is defined in @file{hard-reg-set.h}.
7c272079
MP
2404In this situation, the first integer in each sub-initializer corresponds to
2405registers 0 through 31, the second integer to registers 32 through 63, and
2406so on.
a2c4f8e0 2407@end defmac
feca2ed3 2408
a2c4f8e0 2409@defmac REGNO_REG_CLASS (@var{regno})
feca2ed3
JW
2410A C expression whose value is a register class containing hard register
2411@var{regno}. In general there is more than one such class; choose a class
2412which is @dfn{minimal}, meaning that no smaller class also contains the
2413register.
a2c4f8e0 2414@end defmac
feca2ed3 2415
a2c4f8e0 2416@defmac BASE_REG_CLASS
feca2ed3
JW
2417A macro whose definition is the name of the class to which a valid
2418base register must belong. A base register is one used in an address
2419which is the register value plus a displacement.
a2c4f8e0 2420@end defmac
feca2ed3 2421
a2c4f8e0 2422@defmac MODE_BASE_REG_CLASS (@var{mode})
3dcc68a4 2423This is a variation of the @code{BASE_REG_CLASS} macro which allows
c0478a66 2424the selection of a base register in a mode dependent manner. If
3dcc68a4
NC
2425@var{mode} is VOIDmode then it should return the same value as
2426@code{BASE_REG_CLASS}.
a2c4f8e0 2427@end defmac
3dcc68a4 2428
888d2cd6
DJ
2429@defmac MODE_BASE_REG_REG_CLASS (@var{mode})
2430A C expression whose value is the register class to which a valid
2431base register must belong in order to be used in a base plus index
2432register address. You should define this macro if base plus index
2433addresses have different requirements than other base register uses.
2434@end defmac
2435
c4963a0a
BS
2436@defmac MODE_CODE_BASE_REG_CLASS (@var{mode}, @var{outer_code}, @var{index_code})
2437A C expression whose value is the register class to which a valid
2438base register must belong. @var{outer_code} and @var{index_code} define the
2439context in which the base register occurs. @var{outer_code} is the code of
2440the immediately enclosing expression (@code{MEM} for the top level of an
2441address, @code{ADDRESS} for something that occurs in an
2442@code{address_operand}). @var{index_code} is the code of the corresponding
2443index expression if @var{outer_code} is @code{PLUS}; @code{SCRATCH} otherwise.
2444@end defmac
2445
a2c4f8e0 2446@defmac INDEX_REG_CLASS
feca2ed3
JW
2447A macro whose definition is the name of the class to which a valid
2448index register must belong. An index register is one used in an
2449address where its value is either multiplied by a scale factor or
2450added to another register (as well as added to a displacement).
a2c4f8e0 2451@end defmac
feca2ed3 2452
a2c4f8e0 2453@defmac REGNO_OK_FOR_BASE_P (@var{num})
feca2ed3 2454A C expression which is nonzero if register number @var{num} is
1c62e8f2 2455suitable for use as a base register in operand addresses.
a2c4f8e0 2456@end defmac
feca2ed3 2457
a2c4f8e0 2458@defmac REGNO_MODE_OK_FOR_BASE_P (@var{num}, @var{mode})
861bb6c1
JL
2459A C expression that is just like @code{REGNO_OK_FOR_BASE_P}, except that
2460that expression may examine the mode of the memory reference in
2461@var{mode}. You should define this macro if the mode of the memory
2462reference affects whether a register may be used as a base register. If
2463you define this macro, the compiler will use it instead of
ab873839
RW
2464@code{REGNO_OK_FOR_BASE_P}. The mode may be @code{VOIDmode} for
2465addresses that appear outside a @code{MEM}, i.e., as an
2466@code{address_operand}.
a2c4f8e0 2467@end defmac
861bb6c1 2468
888d2cd6
DJ
2469@defmac REGNO_MODE_OK_FOR_REG_BASE_P (@var{num}, @var{mode})
2470A C expression which is nonzero if register number @var{num} is suitable for
2471use as a base register in base plus index operand addresses, accessing
2472memory in mode @var{mode}. It may be either a suitable hard register or a
2473pseudo register that has been allocated such a hard register. You should
2474define this macro if base plus index addresses have different requirements
2475than other base register uses.
c4963a0a
BS
2476
2477Use of this macro is deprecated; please use the more general
2478@code{REGNO_MODE_CODE_OK_FOR_BASE_P}.
2479@end defmac
2480
2481@defmac REGNO_MODE_CODE_OK_FOR_BASE_P (@var{num}, @var{mode}, @var{outer_code}, @var{index_code})
ab873839
RW
2482A C expression that is just like @code{REGNO_MODE_OK_FOR_BASE_P}, except
2483that that expression may examine the context in which the register
2484appears in the memory reference. @var{outer_code} is the code of the
2485immediately enclosing expression (@code{MEM} if at the top level of the
2486address, @code{ADDRESS} for something that occurs in an
2487@code{address_operand}). @var{index_code} is the code of the
2488corresponding index expression if @var{outer_code} is @code{PLUS};
c4963a0a 2489@code{SCRATCH} otherwise. The mode may be @code{VOIDmode} for addresses
ab873839 2490that appear outside a @code{MEM}, i.e., as an @code{address_operand}.
888d2cd6
DJ
2491@end defmac
2492
a2c4f8e0 2493@defmac REGNO_OK_FOR_INDEX_P (@var{num})
feca2ed3
JW
2494A C expression which is nonzero if register number @var{num} is
2495suitable for use as an index register in operand addresses. It may be
2496either a suitable hard register or a pseudo register that has been
2497allocated such a hard register.
2498
2499The difference between an index register and a base register is that
2500the index register may be scaled. If an address involves the sum of
2501two registers, neither one of them scaled, then either one may be
2502labeled the ``base'' and the other the ``index''; but whichever
2503labeling is used must fit the machine's constraints of which registers
2504may serve in each capacity. The compiler will try both labelings,
2505looking for one that is valid, and will reload one or both registers
2506only if neither labeling works.
a2c4f8e0 2507@end defmac
feca2ed3 2508
fba42e24
AS
2509@deftypefn {Target Hook} reg_class_t TARGET_PREFERRED_RELOAD_CLASS (rtx @var{x}, reg_class_t @var{rclass})
2510A target hook that places additional restrictions on the register class
2511to use when it is necessary to copy value @var{x} into a register in class
2512@var{rclass}. The value is a register class; perhaps @var{rclass}, or perhaps
2513another, smaller class.
2514
2515The default version of this hook always returns value of @code{rclass} argument.
2516
2517Sometimes returning a more restrictive class makes better code. For
2518example, on the 68000, when @var{x} is an integer constant that is in range
2519for a @samp{moveq} instruction, the value of this macro is always
2520@code{DATA_REGS} as long as @var{rclass} includes the data registers.
2521Requiring a data register guarantees that a @samp{moveq} will be used.
2522
2523One case where @code{TARGET_PREFERRED_RELOAD_CLASS} must not return
2524@var{rclass} is if @var{x} is a legitimate constant which cannot be
2525loaded into some register class. By returning @code{NO_REGS} you can
2526force @var{x} into a memory location. For example, rs6000 can load
2527immediate values into general-purpose registers, but does not have an
2528instruction for loading an immediate value into a floating-point
2529register, so @code{TARGET_PREFERRED_RELOAD_CLASS} returns @code{NO_REGS} when
2530@var{x} is a floating-point constant. If the constant can't be loaded
2531into any kind of register, code generation will be better if
2532@code{LEGITIMATE_CONSTANT_P} makes the constant illegitimate instead
2533of using @code{TARGET_PREFERRED_RELOAD_CLASS}.
2534
2535If an insn has pseudos in it after register allocation, reload will go
2536through the alternatives and call repeatedly @code{TARGET_PREFERRED_RELOAD_CLASS}
2537to find the best one. Returning @code{NO_REGS}, in this case, makes
2538reload add a @code{!} in front of the constraint: the x86 back-end uses
2539this feature to discourage usage of 387 registers when math is done in
2540the SSE registers (and vice versa).
2541@end deftypefn
2542
a2c4f8e0 2543@defmac PREFERRED_RELOAD_CLASS (@var{x}, @var{class})
feca2ed3
JW
2544A C expression that places additional restrictions on the register class
2545to use when it is necessary to copy value @var{x} into a register in class
2546@var{class}. The value is a register class; perhaps @var{class}, or perhaps
2547another, smaller class. On many machines, the following definition is
2548safe:
2549
3ab51846 2550@smallexample
feca2ed3 2551#define PREFERRED_RELOAD_CLASS(X,CLASS) CLASS
3ab51846 2552@end smallexample
feca2ed3
JW
2553
2554Sometimes returning a more restrictive class makes better code. For
2555example, on the 68000, when @var{x} is an integer constant that is in range
2556for a @samp{moveq} instruction, the value of this macro is always
2557@code{DATA_REGS} as long as @var{class} includes the data registers.
2558Requiring a data register guarantees that a @samp{moveq} will be used.
2559
222a2f1a
GK
2560One case where @code{PREFERRED_RELOAD_CLASS} must not return
2561@var{class} is if @var{x} is a legitimate constant which cannot be
2562loaded into some register class. By returning @code{NO_REGS} you can
2563force @var{x} into a memory location. For example, rs6000 can load
2564immediate values into general-purpose registers, but does not have an
2565instruction for loading an immediate value into a floating-point
2566register, so @code{PREFERRED_RELOAD_CLASS} returns @code{NO_REGS} when
2567@var{x} is a floating-point constant. If the constant can't be loaded
2568into any kind of register, code generation will be better if
2569@code{LEGITIMATE_CONSTANT_P} makes the constant illegitimate instead
2570of using @code{PREFERRED_RELOAD_CLASS}.
b5c82fa1
PB
2571
2572If an insn has pseudos in it after register allocation, reload will go
2573through the alternatives and call repeatedly @code{PREFERRED_RELOAD_CLASS}
2574to find the best one. Returning @code{NO_REGS}, in this case, makes
2575reload add a @code{!} in front of the constraint: the x86 back-end uses
2576this feature to discourage usage of 387 registers when math is done in
2577the SSE registers (and vice versa).
a2c4f8e0 2578@end defmac
feca2ed3 2579
a2c4f8e0 2580@defmac PREFERRED_OUTPUT_RELOAD_CLASS (@var{x}, @var{class})
feca2ed3
JW
2581Like @code{PREFERRED_RELOAD_CLASS}, but for output reloads instead of
2582input reloads. If you don't define this macro, the default is to use
2583@var{class}, unchanged.
b5c82fa1
PB
2584
2585You can also use @code{PREFERRED_OUTPUT_RELOAD_CLASS} to discourage
2586reload from using some alternatives, like @code{PREFERRED_RELOAD_CLASS}.
a2c4f8e0 2587@end defmac
feca2ed3 2588
abd26bfb
AS
2589@deftypefn {Target Hook} reg_class_t TARGET_PREFERRED_OUTPUT_RELOAD_CLASS (rtx @var{x}, reg_class_t @var{rclass})
2590Like @code{TARGET_PREFERRED_RELOAD_CLASS}, but for output reloads instead of
2591input reloads.
2592
2593The default version of this hook always returns value of @code{rclass}
2594argument.
2595
2596You can also use @code{TARGET_PREFERRED_OUTPUT_RELOAD_CLASS} to discourage
2597reload from using some alternatives, like @code{TARGET_PREFERRED_RELOAD_CLASS}.
2598@end deftypefn
2599
a2c4f8e0 2600@defmac LIMIT_RELOAD_CLASS (@var{mode}, @var{class})
feca2ed3
JW
2601A C expression that places additional restrictions on the register class
2602to use when it is necessary to be able to hold a value of mode
2603@var{mode} in a reload register for which class @var{class} would
2604ordinarily be used.
2605
2606Unlike @code{PREFERRED_RELOAD_CLASS}, this macro should be used when
2607there are certain modes that simply can't go in certain reload classes.
2608
2609The value is a register class; perhaps @var{class}, or perhaps another,
2610smaller class.
2611
2612Don't define this macro unless the target machine has limitations which
2613require the macro to do something nontrivial.
a2c4f8e0 2614@end defmac
feca2ed3 2615
a87cf97e 2616@deftypefn {Target Hook} reg_class_t TARGET_SECONDARY_RELOAD (bool @var{in_p}, rtx @var{x}, reg_class_t @var{reload_class}, enum machine_mode @var{reload_mode}, secondary_reload_info *@var{sri})
feca2ed3
JW
2617Many machines have some registers that cannot be copied directly to or
2618from memory or even from other types of registers. An example is the
2619@samp{MQ} register, which on most machines, can only be copied to or
8a99f6f9
R
2620from general registers, but not memory. Below, we shall be using the
2621term 'intermediate register' when a move operation cannot be performed
2622directly, but has to be done by copying the source into the intermediate
2623register first, and then copying the intermediate register to the
2624destination. An intermediate register always has the same mode as
2625source and destination. Since it holds the actual value being copied,
2626reload might apply optimizations to re-use an intermediate register
2627and eliding the copy from the source when it can determine that the
2628intermediate register still holds the required value.
2629
2630Another kind of secondary reload is required on some machines which
2631allow copying all registers to and from memory, but require a scratch
2632register for stores to some memory locations (e.g., those with symbolic
2633address on the RT, and those with certain symbolic address on the SPARC
2634when compiling PIC)@. Scratch registers need not have the same mode
e4ae5e77 2635as the value being copied, and usually hold a different value than
8a99f6f9
R
2636that being copied. Special patterns in the md file are needed to
2637describe how the copy is performed with the help of the scratch register;
2638these patterns also describe the number, register class(es) and mode(s)
2639of the scratch register(s).
2640
2641In some cases, both an intermediate and a scratch register are required.
2642
2643For input reloads, this target hook is called with nonzero @var{in_p},
9bdf23b2 2644and @var{x} is an rtx that needs to be copied to a register of class
8a99f6f9 2645@var{reload_class} in @var{reload_mode}. For output reloads, this target
9bdf23b2 2646hook is called with zero @var{in_p}, and a register of class @var{reload_class}
8a99f6f9
R
2647needs to be copied to rtx @var{x} in @var{reload_mode}.
2648
2649If copying a register of @var{reload_class} from/to @var{x} requires
2650an intermediate register, the hook @code{secondary_reload} should
2651return the register class required for this intermediate register.
2652If no intermediate register is required, it should return NO_REGS.
2653If more than one intermediate register is required, describe the one
2654that is closest in the copy chain to the reload register.
2655
2656If scratch registers are needed, you also have to describe how to
2657perform the copy from/to the reload register to/from this
2658closest intermediate register. Or if no intermediate register is
2659required, but still a scratch register is needed, describe the
2660copy from/to the reload register to/from the reload operand @var{x}.
2661
2662You do this by setting @code{sri->icode} to the instruction code of a pattern
2663in the md file which performs the move. Operands 0 and 1 are the output
2664and input of this copy, respectively. Operands from operand 2 onward are
2665for scratch operands. These scratch operands must have a mode, and a
2666single-register-class
2667@c [later: or memory]
2668output constraint.
2669
2670When an intermediate register is used, the @code{secondary_reload}
2671hook will be called again to determine how to copy the intermediate
2672register to/from the reload operand @var{x}, so your hook must also
2673have code to handle the register class of the intermediate operand.
2674
2675@c [For later: maybe we'll allow multi-alternative reload patterns -
2676@c the port maintainer could name a mov<mode> pattern that has clobbers -
2677@c and match the constraints of input and output to determine the required
2678@c alternative. A restriction would be that constraints used to match
2679@c against reloads registers would have to be written as register class
2680@c constraints, or we need a new target macro / hook that tells us if an
2681@c arbitrary constraint can match an unknown register of a given class.
2682@c Such a macro / hook would also be useful in other places.]
2683
2684
2685@var{x} might be a pseudo-register or a @code{subreg} of a
2686pseudo-register, which could either be in a hard register or in memory.
2687Use @code{true_regnum} to find out; it will return @minus{}1 if the pseudo is
2688in memory and the hard register number if it is in a register.
2689
2690Scratch operands in memory (constraint @code{"=m"} / @code{"=&m"}) are
2691currently not supported. For the time being, you will have to continue
2692to use @code{SECONDARY_MEMORY_NEEDED} for that purpose.
2693
2694@code{copy_cost} also uses this target hook to find out how values are
2695copied. If you want it to include some extra cost for the need to allocate
2696(a) scratch register(s), set @code{sri->extra_cost} to the additional cost.
2697Or if two dependent moves are supposed to have a lower cost than the sum
2698of the individual moves due to expected fortuitous scheduling and/or special
2699forwarding logic, you can set @code{sri->extra_cost} to a negative amount.
2700@end deftypefn
2701
2702@defmac SECONDARY_RELOAD_CLASS (@var{class}, @var{mode}, @var{x})
2703@defmacx SECONDARY_INPUT_RELOAD_CLASS (@var{class}, @var{mode}, @var{x})
2704@defmacx SECONDARY_OUTPUT_RELOAD_CLASS (@var{class}, @var{mode}, @var{x})
083cad55 2705These macros are obsolete, new ports should use the target hook
8a99f6f9
R
2706@code{TARGET_SECONDARY_RELOAD} instead.
2707
2708These are obsolete macros, replaced by the @code{TARGET_SECONDARY_RELOAD}
2709target hook. Older ports still define these macros to indicate to the
2710reload phase that it may
feca2ed3
JW
2711need to allocate at least one register for a reload in addition to the
2712register to contain the data. Specifically, if copying @var{x} to a
2713register @var{class} in @var{mode} requires an intermediate register,
8a99f6f9 2714you were supposed to define @code{SECONDARY_INPUT_RELOAD_CLASS} to return the
feca2ed3
JW
2715largest register class all of whose registers can be used as
2716intermediate registers or scratch registers.
2717
2718If copying a register @var{class} in @var{mode} to @var{x} requires an
2719intermediate or scratch register, @code{SECONDARY_OUTPUT_RELOAD_CLASS}
8a99f6f9
R
2720was supposed to be defined be defined to return the largest register
2721class required. If the
2722requirements for input and output reloads were the same, the macro
2723@code{SECONDARY_RELOAD_CLASS} should have been used instead of defining both
feca2ed3
JW
2724macros identically.
2725
2726The values returned by these macros are often @code{GENERAL_REGS}.
2727Return @code{NO_REGS} if no spare register is needed; i.e., if @var{x}
2728can be directly copied to or from a register of @var{class} in
2729@var{mode} without requiring a scratch register. Do not define this
2730macro if it would always return @code{NO_REGS}.
2731
2732If a scratch register is required (either with or without an
8a99f6f9 2733intermediate register), you were supposed to define patterns for
feca2ed3 2734@samp{reload_in@var{m}} or @samp{reload_out@var{m}}, as required
8a99f6f9 2735(@pxref{Standard Names}. These patterns, which were normally
feca2ed3
JW
2736implemented with a @code{define_expand}, should be similar to the
2737@samp{mov@var{m}} patterns, except that operand 2 is the scratch
2738register.
2739
8a99f6f9
R
2740These patterns need constraints for the reload register and scratch
2741register that
feca2ed3
JW
2742contain a single register class. If the original reload register (whose
2743class is @var{class}) can meet the constraint given in the pattern, the
2744value returned by these macros is used for the class of the scratch
2745register. Otherwise, two additional reload registers are required.
2746Their classes are obtained from the constraints in the insn pattern.
2747
2748@var{x} might be a pseudo-register or a @code{subreg} of a
2749pseudo-register, which could either be in a hard register or in memory.
630d3d5a 2750Use @code{true_regnum} to find out; it will return @minus{}1 if the pseudo is
feca2ed3
JW
2751in memory and the hard register number if it is in a register.
2752
2753These macros should not be used in the case where a particular class of
2754registers can only be copied to memory and not to another class of
2755registers. In that case, secondary reload registers are not needed and
2756would not be helpful. Instead, a stack location must be used to perform
a8154559 2757the copy and the @code{mov@var{m}} pattern should use memory as an
feca2ed3
JW
2758intermediate storage. This case often occurs between floating-point and
2759general registers.
a2c4f8e0 2760@end defmac
feca2ed3 2761
a2c4f8e0 2762@defmac SECONDARY_MEMORY_NEEDED (@var{class1}, @var{class2}, @var{m})
feca2ed3
JW
2763Certain machines have the property that some registers cannot be copied
2764to some other registers without using memory. Define this macro on
df2a54e9 2765those machines to be a C expression that is nonzero if objects of mode
feca2ed3
JW
2766@var{m} in registers of @var{class1} can only be copied to registers of
2767class @var{class2} by storing a register of @var{class1} into memory
2768and loading that memory location into a register of @var{class2}.
2769
2770Do not define this macro if its value would always be zero.
a2c4f8e0 2771@end defmac
feca2ed3 2772
a2c4f8e0 2773@defmac SECONDARY_MEMORY_NEEDED_RTX (@var{mode})
feca2ed3
JW
2774Normally when @code{SECONDARY_MEMORY_NEEDED} is defined, the compiler
2775allocates a stack slot for a memory location needed for register copies.
2776If this macro is defined, the compiler instead uses the memory location
2777defined by this macro.
2778
2779Do not define this macro if you do not define
2780@code{SECONDARY_MEMORY_NEEDED}.
a2c4f8e0 2781@end defmac
feca2ed3 2782
a2c4f8e0 2783@defmac SECONDARY_MEMORY_NEEDED_MODE (@var{mode})
feca2ed3
JW
2784When the compiler needs a secondary memory location to copy between two
2785registers of mode @var{mode}, it normally allocates sufficient memory to
2786hold a quantity of @code{BITS_PER_WORD} bits and performs the store and
2787load operations in a mode that many bits wide and whose class is the
2788same as that of @var{mode}.
2789
2790This is right thing to do on most machines because it ensures that all
2791bits of the register are copied and prevents accesses to the registers
2792in a narrower mode, which some machines prohibit for floating-point
2793registers.
2794
2795However, this default behavior is not correct on some machines, such as
2796the DEC Alpha, that store short integers in floating-point registers
2797differently than in integer registers. On those machines, the default
2798widening will not work correctly and you must define this macro to
2799suppress that widening in some cases. See the file @file{alpha.h} for
2800details.
2801
2802Do not define this macro if you do not define
2803@code{SECONDARY_MEMORY_NEEDED} or if widening @var{mode} to a mode that
2804is @code{BITS_PER_WORD} bits wide is correct for your machine.
a2c4f8e0 2805@end defmac
feca2ed3 2806
07b8f0a8
AS
2807@deftypefn {Target Hook} bool TARGET_CLASS_LIKELY_SPILLED_P (reg_class_t @var{rclass})
2808A target hook which returns @code{true} if pseudos that have been assigned
2809to registers of class @var{rclass} would likely be spilled because
2810registers of @var{rclass} are needed for spill registers.
2811
2812The default version of this target hook returns @code{true} if @var{rclass}
2813has exactly one register and @code{false} otherwise. On most machines, this
2814default should be used. Only use this target hook to some other expression
2815if pseudos allocated by @file{local-alloc.c} end up in memory because their
2816hard registers were needed for spill registers. If this target hook returns
2817@code{false} for those classes, those pseudos will only be allocated by
2818@file{global.c}, which knows how to reallocate the pseudo to another
2819register. If there would not be another register available for reallocation,
2820you should not change the implementation of this target hook since
2821the only effect of such implementation would be to slow down register
2822allocation.
2823@end deftypefn
2824
a2c4f8e0 2825@defmac CLASS_MAX_NREGS (@var{class}, @var{mode})
feca2ed3
JW
2826A C expression for the maximum number of consecutive registers
2827of class @var{class} needed to hold a value of mode @var{mode}.
2828
2829This is closely related to the macro @code{HARD_REGNO_NREGS}. In fact,
2830the value of the macro @code{CLASS_MAX_NREGS (@var{class}, @var{mode})}
2831should be the maximum value of @code{HARD_REGNO_NREGS (@var{regno},
2832@var{mode})} for all @var{regno} values in the class @var{class}.
2833
2834This macro helps control the handling of multiple-word values
2835in the reload pass.
a2c4f8e0 2836@end defmac
feca2ed3 2837
a2c4f8e0 2838@defmac CANNOT_CHANGE_MODE_CLASS (@var{from}, @var{to}, @var{class})
b0c42aed
JH
2839If defined, a C expression that returns nonzero for a @var{class} for which
2840a change from mode @var{from} to mode @var{to} is invalid.
feca2ed3
JW
2841
2842For the example, loading 32-bit integer or floating-point objects into
57694e40 2843floating-point registers on the Alpha extends them to 64 bits.
feca2ed3 2844Therefore loading a 64-bit object and then storing it as a 32-bit object
57694e40 2845does not store the low-order 32 bits, as would be the case for a normal
cff9f8d5
AH
2846register. Therefore, @file{alpha.h} defines @code{CANNOT_CHANGE_MODE_CLASS}
2847as below:
02188693 2848
3ab51846 2849@smallexample
b0c42aed
JH
2850#define CANNOT_CHANGE_MODE_CLASS(FROM, TO, CLASS) \
2851 (GET_MODE_SIZE (FROM) != GET_MODE_SIZE (TO) \
2852 ? reg_classes_intersect_p (FLOAT_REGS, (CLASS)) : 0)
3ab51846 2853@end smallexample
a2c4f8e0 2854@end defmac
feca2ed3 2855
a87cf97e 2856@deftypefn {Target Hook} {const reg_class_t *} TARGET_IRA_COVER_CLASSES (void)
76e68dca 2857Return an array of cover classes for the Integrated Register Allocator
058e97ec
VM
2858(@acronym{IRA}). Cover classes are a set of non-intersecting register
2859classes covering all hard registers used for register allocation
af9253a1 2860purposes. If a move between two registers in the same cover class is
4cda38d5 2861possible, it should be cheaper than a load or store of the registers.
76e68dca
RS
2862The array is terminated by a @code{LIM_REG_CLASSES} element.
2863
db1a8d98
VM
2864The order of cover classes in the array is important. If two classes
2865have the same cost of usage for a pseudo, the class occurred first in
2866the array is chosen for the pseudo.
2867
76e68dca
RS
2868This hook is called once at compiler startup, after the command-line
2869options have been processed. It is then re-examined by every call to
2870@code{target_reinit}.
058e97ec 2871
76e68dca
RS
2872The default implementation returns @code{IRA_COVER_CLASSES}, if defined,
2873otherwise there is no default implementation. You must define either this
2874macro or @code{IRA_COVER_CLASSES} in order to use the integrated register
7db7ed3c
VM
2875allocator with Chaitin-Briggs coloring. If the macro is not defined,
2876the only available coloring algorithm is Chow's priority coloring.
76e68dca
RS
2877@end deftypefn
2878
2879@defmac IRA_COVER_CLASSES
2880See the documentation for @code{TARGET_IRA_COVER_CLASSES}.
058e97ec
VM
2881@end defmac
2882
f38840db
ZW
2883@node Old Constraints
2884@section Obsolete Macros for Defining Constraints
2885@cindex defining constraints, obsolete method
2886@cindex constraints, defining, obsolete method
2887
2888Machine-specific constraints can be defined with these macros instead
2889of the machine description constructs described in @ref{Define
2890Constraints}. This mechanism is obsolete. New ports should not use
2891it; old ports should convert to the new mechanism.
2892
2893@defmac CONSTRAINT_LEN (@var{char}, @var{str})
2894For the constraint at the start of @var{str}, which starts with the letter
2895@var{c}, return the length. This allows you to have register class /
2896constant / extra constraints that are longer than a single letter;
2897you don't need to define this macro if you can do with single-letter
2898constraints only. The definition of this macro should use
2899DEFAULT_CONSTRAINT_LEN for all the characters that you don't want
2900to handle specially.
2901There are some sanity checks in genoutput.c that check the constraint lengths
2902for the md file, so you can also use this macro to help you while you are
2903transitioning from a byzantine single-letter-constraint scheme: when you
2904return a negative length for a constraint you want to re-use, genoutput
2905will complain about every instance where it is used in the md file.
2906@end defmac
2907
2908@defmac REG_CLASS_FROM_LETTER (@var{char})
2909A C expression which defines the machine-dependent operand constraint
2910letters for register classes. If @var{char} is such a letter, the
2911value should be the register class corresponding to it. Otherwise,
2912the value should be @code{NO_REGS}. The register letter @samp{r},
2913corresponding to class @code{GENERAL_REGS}, will not be passed
2914to this macro; you do not need to handle it.
2915@end defmac
2916
2917@defmac REG_CLASS_FROM_CONSTRAINT (@var{char}, @var{str})
2918Like @code{REG_CLASS_FROM_LETTER}, but you also get the constraint string
2919passed in @var{str}, so that you can use suffixes to distinguish between
2920different variants.
2921@end defmac
feca2ed3 2922
a2c4f8e0 2923@defmac CONST_OK_FOR_LETTER_P (@var{value}, @var{c})
e119b68c
MM
2924A C expression that defines the machine-dependent operand constraint
2925letters (@samp{I}, @samp{J}, @samp{K}, @dots{} @samp{P}) that specify
2926particular ranges of integer values. If @var{c} is one of those
2927letters, the expression should check that @var{value}, an integer, is in
2928the appropriate range and return 1 if so, 0 otherwise. If @var{c} is
2929not one of those letters, the value should be 0 regardless of
2930@var{value}.
a2c4f8e0 2931@end defmac
feca2ed3 2932
a2c4f8e0 2933@defmac CONST_OK_FOR_CONSTRAINT_P (@var{value}, @var{c}, @var{str})
97488870
R
2934Like @code{CONST_OK_FOR_LETTER_P}, but you also get the constraint
2935string passed in @var{str}, so that you can use suffixes to distinguish
2936between different variants.
a2c4f8e0 2937@end defmac
97488870 2938
a2c4f8e0 2939@defmac CONST_DOUBLE_OK_FOR_LETTER_P (@var{value}, @var{c})
feca2ed3 2940A C expression that defines the machine-dependent operand constraint
e119b68c
MM
2941letters that specify particular ranges of @code{const_double} values
2942(@samp{G} or @samp{H}).
feca2ed3
JW
2943
2944If @var{c} is one of those letters, the expression should check that
2945@var{value}, an RTX of code @code{const_double}, is in the appropriate
2946range and return 1 if so, 0 otherwise. If @var{c} is not one of those
2947letters, the value should be 0 regardless of @var{value}.
2948
2949@code{const_double} is used for all floating-point constants and for
2950@code{DImode} fixed-point constants. A given letter can accept either
2951or both kinds of values. It can use @code{GET_MODE} to distinguish
2952between these kinds.
a2c4f8e0 2953@end defmac
feca2ed3 2954
a2c4f8e0 2955@defmac CONST_DOUBLE_OK_FOR_CONSTRAINT_P (@var{value}, @var{c}, @var{str})
97488870
R
2956Like @code{CONST_DOUBLE_OK_FOR_LETTER_P}, but you also get the constraint
2957string passed in @var{str}, so that you can use suffixes to distinguish
2958between different variants.
a2c4f8e0 2959@end defmac
97488870 2960
a2c4f8e0 2961@defmac EXTRA_CONSTRAINT (@var{value}, @var{c})
feca2ed3 2962A C expression that defines the optional machine-dependent constraint
c2cba7a9
RH
2963letters that can be used to segregate specific types of operands, usually
2964memory references, for the target machine. Any letter that is not
97488870
R
2965elsewhere defined and not matched by @code{REG_CLASS_FROM_LETTER} /
2966@code{REG_CLASS_FROM_CONSTRAINT}
c2cba7a9
RH
2967may be used. Normally this macro will not be defined.
2968
2969If it is required for a particular target machine, it should return 1
2970if @var{value} corresponds to the operand type represented by the
2971constraint letter @var{c}. If @var{c} is not defined as an extra
e119b68c 2972constraint, the value returned should be 0 regardless of @var{value}.
feca2ed3 2973
c2cba7a9
RH
2974For example, on the ROMP, load instructions cannot have their output
2975in r0 if the memory reference contains a symbolic address. Constraint
2976letter @samp{Q} is defined as representing a memory address that does
feca2ed3
JW
2977@emph{not} contain a symbolic address. An alternative is specified with
2978a @samp{Q} constraint on the input and @samp{r} on the output. The next
2979alternative specifies @samp{m} on the input and a register class that
2980does not include r0 on the output.
a2c4f8e0 2981@end defmac
ccfc6cc8 2982
a2c4f8e0 2983@defmac EXTRA_CONSTRAINT_STR (@var{value}, @var{c}, @var{str})
97488870
R
2984Like @code{EXTRA_CONSTRAINT}, but you also get the constraint string passed
2985in @var{str}, so that you can use suffixes to distinguish between different
2986variants.
a2c4f8e0 2987@end defmac
97488870 2988
a2c4f8e0 2989@defmac EXTRA_MEMORY_CONSTRAINT (@var{c}, @var{str})
ccfc6cc8
UW
2990A C expression that defines the optional machine-dependent constraint
2991letters, amongst those accepted by @code{EXTRA_CONSTRAINT}, that should
2992be treated like memory constraints by the reload pass.
2993
73774972 2994It should return 1 if the operand type represented by the constraint
97488870 2995at the start of @var{str}, the first letter of which is the letter @var{c},
6ccde948 2996comprises a subset of all memory references including
73774972
EC
2997all those whose address is simply a base register. This allows the reload
2998pass to reload an operand, if it does not directly correspond to the operand
ccfc6cc8
UW
2999type of @var{c}, by copying its address into a base register.
3000
3001For example, on the S/390, some instructions do not accept arbitrary
3002memory references, but only those that do not make use of an index
3003register. The constraint letter @samp{Q} is defined via
3004@code{EXTRA_CONSTRAINT} as representing a memory address of this type.
3005If the letter @samp{Q} is marked as @code{EXTRA_MEMORY_CONSTRAINT},
3006a @samp{Q} constraint can handle any memory operand, because the
3007reload pass knows it can be reloaded by copying the memory address
3008into a base register if required. This is analogous to the way
e4ae5e77 3009an @samp{o} constraint can handle any memory operand.
a2c4f8e0 3010@end defmac
ccfc6cc8 3011
a2c4f8e0 3012@defmac EXTRA_ADDRESS_CONSTRAINT (@var{c}, @var{str})
ccfc6cc8 3013A C expression that defines the optional machine-dependent constraint
97488870
R
3014letters, amongst those accepted by @code{EXTRA_CONSTRAINT} /
3015@code{EXTRA_CONSTRAINT_STR}, that should
ccfc6cc8
UW
3016be treated like address constraints by the reload pass.
3017
73774972 3018It should return 1 if the operand type represented by the constraint
3a6e2189 3019at the start of @var{str}, which starts with the letter @var{c}, comprises
97488870 3020a subset of all memory addresses including
73774972
EC
3021all those that consist of just a base register. This allows the reload
3022pass to reload an operand, if it does not directly correspond to the operand
97488870 3023type of @var{str}, by copying it into a base register.
ccfc6cc8
UW
3024
3025Any constraint marked as @code{EXTRA_ADDRESS_CONSTRAINT} can only
73774972 3026be used with the @code{address_operand} predicate. It is treated
ccfc6cc8 3027analogously to the @samp{p} constraint.
a2c4f8e0 3028@end defmac
feca2ed3
JW
3029
3030@node Stack and Calling
3031@section Stack Layout and Calling Conventions
3032@cindex calling conventions
3033
3034@c prevent bad page break with this line
3035This describes the stack layout and calling conventions.
3036
3037@menu
3038* Frame Layout::
7c16328b 3039* Exception Handling::
861bb6c1 3040* Stack Checking::
feca2ed3
JW
3041* Frame Registers::
3042* Elimination::
3043* Stack Arguments::
3044* Register Arguments::
3045* Scalar Return::
3046* Aggregate Return::
3047* Caller Saves::
3048* Function Entry::
3049* Profiling::
91d231cb 3050* Tail Calls::
7d69de61 3051* Stack Smashing Protection::
feca2ed3
JW
3052@end menu
3053
3054@node Frame Layout
3055@subsection Basic Stack Layout
3056@cindex stack frame layout
3057@cindex frame layout
3058
3059@c prevent bad page break with this line
3060Here is the basic stack layout.
3061
a2c4f8e0 3062@defmac STACK_GROWS_DOWNWARD
feca2ed3
JW
3063Define this macro if pushing a word onto the stack moves the stack
3064pointer to a smaller address.
3065
d78aa55c 3066When we say, ``define this macro if @dots{}'', it means that the
feca2ed3
JW
3067compiler checks this macro only with @code{#ifdef} so the precise
3068definition used does not matter.
a2c4f8e0 3069@end defmac
feca2ed3 3070
a2c4f8e0 3071@defmac STACK_PUSH_CODE
918a6124
GK
3072This macro defines the operation used when something is pushed
3073on the stack. In RTL, a push operation will be
04a5176a 3074@code{(set (mem (STACK_PUSH_CODE (reg sp))) @dots{})}
918a6124
GK
3075
3076The choices are @code{PRE_DEC}, @code{POST_DEC}, @code{PRE_INC},
3077and @code{POST_INC}. Which of these is correct depends on
3078the stack direction and on whether the stack pointer points
3079to the last item on the stack or whether it points to the
3080space for the next item on the stack.
3081
3082The default is @code{PRE_DEC} when @code{STACK_GROWS_DOWNWARD} is
3083defined, which is almost always right, and @code{PRE_INC} otherwise,
3084which is often wrong.
a2c4f8e0 3085@end defmac
918a6124 3086
a2c4f8e0 3087@defmac FRAME_GROWS_DOWNWARD
a4d05547 3088Define this macro to nonzero value if the addresses of local variable slots
f62c8a5c 3089are at negative offsets from the frame pointer.
a2c4f8e0 3090@end defmac
feca2ed3 3091
a2c4f8e0 3092@defmac ARGS_GROW_DOWNWARD
feca2ed3
JW
3093Define this macro if successive arguments to a function occupy decreasing
3094addresses on the stack.
a2c4f8e0 3095@end defmac
feca2ed3 3096
a2c4f8e0 3097@defmac STARTING_FRAME_OFFSET
feca2ed3
JW
3098Offset from the frame pointer to the first local variable slot to be allocated.
3099
3100If @code{FRAME_GROWS_DOWNWARD}, find the next slot's offset by
3101subtracting the first slot's length from @code{STARTING_FRAME_OFFSET}.
3102Otherwise, it is found by adding the length of the first slot to the
3103value @code{STARTING_FRAME_OFFSET}.
3104@c i'm not sure if the above is still correct.. had to change it to get
3105@c rid of an overfull. --mew 2feb93
a2c4f8e0 3106@end defmac
feca2ed3 3107
a2c4f8e0 3108@defmac STACK_ALIGNMENT_NEEDED
95f3f59e 3109Define to zero to disable final alignment of the stack during reload.
0b4be7de 3110The nonzero default for this macro is suitable for most ports.
95f3f59e 3111
0b4be7de 3112On ports where @code{STARTING_FRAME_OFFSET} is nonzero or where there
95f3f59e
JDA
3113is a register save block following the local block that doesn't require
3114alignment to @code{STACK_BOUNDARY}, it may be beneficial to disable
3115stack alignment and do it in the backend.
a2c4f8e0 3116@end defmac
95f3f59e 3117
a2c4f8e0 3118@defmac STACK_POINTER_OFFSET
feca2ed3
JW
3119Offset from the stack pointer register to the first location at which
3120outgoing arguments are placed. If not specified, the default value of
3121zero is used. This is the proper value for most machines.
3122
3123If @code{ARGS_GROW_DOWNWARD}, this is the offset to the location above
3124the first location at which outgoing arguments are placed.
a2c4f8e0 3125@end defmac
feca2ed3 3126
a2c4f8e0 3127@defmac FIRST_PARM_OFFSET (@var{fundecl})
feca2ed3
JW
3128Offset from the argument pointer register to the first argument's
3129address. On some machines it may depend on the data type of the
3130function.
3131
3132If @code{ARGS_GROW_DOWNWARD}, this is the offset to the location above
3133the first argument's address.
a2c4f8e0 3134@end defmac
feca2ed3 3135
a2c4f8e0 3136@defmac STACK_DYNAMIC_OFFSET (@var{fundecl})
feca2ed3
JW
3137Offset from the stack pointer register to an item dynamically allocated
3138on the stack, e.g., by @code{alloca}.
3139
3140The default value for this macro is @code{STACK_POINTER_OFFSET} plus the
3141length of the outgoing arguments. The default is correct for most
3142machines. See @file{function.c} for details.
a2c4f8e0 3143@end defmac
feca2ed3 3144
c6d01079
AK
3145@defmac INITIAL_FRAME_ADDRESS_RTX
3146A C expression whose value is RTL representing the address of the initial
083cad55 3147stack frame. This address is passed to @code{RETURN_ADDR_RTX} and
c8f27794
JW
3148@code{DYNAMIC_CHAIN_ADDRESS}. If you don't define this macro, a reasonable
3149default value will be used. Define this macro in order to make frame pointer
083cad55 3150elimination work in the presence of @code{__builtin_frame_address (count)} and
c8f27794 3151@code{__builtin_return_address (count)} for @code{count} not equal to zero.
c6d01079
AK
3152@end defmac
3153
a2c4f8e0 3154@defmac DYNAMIC_CHAIN_ADDRESS (@var{frameaddr})
feca2ed3
JW
3155A C expression whose value is RTL representing the address in a stack
3156frame where the pointer to the caller's frame is stored. Assume that
3157@var{frameaddr} is an RTL expression for the address of the stack frame
3158itself.
3159
3160If you don't define this macro, the default is to return the value
3161of @var{frameaddr}---that is, the stack frame address is also the
3162address of the stack word that points to the previous frame.
a2c4f8e0 3163@end defmac
feca2ed3 3164
a2c4f8e0 3165@defmac SETUP_FRAME_ADDRESSES
feca2ed3
JW
3166If defined, a C expression that produces the machine-specific code to
3167setup the stack so that arbitrary frames can be accessed. For example,
981f6289 3168on the SPARC, we must flush all of the register windows to the stack
0bc02db4
MS
3169before we can access arbitrary stack frames. You will seldom need to
3170define this macro.
a2c4f8e0 3171@end defmac
0bc02db4 3172
9ddb66ef 3173@deftypefn {Target Hook} rtx TARGET_BUILTIN_SETJMP_FRAME_VALUE (void)
d6da68b9 3174This target hook should return an rtx that is used to store
0bc02db4
MS
3175the address of the current frame into the built in @code{setjmp} buffer.
3176The default value, @code{virtual_stack_vars_rtx}, is correct for most
d6da68b9 3177machines. One reason you may need to define this target hook is if
0bc02db4 3178@code{hard_frame_pointer_rtx} is the appropriate value on your machine.
d6da68b9 3179@end deftypefn
feca2ed3 3180
224869d9
EB
3181@defmac FRAME_ADDR_RTX (@var{frameaddr})
3182A C expression whose value is RTL representing the value of the frame
3183address for the current frame. @var{frameaddr} is the frame pointer
3184of the current frame. This is used for __builtin_frame_address.
3185You need only define this macro if the frame address is not the same
3186as the frame pointer. Most machines do not need to define it.
3187@end defmac
3188
a2c4f8e0 3189@defmac RETURN_ADDR_RTX (@var{count}, @var{frameaddr})
feca2ed3 3190A C expression whose value is RTL representing the value of the return
861bb6c1
JL
3191address for the frame @var{count} steps up from the current frame, after
3192the prologue. @var{frameaddr} is the frame pointer of the @var{count}
3193frame, or the frame pointer of the @var{count} @minus{} 1 frame if
feca2ed3
JW
3194@code{RETURN_ADDR_IN_PREVIOUS_FRAME} is defined.
3195
e9a25f70 3196The value of the expression must always be the correct address when
4830ba1f 3197@var{count} is zero, but may be @code{NULL_RTX} if there is no way to
e9a25f70 3198determine the return address of other frames.
a2c4f8e0 3199@end defmac
e9a25f70 3200
a2c4f8e0 3201@defmac RETURN_ADDR_IN_PREVIOUS_FRAME
feca2ed3
JW
3202Define this if the return address of a particular stack frame is accessed
3203from the frame pointer of the previous stack frame.
a2c4f8e0 3204@end defmac
861bb6c1 3205
a2c4f8e0 3206@defmac INCOMING_RETURN_ADDR_RTX
861bb6c1
JL
3207A C expression whose value is RTL representing the location of the
3208incoming return address at the beginning of any function, before the
3209prologue. This RTL is either a @code{REG}, indicating that the return
3210value is saved in @samp{REG}, or a @code{MEM} representing a location in
3211the stack.
3212
3213You only need to define this macro if you want to support call frame
3214debugging information like that provided by DWARF 2.
3215
2c849145 3216If this RTL is a @code{REG}, you should also define
aee96fe9 3217@code{DWARF_FRAME_RETURN_COLUMN} to @code{DWARF_FRAME_REGNUM (REGNO)}.
a2c4f8e0 3218@end defmac
2c849145 3219
ed80cd68 3220@defmac DWARF_ALT_FRAME_RETURN_COLUMN
73774972 3221A C expression whose value is an integer giving a DWARF 2 column
5cd0f915
RS
3222number that may be used as an alternative return column. The column
3223must not correspond to any gcc hard register (that is, it must not
3224be in the range of @code{DWARF_FRAME_REGNUM}).
3225
3226This macro can be useful if @code{DWARF_FRAME_RETURN_COLUMN} is set to a
3227general register, but an alternative column needs to be used for signal
3228frames. Some targets have also used different frame return columns
3229over time.
ed80cd68
RH
3230@end defmac
3231
282efe1c
RH
3232@defmac DWARF_ZERO_REG
3233A C expression whose value is an integer giving a DWARF 2 register
3234number that is considered to always have the value zero. This should
3235only be defined if the target has an architected zero register, and
3236someone decided it was a good idea to use that register number to
3237terminate the stack backtrace. New ports should avoid this.
3238@end defmac
3239
e54c7471
EB
3240@deftypefn {Target Hook} void TARGET_DWARF_HANDLE_FRAME_UNSPEC (const char *@var{label}, rtx @var{pattern}, int @var{index})
3241This target hook allows the backend to emit frame-related insns that
3242contain UNSPECs or UNSPEC_VOLATILEs. The DWARF 2 call frame debugging
3243info engine will invoke it on insns of the form
3244@smallexample
923158be 3245(set (reg) (unspec [@dots{}] UNSPEC_INDEX))
e54c7471
EB
3246@end smallexample
3247and
3248@smallexample
923158be 3249(set (reg) (unspec_volatile [@dots{}] UNSPECV_INDEX)).
e54c7471
EB
3250@end smallexample
3251to let the backend emit the call frame instructions. @var{label} is
3252the CFI label attached to the insn, @var{pattern} is the pattern of
3253the insn and @var{index} is @code{UNSPEC_INDEX} or @code{UNSPECV_INDEX}.
3254@end deftypefn
3255
a2c4f8e0 3256@defmac INCOMING_FRAME_SP_OFFSET
861bb6c1
JL
3257A C expression whose value is an integer giving the offset, in bytes,
3258from the value of the stack pointer register to the top of the stack
3259frame at the beginning of any function, before the prologue. The top of
3260the frame is defined to be the value of the stack pointer in the
3261previous frame, just before the call instruction.
3262
71038426
RH
3263You only need to define this macro if you want to support call frame
3264debugging information like that provided by DWARF 2.
a2c4f8e0 3265@end defmac
71038426 3266
a2c4f8e0 3267@defmac ARG_POINTER_CFA_OFFSET (@var{fundecl})
71038426
RH
3268A C expression whose value is an integer giving the offset, in bytes,
3269from the argument pointer to the canonical frame address (cfa). The
02f52e19 3270final value should coincide with that calculated by
71038426
RH
3271@code{INCOMING_FRAME_SP_OFFSET}. Which is unfortunately not usable
3272during virtual register instantiation.
3273
d17c29c3
PB
3274The default value for this macro is
3275@code{FIRST_PARM_OFFSET (fundecl) + crtl->args.pretend_args_size},
2c849145 3276which is correct for most machines; in general, the arguments are found
208e52d9
JM
3277immediately before the stack frame. Note that this is not the case on
3278some targets that save registers into the caller's frame, such as SPARC
3279and rs6000, and so such targets need to define this macro.
2c849145 3280
208e52d9 3281You only need to define this macro if the default is incorrect, and you
2c849145
JM
3282want to support call frame debugging information like that provided by
3283DWARF 2.
a2c4f8e0 3284@end defmac
512b62fb 3285
f6672e8e
RH
3286@defmac FRAME_POINTER_CFA_OFFSET (@var{fundecl})
3287If defined, a C expression whose value is an integer giving the offset
3288in bytes from the frame pointer to the canonical frame address (cfa).
6fc0bb99 3289The final value should coincide with that calculated by
f6672e8e
RH
3290@code{INCOMING_FRAME_SP_OFFSET}.
3291
3292Normally the CFA is calculated as an offset from the argument pointer,
083cad55 3293via @code{ARG_POINTER_CFA_OFFSET}, but if the argument pointer is
f6672e8e 3294variable due to the ABI, this may not be possible. If this macro is
6416ae7f 3295defined, it implies that the virtual register instantiation should be
f6672e8e
RH
3296based on the frame pointer instead of the argument pointer. Only one
3297of @code{FRAME_POINTER_CFA_OFFSET} and @code{ARG_POINTER_CFA_OFFSET}
3298should be defined.
3299@end defmac
3300
35d177a2
AO
3301@defmac CFA_FRAME_BASE_OFFSET (@var{fundecl})
3302If defined, a C expression whose value is an integer giving the offset
3303in bytes from the canonical frame address (cfa) to the frame base used
3304in DWARF 2 debug information. The default is zero. A different value
3305may reduce the size of debug information on some ports.
3306@end defmac
3307
7c16328b
RH
3308@node Exception Handling
3309@subsection Exception Handling Support
3310@cindex exception handling
3311
a2c4f8e0 3312@defmac EH_RETURN_DATA_REGNO (@var{N})
52a11cbf
RH
3313A C expression whose value is the @var{N}th register number used for
3314data by exception handlers, or @code{INVALID_REGNUM} if fewer than
3315@var{N} registers are usable.
3316
3317The exception handling library routines communicate with the exception
3318handlers via a set of agreed upon registers. Ideally these registers
3319should be call-clobbered; it is possible to use call-saved registers,
3320but may negatively impact code size. The target must support at least
33212 data registers, but should define 4 if there are enough free registers.
3322
3323You must define this macro if you want to support call frame exception
3324handling like that provided by DWARF 2.
a2c4f8e0 3325@end defmac
52a11cbf 3326
a2c4f8e0 3327@defmac EH_RETURN_STACKADJ_RTX
52a11cbf
RH
3328A C expression whose value is RTL representing a location in which
3329to store a stack adjustment to be applied before function return.
3330This is used to unwind the stack to an exception handler's call frame.
3331It will be assigned zero on code paths that return normally.
3332
02f52e19 3333Typically this is a call-clobbered hard register that is otherwise
52a11cbf
RH
3334untouched by the epilogue, but could also be a stack slot.
3335
34dc173c 3336Do not define this macro if the stack pointer is saved and restored
73774972
EC
3337by the regular prolog and epilog code in the call frame itself; in
3338this case, the exception handling library routines will update the
3339stack location to be restored in place. Otherwise, you must define
3340this macro if you want to support call frame exception handling like
34dc173c 3341that provided by DWARF 2.
a2c4f8e0 3342@end defmac
52a11cbf 3343
a2c4f8e0 3344@defmac EH_RETURN_HANDLER_RTX
52a11cbf 3345A C expression whose value is RTL representing a location in which
02f52e19 3346to store the address of an exception handler to which we should
52a11cbf
RH
3347return. It will not be assigned on code paths that return normally.
3348
3349Typically this is the location in the call frame at which the normal
02f52e19
AJ
3350return address is stored. For targets that return by popping an
3351address off the stack, this might be a memory address just below
52a11cbf 3352the @emph{target} call frame rather than inside the current call
73774972
EC
3353frame. If defined, @code{EH_RETURN_STACKADJ_RTX} will have already
3354been assigned, so it may be used to calculate the location of the
34dc173c 3355target call frame.
52a11cbf
RH
3356
3357Some targets have more complex requirements than storing to an
3358address calculable during initial code generation. In that case
3359the @code{eh_return} instruction pattern should be used instead.
3360
3361If you want to support call frame exception handling, you must
3362define either this macro or the @code{eh_return} instruction pattern.
a2c4f8e0 3363@end defmac
52a11cbf 3364
1e60c057
R
3365@defmac RETURN_ADDR_OFFSET
3366If defined, an integer-valued C expression for which rtl will be generated
3367to add it to the exception handler address before it is searched in the
3368exception handling tables, and to subtract it again from the address before
3369using it to return to the exception handler.
3370@end defmac
3371
a2c4f8e0 3372@defmac ASM_PREFERRED_EH_DATA_FORMAT (@var{code}, @var{global})
2a1ee410
RH
3373This macro chooses the encoding of pointers embedded in the exception
3374handling sections. If at all possible, this should be defined such
3375that the exception handling section will not require dynamic relocations,
3376and so may be read-only.
3377
aee96fe9
JM
3378@var{code} is 0 for data, 1 for code labels, 2 for function pointers.
3379@var{global} is true if the symbol may be affected by dynamic relocations.
2a1ee410
RH
3380The macro should return a combination of the @code{DW_EH_PE_*} defines
3381as found in @file{dwarf2.h}.
3382
ebb48a4d 3383If this macro is not defined, pointers will not be encoded but
2a1ee410 3384represented directly.
a2c4f8e0 3385@end defmac
2a1ee410 3386
a2c4f8e0 3387@defmac ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX (@var{file}, @var{encoding}, @var{size}, @var{addr}, @var{done})
2a1ee410
RH
3388This macro allows the target to emit whatever special magic is required
3389to represent the encoding chosen by @code{ASM_PREFERRED_EH_DATA_FORMAT}.
3390Generic code takes care of pc-relative and indirect encodings; this must
3391be defined if the target uses text-relative or data-relative encodings.
3392
aee96fe9
JM
3393This is a C statement that branches to @var{done} if the format was
3394handled. @var{encoding} is the format chosen, @var{size} is the number
3395of bytes that the format occupies, @var{addr} is the @code{SYMBOL_REF}
2a1ee410 3396to be emitted.
a2c4f8e0 3397@end defmac
2a1ee410 3398
8662eb14
AM
3399@defmac MD_UNWIND_SUPPORT
3400A string specifying a file to be #include'd in unwind-dw2.c. The file
3401so included typically defines @code{MD_FALLBACK_FRAME_STATE_FOR}.
3402@end defmac
3403
3404@defmac MD_FALLBACK_FRAME_STATE_FOR (@var{context}, @var{fs})
44082375 3405This macro allows the target to add CPU and operating system specific
7c16328b
RH
3406code to the call-frame unwinder for use when there is no unwind data
3407available. The most common reason to implement this macro is to unwind
3408through signal frames.
3409
614e5a7d
BE
3410This macro is called from @code{uw_frame_state_for} in
3411@file{unwind-dw2.c}, @file{unwind-dw2-xtensa.c} and
3412@file{unwind-ia64.c}. @var{context} is an @code{_Unwind_Context};
7c16328b
RH
3413@var{fs} is an @code{_Unwind_FrameState}. Examine @code{context->ra}
3414for the address of the code being executed and @code{context->cfa} for
614e5a7d
BE
3415the stack pointer value. If the frame can be decoded, the register
3416save addresses should be updated in @var{fs} and the macro should
3417evaluate to @code{_URC_NO_REASON}. If the frame cannot be decoded,
3418the macro should evaluate to @code{_URC_END_OF_STACK}.
8207b189
FS
3419
3420For proper signal handling in Java this macro is accompanied by
3421@code{MAKE_THROW_FRAME}, defined in @file{libjava/include/*-signal.h} headers.
a2c4f8e0 3422@end defmac
861bb6c1 3423
3950dcdf
JJ
3424@defmac MD_HANDLE_UNWABI (@var{context}, @var{fs})
3425This macro allows the target to add operating system specific code to the
3426call-frame unwinder to handle the IA-64 @code{.unwabi} unwinding directive,
3427usually used for signal or interrupt frames.
3428
3429This macro is called from @code{uw_update_context} in @file{unwind-ia64.c}.
3430@var{context} is an @code{_Unwind_Context};
3431@var{fs} is an @code{_Unwind_FrameState}. Examine @code{fs->unwabi}
3432for the abi and context in the @code{.unwabi} directive. If the
3433@code{.unwabi} directive can be handled, the register save addresses should
3434be updated in @var{fs}.
3435@end defmac
3436
4746cf84
MA
3437@defmac TARGET_USES_WEAK_UNWIND_INFO
3438A C expression that evaluates to true if the target requires unwind
3439info to be given comdat linkage. Define it to be @code{1} if comdat
3440linkage is necessary. The default is @code{0}.
3441@end defmac
3442
861bb6c1
JL
3443@node Stack Checking
3444@subsection Specifying How Stack Checking is Done
3445
b38f3813
EB
3446GCC will check that stack references are within the boundaries of the
3447stack, if the option @option{-fstack-check} is specified, in one of
3448three ways:
861bb6c1
JL
3449
3450@enumerate
3451@item
a3a15b4d 3452If the value of the @code{STACK_CHECK_BUILTIN} macro is nonzero, GCC
b38f3813
EB
3453will assume that you have arranged for full stack checking to be done
3454at appropriate places in the configuration files. GCC will not do
3455other special processing.
861bb6c1
JL
3456
3457@item
b38f3813
EB
3458If @code{STACK_CHECK_BUILTIN} is zero and the value of the
3459@code{STACK_CHECK_STATIC_BUILTIN} macro is nonzero, GCC will assume
3460that you have arranged for static stack checking (checking of the
3461static stack frame of functions) to be done at appropriate places
3462in the configuration files. GCC will only emit code to do dynamic
3463stack checking (checking on dynamic stack allocations) using the third
3464approach below.
861bb6c1
JL
3465
3466@item
a3a15b4d 3467If neither of the above are true, GCC will generate code to periodically
861bb6c1
JL
3468``probe'' the stack pointer using the values of the macros defined below.
3469@end enumerate
3470
b38f3813
EB
3471If neither STACK_CHECK_BUILTIN nor STACK_CHECK_STATIC_BUILTIN is defined,
3472GCC will change its allocation strategy for large objects if the option
3473@option{-fstack-check} is specified: they will always be allocated
3474dynamically if their size exceeds @code{STACK_CHECK_MAX_VAR_SIZE} bytes.
861bb6c1 3475
a2c4f8e0 3476@defmac STACK_CHECK_BUILTIN
861bb6c1 3477A nonzero value if stack checking is done by the configuration files in a
02f52e19 3478machine-dependent manner. You should define this macro if stack checking
65a324b4 3479is required by the ABI of your machine or if you would like to do stack
b38f3813
EB
3480checking in some more efficient way than the generic approach. The default
3481value of this macro is zero.
3482@end defmac
3483
3484@defmac STACK_CHECK_STATIC_BUILTIN
3485A nonzero value if static stack checking is done by the configuration files
3486in a machine-dependent manner. You should define this macro if you would
3487like to do static stack checking in some more efficient way than the generic
3488approach. The default value of this macro is zero.
a2c4f8e0 3489@end defmac
861bb6c1 3490
d809253a
EB
3491@defmac STACK_CHECK_PROBE_INTERVAL_EXP
3492An integer specifying the interval at which GCC must generate stack probe
3493instructions, defined as 2 raised to this integer. You will normally
3494define this macro so that the interval be no larger than the size of
3495the ``guard pages'' at the end of a stack area. The default value
3496of 12 (4096-byte interval) is suitable for most systems.
a2c4f8e0 3497@end defmac
861bb6c1 3498
d809253a
EB
3499@defmac STACK_CHECK_MOVING_SP
3500An integer which is nonzero if GCC should move the stack pointer page by page
3501when doing probes. This can be necessary on systems where the stack pointer
3502contains the bottom address of the memory area accessible to the executing
3503thread at any point in time. In this situation an alternate signal stack
3504is required in order to be able to recover from a stack overflow. The
3505default value of this macro is zero.
3506@end defmac
3507
a2c4f8e0 3508@defmac STACK_CHECK_PROTECT
507d0069
EB
3509The number of bytes of stack needed to recover from a stack overflow, for
3510languages where such a recovery is supported. The default value of 75 words
3511with the @code{setjmp}/@code{longjmp}-based exception handling mechanism and
35128192 bytes with other exception handling mechanisms should be adequate for
3513most machines.
a2c4f8e0 3514@end defmac
861bb6c1 3515
b38f3813
EB
3516The following macros are relevant only if neither STACK_CHECK_BUILTIN
3517nor STACK_CHECK_STATIC_BUILTIN is defined; you can omit them altogether
3518in the opposite case.
3519
a2c4f8e0 3520@defmac STACK_CHECK_MAX_FRAME_SIZE
a3a15b4d 3521The maximum size of a stack frame, in bytes. GCC will generate probe
861bb6c1
JL
3522instructions in non-leaf functions to ensure at least this many bytes of
3523stack are available. If a stack frame is larger than this size, stack
a3a15b4d
JL
3524checking will not be reliable and GCC will issue a warning. The
3525default is chosen so that GCC only generates one instruction on most
861bb6c1 3526systems. You should normally not change the default value of this macro.
a2c4f8e0 3527@end defmac
861bb6c1 3528
a2c4f8e0 3529@defmac STACK_CHECK_FIXED_FRAME_SIZE
a3a15b4d 3530GCC uses this value to generate the above warning message. It
861bb6c1
JL
3531represents the amount of fixed frame used by a function, not including
3532space for any callee-saved registers, temporaries and user variables.
3533You need only specify an upper bound for this amount and will normally
3534use the default of four words.
a2c4f8e0 3535@end defmac
861bb6c1 3536
a2c4f8e0 3537@defmac STACK_CHECK_MAX_VAR_SIZE
a3a15b4d 3538The maximum size, in bytes, of an object that GCC will place in the
861bb6c1 3539fixed area of the stack frame when the user specifies
630d3d5a 3540@option{-fstack-check}.
a3a15b4d 3541GCC computed the default from the values of the above macros and you will
861bb6c1 3542normally not need to override that default.
a2c4f8e0 3543@end defmac
feca2ed3
JW
3544
3545@need 2000
3546@node Frame Registers
3547@subsection Registers That Address the Stack Frame
3548
3549@c prevent bad page break with this line
3550This discusses registers that address the stack frame.
3551
a2c4f8e0 3552@defmac STACK_POINTER_REGNUM
feca2ed3
JW
3553The register number of the stack pointer register, which must also be a
3554fixed register according to @code{FIXED_REGISTERS}. On most machines,
3555the hardware determines which register this is.
a2c4f8e0 3556@end defmac
feca2ed3 3557
a2c4f8e0 3558@defmac FRAME_POINTER_REGNUM
feca2ed3
JW
3559The register number of the frame pointer register, which is used to
3560access automatic variables in the stack frame. On some machines, the
3561hardware determines which register this is. On other machines, you can
3562choose any register you wish for this purpose.
a2c4f8e0 3563@end defmac
feca2ed3 3564
a2c4f8e0 3565@defmac HARD_FRAME_POINTER_REGNUM
feca2ed3
JW
3566On some machines the offset between the frame pointer and starting
3567offset of the automatic variables is not known until after register
3568allocation has been done (for example, because the saved registers are
3569between these two locations). On those machines, define
3570@code{FRAME_POINTER_REGNUM} the number of a special, fixed register to
3571be used internally until the offset is known, and define
556e0f21 3572@code{HARD_FRAME_POINTER_REGNUM} to be the actual hard register number
feca2ed3
JW
3573used for the frame pointer.
3574
3575You should define this macro only in the very rare circumstances when it
3576is not possible to calculate the offset between the frame pointer and
3577the automatic variables until after register allocation has been
3578completed. When this macro is defined, you must also indicate in your
3579definition of @code{ELIMINABLE_REGS} how to eliminate
3580@code{FRAME_POINTER_REGNUM} into either @code{HARD_FRAME_POINTER_REGNUM}
3581or @code{STACK_POINTER_REGNUM}.
3582
3583Do not define this macro if it would be the same as
3584@code{FRAME_POINTER_REGNUM}.
a2c4f8e0 3585@end defmac
feca2ed3 3586
a2c4f8e0 3587@defmac ARG_POINTER_REGNUM
feca2ed3
JW
3588The register number of the arg pointer register, which is used to access
3589the function's argument list. On some machines, this is the same as the
3590frame pointer register. On some machines, the hardware determines which
3591register this is. On other machines, you can choose any register you
3592wish for this purpose. If this is not the same register as the frame
3593pointer register, then you must mark it as a fixed register according to
3594@code{FIXED_REGISTERS}, or arrange to be able to eliminate it
3595(@pxref{Elimination}).
a2c4f8e0 3596@end defmac
feca2ed3 3597
e3339d0f
JM
3598@defmac HARD_FRAME_POINTER_IS_FRAME_POINTER
3599Define this to a preprocessor constant that is nonzero if
3600@code{hard_frame_pointer_rtx} and @code{frame_pointer_rtx} should be
3601the same. The default definition is @samp{(HARD_FRAME_POINTER_REGNUM
3602== FRAME_POINTER_REGNUM)}; you only need to define this macro if that
3603definition is not suitable for use in preprocessor conditionals.
3604@end defmac
3605
3606@defmac HARD_FRAME_POINTER_IS_ARG_POINTER
3607Define this to a preprocessor constant that is nonzero if
3608@code{hard_frame_pointer_rtx} and @code{arg_pointer_rtx} should be the
3609same. The default definition is @samp{(HARD_FRAME_POINTER_REGNUM ==
3610ARG_POINTER_REGNUM)}; you only need to define this macro if that
3611definition is not suitable for use in preprocessor conditionals.
3612@end defmac
3613
a2c4f8e0 3614@defmac RETURN_ADDRESS_POINTER_REGNUM
feca2ed3
JW
3615The register number of the return address pointer register, which is used to
3616access the current function's return address from the stack. On some
3617machines, the return address is not at a fixed offset from the frame
3618pointer or stack pointer or argument pointer. This register can be defined
3619to point to the return address on the stack, and then be converted by
3620@code{ELIMINABLE_REGS} into either the frame pointer or stack pointer.
3621
3622Do not define this macro unless there is no other way to get the return
3623address from the stack.
a2c4f8e0 3624@end defmac
feca2ed3 3625
a2c4f8e0
ZW
3626@defmac STATIC_CHAIN_REGNUM
3627@defmacx STATIC_CHAIN_INCOMING_REGNUM
feca2ed3
JW
3628Register numbers used for passing a function's static chain pointer. If
3629register windows are used, the register number as seen by the called
3630function is @code{STATIC_CHAIN_INCOMING_REGNUM}, while the register
3631number as seen by the calling function is @code{STATIC_CHAIN_REGNUM}. If
3632these registers are the same, @code{STATIC_CHAIN_INCOMING_REGNUM} need
bd819a4a 3633not be defined.
feca2ed3
JW
3634
3635The static chain register need not be a fixed register.
3636
3637If the static chain is passed in memory, these macros should not be
2b4fa409 3638defined; instead, the @code{TARGET_STATIC_CHAIN} hook should be used.
a2c4f8e0 3639@end defmac
919543ab 3640
531ca746
RH
3641@deftypefn {Target Hook} rtx TARGET_STATIC_CHAIN (const_tree @var{fndecl}, bool @var{incoming_p})
3642This hook replaces the use of @code{STATIC_CHAIN_REGNUM} et al for
3643targets that may use different static chain locations for different
3644nested functions. This may be required if the target has function
3645attributes that affect the calling conventions of the function and
3646those calling conventions use different static chain locations.
3647
3648The default version of this hook uses @code{STATIC_CHAIN_REGNUM} et al.
2b4fa409
RH
3649
3650If the static chain is passed in memory, this hook should be used to
3651provide rtx giving @code{mem} expressions that denote where they are stored.
3652Often the @code{mem} expression as seen by the caller will be at an offset
3653from the stack pointer and the @code{mem} expression as seen by the callee
3654will be at an offset from the frame pointer.
3655@findex stack_pointer_rtx
3656@findex frame_pointer_rtx
3657@findex arg_pointer_rtx
3658The variables @code{stack_pointer_rtx}, @code{frame_pointer_rtx}, and
3659@code{arg_pointer_rtx} will have been initialized and should be used
3660to refer to those items.
531ca746
RH
3661@end deftypefn
3662
a2c4f8e0 3663@defmac DWARF_FRAME_REGISTERS
919543ab
AH
3664This macro specifies the maximum number of hard registers that can be
3665saved in a call frame. This is used to size data structures used in
3666DWARF2 exception handling.
3667
3668Prior to GCC 3.0, this macro was needed in order to establish a stable
3669exception handling ABI in the face of adding new hard registers for ISA
3670extensions. In GCC 3.0 and later, the EH ABI is insulated from changes
3671in the number of hard registers. Nevertheless, this macro can still be
3672used to reduce the runtime memory requirements of the exception handling
3673routines, which can be substantial if the ISA contains a lot of
3674registers that are not call-saved.
3675
3676If this macro is not defined, it defaults to
3677@code{FIRST_PSEUDO_REGISTER}.
a2c4f8e0 3678@end defmac
919543ab 3679
a2c4f8e0 3680@defmac PRE_GCC3_DWARF_FRAME_REGISTERS
919543ab
AH
3681
3682This macro is similar to @code{DWARF_FRAME_REGISTERS}, but is provided
3683for backward compatibility in pre GCC 3.0 compiled code.
3684
3685If this macro is not defined, it defaults to
3686@code{DWARF_FRAME_REGISTERS}.
a2c4f8e0 3687@end defmac
919543ab 3688
a2c4f8e0 3689@defmac DWARF_REG_TO_UNWIND_COLUMN (@var{regno})
41f3a930
AH
3690
3691Define this macro if the target's representation for dwarf registers
3692is different than the internal representation for unwind column.
61aeb06f 3693Given a dwarf register, this macro should return the internal unwind
41f3a930
AH
3694column number to use instead.
3695
73774972 3696See the PowerPC's SPE target for an example.
a2c4f8e0 3697@end defmac
feca2ed3 3698
34c80057
AM
3699@defmac DWARF_FRAME_REGNUM (@var{regno})
3700
3701Define this macro if the target's representation for dwarf registers
3702used in .eh_frame or .debug_frame is different from that used in other
2dd76960 3703debug info sections. Given a GCC hard register number, this macro
34c80057
AM
3704should return the .eh_frame register number. The default is
3705@code{DBX_REGISTER_NUMBER (@var{regno})}.
3706
3707@end defmac
3708
3709@defmac DWARF2_FRAME_REG_OUT (@var{regno}, @var{for_eh})
3710
3711Define this macro to map register numbers held in the call frame info
2dd76960 3712that GCC has collected using @code{DWARF_FRAME_REGNUM} to those that
34c80057 3713should be output in .debug_frame (@code{@var{for_eh}} is zero) and
f676971a 3714.eh_frame (@code{@var{for_eh}} is nonzero). The default is to
34c80057
AM
3715return @code{@var{regno}}.
3716
3717@end defmac
3718
feca2ed3
JW
3719@node Elimination
3720@subsection Eliminating Frame Pointer and Arg Pointer
3721
3722@c prevent bad page break with this line
3723This is about eliminating the frame pointer and arg pointer.
3724
b52b1749
AS
3725@deftypefn {Target Hook} bool TARGET_FRAME_POINTER_REQUIRED (void)
3726This target hook should return @code{true} if a function must have and use
3727a frame pointer. This target hook is called in the reload pass. If its return
3728value is @code{true} the function will have a frame pointer.
feca2ed3 3729
b52b1749 3730This target hook can in principle examine the current function and decide
aea88c05
AS
3731according to the facts, but on most machines the constant @code{false} or the
3732constant @code{true} suffices. Use @code{false} when the machine allows code
3733to be generated with no frame pointer, and doing so saves some time or space.
3734Use @code{true} when there is no possible advantage to avoiding a frame
3735pointer.
feca2ed3
JW
3736
3737In certain cases, the compiler does not know how to produce valid code
3738without a frame pointer. The compiler recognizes those cases and
3739automatically gives the function a frame pointer regardless of what
b52b1749 3740@code{TARGET_FRAME_POINTER_REQUIRED} returns. You don't need to worry about
bd819a4a 3741them.
feca2ed3
JW
3742
3743In a function that does not require a frame pointer, the frame pointer
3744register can be allocated for ordinary usage, unless you mark it as a
3745fixed register. See @code{FIXED_REGISTERS} for more information.
aea88c05 3746
b52b1749
AS
3747Default return value is @code{false}.
3748@end deftypefn
feca2ed3 3749
feca2ed3 3750@findex get_frame_size
a2c4f8e0 3751@defmac INITIAL_FRAME_POINTER_OFFSET (@var{depth-var})
feca2ed3
JW
3752A C statement to store in the variable @var{depth-var} the difference
3753between the frame pointer and the stack pointer values immediately after
3754the function prologue. The value would be computed from information
3755such as the result of @code{get_frame_size ()} and the tables of
3756registers @code{regs_ever_live} and @code{call_used_regs}.
3757
3758If @code{ELIMINABLE_REGS} is defined, this macro will be not be used and
3759need not be defined. Otherwise, it must be defined even if
65a324b4 3760@code{TARGET_FRAME_POINTER_REQUIRED} always returns true; in that
feca2ed3 3761case, you may set @var{depth-var} to anything.
a2c4f8e0 3762@end defmac
feca2ed3 3763
a2c4f8e0 3764@defmac ELIMINABLE_REGS
feca2ed3
JW
3765If defined, this macro specifies a table of register pairs used to
3766eliminate unneeded registers that point into the stack frame. If it is not
3767defined, the only elimination attempted by the compiler is to replace
3768references to the frame pointer with references to the stack pointer.
3769
3770The definition of this macro is a list of structure initializations, each
3771of which specifies an original and replacement register.
3772
3773On some machines, the position of the argument pointer is not known until
3774the compilation is completed. In such a case, a separate hard register
3775must be used for the argument pointer. This register can be eliminated by
3776replacing it with either the frame pointer or the argument pointer,
3777depending on whether or not the frame pointer has been eliminated.
3778
3779In this case, you might specify:
3ab51846 3780@smallexample
feca2ed3
JW
3781#define ELIMINABLE_REGS \
3782@{@{ARG_POINTER_REGNUM, STACK_POINTER_REGNUM@}, \
3783 @{ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM@}, \
3784 @{FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM@}@}
3ab51846 3785@end smallexample
feca2ed3
JW
3786
3787Note that the elimination of the argument pointer with the stack pointer is
3788specified first since that is the preferred elimination.
a2c4f8e0 3789@end defmac
feca2ed3 3790
9ddb66ef 3791@deftypefn {Target Hook} bool TARGET_CAN_ELIMINATE (const int @var{from_reg}, const int @var{to_reg})
7b5cbb57 3792This target hook should returns @code{true} if the compiler is allowed to
9ddb66ef
JR
3793try to replace register number @var{from_reg} with register number
3794@var{to_reg}. This target hook need only be defined if @code{ELIMINABLE_REGS}
3be639f7 3795is defined, and will usually be @code{true}, since most of the cases
feca2ed3
JW
3796preventing register elimination are things that the compiler already
3797knows about.
3be639f7 3798
7b5cbb57
AS
3799Default return value is @code{true}.
3800@end deftypefn
feca2ed3 3801
a2c4f8e0 3802@defmac INITIAL_ELIMINATION_OFFSET (@var{from-reg}, @var{to-reg}, @var{offset-var})
feca2ed3
JW
3803This macro is similar to @code{INITIAL_FRAME_POINTER_OFFSET}. It
3804specifies the initial difference between the specified pair of
3805registers. This macro must be defined if @code{ELIMINABLE_REGS} is
3806defined.
a2c4f8e0 3807@end defmac
feca2ed3
JW
3808
3809@node Stack Arguments
3810@subsection Passing Function Arguments on the Stack
3811@cindex arguments on stack
3812@cindex stack arguments
3813
3814The macros in this section control how arguments are passed
3815on the stack. See the following section for other macros that
3816control passing certain arguments in registers.
3817
9ddb66ef 3818@deftypefn {Target Hook} bool TARGET_PROMOTE_PROTOTYPES (const_tree @var{fntype})
61f71b34
DD
3819This target hook returns @code{true} if an argument declared in a
3820prototype as an integral type smaller than @code{int} should actually be
3821passed as an @code{int}. In addition to avoiding errors in certain
3822cases of mismatch, it also makes for better code on certain machines.
3823The default is to not promote prototypes.
3824@end deftypefn
feca2ed3 3825
a2c4f8e0 3826@defmac PUSH_ARGS
767094dd 3827A C expression. If nonzero, push insns will be used to pass
f73ad30e
JH
3828outgoing arguments.
3829If the target machine does not have a push instruction, set it to zero.
3830That directs GCC to use an alternate strategy: to
3831allocate the entire argument block and then store the arguments into
aee96fe9 3832it. When @code{PUSH_ARGS} is nonzero, @code{PUSH_ROUNDING} must be defined too.
a2c4f8e0 3833@end defmac
f73ad30e 3834
9d6bef95
JM
3835@defmac PUSH_ARGS_REVERSED
3836A C expression. If nonzero, function arguments will be evaluated from
3837last to first, rather than from first to last. If this macro is not
3838defined, it defaults to @code{PUSH_ARGS} on targets where the stack
3839and args grow in opposite directions, and 0 otherwise.
3840@end defmac
3841
a2c4f8e0 3842@defmac PUSH_ROUNDING (@var{npushed})
feca2ed3
JW
3843A C expression that is the number of bytes actually pushed onto the
3844stack when an instruction attempts to push @var{npushed} bytes.
feca2ed3
JW
3845
3846On some machines, the definition
3847
3ab51846 3848@smallexample
feca2ed3 3849#define PUSH_ROUNDING(BYTES) (BYTES)
3ab51846 3850@end smallexample
feca2ed3
JW
3851
3852@noindent
3853will suffice. But on other machines, instructions that appear
3854to push one byte actually push two bytes in an attempt to maintain
3855alignment. Then the definition should be
3856
3ab51846 3857@smallexample
feca2ed3 3858#define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)
3ab51846 3859@end smallexample
4a6336ad
JR
3860
3861It the value of this macro has a type, it should be an unsigned type.
a2c4f8e0 3862@end defmac
feca2ed3 3863
feca2ed3 3864@findex current_function_outgoing_args_size
a2c4f8e0 3865@defmac ACCUMULATE_OUTGOING_ARGS
767094dd 3866A C expression. If nonzero, the maximum amount of space required for outgoing arguments
feca2ed3
JW
3867will be computed and placed into the variable
3868@code{current_function_outgoing_args_size}. No space will be pushed
3869onto the stack for each call; instead, the function prologue should
3870increase the stack frame size by this amount.
3871
f73ad30e 3872Setting both @code{PUSH_ARGS} and @code{ACCUMULATE_OUTGOING_ARGS}
feca2ed3 3873is not proper.
a2c4f8e0 3874@end defmac
feca2ed3 3875
a2c4f8e0 3876@defmac REG_PARM_STACK_SPACE (@var{fndecl})
feca2ed3
JW
3877Define this macro if functions should assume that stack space has been
3878allocated for arguments even when their values are passed in
3879registers.
3880
3881The value of this macro is the size, in bytes, of the area reserved for
ab87f8c8 3882arguments passed in registers for the function represented by @var{fndecl},
a3a15b4d 3883which can be zero if GCC is calling a library function.
5d059ed9
KT
3884The argument @var{fndecl} can be the FUNCTION_DECL, or the type itself
3885of the function.
feca2ed3
JW
3886
3887This space can be allocated by the caller, or be a part of the
3888machine-dependent stack frame: @code{OUTGOING_REG_PARM_STACK_SPACE} says
3889which.
a2c4f8e0 3890@end defmac
feca2ed3
JW
3891@c above is overfull. not sure what to do. --mew 5feb93 did
3892@c something, not sure if it looks good. --mew 10feb93
3893
81464b2c
KT
3894@defmac OUTGOING_REG_PARM_STACK_SPACE (@var{fntype})
3895Define this to a nonzero value if it is the responsibility of the
3896caller to allocate the area reserved for arguments passed in registers
3897when calling a function of @var{fntype}. @var{fntype} may be NULL
3898if the function called is a library function.
feca2ed3
JW
3899
3900If @code{ACCUMULATE_OUTGOING_ARGS} is defined, this macro controls
3901whether the space for these arguments counts in the value of
3902@code{current_function_outgoing_args_size}.
a2c4f8e0 3903@end defmac
feca2ed3 3904
a2c4f8e0 3905@defmac STACK_PARMS_IN_REG_PARM_AREA
feca2ed3
JW
3906Define this macro if @code{REG_PARM_STACK_SPACE} is defined, but the
3907stack parameters don't skip the area specified by it.
3908@c i changed this, makes more sens and it should have taken care of the
3909@c overfull.. not as specific, tho. --mew 5feb93
3910
3911Normally, when a parameter is not passed in registers, it is placed on the
3912stack beyond the @code{REG_PARM_STACK_SPACE} area. Defining this macro
3913suppresses this behavior and causes the parameter to be passed on the
3914stack in its natural location.
a2c4f8e0 3915@end defmac
feca2ed3 3916
893d13d5 3917@deftypefn {Target Hook} int TARGET_RETURN_POPS_ARGS (tree @var{fundecl}, tree @var{funtype}, int @var{size})
079e7538
NF
3918This target hook returns the number of bytes of its own arguments that
3919a function pops on returning, or 0 if the function pops no arguments
3920and the caller must therefore pop them all after the function returns.
feca2ed3
JW
3921
3922@var{fundecl} is a C variable whose value is a tree node that describes
3923the function in question. Normally it is a node of type
3924@code{FUNCTION_DECL} that describes the declaration of the function.
91d231cb 3925From this you can obtain the @code{DECL_ATTRIBUTES} of the function.
feca2ed3
JW
3926
3927@var{funtype} is a C variable whose value is a tree node that
3928describes the function in question. Normally it is a node of type
3929@code{FUNCTION_TYPE} that describes the data type of the function.
3930From this it is possible to obtain the data types of the value and
3931arguments (if known).
3932
861bb6c1 3933When a call to a library function is being considered, @var{fundecl}
feca2ed3
JW
3934will contain an identifier node for the library function. Thus, if
3935you need to distinguish among various library functions, you can do so
3936by their names. Note that ``library function'' in this context means
3937a function used to perform arithmetic, whose name is known specially
3938in the compiler and was not mentioned in the C code being compiled.
3939
893d13d5 3940@var{size} is the number of bytes of arguments passed on the
feca2ed3
JW
3941stack. If a variable number of bytes is passed, it is zero, and
3942argument popping will always be the responsibility of the calling function.
3943
8aeea6e6 3944On the VAX, all functions always pop their arguments, so the definition
893d13d5 3945of this macro is @var{size}. On the 68000, using the standard
feca2ed3
JW
3946calling convention, no functions pop their arguments, so the value of
3947the macro is always 0 in this case. But an alternative calling
3948convention is available in which functions that take a fixed number of
3949arguments pop them but other functions (such as @code{printf}) pop
3950nothing (the caller pops all). When this convention is in use,
3951@var{funtype} is examined to determine whether a function takes a fixed
3952number of arguments.
079e7538 3953@end deftypefn
fa5322fa 3954
a2c4f8e0 3955@defmac CALL_POPS_ARGS (@var{cum})
fa5322fa
AO
3956A C expression that should indicate the number of bytes a call sequence
3957pops off the stack. It is added to the value of @code{RETURN_POPS_ARGS}
3958when compiling a function call.
3959
3960@var{cum} is the variable in which all arguments to the called function
3961have been accumulated.
3962
3963On certain architectures, such as the SH5, a call trampoline is used
3964that pops certain registers off the stack, depending on the arguments
3965that have been passed to the function. Since this is a property of the
3966call site, not of the called function, @code{RETURN_POPS_ARGS} is not
3967appropriate.
a2c4f8e0 3968@end defmac
feca2ed3
JW
3969
3970@node Register Arguments
3971@subsection Passing Arguments in Registers
3972@cindex arguments in registers
3973@cindex registers arguments
3974
3975This section describes the macros which let you control how various
3976types of arguments are passed in registers or how they are arranged in
3977the stack.
3978
a2c4f8e0 3979@defmac FUNCTION_ARG (@var{cum}, @var{mode}, @var{type}, @var{named})
feca2ed3
JW
3980A C expression that controls whether a function argument is passed
3981in a register, and which register.
3982
3983The arguments are @var{cum}, which summarizes all the previous
3984arguments; @var{mode}, the machine mode of the argument; @var{type},
3985the data type of the argument as a tree node or 0 if that is not known
3986(which happens for C support library functions); and @var{named},
3987which is 1 for an ordinary argument and 0 for nameless arguments that
3988correspond to @samp{@dots{}} in the called function's prototype.
3719d27b
JO
3989@var{type} can be an incomplete type if a syntax error has previously
3990occurred.
feca2ed3
JW
3991
3992The value of the expression is usually either a @code{reg} RTX for the
3993hard register in which to pass the argument, or zero to pass the
3994argument on the stack.
3995
8aeea6e6 3996For machines like the VAX and 68000, where normally all arguments are
feca2ed3
JW
3997pushed, zero suffices as a definition.
3998
161d7b59 3999The value of the expression can also be a @code{parallel} RTX@. This is
feca2ed3 4000used when an argument is passed in multiple locations. The mode of the
ce376beb 4001@code{parallel} should be the mode of the entire argument. The
feca2ed3 4002@code{parallel} holds any number of @code{expr_list} pairs; each one
f797c10b
NC
4003describes where part of the argument is passed. In each
4004@code{expr_list} the first operand must be a @code{reg} RTX for the hard
4005register in which to pass this part of the argument, and the mode of the
4006register RTX indicates how large this part of the argument is. The
4007second operand of the @code{expr_list} is a @code{const_int} which gives
4008the offset in bytes into the entire argument of where this part starts.
02f52e19 4009As a special exception the first @code{expr_list} in the @code{parallel}
c980b85b
NC
4010RTX may have a first operand of zero. This indicates that the entire
4011argument is also stored on the stack.
feca2ed3 4012
1cc5e432
GK
4013The last time this macro is called, it is called with @code{MODE ==
4014VOIDmode}, and its result is passed to the @code{call} or @code{call_value}
4015pattern as operands 2 and 3 respectively.
4016
feca2ed3 4017@cindex @file{stdarg.h} and register arguments
5490d604 4018The usual way to make the ISO library @file{stdarg.h} work on a machine
feca2ed3
JW
4019where some arguments are usually passed in registers, is to cause
4020nameless arguments to be passed on the stack instead. This is done
4021by making @code{FUNCTION_ARG} return 0 whenever @var{named} is 0.
4022
fe984136 4023@cindex @code{TARGET_MUST_PASS_IN_STACK}, and @code{FUNCTION_ARG}
feca2ed3 4024@cindex @code{REG_PARM_STACK_SPACE}, and @code{FUNCTION_ARG}
fe984136 4025You may use the hook @code{targetm.calls.must_pass_in_stack}
feca2ed3
JW
4026in the definition of this macro to determine if this argument is of a
4027type that must be passed in the stack. If @code{REG_PARM_STACK_SPACE}
df2a54e9 4028is not defined and @code{FUNCTION_ARG} returns nonzero for such an
feca2ed3
JW
4029argument, the compiler will abort. If @code{REG_PARM_STACK_SPACE} is
4030defined, the argument will be computed in the stack and then loaded into
4031a register.
a2c4f8e0 4032@end defmac
feca2ed3 4033
9ddb66ef 4034@deftypefn {Target Hook} bool TARGET_MUST_PASS_IN_STACK (enum machine_mode @var{mode}, const_tree @var{type})
fe984136
RH
4035This target hook should return @code{true} if we should not pass @var{type}
4036solely in registers. The file @file{expr.h} defines a
d9a4ee00
JL
4037definition that is usually appropriate, refer to @file{expr.h} for additional
4038documentation.
fe984136 4039@end deftypefn
d9a4ee00 4040
a2c4f8e0 4041@defmac FUNCTION_INCOMING_ARG (@var{cum}, @var{mode}, @var{type}, @var{named})
feca2ed3
JW
4042Define this macro if the target machine has ``register windows'', so
4043that the register in which a function sees an arguments is not
4044necessarily the same as the one in which the caller passed the
4045argument.
4046
4047For such machines, @code{FUNCTION_ARG} computes the register in which
4048the caller passes the value, and @code{FUNCTION_INCOMING_ARG} should
4049be defined in a similar fashion to tell the function being called
4050where the arguments will arrive.
4051
4052If @code{FUNCTION_INCOMING_ARG} is not defined, @code{FUNCTION_ARG}
bd819a4a 4053serves both purposes.
a2c4f8e0 4054@end defmac
feca2ed3 4055
78a52f11
RH
4056@deftypefn {Target Hook} int TARGET_ARG_PARTIAL_BYTES (CUMULATIVE_ARGS *@var{cum}, enum machine_mode @var{mode}, tree @var{type}, bool @var{named})
4057This target hook returns the number of bytes at the beginning of an
4058argument that must be put in registers. The value must be zero for
feca2ed3
JW
4059arguments that are passed entirely in registers or that are entirely
4060pushed on the stack.
4061
4062On some machines, certain arguments must be passed partially in
4063registers and partially in memory. On these machines, typically the
78a52f11 4064first few words of arguments are passed in registers, and the rest
feca2ed3
JW
4065on the stack. If a multi-word argument (a @code{double} or a
4066structure) crosses that boundary, its first few words must be passed
4067in registers and the rest must be pushed. This macro tells the
78a52f11 4068compiler when this occurs, and how many bytes should go in registers.
feca2ed3
JW
4069
4070@code{FUNCTION_ARG} for these arguments should return the first
4071register to be used by the caller for this argument; likewise
4072@code{FUNCTION_INCOMING_ARG}, for the called function.
78a52f11 4073@end deftypefn
feca2ed3 4074
ec9f85e5 4075@deftypefn {Target Hook} bool TARGET_PASS_BY_REFERENCE (CUMULATIVE_ARGS *@var{cum}, enum machine_mode @var{mode}, const_tree @var{type}, bool @var{named})
f676971a 4076This target hook should return @code{true} if an argument at the
8cd5a4e0 4077position indicated by @var{cum} should be passed by reference. This
f676971a 4078predicate is queried after target independent reasons for being
8cd5a4e0
RH
4079passed by reference, such as @code{TREE_ADDRESSABLE (type)}.
4080
4081If the hook returns true, a copy of that argument is made in memory and a
feca2ed3
JW
4082pointer to the argument is passed instead of the argument itself.
4083The pointer is passed in whatever way is appropriate for passing a pointer
4084to that type.
8cd5a4e0 4085@end deftypefn
feca2ed3 4086
9ddb66ef 4087@deftypefn {Target Hook} bool TARGET_CALLEE_COPIES (CUMULATIVE_ARGS *@var{cum}, enum machine_mode @var{mode}, const_tree @var{type}, bool @var{named})
6cdd5672
RH
4088The function argument described by the parameters to this hook is
4089known to be passed by reference. The hook should return true if the
4090function argument should be copied by the callee instead of copied
4091by the caller.
4092
a1c496cb 4093For any argument for which the hook returns true, if it can be
6cdd5672
RH
4094determined that the argument is not modified, then a copy need
4095not be generated.
4096
4097The default version of this hook always returns false.
4098@end deftypefn
feca2ed3 4099
a2c4f8e0 4100@defmac CUMULATIVE_ARGS
feca2ed3
JW
4101A C type for declaring a variable that is used as the first argument of
4102@code{FUNCTION_ARG} and other related values. For some target machines,
4103the type @code{int} suffices and can hold the number of bytes of
4104argument so far.
4105
4106There is no need to record in @code{CUMULATIVE_ARGS} anything about the
4107arguments that have been passed on the stack. The compiler has other
4108variables to keep track of that. For target machines on which all
4109arguments are passed on the stack, there is no need to store anything in
4110@code{CUMULATIVE_ARGS}; however, the data structure must exist and
4111should not be empty, so use @code{int}.
a2c4f8e0 4112@end defmac
feca2ed3 4113
7c800926
KT
4114@defmac OVERRIDE_ABI_FORMAT (@var{fndecl})
4115If defined, this macro is called before generating any code for a
4116function, but after the @var{cfun} descriptor for the function has been
4117created. The back end may use this macro to update @var{cfun} to
4118reflect an ABI other than that which would normally be used by default.
4119If the compiler is generating code for a compiler-generated function,
4120@var{fndecl} may be @code{NULL}.
4121@end defmac
4122
0f6937fe 4123@defmac INIT_CUMULATIVE_ARGS (@var{cum}, @var{fntype}, @var{libname}, @var{fndecl}, @var{n_named_args})
a2c4f8e0
ZW
4124A C statement (sans semicolon) for initializing the variable
4125@var{cum} for the state at the beginning of the argument list. The
4126variable has type @code{CUMULATIVE_ARGS}. The value of @var{fntype}
4127is the tree node for the data type of the function which will receive
4128the args, or 0 if the args are to a compiler support library function.
4129For direct calls that are not libcalls, @var{fndecl} contain the
4130declaration node of the function. @var{fndecl} is also set when
4131@code{INIT_CUMULATIVE_ARGS} is used to find arguments for the function
0f6937fe
AM
4132being compiled. @var{n_named_args} is set to the number of named
4133arguments, including a structure return address if it is passed as a
4134parameter, when making a call. When processing incoming arguments,
78466c0e 4135@var{n_named_args} is set to @minus{}1.
feca2ed3
JW
4136
4137When processing a call to a compiler support library function,
4138@var{libname} identifies which one. It is a @code{symbol_ref} rtx which
4139contains the name of the function, as a string. @var{libname} is 0 when
4140an ordinary C function call is being processed. Thus, each time this
4141macro is called, either @var{libname} or @var{fntype} is nonzero, but
4142never both of them at once.
a2c4f8e0 4143@end defmac
feca2ed3 4144
a2c4f8e0 4145@defmac INIT_CUMULATIVE_LIBCALL_ARGS (@var{cum}, @var{mode}, @var{libname})
97fc4caf
AO
4146Like @code{INIT_CUMULATIVE_ARGS} but only used for outgoing libcalls,
4147it gets a @code{MODE} argument instead of @var{fntype}, that would be
4148@code{NULL}. @var{indirect} would always be zero, too. If this macro
4149is not defined, @code{INIT_CUMULATIVE_ARGS (cum, NULL_RTX, libname,
41500)} is used instead.
a2c4f8e0 4151@end defmac
97fc4caf 4152
a2c4f8e0 4153@defmac INIT_CUMULATIVE_INCOMING_ARGS (@var{cum}, @var{fntype}, @var{libname})
feca2ed3
JW
4154Like @code{INIT_CUMULATIVE_ARGS} but overrides it for the purposes of
4155finding the arguments for the function being compiled. If this macro is
4156undefined, @code{INIT_CUMULATIVE_ARGS} is used instead.
4157
4158The value passed for @var{libname} is always 0, since library routines
161d7b59 4159with special calling conventions are never compiled with GCC@. The
feca2ed3
JW
4160argument @var{libname} exists for symmetry with
4161@code{INIT_CUMULATIVE_ARGS}.
4162@c could use "this macro" in place of @code{INIT_CUMULATIVE_ARGS}, maybe.
4163@c --mew 5feb93 i switched the order of the sentences. --mew 10feb93
a2c4f8e0 4164@end defmac
feca2ed3 4165
a2c4f8e0 4166@defmac FUNCTION_ARG_ADVANCE (@var{cum}, @var{mode}, @var{type}, @var{named})
feca2ed3
JW
4167A C statement (sans semicolon) to update the summarizer variable
4168@var{cum} to advance past an argument in the argument list. The
4169values @var{mode}, @var{type} and @var{named} describe that argument.
4170Once this is done, the variable @var{cum} is suitable for analyzing
bd819a4a 4171the @emph{following} argument with @code{FUNCTION_ARG}, etc.
feca2ed3
JW
4172
4173This macro need not do anything if the argument in question was passed
4174on the stack. The compiler knows how to track the amount of stack space
4175used for arguments without any special help.
a2c4f8e0 4176@end defmac
feca2ed3 4177
099590dc
MM
4178@defmac FUNCTION_ARG_OFFSET (@var{mode}, @var{type})
4179If defined, a C expression that is the number of bytes to add to the
4180offset of the argument passed in memory. This is needed for the SPU,
4181which passes @code{char} and @code{short} arguments in the preferred
4182slot that is in the middle of the quad word instead of starting at the
4183top.
4184@end defmac
4185
a2c4f8e0 4186@defmac FUNCTION_ARG_PADDING (@var{mode}, @var{type})
feca2ed3
JW
4187If defined, a C expression which determines whether, and in which direction,
4188to pad out an argument with extra space. The value should be of type
4189@code{enum direction}: either @code{upward} to pad above the argument,
4190@code{downward} to pad below, or @code{none} to inhibit padding.
4191
4192The @emph{amount} of padding is always just enough to reach the next
c2ed6cf8
NF
4193multiple of @code{TARGET_FUNCTION_ARG_BOUNDARY}; this macro does not
4194control it.
feca2ed3
JW
4195
4196This macro has a default definition which is right for most systems.
4197For little-endian machines, the default is to pad upward. For
4198big-endian machines, the default is to pad downward for an argument of
4199constant size shorter than an @code{int}, and upward otherwise.
a2c4f8e0 4200@end defmac
feca2ed3 4201
a2c4f8e0 4202@defmac PAD_VARARGS_DOWN
02f52e19
AJ
4203If defined, a C expression which determines whether the default
4204implementation of va_arg will attempt to pad down before reading the
5e4f6244
CP
4205next argument, if that argument is smaller than its aligned space as
4206controlled by @code{PARM_BOUNDARY}. If this macro is not defined, all such
4207arguments are padded down if @code{BYTES_BIG_ENDIAN} is true.
a2c4f8e0 4208@end defmac
5e4f6244 4209
6e985040
AM
4210@defmac BLOCK_REG_PADDING (@var{mode}, @var{type}, @var{first})
4211Specify padding for the last element of a block move between registers and
4212memory. @var{first} is nonzero if this is the only element. Defining this
4213macro allows better control of register function parameters on big-endian
4214machines, without using @code{PARALLEL} rtl. In particular,
4215@code{MUST_PASS_IN_STACK} need not test padding and mode of types in
4216registers, as there is no longer a "wrong" part of a register; For example,
4217a three byte aggregate may be passed in the high part of a register if so
4218required.
4219@end defmac
4220
c2ed6cf8
NF
4221@deftypefn {Target Hook} {unsigned int} TARGET_FUNCTION_ARG_BOUNDARY (enum machine_mode @var{mode}, const_tree @var{type})
4222This hook returns the the alignment boundary, in bits, of an argument
4223with the specified mode and type. The default hook returns
4224@code{PARM_BOUNDARY} for all arguments.
4225@end deftypefn
feca2ed3 4226
a2c4f8e0 4227@defmac FUNCTION_ARG_REGNO_P (@var{regno})
feca2ed3
JW
4228A C expression that is nonzero if @var{regno} is the number of a hard
4229register in which function arguments are sometimes passed. This does
4230@emph{not} include implicit arguments such as the static chain and
4231the structure-value address. On many machines, no registers can be
4232used for this purpose since all function arguments are pushed on the
4233stack.
a2c4f8e0 4234@end defmac
bb1b857a 4235
9ddb66ef 4236@deftypefn {Target Hook} bool TARGET_SPLIT_COMPLEX_ARG (const_tree @var{type})
42ba5130
RH
4237This hook should return true if parameter of type @var{type} are passed
4238as two scalar parameters. By default, GCC will attempt to pack complex
4239arguments into the target's word size. Some ABIs require complex arguments
4240to be split and treated as their individual components. For example, on
4241AIX64, complex floats should be passed in a pair of floating point
4242registers, even though a complex float would fit in one 64-bit floating
4243point register.
4244
4245The default value of this hook is @code{NULL}, which is treated as always
4246false.
4247@end deftypefn
ded9bf77 4248
d3da4d14
RH
4249@deftypefn {Target Hook} tree TARGET_BUILD_BUILTIN_VA_LIST (void)
4250This hook returns a type node for @code{va_list} for the target.
4251The default version of the hook returns @code{void*}.
4252@end deftypefn
4253
07a5b2bc 4254@deftypefn {Target Hook} int TARGET_ENUM_VA_LIST_P (int @var{idx}, const char **@var{pname}, tree *@var{ptree})
d4048208
KT
4255This target hook is used in function @code{c_common_nodes_and_builtins}
4256to iterate through the target specific builtin types for va_list. The
4257variable @var{idx} is used as iterator. @var{pname} has to be a pointer
07a5b2bc 4258to a @code{const char *} and @var{ptree} a pointer to a @code{tree} typed
d4048208 4259variable.
07a5b2bc 4260The arguments @var{pname} and @var{ptree} are used to store the result of
d4048208
KT
4261this macro and are set to the name of the va_list builtin type and its
4262internal type.
4263If the return value of this macro is zero, then there is no more element.
4264Otherwise the @var{IDX} should be increased for the next call of this
4265macro to iterate through all types.
4266@end deftypefn
4267
35cbb299
KT
4268@deftypefn {Target Hook} tree TARGET_FN_ABI_VA_LIST (tree @var{fndecl})
4269This hook returns the va_list type of the calling convention specified by
4270@var{fndecl}.
4271The default version of this hook returns @code{va_list_type_node}.
4272@end deftypefn
4273
4274@deftypefn {Target Hook} tree TARGET_CANONICAL_VA_LIST_TYPE (tree @var{type})
4275This hook returns the va_list type of the calling convention specified by the
4276type of @var{type}. If @var{type} is not a valid va_list type, it returns
4277@code{NULL_TREE}.
4278@end deftypefn
4279
9ddb66ef 4280@deftypefn {Target Hook} tree TARGET_GIMPLIFY_VA_ARG_EXPR (tree @var{valist}, tree @var{type}, gimple_seq *@var{pre_p}, gimple_seq *@var{post_p})
23a60a04
JM
4281This hook performs target-specific gimplification of
4282@code{VA_ARG_EXPR}. The first two parameters correspond to the
4283arguments to @code{va_arg}; the latter two are as in
4284@code{gimplify.c:gimplify_expr}.
23a60a04
JM
4285@end deftypefn
4286
e09ec166
EC
4287@deftypefn {Target Hook} bool TARGET_VALID_POINTER_MODE (enum machine_mode @var{mode})
4288Define this to return nonzero if the port can handle pointers
4289with machine mode @var{mode}. The default version of this
4290hook returns true for both @code{ptr_mode} and @code{Pmode}.
4291@end deftypefn
4292
6dd53648
RH
4293@deftypefn {Target Hook} bool TARGET_SCALAR_MODE_SUPPORTED_P (enum machine_mode @var{mode})
4294Define this to return nonzero if the port is prepared to handle
4295insns involving scalar mode @var{mode}. For a scalar mode to be
4296considered supported, all the basic arithmetic and comparisons
4297must work.
4298
4299The default version of this hook returns true for any mode
4300required to handle the basic C types (as defined by the port).
4301Included here are the double-word arithmetic supported by the
4302code in @file{optabs.c}.
4303@end deftypefn
4304
f676971a
EC
4305@deftypefn {Target Hook} bool TARGET_VECTOR_MODE_SUPPORTED_P (enum machine_mode @var{mode})
4306Define this to return nonzero if the port is prepared to handle
4307insns involving vector mode @var{mode}. At the very least, it
4308must have move patterns for this mode.
4309@end deftypefn
4310
42db504c
SB
4311@deftypefn {Target Hook} bool TARGET_SMALL_REGISTER_CLASSES_FOR_MODE_P (enum machine_mode @var{mode})
4312Define this to return nonzero for machine modes for which the port has
4313small register classes. If this target hook returns nonzero for a given
4314@var{mode}, the compiler will try to minimize the lifetime of registers
4315in @var{mode}. The hook may be called with @code{VOIDmode} as argument.
4316In this case, the hook is expected to return nonzero if it returns nonzero
4317for any mode.
4318
4319On some machines, it is risky to let hard registers live across arbitrary
4320insns. Typically, these machines have instructions that require values
4321to be in specific registers (like an accumulator), and reload will fail
4322if the required hard register is used for another purpose across such an
4323insn.
4324
4325Passes before reload do not know which hard registers will be used
4326in an instruction, but the machine modes of the registers set or used in
4327the instruction are already known. And for some machines, register
4328classes are small for, say, integer registers but not for floating point
4329registers. For example, the AMD x86-64 architecture requires specific
4330registers for the legacy x86 integer instructions, but there are many
4331SSE registers for floating point operations. On such targets, a good
4332strategy may be to return nonzero from this hook for @code{INTEGRAL_MODE_P}
4333machine modes but zero for the SSE register classes.
4334
4335The default version of this hook retuns false for any mode. It is always
4336safe to redefine this hook to return with a nonzero value. But if you
4337unnecessarily define it, you will reduce the amount of optimizations
4338that can be performed in some cases. If you do not define this hook
4339to return a nonzero value when it is required, the compiler will run out
4340of spill registers and print a fatal error message.
4341@end deftypefn
4342
feca2ed3
JW
4343@node Scalar Return
4344@subsection How Scalar Function Values Are Returned
4345@cindex return values in registers
4346@cindex values, returned by functions
4347@cindex scalars, returned as values
4348
4349This section discusses the macros that control returning scalars as
4350values---values that can fit in registers.
4351
9ddb66ef 4352@deftypefn {Target Hook} rtx TARGET_FUNCTION_VALUE (const_tree @var{ret_type}, const_tree @var{fn_decl_or_type}, bool @var{outgoing})
1b03c58a
RG
4353
4354Define this to return an RTX representing the place where a function
4355returns or receives a value of data type @var{ret_type}, a tree node
e4ae5e77 4356representing a data type. @var{fn_decl_or_type} is a tree node
1b03c58a
RG
4357representing @code{FUNCTION_DECL} or @code{FUNCTION_TYPE} of a
4358function being called. If @var{outgoing} is false, the hook should
4359compute the register in which the caller will see the return value.
4360Otherwise, the hook should return an RTX representing the place where
4361a function returns a value.
4362
4363On many machines, only @code{TYPE_MODE (@var{ret_type})} is relevant.
4364(Actually, on most machines, scalar values are returned in the same
4365place regardless of mode.) The value of the expression is usually a
4366@code{reg} RTX for the hard register where the return value is stored.
4367The value can also be a @code{parallel} RTX, if the return value is in
4368multiple places. See @code{FUNCTION_ARG} for an explanation of the
576c9028
KH
4369@code{parallel} form. Note that the callee will populate every
4370location specified in the @code{parallel}, but if the first element of
4371the @code{parallel} contains the whole return value, callers will use
4372that element as the canonical location and ignore the others. The m68k
4373port uses this type of @code{parallel} to return pointers in both
4374@samp{%a0} (the canonical location) and @samp{%d0}.
1b03c58a
RG
4375
4376If @code{TARGET_PROMOTE_FUNCTION_RETURN} returns true, you must apply
4377the same promotion rules specified in @code{PROMOTE_MODE} if
4378@var{valtype} is a scalar type.
feca2ed3
JW
4379
4380If the precise function being called is known, @var{func} is a tree
4381node (@code{FUNCTION_DECL}) for it; otherwise, @var{func} is a null
4382pointer. This makes it possible to use a different value-returning
4383convention for specific functions when all their calls are
bd819a4a 4384known.
feca2ed3 4385
1b03c58a
RG
4386Some target machines have ``register windows'' so that the register in
4387which a function returns its value is not the same as the one in which
4388the caller sees the value. For such machines, you should return
4389different RTX depending on @var{outgoing}.
4390
4391@code{TARGET_FUNCTION_VALUE} is not used for return values with
4392aggregate data types, because these are returned in another way. See
cea28603 4393@code{TARGET_STRUCT_VALUE_RTX} and related macros, below.
1b03c58a
RG
4394@end deftypefn
4395
4396@defmac FUNCTION_VALUE (@var{valtype}, @var{func})
4397This macro has been deprecated. Use @code{TARGET_FUNCTION_VALUE} for
4398a new target instead.
a2c4f8e0 4399@end defmac
feca2ed3 4400
a2c4f8e0 4401@defmac LIBCALL_VALUE (@var{mode})
feca2ed3 4402A C expression to create an RTX representing the place where a library
dc672951 4403function returns a value of mode @var{mode}.
feca2ed3
JW
4404
4405Note that ``library function'' in this context means a compiler
4406support routine, used to perform arithmetic, whose name is known
4407specially by the compiler and was not mentioned in the C code being
4408compiled.
a2c4f8e0 4409@end defmac
feca2ed3 4410
38f8b050 4411@deftypefn {Target Hook} rtx TARGET_LIBCALL_VALUE (enum machine_mode @var{mode}, const_rtx @var{fun})
390b17c2
RE
4412Define this hook if the back-end needs to know the name of the libcall
4413function in order to determine where the result should be returned.
4414
4415The mode of the result is given by @var{mode} and the name of the called
4416library function is given by @var{fun}. The hook should return an RTX
4417representing the place where the library function result will be returned.
4418
4419If this hook is not defined, then LIBCALL_VALUE will be used.
4420@end deftypefn
4421
a2c4f8e0 4422@defmac FUNCTION_VALUE_REGNO_P (@var{regno})
feca2ed3
JW
4423A C expression that is nonzero if @var{regno} is the number of a hard
4424register in which the values of called function may come back.
4425
4426A register whose use for returning values is limited to serving as the
4427second of a pair (for a value of type @code{double}, say) need not be
4428recognized by this macro. So for most machines, this definition
4429suffices:
4430
3ab51846 4431@smallexample
feca2ed3 4432#define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
3ab51846 4433@end smallexample
feca2ed3
JW
4434
4435If the machine has register windows, so that the caller and the called
4436function use different registers for the return value, this macro
4437should recognize only the caller's register numbers.
82f81f18
AS
4438
4439This macro has been deprecated. Use @code{TARGET_FUNCTION_VALUE_REGNO_P}
4440for a new target instead.
a2c4f8e0 4441@end defmac
feca2ed3 4442
82f81f18
AS
4443@deftypefn {Target Hook} bool TARGET_FUNCTION_VALUE_REGNO_P (const unsigned int @var{regno})
4444A target hook that return @code{true} if @var{regno} is the number of a hard
4445register in which the values of called function may come back.
4446
4447A register whose use for returning values is limited to serving as the
4448second of a pair (for a value of type @code{double}, say) need not be
4449recognized by this target hook.
4450
4451If the machine has register windows, so that the caller and the called
4452function use different registers for the return value, this target hook
4453should recognize only the caller's register numbers.
4454
4455If this hook is not defined, then FUNCTION_VALUE_REGNO_P will be used.
4456@end deftypefn
4457
a2c4f8e0 4458@defmac APPLY_RESULT_SIZE
feca2ed3
JW
4459Define this macro if @samp{untyped_call} and @samp{untyped_return}
4460need more space than is implied by @code{FUNCTION_VALUE_REGNO_P} for
4461saving and restoring an arbitrary return value.
a2c4f8e0 4462@end defmac
feca2ed3 4463
9ddb66ef 4464@deftypefn {Target Hook} bool TARGET_RETURN_IN_MSB (const_tree @var{type})
c988af2b
RS
4465This hook should return true if values of type @var{type} are returned
4466at the most significant end of a register (in other words, if they are
4467padded at the least significant end). You can assume that @var{type}
4468is returned in a register; the caller is required to check this.
4469
1b03c58a
RG
4470Note that the register provided by @code{TARGET_FUNCTION_VALUE} must
4471be able to hold the complete return value. For example, if a 1-, 2-
4472or 3-byte structure is returned at the most significant end of a
44734-byte register, @code{TARGET_FUNCTION_VALUE} should provide an
4474@code{SImode} rtx.
c988af2b
RS
4475@end deftypefn
4476
feca2ed3
JW
4477@node Aggregate Return
4478@subsection How Large Values Are Returned
4479@cindex aggregates as return values
4480@cindex large return values
4481@cindex returning aggregate values
4482@cindex structure value address
4483
4484When a function value's mode is @code{BLKmode} (and in some other
1b03c58a
RG
4485cases), the value is not returned according to
4486@code{TARGET_FUNCTION_VALUE} (@pxref{Scalar Return}). Instead, the
4487caller passes the address of a block of memory in which the value
4488should be stored. This address is called the @dfn{structure value
4489address}.
feca2ed3
JW
4490
4491This section describes how to control returning structure values in
4492memory.
4493
9ddb66ef 4494@deftypefn {Target Hook} bool TARGET_RETURN_IN_MEMORY (const_tree @var{type}, const_tree @var{fntype})
61f71b34
DD
4495This target hook should return a nonzero value to say to return the
4496function value in memory, just as large structures are always returned.
4497Here @var{type} will be the data type of the value, and @var{fntype}
4498will be the type of the function doing the returning, or @code{NULL} for
4499libcalls.
feca2ed3
JW
4500
4501Note that values of mode @code{BLKmode} must be explicitly handled
61f71b34 4502by this function. Also, the option @option{-fpcc-struct-return}
feca2ed3 4503takes effect regardless of this macro. On most systems, it is
61f71b34 4504possible to leave the hook undefined; this causes a default
feca2ed3
JW
4505definition to be used, whose value is the constant 1 for @code{BLKmode}
4506values, and 0 otherwise.
4507
61f71b34 4508Do not use this hook to indicate that structures and unions should always
feca2ed3
JW
4509be returned in memory. You should instead use @code{DEFAULT_PCC_STRUCT_RETURN}
4510to indicate this.
61f71b34 4511@end deftypefn
feca2ed3 4512
a2c4f8e0 4513@defmac DEFAULT_PCC_STRUCT_RETURN
feca2ed3
JW
4514Define this macro to be 1 if all structure and union return values must be
4515in memory. Since this results in slower code, this should be defined
161d7b59 4516only if needed for compatibility with other compilers or with an ABI@.
feca2ed3 4517If you define this macro to be 0, then the conventions used for structure
d624465f
KH
4518and union return values are decided by the @code{TARGET_RETURN_IN_MEMORY}
4519target hook.
feca2ed3
JW
4520
4521If not defined, this defaults to the value 1.
a2c4f8e0 4522@end defmac
feca2ed3 4523
61f71b34
DD
4524@deftypefn {Target Hook} rtx TARGET_STRUCT_VALUE_RTX (tree @var{fndecl}, int @var{incoming})
4525This target hook should return the location of the structure value
4526address (normally a @code{mem} or @code{reg}), or 0 if the address is
4527passed as an ``invisible'' first argument. Note that @var{fndecl} may
1f6acb82
KH
4528be @code{NULL}, for libcalls. You do not need to define this target
4529hook if the address is always passed as an ``invisible'' first
4530argument.
feca2ed3 4531
feca2ed3
JW
4532On some architectures the place where the structure value address
4533is found by the called function is not the same place that the
4534caller put it. This can be due to register windows, or it could
4535be because the function prologue moves it to a different place.
2225b57c
CD
4536@var{incoming} is @code{1} or @code{2} when the location is needed in
4537the context of the called function, and @code{0} in the context of
61f71b34 4538the caller.
feca2ed3 4539
917f1b7e 4540If @var{incoming} is nonzero and the address is to be found on the
2225b57c
CD
4541stack, return a @code{mem} which refers to the frame pointer. If
4542@var{incoming} is @code{2}, the result is being used to fetch the
64ee9490 4543structure value address at the beginning of a function. If you need
2225b57c 4544to emit adjusting code, you should do it at this point.
61f71b34 4545@end deftypefn
feca2ed3 4546
a2c4f8e0 4547@defmac PCC_STATIC_STRUCT_RETURN
feca2ed3
JW
4548Define this macro if the usual system convention on the target machine
4549for returning structures and unions is for the called function to return
4550the address of a static variable containing the value.
4551
4552Do not define this if the usual system convention is for the caller to
4553pass an address to the subroutine.
4554
630d3d5a
JM
4555This macro has effect in @option{-fpcc-struct-return} mode, but it does
4556nothing when you use @option{-freg-struct-return} mode.
a2c4f8e0 4557@end defmac
feca2ed3 4558
ffa88471
SE
4559@deftypefn {Target Hook} {enum machine_mode} TARGET_GET_RAW_RESULT_MODE (int @var{regno})
4560This target hook returns the mode to be used when accessing raw return registers in @code{__builtin_return}. Define this macro if the value in @var{reg_raw_mode} is not correct.
4561@end deftypefn
4562
4563@deftypefn {Target Hook} {enum machine_mode} TARGET_GET_RAW_ARG_MODE (int @var{regno})
4564This target hook returns the mode to be used when accessing raw argument registers in @code{__builtin_apply_args}. Define this macro if the value in @var{reg_raw_mode} is not correct.
4565@end deftypefn
4566
feca2ed3
JW
4567@node Caller Saves
4568@subsection Caller-Saves Register Allocation
4569
a3a15b4d 4570If you enable it, GCC can save registers around function calls. This
feca2ed3
JW
4571makes it possible to use call-clobbered registers to hold variables that
4572must live across calls.
4573
a2c4f8e0 4574@defmac CALLER_SAVE_PROFITABLE (@var{refs}, @var{calls})
feca2ed3
JW
4575A C expression to determine whether it is worthwhile to consider placing
4576a pseudo-register in a call-clobbered hard register and saving and
4577restoring it around each function call. The expression should be 1 when
4578this is worth doing, and 0 otherwise.
4579
4580If you don't define this macro, a default is used which is good on most
4581machines: @code{4 * @var{calls} < @var{refs}}.
a2c4f8e0 4582@end defmac
8d5c8167 4583
a2c4f8e0 4584@defmac HARD_REGNO_CALLER_SAVE_MODE (@var{regno}, @var{nregs})
8d5c8167
JL
4585A C expression specifying which mode is required for saving @var{nregs}
4586of a pseudo-register in call-clobbered hard register @var{regno}. If
4587@var{regno} is unsuitable for caller save, @code{VOIDmode} should be
4588returned. For most machines this macro need not be defined since GCC
4589will select the smallest suitable mode.
a2c4f8e0 4590@end defmac
feca2ed3
JW
4591
4592@node Function Entry
4593@subsection Function Entry and Exit
4594@cindex function entry and exit
4595@cindex prologue
4596@cindex epilogue
4597
4598This section describes the macros that output function entry
4599(@dfn{prologue}) and exit (@dfn{epilogue}) code.
4600
08c148a8
NB
4601@deftypefn {Target Hook} void TARGET_ASM_FUNCTION_PROLOGUE (FILE *@var{file}, HOST_WIDE_INT @var{size})
4602If defined, a function that outputs the assembler code for entry to a
feca2ed3
JW
4603function. The prologue is responsible for setting up the stack frame,
4604initializing the frame pointer register, saving registers that must be
4605saved, and allocating @var{size} additional bytes of storage for the
4606local variables. @var{size} is an integer. @var{file} is a stdio
4607stream to which the assembler code should be output.
4608
4609The label for the beginning of the function need not be output by this
4610macro. That has already been done when the macro is run.
4611
4612@findex regs_ever_live
4613To determine which registers to save, the macro can refer to the array
4614@code{regs_ever_live}: element @var{r} is nonzero if hard register
4615@var{r} is used anywhere within the function. This implies the function
4616prologue should save register @var{r}, provided it is not one of the
08c148a8 4617call-used registers. (@code{TARGET_ASM_FUNCTION_EPILOGUE} must likewise use
feca2ed3
JW
4618@code{regs_ever_live}.)
4619
4620On machines that have ``register windows'', the function entry code does
4621not save on the stack the registers that are in the windows, even if
4622they are supposed to be preserved by function calls; instead it takes
4623appropriate steps to ``push'' the register stack, if any non-call-used
4624registers are used in the function.
4625
4626@findex frame_pointer_needed
4627On machines where functions may or may not have frame-pointers, the
4628function entry code must vary accordingly; it must set up the frame
4629pointer if one is wanted, and not otherwise. To determine whether a
4630frame pointer is in wanted, the macro can refer to the variable
4631@code{frame_pointer_needed}. The variable's value will be 1 at run
4632time in a function that needs a frame pointer. @xref{Elimination}.
4633
4634The function entry code is responsible for allocating any stack space
4635required for the function. This stack space consists of the regions
4636listed below. In most cases, these regions are allocated in the
4637order listed, with the last listed region closest to the top of the
4638stack (the lowest address if @code{STACK_GROWS_DOWNWARD} is defined, and
4639the highest address if it is not defined). You can use a different order
4640for a machine if doing so is more convenient or required for
4641compatibility reasons. Except in cases where required by standard
4642or by a debugger, there is no reason why the stack layout used by GCC
4643need agree with that used by other compilers for a machine.
08c148a8
NB
4644@end deftypefn
4645
17b53c33
NB
4646@deftypefn {Target Hook} void TARGET_ASM_FUNCTION_END_PROLOGUE (FILE *@var{file})
4647If defined, a function that outputs assembler code at the end of a
4648prologue. This should be used when the function prologue is being
4649emitted as RTL, and you have some extra assembler that needs to be
4650emitted. @xref{prologue instruction pattern}.
4651@end deftypefn
4652
4653@deftypefn {Target Hook} void TARGET_ASM_FUNCTION_BEGIN_EPILOGUE (FILE *@var{file})
4654If defined, a function that outputs assembler code at the start of an
4655epilogue. This should be used when the function epilogue is being
4656emitted as RTL, and you have some extra assembler that needs to be
4657emitted. @xref{epilogue instruction pattern}.
4658@end deftypefn
4659
08c148a8
NB
4660@deftypefn {Target Hook} void TARGET_ASM_FUNCTION_EPILOGUE (FILE *@var{file}, HOST_WIDE_INT @var{size})
4661If defined, a function that outputs the assembler code for exit from a
4662function. The epilogue is responsible for restoring the saved
4663registers and stack pointer to their values when the function was
4664called, and returning control to the caller. This macro takes the
4665same arguments as the macro @code{TARGET_ASM_FUNCTION_PROLOGUE}, and the
4666registers to restore are determined from @code{regs_ever_live} and
4667@code{CALL_USED_REGISTERS} in the same way.
4668
4669On some machines, there is a single instruction that does all the work
4670of returning from the function. On these machines, give that
4671instruction the name @samp{return} and do not define the macro
4672@code{TARGET_ASM_FUNCTION_EPILOGUE} at all.
4673
4674Do not define a pattern named @samp{return} if you want the
4675@code{TARGET_ASM_FUNCTION_EPILOGUE} to be used. If you want the target
4676switches to control whether return instructions or epilogues are used,
4677define a @samp{return} pattern with a validity condition that tests the
4678target switches appropriately. If the @samp{return} pattern's validity
4679condition is false, epilogues will be used.
4680
4681On machines where functions may or may not have frame-pointers, the
4682function exit code must vary accordingly. Sometimes the code for these
4683two cases is completely different. To determine whether a frame pointer
4684is wanted, the macro can refer to the variable
4685@code{frame_pointer_needed}. The variable's value will be 1 when compiling
4686a function that needs a frame pointer.
4687
4688Normally, @code{TARGET_ASM_FUNCTION_PROLOGUE} and
4689@code{TARGET_ASM_FUNCTION_EPILOGUE} must treat leaf functions specially.
4690The C variable @code{current_function_is_leaf} is nonzero for such a
4691function. @xref{Leaf Functions}.
4692
4693On some machines, some functions pop their arguments on exit while
4694others leave that for the caller to do. For example, the 68020 when
4695given @option{-mrtd} pops arguments in functions that take a fixed
4696number of arguments.
4697
4698@findex current_function_pops_args
4699Your definition of the macro @code{RETURN_POPS_ARGS} decides which
4700functions pop their own arguments. @code{TARGET_ASM_FUNCTION_EPILOGUE}
72392b81
JR
4701needs to know what was decided. The number of bytes of the current
4702function's arguments that this function should pop is available in
4703@code{crtl->args.pops_args}. @xref{Scalar Return}.
08c148a8
NB
4704@end deftypefn
4705
feca2ed3
JW
4706@itemize @bullet
4707@item
4708@findex current_function_pretend_args_size
4709A region of @code{current_function_pretend_args_size} bytes of
4710uninitialized space just underneath the first argument arriving on the
4711stack. (This may not be at the very start of the allocated stack region
4712if the calling sequence has pushed anything else since pushing the stack
4713arguments. But usually, on such machines, nothing else has been pushed
4714yet, because the function prologue itself does all the pushing.) This
4715region is used on machines where an argument may be passed partly in
4716registers and partly in memory, and, in some cases to support the
6c535c69 4717features in @code{<stdarg.h>}.
feca2ed3
JW
4718
4719@item
4720An area of memory used to save certain registers used by the function.
4721The size of this area, which may also include space for such things as
4722the return address and pointers to previous stack frames, is
4723machine-specific and usually depends on which registers have been used
4724in the function. Machines with register windows often do not require
4725a save area.
4726
4727@item
4728A region of at least @var{size} bytes, possibly rounded up to an allocation
4729boundary, to contain the local variables of the function. On some machines,
4730this region and the save area may occur in the opposite order, with the
4731save area closer to the top of the stack.
4732
4733@item
4734@cindex @code{ACCUMULATE_OUTGOING_ARGS} and stack frames
4735Optionally, when @code{ACCUMULATE_OUTGOING_ARGS} is defined, a region of
4736@code{current_function_outgoing_args_size} bytes to be used for outgoing
4737argument lists of the function. @xref{Stack Arguments}.
4738@end itemize
4739
a2c4f8e0 4740@defmac EXIT_IGNORE_STACK
feca2ed3
JW
4741Define this macro as a C expression that is nonzero if the return
4742instruction or the function epilogue ignores the value of the stack
4743pointer; in other words, if it is safe to delete an instruction to
9d05bbce
KH
4744adjust the stack pointer before a return from the function. The
4745default is 0.
feca2ed3
JW
4746
4747Note that this macro's value is relevant only for functions for which
4748frame pointers are maintained. It is never safe to delete a final
4749stack adjustment in a function that has no frame pointer, and the
4750compiler knows this regardless of @code{EXIT_IGNORE_STACK}.
a2c4f8e0 4751@end defmac
feca2ed3 4752
a2c4f8e0 4753@defmac EPILOGUE_USES (@var{regno})
8760eaae 4754Define this macro as a C expression that is nonzero for registers that are
feca2ed3 4755used by the epilogue or the @samp{return} pattern. The stack and frame
86c33cd0 4756pointer registers are already assumed to be used as needed.
a2c4f8e0 4757@end defmac
feca2ed3 4758
a2c4f8e0 4759@defmac EH_USES (@var{regno})
15b5aef3
RH
4760Define this macro as a C expression that is nonzero for registers that are
4761used by the exception handling mechanism, and so should be considered live
4762on entry to an exception edge.
a2c4f8e0 4763@end defmac
15b5aef3 4764
a2c4f8e0 4765@defmac DELAY_SLOTS_FOR_EPILOGUE
feca2ed3
JW
4766Define this macro if the function epilogue contains delay slots to which
4767instructions from the rest of the function can be ``moved''. The
4768definition should be a C expression whose value is an integer
4769representing the number of delay slots there.
a2c4f8e0 4770@end defmac
feca2ed3 4771
a2c4f8e0 4772@defmac ELIGIBLE_FOR_EPILOGUE_DELAY (@var{insn}, @var{n})
feca2ed3
JW
4773A C expression that returns 1 if @var{insn} can be placed in delay
4774slot number @var{n} of the epilogue.
4775
4776The argument @var{n} is an integer which identifies the delay slot now
4777being considered (since different slots may have different rules of
4778eligibility). It is never negative and is always less than the number
4779of epilogue delay slots (what @code{DELAY_SLOTS_FOR_EPILOGUE} returns).
4780If you reject a particular insn for a given delay slot, in principle, it
4781may be reconsidered for a subsequent delay slot. Also, other insns may
4782(at least in principle) be considered for the so far unfilled delay
4783slot.
4784
4785@findex current_function_epilogue_delay_list
4786@findex final_scan_insn
4787The insns accepted to fill the epilogue delay slots are put in an RTL
4788list made with @code{insn_list} objects, stored in the variable
4789@code{current_function_epilogue_delay_list}. The insn for the first
4790delay slot comes first in the list. Your definition of the macro
08c148a8
NB
4791@code{TARGET_ASM_FUNCTION_EPILOGUE} should fill the delay slots by
4792outputting the insns in this list, usually by calling
4793@code{final_scan_insn}.
feca2ed3
JW
4794
4795You need not define this macro if you did not define
4796@code{DELAY_SLOTS_FOR_EPILOGUE}.
a2c4f8e0 4797@end defmac
feca2ed3 4798
65e71cd6 4799@deftypefn {Target Hook} void TARGET_ASM_OUTPUT_MI_THUNK (FILE *@var{file}, tree @var{thunk_fndecl}, HOST_WIDE_INT @var{delta}, HOST_WIDE_INT @var{vcall_offset}, tree @var{function})
483ab821 4800A function that outputs the assembler code for a thunk
feca2ed3
JW
4801function, used to implement C++ virtual function calls with multiple
4802inheritance. The thunk acts as a wrapper around a virtual function,
4803adjusting the implicit object parameter before handing control off to
4804the real function.
4805
4806First, emit code to add the integer @var{delta} to the location that
4807contains the incoming first argument. Assume that this argument
4808contains a pointer, and is the one used to pass the @code{this} pointer
4809in C++. This is the incoming argument @emph{before} the function prologue,
e979f9e8 4810e.g.@: @samp{%o0} on a sparc. The addition must preserve the values of
feca2ed3
JW
4811all other incoming arguments.
4812
65e71cd6
EB
4813Then, if @var{vcall_offset} is nonzero, an additional adjustment should be
4814made after adding @code{delta}. In particular, if @var{p} is the
4815adjusted pointer, the following adjustment should be made:
4816
4817@smallexample
4818p += (*((ptrdiff_t **)p))[vcall_offset/sizeof(ptrdiff_t)]
4819@end smallexample
4820
4821After the additions, emit code to jump to @var{function}, which is a
feca2ed3
JW
4822@code{FUNCTION_DECL}. This is a direct pure jump, not a call, and does
4823not touch the return address. Hence returning from @var{FUNCTION} will
4824return to whoever called the current @samp{thunk}.
4825
4826The effect must be as if @var{function} had been called directly with
4827the adjusted first argument. This macro is responsible for emitting all
08c148a8
NB
4828of the code for a thunk function; @code{TARGET_ASM_FUNCTION_PROLOGUE}
4829and @code{TARGET_ASM_FUNCTION_EPILOGUE} are not invoked.
feca2ed3
JW
4830
4831The @var{thunk_fndecl} is redundant. (@var{delta} and @var{function}
4832have already been extracted from it.) It might possibly be useful on
4833some targets, but probably not.
4834
861bb6c1 4835If you do not define this macro, the target-independent code in the C++
c771326b 4836front end will generate a less efficient heavyweight thunk that calls
861bb6c1
JL
4837@var{function} instead of jumping to it. The generic approach does
4838not support varargs.
483ab821
MM
4839@end deftypefn
4840
9ddb66ef 4841@deftypefn {Target Hook} bool TARGET_ASM_CAN_OUTPUT_MI_THUNK (const_tree @var{thunk_fndecl}, HOST_WIDE_INT @var{delta}, HOST_WIDE_INT @var{vcall_offset}, const_tree @var{function})
65e71cd6
EB
4842A function that returns true if TARGET_ASM_OUTPUT_MI_THUNK would be able
4843to output the assembler code for the thunk function specified by the
4844arguments it is passed, and false otherwise. In the latter case, the
4845generic approach will be used by the C++ front end, with the limitations
4846previously exposed.
483ab821 4847@end deftypefn
feca2ed3
JW
4848
4849@node Profiling
4850@subsection Generating Code for Profiling
4851@cindex profiling, code generation
4852
4853These macros will help you generate code for profiling.
4854
a2c4f8e0 4855@defmac FUNCTION_PROFILER (@var{file}, @var{labelno})
feca2ed3
JW
4856A C statement or compound statement to output to @var{file} some
4857assembler code to call the profiling subroutine @code{mcount}.
feca2ed3
JW
4858
4859@findex mcount
980e2067 4860The details of how @code{mcount} expects to be called are determined by
161d7b59 4861your operating system environment, not by GCC@. To figure them out,
980e2067
JL
4862compile a small program for profiling using the system's installed C
4863compiler and look at the assembler code that results.
4864
4865Older implementations of @code{mcount} expect the address of a counter
4866variable to be loaded into some register. The name of this variable is
4867@samp{LP} followed by the number @var{labelno}, so you would generate
4868the name using @samp{LP%d} in a @code{fprintf}.
a2c4f8e0 4869@end defmac
980e2067 4870
a2c4f8e0 4871@defmac PROFILE_HOOK
411707f4
CC
4872A C statement or compound statement to output to @var{file} some assembly
4873code to call the profiling subroutine @code{mcount} even the target does
4874not support profiling.
a2c4f8e0 4875@end defmac
411707f4 4876
a2c4f8e0 4877@defmac NO_PROFILE_COUNTERS
8b65a354
JZ
4878Define this macro to be an expression with a nonzero value if the
4879@code{mcount} subroutine on your system does not need a counter variable
4880allocated for each function. This is true for almost all modern
4881implementations. If you define this macro, you must not use the
4882@var{labelno} argument to @code{FUNCTION_PROFILER}.
a2c4f8e0 4883@end defmac
feca2ed3 4884
a2c4f8e0 4885@defmac PROFILE_BEFORE_PROLOGUE
feca2ed3
JW
4886Define this macro if the code for function profiling should come before
4887the function prologue. Normally, the profiling code comes after.
a2c4f8e0 4888@end defmac
feca2ed3 4889
91d231cb
JM
4890@node Tail Calls
4891@subsection Permitting tail calls
4892@cindex tail calls
b36f4ed3 4893
4977bab6
ZW
4894@deftypefn {Target Hook} bool TARGET_FUNCTION_OK_FOR_SIBCALL (tree @var{decl}, tree @var{exp})
4895True if it is ok to do sibling call optimization for the specified
4896call expression @var{exp}. @var{decl} will be the called function,
4897or @code{NULL} if this is an indirect call.
4cb1433c
RH
4898
4899It is not uncommon for limitations of calling conventions to prevent
4900tail calls to functions outside the current unit of translation, or
4977bab6 4901during PIC compilation. The hook is used to enforce these restrictions,
02f52e19 4902as the @code{sibcall} md pattern can not fail, or fall over to a
4977bab6
ZW
4903``normal'' call. The criteria for successful sibling call optimization
4904may vary greatly between different architectures.
4905@end deftypefn
4cb1433c 4906
9ddb66ef 4907@deftypefn {Target Hook} void TARGET_EXTRA_LIVE_ON_ENTRY (bitmap @var{regs})
912f2dac
DB
4908Add any hard registers to @var{regs} that are live on entry to the
4909function. This hook only needs to be defined to provide registers that
4910cannot be found by examination of FUNCTION_ARG_REGNO_P, the callee saved
4911registers, STATIC_CHAIN_INCOMING_REGNUM, STATIC_CHAIN_REGNUM,
4912TARGET_STRUCT_VALUE_RTX, FRAME_POINTER_REGNUM, EH_USES,
4913FRAME_POINTER_REGNUM, ARG_POINTER_REGNUM, and the PIC_OFFSET_TABLE_REGNUM.
4914@end deftypefn
4915
7d69de61
RH
4916@node Stack Smashing Protection
4917@subsection Stack smashing protection
4918@cindex stack smashing protection
4919
4920@deftypefn {Target Hook} tree TARGET_STACK_PROTECT_GUARD (void)
4921This hook returns a @code{DECL} node for the external variable to use
083cad55 4922for the stack protection guard. This variable is initialized by the
7d69de61
RH
4923runtime to some random value and is used to initialize the guard value
4924that is placed at the top of the local stack frame. The type of this
4925variable must be @code{ptr_type_node}.
4926
4927The default version of this hook creates a variable called
4928@samp{__stack_chk_guard}, which is normally defined in @file{libgcc2.c}.
4929@end deftypefn
4930
4931@deftypefn {Target Hook} tree TARGET_STACK_PROTECT_FAIL (void)
4932This hook returns a tree expression that alerts the runtime that the
4933stack protect guard variable has been modified. This expression should
4934involve a call to a @code{noreturn} function.
4935
4936The default version of this hook invokes a function called
083cad55 4937@samp{__stack_chk_fail}, taking no arguments. This function is
7d69de61
RH
4938normally defined in @file{libgcc2.c}.
4939@end deftypefn
4940
7458026b
ILT
4941@deftypefn {Target Hook} bool TARGET_SUPPORTS_SPLIT_STACK (bool)
4942Whether this target supports splitting the stack. This is called after options have been parsed, so the target may reject splitting the stack in some configurations. The default version of this hook returns false. If @var{report} is true, this function may issue a warning or error; if @var{report} is false, it must simply return a value
4943@end deftypefn
4944
feca2ed3
JW
4945@node Varargs
4946@section Implementing the Varargs Macros
4947@cindex varargs implementation
4948
aee96fe9
JM
4949GCC comes with an implementation of @code{<varargs.h>} and
4950@code{<stdarg.h>} that work without change on machines that pass arguments
feca2ed3
JW
4951on the stack. Other machines require their own implementations of
4952varargs, and the two machine independent header files must have
4953conditionals to include it.
4954
aee96fe9 4955ISO @code{<stdarg.h>} differs from traditional @code{<varargs.h>} mainly in
feca2ed3
JW
4956the calling convention for @code{va_start}. The traditional
4957implementation takes just one argument, which is the variable in which
5490d604 4958to store the argument pointer. The ISO implementation of
feca2ed3
JW
4959@code{va_start} takes an additional second argument. The user is
4960supposed to write the last named argument of the function here.
4961
4962However, @code{va_start} should not use this argument. The way to find
4963the end of the named arguments is with the built-in functions described
4964below.
4965
a2c4f8e0 4966@defmac __builtin_saveregs ()
feca2ed3 4967Use this built-in function to save the argument registers in memory so
5490d604 4968that the varargs mechanism can access them. Both ISO and traditional
feca2ed3 4969versions of @code{va_start} must use @code{__builtin_saveregs}, unless
c2379679 4970you use @code{TARGET_SETUP_INCOMING_VARARGS} (see below) instead.
feca2ed3
JW
4971
4972On some machines, @code{__builtin_saveregs} is open-coded under the
f61c92c3
KH
4973control of the target hook @code{TARGET_EXPAND_BUILTIN_SAVEREGS}. On
4974other machines, it calls a routine written in assembler language,
4975found in @file{libgcc2.c}.
feca2ed3
JW
4976
4977Code generated for the call to @code{__builtin_saveregs} appears at the
4978beginning of the function, as opposed to where the call to
4979@code{__builtin_saveregs} is written, regardless of what the code is.
4980This is because the registers must be saved before the function starts
4981to use them for its own purposes.
4982@c i rewrote the first sentence above to fix an overfull hbox. --mew
4983@c 10feb93
a2c4f8e0 4984@end defmac
feca2ed3 4985
a2c4f8e0 4986@defmac __builtin_next_arg (@var{lastarg})
c59a0a1d 4987This builtin returns the address of the first anonymous stack
767094dd 4988argument, as type @code{void *}. If @code{ARGS_GROW_DOWNWARD}, it
feca2ed3
JW
4989returns the address of the location above the first anonymous stack
4990argument. Use it in @code{va_start} to initialize the pointer for
4991fetching arguments from the stack. Also use it in @code{va_start} to
4992verify that the second parameter @var{lastarg} is the last named argument
4993of the current function.
a2c4f8e0 4994@end defmac
feca2ed3 4995
a2c4f8e0 4996@defmac __builtin_classify_type (@var{object})
feca2ed3
JW
4997Since each machine has its own conventions for which data types are
4998passed in which kind of register, your implementation of @code{va_arg}
4999has to embody these conventions. The easiest way to categorize the
5000specified data type is to use @code{__builtin_classify_type} together
5001with @code{sizeof} and @code{__alignof__}.
5002
5003@code{__builtin_classify_type} ignores the value of @var{object},
5004considering only its data type. It returns an integer describing what
5005kind of type that is---integer, floating, pointer, structure, and so on.
5006
5007The file @file{typeclass.h} defines an enumeration that you can use to
5008interpret the values of @code{__builtin_classify_type}.
a2c4f8e0 5009@end defmac
feca2ed3
JW
5010
5011These machine description macros help implement varargs:
5012
61f71b34
DD
5013@deftypefn {Target Hook} rtx TARGET_EXPAND_BUILTIN_SAVEREGS (void)
5014If defined, this hook produces the machine-specific code for a call to
5015@code{__builtin_saveregs}. This code will be moved to the very
5016beginning of the function, before any parameter access are made. The
5017return value of this function should be an RTX that contains the value
5018to use as the return of @code{__builtin_saveregs}.
5019@end deftypefn
feca2ed3 5020
61f71b34
DD
5021@deftypefn {Target Hook} void TARGET_SETUP_INCOMING_VARARGS (CUMULATIVE_ARGS *@var{args_so_far}, enum machine_mode @var{mode}, tree @var{type}, int *@var{pretend_args_size}, int @var{second_time})
5022This target hook offers an alternative to using
5023@code{__builtin_saveregs} and defining the hook
5024@code{TARGET_EXPAND_BUILTIN_SAVEREGS}. Use it to store the anonymous
5025register arguments into the stack so that all the arguments appear to
5026have been passed consecutively on the stack. Once this is done, you can
5027use the standard implementation of varargs that works for machines that
5028pass all their arguments on the stack.
feca2ed3 5029
61f71b34 5030The argument @var{args_so_far} points to the @code{CUMULATIVE_ARGS} data
8760eaae 5031structure, containing the values that are obtained after processing the
feca2ed3
JW
5032named arguments. The arguments @var{mode} and @var{type} describe the
5033last named argument---its machine mode and its data type as a tree node.
5034
61f71b34
DD
5035The target hook should do two things: first, push onto the stack all the
5036argument registers @emph{not} used for the named arguments, and second,
5037store the size of the data thus pushed into the @code{int}-valued
5038variable pointed to by @var{pretend_args_size}. The value that you
5039store here will serve as additional offset for setting up the stack
5040frame.
feca2ed3
JW
5041
5042Because you must generate code to push the anonymous arguments at
5043compile time without knowing their data types,
61f71b34
DD
5044@code{TARGET_SETUP_INCOMING_VARARGS} is only useful on machines that
5045have just a single category of argument register and use it uniformly
5046for all data types.
feca2ed3
JW
5047
5048If the argument @var{second_time} is nonzero, it means that the
5049arguments of the function are being analyzed for the second time. This
5050happens for an inline function, which is not actually compiled until the
61f71b34 5051end of the source file. The hook @code{TARGET_SETUP_INCOMING_VARARGS} should
feca2ed3 5052not generate any instructions in this case.
61f71b34 5053@end deftypefn
feca2ed3 5054
61f71b34
DD
5055@deftypefn {Target Hook} bool TARGET_STRICT_ARGUMENT_NAMING (CUMULATIVE_ARGS *@var{ca})
5056Define this hook to return @code{true} if the location where a function
e5e809f4 5057argument is passed depends on whether or not it is a named argument.
feca2ed3 5058
61f71b34
DD
5059This hook controls how the @var{named} argument to @code{FUNCTION_ARG}
5060is set for varargs and stdarg functions. If this hook returns
5061@code{true}, the @var{named} argument is always true for named
5062arguments, and false for unnamed arguments. If it returns @code{false},
5b4ef0b1 5063but @code{TARGET_PRETEND_OUTGOING_VARARGS_NAMED} returns @code{true},
61f71b34
DD
5064then all arguments are treated as named. Otherwise, all named arguments
5065except the last are treated as named.
e5e809f4 5066
9ddb66ef 5067You need not define this hook if it always returns @code{false}.
61f71b34 5068@end deftypefn
9ab70a9b 5069
9ddb66ef 5070@deftypefn {Target Hook} bool TARGET_PRETEND_OUTGOING_VARARGS_NAMED (CUMULATIVE_ARGS *@var{ca})
9ab70a9b 5071If you need to conditionally change ABIs so that one works with
61f71b34
DD
5072@code{TARGET_SETUP_INCOMING_VARARGS}, but the other works like neither
5073@code{TARGET_SETUP_INCOMING_VARARGS} nor @code{TARGET_STRICT_ARGUMENT_NAMING} was
5074defined, then define this hook to return @code{true} if
c2379679 5075@code{TARGET_SETUP_INCOMING_VARARGS} is used, @code{false} otherwise.
61f71b34
DD
5076Otherwise, you should not define this hook.
5077@end deftypefn
feca2ed3
JW
5078
5079@node Trampolines
5080@section Trampolines for Nested Functions
5081@cindex trampolines for nested functions
5082@cindex nested functions, trampolines for
5083
5084A @dfn{trampoline} is a small piece of code that is created at run time
5085when the address of a nested function is taken. It normally resides on
5086the stack, in the stack frame of the containing function. These macros
a3a15b4d 5087tell GCC how to generate code to allocate and initialize a
feca2ed3
JW
5088trampoline.
5089
5090The instructions in the trampoline must do two things: load a constant
5091address into the static chain register, and jump to the real address of
5092the nested function. On CISC machines such as the m68k, this requires
5093two instructions, a move immediate and a jump. Then the two addresses
5094exist in the trampoline as word-long immediate operands. On RISC
5095machines, it is often necessary to load each address into a register in
5096two parts. Then pieces of each address form separate immediate
5097operands.
5098
5099The code generated to initialize the trampoline must store the variable
5100parts---the static chain value and the function address---into the
5101immediate operands of the instructions. On a CISC machine, this is
5102simply a matter of copying each address to a memory reference at the
5103proper offset from the start of the trampoline. On a RISC machine, it
5104may be necessary to take out pieces of the address and store them
5105separately.
5106
531ca746
RH
5107@deftypefn {Target Hook} void TARGET_ASM_TRAMPOLINE_TEMPLATE (FILE *@var{f})
5108This hook is called by @code{assemble_trampoline_template} to output,
5109on the stream @var{f}, assembler code for a block of data that contains
5110the constant parts of a trampoline. This code should not include a
5111label---the label is taken care of automatically.
feca2ed3 5112
531ca746
RH
5113If you do not define this hook, it means no template is needed
5114for the target. Do not define this hook on systems where the block move
feca2ed3
JW
5115code to copy the trampoline into place would be larger than the code
5116to generate it on the spot.
531ca746 5117@end deftypefn
feca2ed3 5118
a2c4f8e0 5119@defmac TRAMPOLINE_SECTION
d6b5193b
RS
5120Return the section into which the trampoline template is to be placed
5121(@pxref{Sections}). The default value is @code{readonly_data_section}.
a2c4f8e0 5122@end defmac
feca2ed3 5123
a2c4f8e0 5124@defmac TRAMPOLINE_SIZE
feca2ed3 5125A C expression for the size in bytes of the trampoline, as an integer.
a2c4f8e0 5126@end defmac
feca2ed3 5127
a2c4f8e0 5128@defmac TRAMPOLINE_ALIGNMENT
feca2ed3
JW
5129Alignment required for trampolines, in bits.
5130
531ca746 5131If you don't define this macro, the value of @code{FUNCTION_ALIGNMENT}
feca2ed3 5132is used for aligning trampolines.
a2c4f8e0 5133@end defmac
feca2ed3 5134
531ca746
RH
5135@deftypefn {Target Hook} void TARGET_TRAMPOLINE_INIT (rtx @var{m_tramp}, tree @var{fndecl}, rtx @var{static_chain})
5136This hook is called to initialize a trampoline.
5137@var{m_tramp} is an RTX for the memory block for the trampoline; @var{fndecl}
5138is the @code{FUNCTION_DECL} for the nested function; @var{static_chain} is an
feca2ed3
JW
5139RTX for the static chain value that should be passed to the function
5140when it is called.
5141
531ca746
RH
5142If the target defines @code{TARGET_ASM_TRAMPOLINE_TEMPLATE}, then the
5143first thing this hook should do is emit a block move into @var{m_tramp}
5144from the memory block returned by @code{assemble_trampoline_template}.
5145Note that the block move need only cover the constant parts of the
5146trampoline. If the target isolates the variable parts of the trampoline
5147to the end, not all @code{TRAMPOLINE_SIZE} bytes need be copied.
b33493e3 5148
531ca746
RH
5149If the target requires any other actions, such as flushing caches or
5150enabling stack execution, these actions should be performed after
5151initializing the trampoline proper.
5152@end deftypefn
5153
5154@deftypefn {Target Hook} rtx TARGET_TRAMPOLINE_ADJUST_ADDRESS (rtx @var{addr})
5155This hook should perform any machine-specific adjustment in
5156the address of the trampoline. Its argument contains the address of the
5157memory block that was passed to @code{TARGET_TRAMPOLINE_INIT}. In case
5158the address to be used for a function call should be different from the
5159address at which the template was stored, the different address should
5160be returned; otherwise @var{addr} should be returned unchanged.
5161If this hook is not defined, @var{addr} will be used for function calls.
5162@end deftypefn
feca2ed3
JW
5163
5164Implementing trampolines is difficult on many machines because they have
5165separate instruction and data caches. Writing into a stack location
5166fails to clear the memory in the instruction cache, so when the program
5167jumps to that location, it executes the old contents.
5168
5169Here are two possible solutions. One is to clear the relevant parts of
5170the instruction cache whenever a trampoline is set up. The other is to
5171make all trampolines identical, by having them jump to a standard
5172subroutine. The former technique makes trampoline execution faster; the
5173latter makes initialization faster.
5174
5175To clear the instruction cache when a trampoline is initialized, define
f691dc3b 5176the following macro.
feca2ed3 5177
a2c4f8e0 5178@defmac CLEAR_INSN_CACHE (@var{beg}, @var{end})
feca2ed3 5179If defined, expands to a C expression clearing the @emph{instruction
f691dc3b
AJ
5180cache} in the specified interval. The definition of this macro would
5181typically be a series of @code{asm} statements. Both @var{beg} and
5182@var{end} are both pointer expressions.
a2c4f8e0 5183@end defmac
feca2ed3 5184
e7a742ec
EB
5185The operating system may also require the stack to be made executable
5186before calling the trampoline. To implement this requirement, define
5187the following macro.
5188
5189@defmac ENABLE_EXECUTE_STACK
5190Define this macro if certain operations must be performed before executing
5191code located on the stack. The macro should expand to a series of C
431ae0bf 5192file-scope constructs (e.g.@: functions) and provide a unique entry point
e7a742ec
EB
5193named @code{__enable_execute_stack}. The target is responsible for
5194emitting calls to the entry point in the code, for example from the
531ca746 5195@code{TARGET_TRAMPOLINE_INIT} hook.
e7a742ec
EB
5196@end defmac
5197
feca2ed3
JW
5198To use a standard subroutine, define the following macro. In addition,
5199you must make sure that the instructions in a trampoline fill an entire
5200cache line with identical instructions, or else ensure that the
5201beginning of the trampoline code is always aligned at the same point in
5202its cache line. Look in @file{m68k.h} as a guide.
5203
a2c4f8e0 5204@defmac TRANSFER_FROM_TRAMPOLINE
feca2ed3
JW
5205Define this macro if trampolines need a special subroutine to do their
5206work. The macro should expand to a series of @code{asm} statements
161d7b59 5207which will be compiled with GCC@. They go in a library function named
feca2ed3
JW
5208@code{__transfer_from_trampoline}.
5209
5210If you need to avoid executing the ordinary prologue code of a compiled
5211C function when you jump to the subroutine, you can do so by placing a
5212special label of your own in the assembler code. Use one @code{asm}
5213statement to generate an assembler label, and another to make the label
5214global. Then trampolines can use that label to jump directly to your
5215special assembler code.
a2c4f8e0 5216@end defmac
feca2ed3
JW
5217
5218@node Library Calls
5219@section Implicit Calls to Library Routines
5220@cindex library subroutine names
5221@cindex @file{libgcc.a}
5222
5223@c prevent bad page break with this line
5224Here is an explanation of implicit calls to library routines.
5225
a2c4f8e0 5226@defmac DECLARE_LIBRARY_RENAMES
d8088c6f
BS
5227This macro, if defined, should expand to a piece of C code that will get
5228expanded when compiling functions for libgcc.a. It can be used to
2dd76960 5229provide alternate names for GCC's internal library functions if there
d8088c6f 5230are ABI-mandated names that the compiler should provide.
a2c4f8e0 5231@end defmac
d8088c6f 5232
c15c90bb 5233@findex set_optab_libfunc
914d25dc 5234@findex init_one_libfunc
c15c90bb
ZW
5235@deftypefn {Target Hook} void TARGET_INIT_LIBFUNCS (void)
5236This hook should declare additional library routines or rename
5237existing ones, using the functions @code{set_optab_libfunc} and
5238@code{init_one_libfunc} defined in @file{optabs.c}.
5239@code{init_optabs} calls this macro after initializing all the normal
5240library routines.
feca2ed3 5241
c15c90bb
ZW
5242The default is to do nothing. Most ports don't need to define this hook.
5243@end deftypefn
c5c60e15 5244
9c917669 5245@defmac FLOAT_LIB_COMPARE_RETURNS_BOOL (@var{mode}, @var{comparison})
c15c90bb
ZW
5246This macro should return @code{true} if the library routine that
5247implements the floating point comparison operator @var{comparison} in
5248mode @var{mode} will return a boolean, and @var{false} if it will
5249return a tristate.
5250
5251GCC's own floating point libraries return tristates from the
5252comparison operators, so the default returns false always. Most ports
5253don't need to define this macro.
5254@end defmac
5255
b3f8d95d
MM
5256@defmac TARGET_LIB_INT_CMP_BIASED
5257This macro should evaluate to @code{true} if the integer comparison
5258functions (like @code{__cmpdi2}) return 0 to indicate that the first
5259operand is smaller than the second, 1 to indicate that they are equal,
5260and 2 to indicate that the first operand is greater than the second.
38b974a6 5261If this macro evaluates to @code{false} the comparison functions return
78466c0e 5262@minus{}1, 0, and 1 instead of 0, 1, and 2. If the target uses the routines
b3f8d95d
MM
5263in @file{libgcc.a}, you do not need to define this macro.
5264@end defmac
5265
c15c90bb
ZW
5266@cindex US Software GOFAST, floating point emulation library
5267@cindex floating point emulation library, US Software GOFAST
5268@cindex GOFAST, floating point emulation library
5269@findex gofast_maybe_init_libfuncs
5270@defmac US_SOFTWARE_GOFAST
5271Define this macro if your system C library uses the US Software GOFAST
73774972 5272library to provide floating point emulation.
c15c90bb
ZW
5273
5274In addition to defining this macro, your architecture must set
5275@code{TARGET_INIT_LIBFUNCS} to @code{gofast_maybe_init_libfuncs}, or
5276else call that function from its version of that hook. It is defined
5277in @file{config/gofast.h}, which must be included by your
5278architecture's @file{@var{cpu}.c} file. See @file{sparc/sparc.c} for
5279an example.
5280
5281If this macro is defined, the
5282@code{TARGET_FLOAT_LIB_COMPARE_RETURNS_BOOL} target hook must return
5283false for @code{SFmode} and @code{DFmode} comparisons.
a2c4f8e0 5284@end defmac
c5c60e15 5285
feca2ed3 5286@cindex @code{EDOM}, implicit usage
a2c4f8e0
ZW
5287@findex matherr
5288@defmac TARGET_EDOM
feca2ed3 5289The value of @code{EDOM} on the target machine, as a C integer constant
a3a15b4d 5290expression. If you don't define this macro, GCC does not attempt to
feca2ed3
JW
5291deposit the value of @code{EDOM} into @code{errno} directly. Look in
5292@file{/usr/include/errno.h} to find the value of @code{EDOM} on your
5293system.
5294
5295If you do not define @code{TARGET_EDOM}, then compiled code reports
5296domain errors by calling the library function and letting it report the
5297error. If mathematical functions on your system use @code{matherr} when
5298there is an error, then you should leave @code{TARGET_EDOM} undefined so
5299that @code{matherr} is used normally.
a2c4f8e0 5300@end defmac
feca2ed3 5301
feca2ed3 5302@cindex @code{errno}, implicit usage
a2c4f8e0 5303@defmac GEN_ERRNO_RTX
feca2ed3
JW
5304Define this macro as a C expression to create an rtl expression that
5305refers to the global ``variable'' @code{errno}. (On certain systems,
5306@code{errno} may not actually be a variable.) If you don't define this
5307macro, a reasonable default is used.
a2c4f8e0 5308@end defmac
feca2ed3 5309
272f51a3 5310@cindex C99 math functions, implicit usage
a2c4f8e0 5311@defmac TARGET_C99_FUNCTIONS
272f51a3 5312When this macro is nonzero, GCC will implicitly optimize @code{sin} calls into
3bcf1b13 5313@code{sinf} and similarly for other functions defined by C99 standard. The
5472de36
SE
5314default is zero because a number of existing systems lack support for these
5315functions in their runtime so this macro needs to be redefined to one on
5316systems that do support the C99 runtime.
a2c4f8e0 5317@end defmac
272f51a3 5318
006339cd
RG
5319@cindex sincos math function, implicit usage
5320@defmac TARGET_HAS_SINCOS
5321When this macro is nonzero, GCC will implicitly optimize calls to @code{sin}
5322and @code{cos} with the same argument to a call to @code{sincos}. The
5323default is zero. The target has to provide the following functions:
5324@smallexample
5325void sincos(double x, double *sin, double *cos);
5326void sincosf(float x, float *sin, float *cos);
5327void sincosl(long double x, long double *sin, long double *cos);
5328@end smallexample
5329@end defmac
5330
a2c4f8e0 5331@defmac NEXT_OBJC_RUNTIME
2147b154 5332Define this macro to generate code for Objective-C message sending using
feca2ed3
JW
5333the calling convention of the NeXT system. This calling convention
5334involves passing the object, the selector and the method arguments all
5335at once to the method-lookup library function.
5336
5337The default calling convention passes just the object and the selector
5338to the lookup function, which returns a pointer to the method.
a2c4f8e0 5339@end defmac
feca2ed3
JW
5340
5341@node Addressing Modes
5342@section Addressing Modes
5343@cindex addressing modes
5344
5345@c prevent bad page break with this line
5346This is about addressing modes.
5347
a2c4f8e0
ZW
5348@defmac HAVE_PRE_INCREMENT
5349@defmacx HAVE_PRE_DECREMENT
5350@defmacx HAVE_POST_INCREMENT
5351@defmacx HAVE_POST_DECREMENT
df2a54e9 5352A C expression that is nonzero if the machine supports pre-increment,
7a6bd5ae 5353pre-decrement, post-increment, or post-decrement addressing respectively.
a2c4f8e0 5354@end defmac
feca2ed3 5355
a2c4f8e0
ZW
5356@defmac HAVE_PRE_MODIFY_DISP
5357@defmacx HAVE_POST_MODIFY_DISP
df2a54e9 5358A C expression that is nonzero if the machine supports pre- or
7a6bd5ae
JL
5359post-address side-effect generation involving constants other than
5360the size of the memory operand.
a2c4f8e0 5361@end defmac
864bcaa7 5362
a2c4f8e0
ZW
5363@defmac HAVE_PRE_MODIFY_REG
5364@defmacx HAVE_POST_MODIFY_REG
df2a54e9 5365A C expression that is nonzero if the machine supports pre- or
7a6bd5ae 5366post-address side-effect generation involving a register displacement.
a2c4f8e0 5367@end defmac
864bcaa7 5368
a2c4f8e0 5369@defmac CONSTANT_ADDRESS_P (@var{x})
feca2ed3 5370A C expression that is 1 if the RTX @var{x} is a constant which
65a324b4
NC
5371is a valid address. On most machines the default definition of
5372@code{(CONSTANT_P (@var{x}) && GET_CODE (@var{x}) != CONST_DOUBLE)}
5373is acceptable, but a few machines are more restrictive as to which
5374constant addresses are supported.
a2c4f8e0 5375@end defmac
feca2ed3 5376
a2c4f8e0
ZW
5377@defmac CONSTANT_P (@var{x})
5378@code{CONSTANT_P}, which is defined by target-independent code,
5379accepts integer-values expressions whose values are not explicitly
5380known, such as @code{symbol_ref}, @code{label_ref}, and @code{high}
5381expressions and @code{const} arithmetic expressions, in addition to
5382@code{const_int} and @code{const_double} expressions.
5383@end defmac
feca2ed3 5384
a2c4f8e0 5385@defmac MAX_REGS_PER_ADDRESS
feca2ed3
JW
5386A number, the maximum number of registers that can appear in a valid
5387memory address. Note that it is up to you to specify a value equal to
c6c3dba9 5388the maximum number that @code{TARGET_LEGITIMATE_ADDRESS_P} would ever
feca2ed3 5389accept.
a2c4f8e0 5390@end defmac
feca2ed3 5391
914d25dc 5392@deftypefn {Target Hook} bool TARGET_LEGITIMATE_ADDRESS_P (enum machine_mode @var{mode}, rtx @var{x}, bool @var{strict})
c6c3dba9
PB
5393A function that returns whether @var{x} (an RTX) is a legitimate memory
5394address on the target machine for a memory operand of mode @var{mode}.
feca2ed3 5395
c6c3dba9 5396Legitimate addresses are defined in two variants: a strict variant and a
914d25dc 5397non-strict one. The @var{strict} parameter chooses which variant is
c6c3dba9 5398desired by the caller.
feca2ed3 5399
c6c3dba9
PB
5400The strict variant is used in the reload pass. It must be defined so
5401that any pseudo-register that has not been allocated a hard register is
5402considered a memory reference. This is because in contexts where some
5403kind of register is required, a pseudo-register with no hard register
5404must be rejected. For non-hard registers, the strict variant should look
5405up the @code{reg_renumber} array; it should then proceed using the hard
5406register number in the array, or treat the pseudo as a memory reference
5407if the array holds @code{-1}.
feca2ed3
JW
5408
5409The non-strict variant is used in other passes. It must be defined to
5410accept all pseudo-registers in every context where some kind of
5411register is required.
5412
feca2ed3
JW
5413Normally, constant addresses which are the sum of a @code{symbol_ref}
5414and an integer are stored inside a @code{const} RTX to mark them as
5415constant. Therefore, there is no need to recognize such sums
5416specifically as legitimate addresses. Normally you would simply
5417recognize any @code{const} as legitimate.
5418
5419Usually @code{PRINT_OPERAND_ADDRESS} is not prepared to handle constant
5420sums that are not marked with @code{const}. It assumes that a naked
5421@code{plus} indicates indexing. If so, then you @emph{must} reject such
5422naked constant sums as illegitimate addresses, so that none of them will
5423be given to @code{PRINT_OPERAND_ADDRESS}.
5424
fb49053f 5425@cindex @code{TARGET_ENCODE_SECTION_INFO} and address validation
feca2ed3
JW
5426On some machines, whether a symbolic address is legitimate depends on
5427the section that the address refers to. On these machines, define the
fb49053f
RH
5428target hook @code{TARGET_ENCODE_SECTION_INFO} to store the information
5429into the @code{symbol_ref}, and then check for it here. When you see a
feca2ed3
JW
5430@code{const}, you will have to look inside it to find the
5431@code{symbol_ref} in order to determine the section. @xref{Assembler
5432Format}.
c6c3dba9
PB
5433
5434@cindex @code{GO_IF_LEGITIMATE_ADDRESS}
5435Some ports are still using a deprecated legacy substitute for
5436this hook, the @code{GO_IF_LEGITIMATE_ADDRESS} macro. This macro
5437has this syntax:
5438
5439@example
5440#define GO_IF_LEGITIMATE_ADDRESS (@var{mode}, @var{x}, @var{label})
5441@end example
5442
5443@noindent
5444and should @code{goto @var{label}} if the address @var{x} is a valid
5445address on the target machine for a memory operand of mode @var{mode}.
6f7b223b
PK
5446
5447@findex REG_OK_STRICT
5448Compiler source files that want to use the strict variant of this
5449macro define the macro @code{REG_OK_STRICT}. You should use an
5450@code{#ifdef REG_OK_STRICT} conditional to define the strict variant in
5451that case and the non-strict variant otherwise.
5452
c6c3dba9
PB
5453Using the hook is usually simpler because it limits the number of
5454files that are recompiled when changes are made.
5455@end deftypefn
feca2ed3 5456
a4edaf83
AK
5457@defmac TARGET_MEM_CONSTRAINT
5458A single character to be used instead of the default @code{'m'}
5459character for general memory addresses. This defines the constraint
5460letter which matches the memory addresses accepted by
c6c3dba9 5461@code{TARGET_LEGITIMATE_ADDRESS_P}. Define this macro if you want to
a4edaf83
AK
5462support new address formats in your back end without changing the
5463semantics of the @code{'m'} constraint. This is necessary in order to
5464preserve functionality of inline assembly constructs using the
5465@code{'m'} constraint.
5466@end defmac
5467
a2c4f8e0 5468@defmac FIND_BASE_TERM (@var{x})
a9e6fc5a
RS
5469A C expression to determine the base term of address @var{x},
5470or to provide a simplified version of @var{x} from which @file{alias.c}
53451050
RS
5471can easily find the base term. This macro is used in only two places:
5472@code{find_base_value} and @code{find_base_term} in @file{alias.c}.
b949ea8b
JW
5473
5474It is always safe for this macro to not be defined. It exists so
5475that alias analysis can understand machine-dependent addresses.
5476
5477The typical use of this macro is to handle addresses containing
161d7b59 5478a label_ref or symbol_ref within an UNSPEC@.
a2c4f8e0 5479@end defmac
b949ea8b 5480
506d7b68
PB
5481@deftypefn {Target Hook} rtx TARGET_LEGITIMIZE_ADDRESS (rtx @var{x}, rtx @var{oldx}, enum machine_mode @var{mode})
5482This hook is given an invalid memory address @var{x} for an
5483operand of mode @var{mode} and should try to return a valid memory
5484address.
feca2ed3
JW
5485
5486@findex break_out_memory_refs
5487@var{x} will always be the result of a call to @code{break_out_memory_refs},
5488and @var{oldx} will be the operand that was given to that function to produce
5489@var{x}.
5490
506d7b68 5491The code of the hook should not alter the substructure of
feca2ed3 5492@var{x}. If it transforms @var{x} into a more legitimate form, it
506d7b68 5493should return the new @var{x}.
feca2ed3 5494
506d7b68
PB
5495It is not necessary for this hook to come up with a legitimate address.
5496The compiler has standard ways of doing so in all cases. In fact, it
5497is safe to omit this hook or make it return @var{x} if it cannot find
5498a valid way to legitimize the address. But often a machine-dependent
5499strategy can generate better code.
5500@end deftypefn
feca2ed3 5501
a2c4f8e0 5502@defmac LEGITIMIZE_RELOAD_ADDRESS (@var{x}, @var{mode}, @var{opnum}, @var{type}, @var{ind_levels}, @var{win})
a9a2595b
JR
5503A C compound statement that attempts to replace @var{x}, which is an address
5504that needs reloading, with a valid memory address for an operand of mode
5505@var{mode}. @var{win} will be a C statement label elsewhere in the code.
5506It is not necessary to define this macro, but it might be useful for
02f52e19 5507performance reasons.
a9a2595b
JR
5508
5509For example, on the i386, it is sometimes possible to use a single
5510reload register instead of two by reloading a sum of two pseudo
5511registers into a register. On the other hand, for number of RISC
5512processors offsets are limited so that often an intermediate address
5513needs to be generated in order to address a stack slot. By defining
aee96fe9 5514@code{LEGITIMIZE_RELOAD_ADDRESS} appropriately, the intermediate addresses
a9a2595b
JR
5515generated for adjacent some stack slots can be made identical, and thus
5516be shared.
5517
39bdfaa0
RH
5518@emph{Note}: This macro should be used with caution. It is necessary
5519to know something of how reload works in order to effectively use this,
5520and it is quite easy to produce macros that build in too much knowledge
5521of reload internals.
a9a2595b 5522
5f0c590d
JL
5523@emph{Note}: This macro must be able to reload an address created by a
5524previous invocation of this macro. If it fails to handle such addresses
5525then the compiler may generate incorrect code or abort.
5526
a9a2595b 5527@findex push_reload
39bdfaa0
RH
5528The macro definition should use @code{push_reload} to indicate parts that
5529need reloading; @var{opnum}, @var{type} and @var{ind_levels} are usually
5530suitable to be passed unaltered to @code{push_reload}.
a9a2595b 5531
39bdfaa0 5532The code generated by this macro must not alter the substructure of
a9a2595b
JR
5533@var{x}. If it transforms @var{x} into a more legitimate form, it
5534should assign @var{x} (which will always be a C variable) a new value.
5535This also applies to parts that you change indirectly by calling
5536@code{push_reload}.
5537
39bdfaa0
RH
5538@findex strict_memory_address_p
5539The macro definition may use @code{strict_memory_address_p} to test if
5540the address has become legitimate.
5541
a9a2595b
JR
5542@findex copy_rtx
5543If you want to change only a part of @var{x}, one standard way of doing
ab873839 5544this is to use @code{copy_rtx}. Note, however, that it unshares only a
a9a2595b 5545single level of rtl. Thus, if the part to be changed is not at the
c771326b 5546top level, you'll need to replace first the top level.
a9a2595b
JR
5547It is not necessary for this macro to come up with a legitimate
5548address; but often a machine-dependent strategy can generate better code.
a2c4f8e0 5549@end defmac
a9a2595b 5550
cbda7dc6
AS
5551@deftypefn {Target Hook} bool TARGET_MODE_DEPENDENT_ADDRESS_P (const_rtx @var{addr})
5552This hook returns @code{true} if memory address @var{addr} can have
5553different meanings depending on the machine mode of the memory
5554reference it is used for or if the address is valid for some modes
5555but not others.
5556
5557Autoincrement and autodecrement addresses typically have mode-dependent
5558effects because the amount of the increment or decrement is the size
5559of the operand being addressed. Some machines have other mode-dependent
5560addresses. Many RISC machines have no mode-dependent addresses.
5561
5562You may assume that @var{addr} is a valid address for the machine.
5563
5564The default version of this hook returns @code{false}.
5565@end deftypefn
5566
a2c4f8e0 5567@defmac GO_IF_MODE_DEPENDENT_ADDRESS (@var{addr}, @var{label})
feca2ed3
JW
5568A C statement or compound statement with a conditional @code{goto
5569@var{label};} executed if memory address @var{x} (an RTX) can have
5570different meanings depending on the machine mode of the memory
5571reference it is used for or if the address is valid for some modes
5572but not others.
5573
5574Autoincrement and autodecrement addresses typically have mode-dependent
5575effects because the amount of the increment or decrement is the size
5576of the operand being addressed. Some machines have other mode-dependent
5577addresses. Many RISC machines have no mode-dependent addresses.
5578
5579You may assume that @var{addr} is a valid address for the machine.
cbda7dc6
AS
5580
5581These are obsolete macros, replaced by the
5582@code{TARGET_MODE_DEPENDENT_ADDRESS_P} target hook.
a2c4f8e0 5583@end defmac
feca2ed3 5584
a2c4f8e0 5585@defmac LEGITIMATE_CONSTANT_P (@var{x})
feca2ed3
JW
5586A C expression that is nonzero if @var{x} is a legitimate constant for
5587an immediate operand on the target machine. You can assume that
5588@var{x} satisfies @code{CONSTANT_P}, so you need not check this. In fact,
5589@samp{1} is a suitable definition for this macro on machines where
bd819a4a 5590anything @code{CONSTANT_P} is valid.
a2c4f8e0 5591@end defmac
feca2ed3 5592
73f8783a
RS
5593@deftypefn {Target Hook} rtx TARGET_DELEGITIMIZE_ADDRESS (rtx @var{x})
5594This hook is used to undo the possibly obfuscating effects of the
5595@code{LEGITIMIZE_ADDRESS} and @code{LEGITIMIZE_RELOAD_ADDRESS} target
5596macros. Some backend implementations of these macros wrap symbol
5597references inside an @code{UNSPEC} rtx to represent PIC or similar
5598addressing modes. This target hook allows GCC's optimizers to understand
5599the semantics of these opaque @code{UNSPEC}s by converting them back
5600into their original form.
5601@end deftypefn
5602
d3da4d14
RH
5603@deftypefn {Target Hook} bool TARGET_CANNOT_FORCE_CONST_MEM (rtx @var{x})
5604This hook should return true if @var{x} is of a form that cannot (or
5605should not) be spilled to the constant pool. The default version of
5606this hook returns false.
5607
5608The primary reason to define this hook is to prevent reload from
5609deciding that a non-legitimate constant would be better reloaded
5610from the constant pool instead of spilling and reloading a register
5611holding the constant. This restriction is often true of addresses
5612of TLS symbols for various targets.
5613@end deftypefn
5614
b6fd8800 5615@deftypefn {Target Hook} bool TARGET_USE_BLOCKS_FOR_CONSTANT_P (enum machine_mode @var{mode}, const_rtx @var{x})
aacd3885
RS
5616This hook should return true if pool entries for constant @var{x} can
5617be placed in an @code{object_block} structure. @var{mode} is the mode
5618of @var{x}.
5619
5620The default version returns false for all constants.
5621@end deftypefn
5622
5eb7ce91 5623@deftypefn {Target Hook} tree TARGET_BUILTIN_RECIPROCAL (unsigned @var{fn}, bool @var{md_fn}, bool @var{sqrt})
6b889d89 5624This hook should return the DECL of a function that implements reciprocal of
ac10986f 5625the builtin function with builtin function code @var{fn}, or
5eb7ce91 5626@code{NULL_TREE} if such a function is not available. @var{md_fn} is true
ac10986f
UB
5627when @var{fn} is a code of a machine-dependent builtin function. When
5628@var{sqrt} is true, additional optimizations that apply only to the reciprocal
5629of a square root function are performed, and only reciprocals of @code{sqrt}
5630function are valid.
6b889d89
UB
5631@end deftypefn
5632
d16b59fa
DN
5633@deftypefn {Target Hook} tree TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD (void)
5634This hook should return the DECL of a function @var{f} that given an
5635address @var{addr} as an argument returns a mask @var{m} that can be
083cad55 5636used to extract from two vectors the relevant data that resides in
d16b59fa
DN
5637@var{addr} in case @var{addr} is not properly aligned.
5638
ab873839 5639The autovectorizer, when vectorizing a load operation from an address
d16b59fa
DN
5640@var{addr} that may be unaligned, will generate two vector loads from
5641the two aligned addresses around @var{addr}. It then generates a
5642@code{REALIGN_LOAD} operation to extract the relevant data from the
5643two loaded vectors. The first two arguments to @code{REALIGN_LOAD},
5644@var{v1} and @var{v2}, are the two vectors, each of size @var{VS}, and
5645the third argument, @var{OFF}, defines how the data will be extracted
5646from these two vectors: if @var{OFF} is 0, then the returned vector is
083cad55
EC
5647@var{v2}; otherwise, the returned vector is composed from the last
5648@var{VS}-@var{OFF} elements of @var{v1} concatenated to the first
d16b59fa
DN
5649@var{OFF} elements of @var{v2}.
5650
5651If this hook is defined, the autovectorizer will generate a call
5652to @var{f} (using the DECL tree that this hook returns) and will
5653use the return value of @var{f} as the argument @var{OFF} to
5654@code{REALIGN_LOAD}. Therefore, the mask @var{m} returned by @var{f}
083cad55 5655should comply with the semantics expected by @code{REALIGN_LOAD}
d16b59fa
DN
5656described above.
5657If this hook is not defined, then @var{addr} will be used as
5658the argument @var{OFF} to @code{REALIGN_LOAD}, in which case the low
8ad1dde7 5659log2(@var{VS}) @minus{} 1 bits of @var{addr} will be considered.
d16b59fa
DN
5660@end deftypefn
5661
89d67cca
DN
5662@deftypefn {Target Hook} tree TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN (tree @var{x})
5663This hook should return the DECL of a function @var{f} that implements
5664widening multiplication of the even elements of two input vectors of type @var{x}.
5665
5666If this hook is defined, the autovectorizer will use it along with the
5667@code{TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD} target hook when vectorizing
5668widening multiplication in cases that the order of the results does not have to be
021efafc 5669preserved (e.g.@: used only by a reduction computation). Otherwise, the
89d67cca
DN
5670@code{widen_mult_hi/lo} idioms will be used.
5671@end deftypefn
5672
5673@deftypefn {Target Hook} tree TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD (tree @var{x})
5674This hook should return the DECL of a function @var{f} that implements
5675widening multiplication of the odd elements of two input vectors of type @var{x}.
5676
5677If this hook is defined, the autovectorizer will use it along with the
5678@code{TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN} target hook when vectorizing
5679widening multiplication in cases that the order of the results does not have to be
021efafc 5680preserved (e.g.@: used only by a reduction computation). Otherwise, the
89d67cca
DN
5681@code{widen_mult_hi/lo} idioms will be used.
5682@end deftypefn
5683
720f5239 5684@deftypefn {Target Hook} int TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST (enum vect_cost_for_stmt @var{type_of_cost}, tree @var{vectype}, int @var{misalign})
35e1a5e7 5685Returns cost of different scalar or vector statements for vectorization cost model.
720f5239
IR
5686For vector memory operations the cost may depend on type (@var{vectype}) and
5687misalignment value (@var{misalign}).
a934eb2d
JR
5688@end deftypefn
5689
5690@deftypefn {Target Hook} bool TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE (const_tree @var{type}, bool @var{is_packed})
5691Return true if vector alignment is reachable (by peeling N iterations) for the given type.
5692@end deftypefn
5693
5694@deftypefn {Target Hook} tree TARGET_VECTORIZE_BUILTIN_VEC_PERM (tree @var{type}, tree *@var{mask_element_type})
5695Target builtin that implements vector permute.
5696@end deftypefn
5697
5698@deftypefn {Target Hook} bool TARGET_VECTORIZE_BUILTIN_VEC_PERM_OK (tree @var{vec_type}, tree @var{mask})
5699Return true if a vector created for @code{builtin_vec_perm} is valid.
5700@end deftypefn
5701
88dd7150 5702@deftypefn {Target Hook} tree TARGET_VECTORIZE_BUILTIN_CONVERSION (unsigned @var{code}, tree @var{dest_type}, tree @var{src_type})
f57d17f1 5703This hook should return the DECL of a function that implements conversion of the
88dd7150 5704input vector of type @var{src_type} to type @var{dest_type}.
a934eb2d
JR
5705The value of @var{code} is one of the enumerators in @code{enum tree_code} and
5706specifies how the conversion is to be applied
f57d17f1
TM
5707(truncation, rounding, etc.).
5708
5709If this hook is defined, the autovectorizer will use the
5710@code{TARGET_VECTORIZE_BUILTIN_CONVERSION} target hook when vectorizing
5711conversion. Otherwise, it will return @code{NULL_TREE}.
5712@end deftypefn
5713
62f7fd21
MM
5714@deftypefn {Target Hook} tree TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION (tree @var{fndecl}, tree @var{vec_type_out}, tree @var{vec_type_in})
5715This hook should return the decl of a function that implements the
5716vectorized variant of the builtin function with builtin function code
5717@var{code} or @code{NULL_TREE} if such a function is not available.
5718The value of @var{fndecl} is the builtin function declaration. The
5719return type of the vectorized function shall be of vector type
5720@var{vec_type_out} and the argument types should be @var{vec_type_in}.
2505a3f2
RG
5721@end deftypefn
5722
38f8b050 5723@deftypefn {Target Hook} bool TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT (enum machine_mode @var{mode}, const_tree @var{type}, int @var{misalignment}, bool @var{is_packed})
0601d0cf
RE
5724This hook should return true if the target supports misaligned vector
5725store/load of a specific factor denoted in the @var{misalignment}
5726parameter. The vector store/load should be of machine mode @var{mode} and
5727the elements in the vectors should be of type @var{type}. @var{is_packed}
5728parameter is true if the memory access is defined in a packed struct.
5729@end deftypefn
5730
cc4b5170
RG
5731@deftypefn {Target Hook} {enum machine_mode} TARGET_VECTORIZE_PREFERRED_SIMD_MODE (enum machine_mode @var{mode})
5732This hook should return the preferred mode for vectorizing scalar
5733mode @var{mode}. The default is
5734equal to @code{word_mode}, because the vectorizer can do some
26983c22
L
5735transformations even in absence of specialized @acronym{SIMD} hardware.
5736@end deftypefn
5737
767f865f
RG
5738@deftypefn {Target Hook} {unsigned int} TARGET_VECTORIZE_AUTOVECTORIZE_VECTOR_SIZES (void)
5739This hook should return a mask of sizes that should be iterated over
5740after trying to autovectorize using the vector size derived from the
5741mode returned by @code{TARGET_VECTORIZE_PREFERRED_SIMD_MODE}.
5742The default is zero which means to not iterate over other vector sizes.
5743@end deftypefn
5744
aacd3885
RS
5745@node Anchored Addresses
5746@section Anchored Addresses
5747@cindex anchored addresses
5748@cindex @option{-fsection-anchors}
5749
5750GCC usually addresses every static object as a separate entity.
5751For example, if we have:
5752
5753@smallexample
5754static int a, b, c;
5755int foo (void) @{ return a + b + c; @}
5756@end smallexample
5757
5758the code for @code{foo} will usually calculate three separate symbolic
5759addresses: those of @code{a}, @code{b} and @code{c}. On some targets,
5760it would be better to calculate just one symbolic address and access
5761the three variables relative to it. The equivalent pseudocode would
5762be something like:
5763
5764@smallexample
5765int foo (void)
5766@{
5767 register int *xr = &x;
5768 return xr[&a - &x] + xr[&b - &x] + xr[&c - &x];
5769@}
5770@end smallexample
5771
5772(which isn't valid C). We refer to shared addresses like @code{x} as
5773``section anchors''. Their use is controlled by @option{-fsection-anchors}.
5774
5775The hooks below describe the target properties that GCC needs to know
5776in order to make effective use of section anchors. It won't use
5777section anchors at all unless either @code{TARGET_MIN_ANCHOR_OFFSET}
5778or @code{TARGET_MAX_ANCHOR_OFFSET} is set to a nonzero value.
5779
9e3be889 5780@deftypevr {Target Hook} HOST_WIDE_INT TARGET_MIN_ANCHOR_OFFSET
aacd3885
RS
5781The minimum offset that should be applied to a section anchor.
5782On most targets, it should be the smallest offset that can be
5783applied to a base register while still giving a legitimate address
5784for every mode. The default value is 0.
9e3be889 5785@end deftypevr
aacd3885 5786
9e3be889 5787@deftypevr {Target Hook} HOST_WIDE_INT TARGET_MAX_ANCHOR_OFFSET
aacd3885
RS
5788Like @code{TARGET_MIN_ANCHOR_OFFSET}, but the maximum (inclusive)
5789offset that should be applied to section anchors. The default
5790value is 0.
9e3be889 5791@end deftypevr
aacd3885
RS
5792
5793@deftypefn {Target Hook} void TARGET_ASM_OUTPUT_ANCHOR (rtx @var{x})
5794Write the assembly code to define section anchor @var{x}, which is a
5795@code{SYMBOL_REF} for which @samp{SYMBOL_REF_ANCHOR_P (@var{x})} is true.
5796The hook is called with the assembly output position set to the beginning
5797of @code{SYMBOL_REF_BLOCK (@var{x})}.
5798
5799If @code{ASM_OUTPUT_DEF} is available, the hook's default definition uses
5800it to define the symbol as @samp{. + SYMBOL_REF_BLOCK_OFFSET (@var{x})}.
5801If @code{ASM_OUTPUT_DEF} is not available, the hook's default definition
5802is @code{NULL}, which disables the use of section anchors altogether.
5803@end deftypefn
5804
b6fd8800 5805@deftypefn {Target Hook} bool TARGET_USE_ANCHORS_FOR_SYMBOL_P (const_rtx @var{x})
aacd3885 5806Return true if GCC should attempt to use anchors to access @code{SYMBOL_REF}
3fa9c136 5807@var{x}. You can assume @samp{SYMBOL_REF_HAS_BLOCK_INFO_P (@var{x})} and
aacd3885
RS
5808@samp{!SYMBOL_REF_ANCHOR_P (@var{x})}.
5809
5810The default version is correct for most targets, but you might need to
5811intercept this hook to handle things like target-specific attributes
5812or target-specific sections.
5813@end deftypefn
5814
feca2ed3
JW
5815@node Condition Code
5816@section Condition Code Status
5817@cindex condition code status
5818
f90b7a5a
PB
5819The macros in this section can be split in two families, according to the
5820two ways of representing condition codes in GCC.
5821
5822The first representation is the so called @code{(cc0)} representation
5823(@pxref{Jump Patterns}), where all instructions can have an implicit
5824clobber of the condition codes. The second is the condition code
5825register representation, which provides better schedulability for
5826architectures that do have a condition code register, but on which
5827most instructions do not affect it. The latter category includes
5828most RISC machines.
5829
5830The implicit clobbering poses a strong restriction on the placement of
5831the definition and use of the condition code, which need to be in adjacent
5832insns for machines using @code{(cc0)}. This can prevent important
5833optimizations on some machines. For example, on the IBM RS/6000, there
5834is a delay for taken branches unless the condition code register is set
5835three instructions earlier than the conditional branch. The instruction
5836scheduler cannot perform this optimization if it is not permitted to
5837separate the definition and use of the condition code register.
5838
5839For this reason, it is possible and suggested to use a register to
5840represent the condition code for new ports. If there is a specific
5841condition code register in the machine, use a hard register. If the
5842condition code or comparison result can be placed in any general register,
5843or if there are multiple condition registers, use a pseudo register.
5844Registers used to store the condition code value will usually have a mode
5845that is in class @code{MODE_CC}.
5846
5847Alternatively, you can use @code{BImode} if the comparison operator is
5848specified already in the compare instruction. In this case, you are not
5849interested in most macros in this section.
5850
5851@menu
5852* CC0 Condition Codes:: Old style representation of condition codes.
5853* MODE_CC Condition Codes:: Modern representation of condition codes.
5854* Cond. Exec. Macros:: Macros to control conditional execution.
5855@end menu
5856
5857@node CC0 Condition Codes
5858@subsection Representation of condition codes using @code{(cc0)}
5859@findex cc0
feca2ed3
JW
5860
5861@findex cc_status
5862The file @file{conditions.h} defines a variable @code{cc_status} to
5863describe how the condition code was computed (in case the interpretation of
5864the condition code depends on the instruction that it was set by). This
5865variable contains the RTL expressions on which the condition code is
5866currently based, and several standard flags.
5867
5868Sometimes additional machine-specific flags must be defined in the machine
5869description header file. It can also add additional machine-specific
5870information by defining @code{CC_STATUS_MDEP}.
5871
a2c4f8e0 5872@defmac CC_STATUS_MDEP
feca2ed3
JW
5873C code for a data type which is used for declaring the @code{mdep}
5874component of @code{cc_status}. It defaults to @code{int}.
5875
5876This macro is not used on machines that do not use @code{cc0}.
a2c4f8e0 5877@end defmac
feca2ed3 5878
a2c4f8e0 5879@defmac CC_STATUS_MDEP_INIT
feca2ed3
JW
5880A C expression to initialize the @code{mdep} field to ``empty''.
5881The default definition does nothing, since most machines don't use
5882the field anyway. If you want to use the field, you should probably
5883define this macro to initialize it.
5884
5885This macro is not used on machines that do not use @code{cc0}.
a2c4f8e0 5886@end defmac
feca2ed3 5887
a2c4f8e0 5888@defmac NOTICE_UPDATE_CC (@var{exp}, @var{insn})
feca2ed3
JW
5889A C compound statement to set the components of @code{cc_status}
5890appropriately for an insn @var{insn} whose body is @var{exp}. It is
5891this macro's responsibility to recognize insns that set the condition
5892code as a byproduct of other activity as well as those that explicitly
5893set @code{(cc0)}.
5894
5895This macro is not used on machines that do not use @code{cc0}.
5896
5897If there are insns that do not set the condition code but do alter
5898other machine registers, this macro must check to see whether they
5899invalidate the expressions that the condition code is recorded as
5900reflecting. For example, on the 68000, insns that store in address
5901registers do not set the condition code, which means that usually
5902@code{NOTICE_UPDATE_CC} can leave @code{cc_status} unaltered for such
5903insns. But suppose that the previous insn set the condition code
5904based on location @samp{a4@@(102)} and the current insn stores a new
5905value in @samp{a4}. Although the condition code is not changed by
5906this, it will no longer be true that it reflects the contents of
5907@samp{a4@@(102)}. Therefore, @code{NOTICE_UPDATE_CC} must alter
5908@code{cc_status} in this case to say that nothing is known about the
5909condition code value.
5910
5911The definition of @code{NOTICE_UPDATE_CC} must be prepared to deal
5912with the results of peephole optimization: insns whose patterns are
5913@code{parallel} RTXs containing various @code{reg}, @code{mem} or
5914constants which are just the operands. The RTL structure of these
5915insns is not sufficient to indicate what the insns actually do. What
5916@code{NOTICE_UPDATE_CC} should do when it sees one is just to run
5917@code{CC_STATUS_INIT}.
5918
5919A possible definition of @code{NOTICE_UPDATE_CC} is to call a function
5920that looks at an attribute (@pxref{Insn Attributes}) named, for example,
5921@samp{cc}. This avoids having detailed information about patterns in
5922two places, the @file{md} file and in @code{NOTICE_UPDATE_CC}.
a2c4f8e0 5923@end defmac
feca2ed3 5924
f90b7a5a
PB
5925@node MODE_CC Condition Codes
5926@subsection Representation of condition codes using registers
5927@findex CCmode
5928@findex MODE_CC
5929
a2c4f8e0 5930@defmac SELECT_CC_MODE (@var{op}, @var{x}, @var{y})
f90b7a5a
PB
5931On many machines, the condition code may be produced by other instructions
5932than compares, for example the branch can use directly the condition
5933code set by a subtract instruction. However, on some machines
5934when the condition code is set this way some bits (such as the overflow
5935bit) are not set in the same way as a test instruction, so that a different
5936branch instruction must be used for some conditional branches. When
5937this happens, use the machine mode of the condition code register to
5938record different formats of the condition code register. Modes can
5939also be used to record which compare instruction (e.g. a signed or an
5940unsigned comparison) produced the condition codes.
5941
5942If other modes than @code{CCmode} are required, add them to
5943@file{@var{machine}-modes.def} and define @code{SELECT_CC_MODE} to choose
5944a mode given an operand of a compare. This is needed because the modes
5945have to be chosen not only during RTL generation but also, for example,
5946by instruction combination. The result of @code{SELECT_CC_MODE} should
5947be consistent with the mode used in the patterns; for example to support
5948the case of the add on the SPARC discussed above, we have the pattern
5949
5950@smallexample
5951(define_insn ""
5952 [(set (reg:CC_NOOV 0)
5953 (compare:CC_NOOV
5954 (plus:SI (match_operand:SI 0 "register_operand" "%r")
5955 (match_operand:SI 1 "arith_operand" "rI"))
5956 (const_int 0)))]
5957 ""
5958 "@dots{}")
5959@end smallexample
5960
5961@noindent
5962together with a @code{SELECT_CC_MODE} that returns @code{CC_NOOVmode}
5963for comparisons whose argument is a @code{plus}:
feca2ed3
JW
5964
5965@smallexample
5966#define SELECT_CC_MODE(OP,X,Y) \
5967 (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT \
5968 ? ((OP == EQ || OP == NE) ? CCFPmode : CCFPEmode) \
5969 : ((GET_CODE (X) == PLUS || GET_CODE (X) == MINUS \
5970 || GET_CODE (X) == NEG) \
5971 ? CC_NOOVmode : CCmode))
5972@end smallexample
5973
f90b7a5a
PB
5974Another reason to use modes is to retain information on which operands
5975were used by the comparison; see @code{REVERSIBLE_CC_MODE} later in
5976this section.
5977
94134f42
ZW
5978You should define this macro if and only if you define extra CC modes
5979in @file{@var{machine}-modes.def}.
a2c4f8e0 5980@end defmac
feca2ed3 5981
a2c4f8e0 5982@defmac CANONICALIZE_COMPARISON (@var{code}, @var{op0}, @var{op1})
8760eaae 5983On some machines not all possible comparisons are defined, but you can
feca2ed3
JW
5984convert an invalid comparison into a valid one. For example, the Alpha
5985does not have a @code{GT} comparison, but you can use an @code{LT}
5986comparison instead and swap the order of the operands.
5987
5988On such machines, define this macro to be a C statement to do any
5989required conversions. @var{code} is the initial comparison code
5990and @var{op0} and @var{op1} are the left and right operands of the
5991comparison, respectively. You should modify @var{code}, @var{op0}, and
5992@var{op1} as required.
5993
a3a15b4d 5994GCC will not assume that the comparison resulting from this macro is
feca2ed3
JW
5995valid but will see if the resulting insn matches a pattern in the
5996@file{md} file.
5997
5998You need not define this macro if it would never change the comparison
5999code or operands.
a2c4f8e0 6000@end defmac
feca2ed3 6001
a2c4f8e0 6002@defmac REVERSIBLE_CC_MODE (@var{mode})
feca2ed3
JW
6003A C expression whose value is one if it is always safe to reverse a
6004comparison whose mode is @var{mode}. If @code{SELECT_CC_MODE}
6005can ever return @var{mode} for a floating-point inequality comparison,
6006then @code{REVERSIBLE_CC_MODE (@var{mode})} must be zero.
6007
6008You need not define this macro if it would always returns zero or if the
6009floating-point format is anything other than @code{IEEE_FLOAT_FORMAT}.
981f6289 6010For example, here is the definition used on the SPARC, where floating-point
feca2ed3
JW
6011inequality comparisons are always given @code{CCFPEmode}:
6012
6013@smallexample
6014#define REVERSIBLE_CC_MODE(MODE) ((MODE) != CCFPEmode)
6015@end smallexample
a2c4f8e0 6016@end defmac
feca2ed3 6017
a2c4f8e0 6018@defmac REVERSE_CONDITION (@var{code}, @var{mode})
9e7adcb3
JH
6019A C expression whose value is reversed condition code of the @var{code} for
6020comparison done in CC_MODE @var{mode}. The macro is used only in case
6021@code{REVERSIBLE_CC_MODE (@var{mode})} is nonzero. Define this macro in case
6022machine has some non-standard way how to reverse certain conditionals. For
6023instance in case all floating point conditions are non-trapping, compiler may
6024freely convert unordered compares to ordered one. Then definition may look
6025like:
6026
6027@smallexample
6028#define REVERSE_CONDITION(CODE, MODE) \
c771326b 6029 ((MODE) != CCFPmode ? reverse_condition (CODE) \
9e7adcb3
JH
6030 : reverse_condition_maybe_unordered (CODE))
6031@end smallexample
a2c4f8e0 6032@end defmac
9e7adcb3 6033
ab7e224a 6034@deftypefn {Target Hook} bool TARGET_FIXED_CONDITION_CODE_REGS (unsigned int *@var{p1}, unsigned int *@var{p2})
e129d93a
ILT
6035On targets which do not use @code{(cc0)}, and which use a hard
6036register rather than a pseudo-register to hold condition codes, the
6037regular CSE passes are often not able to identify cases in which the
6038hard register is set to a common value. Use this hook to enable a
6039small pass which optimizes such cases. This hook should return true
6040to enable this pass, and it should set the integers to which its
6041arguments point to the hard register numbers used for condition codes.
6042When there is only one such register, as is true on most systems, the
ab7e224a 6043integer pointed to by @var{p2} should be set to
e129d93a
ILT
6044@code{INVALID_REGNUM}.
6045
6046The default version of this hook returns false.
6047@end deftypefn
6048
ab7e224a 6049@deftypefn {Target Hook} {enum machine_mode} TARGET_CC_MODES_COMPATIBLE (enum machine_mode @var{m1}, enum machine_mode @var{m2})
e129d93a
ILT
6050On targets which use multiple condition code modes in class
6051@code{MODE_CC}, it is sometimes the case that a comparison can be
6052validly done in more than one mode. On such a system, define this
6053target hook to take two mode arguments and to return a mode in which
6054both comparisons may be validly done. If there is no such mode,
6055return @code{VOIDmode}.
6056
6057The default version of this hook checks whether the modes are the
6058same. If they are, it returns that mode. If they are different, it
6059returns @code{VOIDmode}.
6060@end deftypefn
6061
f90b7a5a
PB
6062@node Cond. Exec. Macros
6063@subsection Macros to control conditional execution
6064@findex conditional execution
6065@findex predication
6066
6067There is one macro that may need to be defined for targets
6068supporting conditional execution, independent of how they
6069represent conditional branches.
6070
6071@defmac REVERSE_CONDEXEC_PREDICATES_P (@var{op1}, @var{op2})
6072A C expression that returns true if the conditional execution predicate
6073@var{op1}, a comparison operation, is the inverse of @var{op2} and vice
6074versa. Define this to return 0 if the target has conditional execution
6075predicates that cannot be reversed safely. There is no need to validate
6076that the arguments of op1 and op2 are the same, this is done separately.
6077If no expansion is specified, this macro is defined as follows:
6078
6079@smallexample
6080#define REVERSE_CONDEXEC_PREDICATES_P (x, y) \
6081 (GET_CODE ((x)) == reversed_comparison_code ((y), NULL))
6082@end smallexample
6083@end defmac
6084
feca2ed3
JW
6085@node Costs
6086@section Describing Relative Costs of Operations
6087@cindex costs of instructions
6088@cindex relative costs
6089@cindex speed of instructions
6090
6091These macros let you describe the relative speed of various operations
6092on the target machine.
6093
a2c4f8e0 6094@defmac REGISTER_MOVE_COST (@var{mode}, @var{from}, @var{to})
e56b4594
AO
6095A C expression for the cost of moving data of mode @var{mode} from a
6096register in class @var{from} to one in class @var{to}. The classes are
6097expressed using the enumeration values such as @code{GENERAL_REGS}. A
6098value of 2 is the default; other values are interpreted relative to
6099that.
feca2ed3
JW
6100
6101It is not required that the cost always equal 2 when @var{from} is the
6102same as @var{to}; on some machines it is expensive to move between
6103registers if they are not general registers.
6104
6105If reload sees an insn consisting of a single @code{set} between two
6106hard registers, and if @code{REGISTER_MOVE_COST} applied to their
6107classes returns a value of 2, reload does not check to ensure that the
6108constraints of the insn are met. Setting a cost of other than 2 will
6109allow reload to verify that the constraints are met. You should do this
6110if the @samp{mov@var{m}} pattern's constraints do not allow such copying.
de8f4b07
AS
6111
6112These macros are obsolete, new ports should use the target hook
6113@code{TARGET_REGISTER_MOVE_COST} instead.
a2c4f8e0 6114@end defmac
feca2ed3 6115
a87cf97e 6116@deftypefn {Target Hook} int TARGET_REGISTER_MOVE_COST (enum machine_mode @var{mode}, reg_class_t @var{from}, reg_class_t @var{to})
de8f4b07
AS
6117This target hook should return the cost of moving data of mode @var{mode}
6118from a register in class @var{from} to one in class @var{to}. The classes
6119are expressed using the enumeration values such as @code{GENERAL_REGS}.
6120A value of 2 is the default; other values are interpreted relative to
6121that.
6122
6123It is not required that the cost always equal 2 when @var{from} is the
6124same as @var{to}; on some machines it is expensive to move between
6125registers if they are not general registers.
6126
6127If reload sees an insn consisting of a single @code{set} between two
6128hard registers, and if @code{TARGET_REGISTER_MOVE_COST} applied to their
6129classes returns a value of 2, reload does not check to ensure that the
6130constraints of the insn are met. Setting a cost of other than 2 will
6131allow reload to verify that the constraints are met. You should do this
6132if the @samp{mov@var{m}} pattern's constraints do not allow such copying.
6133
6134The default version of this function returns 2.
6135@end deftypefn
6136
a2c4f8e0 6137@defmac MEMORY_MOVE_COST (@var{mode}, @var{class}, @var{in})
cbd5b9a2
KR
6138A C expression for the cost of moving data of mode @var{mode} between a
6139register of class @var{class} and memory; @var{in} is zero if the value
df2a54e9 6140is to be written to memory, nonzero if it is to be read in. This cost
473fe49b
KR
6141is relative to those in @code{REGISTER_MOVE_COST}. If moving between
6142registers and memory is more expensive than between two registers, you
6143should define this macro to express the relative cost.
6144
a3a15b4d 6145If you do not define this macro, GCC uses a default cost of 4 plus
38e01259 6146the cost of copying via a secondary reload register, if one is
473fe49b
KR
6147needed. If your machine requires a secondary reload register to copy
6148between memory and a register of @var{class} but the reload mechanism is
6149more complex than copying via an intermediate, define this macro to
6150reflect the actual cost of the move.
6151
a3a15b4d 6152GCC defines the function @code{memory_move_secondary_cost} if
473fe49b
KR
6153secondary reloads are needed. It computes the costs due to copying via
6154a secondary register. If your machine copies from memory using a
6155secondary register in the conventional way but the default base value of
61564 is not correct for your machine, define this macro to add some other
6157value to the result of that function. The arguments to that function
6158are the same as to this macro.
f5c21ef3
AS
6159
6160These macros are obsolete, new ports should use the target hook
6161@code{TARGET_MEMORY_MOVE_COST} instead.
a2c4f8e0 6162@end defmac
cbd5b9a2 6163
a87cf97e 6164@deftypefn {Target Hook} int TARGET_MEMORY_MOVE_COST (enum machine_mode @var{mode}, reg_class_t @var{rclass}, bool @var{in})
f5c21ef3 6165This target hook should return the cost of moving data of mode @var{mode}
911852ff 6166between a register of class @var{rclass} and memory; @var{in} is @code{false}
f5c21ef3 6167if the value is to be written to memory, @code{true} if it is to be read in.
de8f4b07
AS
6168This cost is relative to those in @code{TARGET_REGISTER_MOVE_COST}.
6169If moving between registers and memory is more expensive than between two
6170registers, you should add this target hook to express the relative cost.
f5c21ef3
AS
6171
6172If you do not add this target hook, GCC uses a default cost of 4 plus
6173the cost of copying via a secondary reload register, if one is
6174needed. If your machine requires a secondary reload register to copy
911852ff 6175between memory and a register of @var{rclass} but the reload mechanism is
f5c21ef3
AS
6176more complex than copying via an intermediate, use this target hook to
6177reflect the actual cost of the move.
6178
6179GCC defines the function @code{memory_move_secondary_cost} if
6180secondary reloads are needed. It computes the costs due to copying via
6181a secondary register. If your machine copies from memory using a
6182secondary register in the conventional way but the default base value of
61834 is not correct for your machine, use this target hook to add some other
6184value to the result of that function. The arguments to that function
6185are the same as to this target hook.
6186@end deftypefn
6187
3a4fd356
JH
6188@defmac BRANCH_COST (@var{speed_p}, @var{predictable_p})
6189A C expression for the cost of a branch instruction. A value of 1 is the
6190default; other values are interpreted relative to that. Parameter @var{speed_p}
6191is true when the branch in question should be optimized for speed. When
6192it is false, @code{BRANCH_COST} should be returning value optimal for code size
6193rather then performance considerations. @var{predictable_p} is true for well
6194predictable branches. On many architectures the @code{BRANCH_COST} can be
6195reduced then.
a2c4f8e0 6196@end defmac
feca2ed3
JW
6197
6198Here are additional macros which do not specify precise relative costs,
a3a15b4d 6199but only that certain actions are more expensive than GCC would
feca2ed3
JW
6200ordinarily expect.
6201
a2c4f8e0 6202@defmac SLOW_BYTE_ACCESS
feca2ed3 6203Define this macro as a C expression which is nonzero if accessing less
e979f9e8 6204than a word of memory (i.e.@: a @code{char} or a @code{short}) is no
feca2ed3
JW
6205faster than accessing a word of memory, i.e., if such access
6206require more than one instruction or if there is no difference in cost
6207between byte and (aligned) word loads.
6208
6209When this macro is not defined, the compiler will access a field by
6210finding the smallest containing object; when it is defined, a fullword
6211load will be used if alignment permits. Unless bytes accesses are
6212faster than word accesses, using word accesses is preferable since it
6213may eliminate subsequent memory access if subsequent accesses occur to
6214other fields in the same word of the structure, but to different bytes.
a2c4f8e0 6215@end defmac
feca2ed3 6216
a2c4f8e0 6217@defmac SLOW_UNALIGNED_ACCESS (@var{mode}, @var{alignment})
5fad8ebf
DE
6218Define this macro to be the value 1 if memory accesses described by the
6219@var{mode} and @var{alignment} parameters have a cost many times greater
6220than aligned accesses, for example if they are emulated in a trap
6221handler.
feca2ed3 6222
df2a54e9
JM
6223When this macro is nonzero, the compiler will act as if
6224@code{STRICT_ALIGNMENT} were nonzero when generating code for block
feca2ed3 6225moves. This can cause significantly more instructions to be produced.
df2a54e9 6226Therefore, do not set this macro nonzero if unaligned accesses only add a
feca2ed3
JW
6227cycle or two to the time for a memory access.
6228
6be57663 6229If the value of this macro is always zero, it need not be defined. If
df2a54e9
JM
6230this macro is defined, it should produce a nonzero value when
6231@code{STRICT_ALIGNMENT} is nonzero.
a2c4f8e0 6232@end defmac
feca2ed3 6233
65a324b4 6234@defmac MOVE_RATIO (@var{speed})
9862dea9 6235The threshold of number of scalar memory-to-memory move insns, @emph{below}
c5c76735 6236which a sequence of insns should be generated instead of a
feca2ed3
JW
6237string move insn or a library call. Increasing the value will always
6238make code faster, but eventually incurs high cost in increased code size.
6239
c5c76735
JL
6240Note that on machines where the corresponding move insn is a
6241@code{define_expand} that emits a sequence of insns, this macro counts
6242the number of such sequences.
9862dea9 6243
65a324b4
NC
6244The parameter @var{speed} is true if the code is currently being
6245optimized for speed rather than size.
6246
feca2ed3 6247If you don't define this, a reasonable default is used.
a2c4f8e0 6248@end defmac
feca2ed3 6249
a2c4f8e0 6250@defmac MOVE_BY_PIECES_P (@var{size}, @var{alignment})
fbe1758d
AM
6251A C expression used to determine whether @code{move_by_pieces} will be used to
6252copy a chunk of memory, or whether some other block move mechanism
6e01bd94 6253will be used. Defaults to 1 if @code{move_by_pieces_ninsns} returns less
fbe1758d 6254than @code{MOVE_RATIO}.
a2c4f8e0 6255@end defmac
fbe1758d 6256
a2c4f8e0 6257@defmac MOVE_MAX_PIECES
fbe1758d 6258A C expression used by @code{move_by_pieces} to determine the largest unit
6e01bd94 6259a load or store used to copy memory is. Defaults to @code{MOVE_MAX}.
a2c4f8e0 6260@end defmac
fbe1758d 6261
65a324b4 6262@defmac CLEAR_RATIO (@var{speed})
78762e3b
RS
6263The threshold of number of scalar move insns, @emph{below} which a sequence
6264of insns should be generated to clear memory instead of a string clear insn
6265or a library call. Increasing the value will always make code faster, but
6266eventually incurs high cost in increased code size.
6267
65a324b4
NC
6268The parameter @var{speed} is true if the code is currently being
6269optimized for speed rather than size.
6270
78762e3b 6271If you don't define this, a reasonable default is used.
a2c4f8e0 6272@end defmac
78762e3b 6273
a2c4f8e0 6274@defmac CLEAR_BY_PIECES_P (@var{size}, @var{alignment})
78762e3b
RS
6275A C expression used to determine whether @code{clear_by_pieces} will be used
6276to clear a chunk of memory, or whether some other block clear mechanism
6277will be used. Defaults to 1 if @code{move_by_pieces_ninsns} returns less
6278than @code{CLEAR_RATIO}.
a2c4f8e0 6279@end defmac
78762e3b 6280
65a324b4 6281@defmac SET_RATIO (@var{speed})
cfa31150
SL
6282The threshold of number of scalar move insns, @emph{below} which a sequence
6283of insns should be generated to set memory to a constant value, instead of
6284a block set insn or a library call.
6285Increasing the value will always make code faster, but
6286eventually incurs high cost in increased code size.
6287
65a324b4
NC
6288The parameter @var{speed} is true if the code is currently being
6289optimized for speed rather than size.
6290
cfa31150
SL
6291If you don't define this, it defaults to the value of @code{MOVE_RATIO}.
6292@end defmac
6293
6294@defmac SET_BY_PIECES_P (@var{size}, @var{alignment})
6295A C expression used to determine whether @code{store_by_pieces} will be
6296used to set a chunk of memory to a constant value, or whether some
6297other mechanism will be used. Used by @code{__builtin_memset} when
6298storing values other than constant zero.
6299Defaults to 1 if @code{move_by_pieces_ninsns} returns less
6300than @code{SET_RATIO}.
6301@end defmac
6302
a2c4f8e0 6303@defmac STORE_BY_PIECES_P (@var{size}, @var{alignment})
4977bab6 6304A C expression used to determine whether @code{store_by_pieces} will be
65a324b4 6305used to set a chunk of memory to a constant string value, or whether some
cfa31150
SL
6306other mechanism will be used. Used by @code{__builtin_strcpy} when
6307called with a constant source string.
0bdcd332 6308Defaults to 1 if @code{move_by_pieces_ninsns} returns less
45d78e7f 6309than @code{MOVE_RATIO}.
a2c4f8e0 6310@end defmac
4977bab6 6311
a2c4f8e0 6312@defmac USE_LOAD_POST_INCREMENT (@var{mode})
6e01bd94
MH
6313A C expression used to determine whether a load postincrement is a good
6314thing to use for a given mode. Defaults to the value of
6315@code{HAVE_POST_INCREMENT}.
a2c4f8e0 6316@end defmac
6e01bd94 6317
a2c4f8e0 6318@defmac USE_LOAD_POST_DECREMENT (@var{mode})
6e01bd94
MH
6319A C expression used to determine whether a load postdecrement is a good
6320thing to use for a given mode. Defaults to the value of
6321@code{HAVE_POST_DECREMENT}.
a2c4f8e0 6322@end defmac
fbe1758d 6323
a2c4f8e0 6324@defmac USE_LOAD_PRE_INCREMENT (@var{mode})
6e01bd94
MH
6325A C expression used to determine whether a load preincrement is a good
6326thing to use for a given mode. Defaults to the value of
6327@code{HAVE_PRE_INCREMENT}.
a2c4f8e0 6328@end defmac
6e01bd94 6329
a2c4f8e0 6330@defmac USE_LOAD_PRE_DECREMENT (@var{mode})
6e01bd94
MH
6331A C expression used to determine whether a load predecrement is a good
6332thing to use for a given mode. Defaults to the value of
6333@code{HAVE_PRE_DECREMENT}.
a2c4f8e0 6334@end defmac
fbe1758d 6335
a2c4f8e0 6336@defmac USE_STORE_POST_INCREMENT (@var{mode})
6e01bd94
MH
6337A C expression used to determine whether a store postincrement is a good
6338thing to use for a given mode. Defaults to the value of
6339@code{HAVE_POST_INCREMENT}.
a2c4f8e0 6340@end defmac
6e01bd94 6341
a2c4f8e0 6342@defmac USE_STORE_POST_DECREMENT (@var{mode})
c771326b 6343A C expression used to determine whether a store postdecrement is a good
6e01bd94
MH
6344thing to use for a given mode. Defaults to the value of
6345@code{HAVE_POST_DECREMENT}.
a2c4f8e0 6346@end defmac
fbe1758d 6347
a2c4f8e0 6348@defmac USE_STORE_PRE_INCREMENT (@var{mode})
6e01bd94
MH
6349This macro is used to determine whether a store preincrement is a good
6350thing to use for a given mode. Defaults to the value of
6351@code{HAVE_PRE_INCREMENT}.
a2c4f8e0 6352@end defmac
6e01bd94 6353
a2c4f8e0 6354@defmac USE_STORE_PRE_DECREMENT (@var{mode})
6e01bd94
MH
6355This macro is used to determine whether a store predecrement is a good
6356thing to use for a given mode. Defaults to the value of
6357@code{HAVE_PRE_DECREMENT}.
a2c4f8e0 6358@end defmac
fbe1758d 6359
a2c4f8e0 6360@defmac NO_FUNCTION_CSE
feca2ed3
JW
6361Define this macro if it is as good or better to call a constant
6362function address than to call an address kept in a register.
a2c4f8e0 6363@end defmac
feca2ed3 6364
a2c4f8e0 6365@defmac RANGE_TEST_NON_SHORT_CIRCUIT
85e50b6b
DE
6366Define this macro if a non-short-circuit operation produced by
6367@samp{fold_range_test ()} is optimal. This macro defaults to true if
6368@code{BRANCH_COST} is greater than or equal to the value 2.
a2c4f8e0 6369@end defmac
feca2ed3 6370
65a324b4 6371@deftypefn {Target Hook} bool TARGET_RTX_COSTS (rtx @var{x}, int @var{code}, int @var{outer_code}, int *@var{total}, bool @var{speed})
3c50106f
RH
6372This target hook describes the relative costs of RTL expressions.
6373
6374The cost may depend on the precise form of the expression, which is
6375available for examination in @var{x}, and the rtx code of the expression
6376in which it is contained, found in @var{outer_code}. @var{code} is the
6377expression code---redundant, since it can be obtained with
6378@code{GET_CODE (@var{x})}.
6379
6380In implementing this hook, you can use the construct
6381@code{COSTS_N_INSNS (@var{n})} to specify a cost equal to @var{n} fast
6382instructions.
6383
6384On entry to the hook, @code{*@var{total}} contains a default estimate
6385for the cost of the expression. The hook should modify this value as
31a52b86
RS
6386necessary. Traditionally, the default costs are @code{COSTS_N_INSNS (5)}
6387for multiplications, @code{COSTS_N_INSNS (7)} for division and modulus
6388operations, and @code{COSTS_N_INSNS (1)} for all other operations.
6389
65a324b4
NC
6390When optimizing for code size, i.e.@: when @code{speed} is
6391false, this target hook should be used to estimate the relative
31a52b86 6392size cost of an expression, again relative to @code{COSTS_N_INSNS}.
3c50106f
RH
6393
6394The hook returns true when all subexpressions of @var{x} have been
6395processed, and false when @code{rtx_cost} should recurse.
6396@end deftypefn
6397
65a324b4 6398@deftypefn {Target Hook} int TARGET_ADDRESS_COST (rtx @var{address}, bool @var{speed})
10154ff8
RH
6399This hook computes the cost of an addressing mode that contains
6400@var{address}. If not defined, the cost is computed from
6401the @var{address} expression and the @code{TARGET_RTX_COST} hook.
6402
6403For most CISC machines, the default cost is a good approximation of the
6404true cost of the addressing mode. However, on RISC machines, all
6405instructions normally have the same length and execution time. Hence
6406all addresses will have equal costs.
6407
6408In cases where more than one form of an address is known, the form with
6409the lowest cost will be used. If multiple forms have the same, lowest,
6410cost, the one that is the most complex will be used.
6411
6412For example, suppose an address that is equal to the sum of a register
6413and a constant is used twice in the same basic block. When this macro
6414is not defined, the address will be computed in a register and memory
6415references will be indirect through that register. On machines where
6416the cost of the addressing mode containing the sum is no higher than
6417that of a simple indirect reference, this will produce an additional
6418instruction and possibly require an additional register. Proper
6419specification of this macro eliminates this overhead for such machines.
6420
6421This hook is never called with an invalid address.
6422
6423On machines where an address involving more than one register is as
6424cheap as an address computation involving only one register, defining
6425@code{TARGET_ADDRESS_COST} to reflect this can cause two registers to
6426be live over a region of code where only one would have been if
6427@code{TARGET_ADDRESS_COST} were not defined in that manner. This effect
6428should be considered in the definition of this macro. Equivalent costs
6429should probably only be given to addresses with different numbers of
6430registers on machines with lots of registers.
6431@end deftypefn
6432
c237e94a
ZW
6433@node Scheduling
6434@section Adjusting the Instruction Scheduler
6435
6436The instruction scheduler may need a fair amount of machine-specific
6437adjustment in order to produce good code. GCC provides several target
6438hooks for this purpose. It is usually enough to define just a few of
6439them: try the first ones in this list first.
6440
6441@deftypefn {Target Hook} int TARGET_SCHED_ISSUE_RATE (void)
fae15c93
VM
6442This hook returns the maximum number of instructions that can ever
6443issue at the same time on the target machine. The default is one.
6444Although the insn scheduler can define itself the possibility of issue
6445an insn on the same cycle, the value can serve as an additional
6446constraint to issue insns on the same simulated processor cycle (see
6447hooks @samp{TARGET_SCHED_REORDER} and @samp{TARGET_SCHED_REORDER2}).
6448This value must be constant over the entire compilation. If you need
6449it to vary depending on what the instructions are, you must use
c237e94a
ZW
6450@samp{TARGET_SCHED_VARIABLE_ISSUE}.
6451@end deftypefn
6452
6453@deftypefn {Target Hook} int TARGET_SCHED_VARIABLE_ISSUE (FILE *@var{file}, int @var{verbose}, rtx @var{insn}, int @var{more})
6454This hook is executed by the scheduler after it has scheduled an insn
6455from the ready list. It should return the number of insns which can
3ee04299
DE
6456still be issued in the current cycle. The default is
6457@samp{@w{@var{more} - 1}} for insns other than @code{CLOBBER} and
6458@code{USE}, which normally are not counted against the issue rate.
6459You should define this hook if some insns take more machine resources
6460than others, so that fewer insns can follow them in the same cycle.
6461@var{file} is either a null pointer, or a stdio stream to write any
6462debug output to. @var{verbose} is the verbose level provided by
6463@option{-fsched-verbose-@var{n}}. @var{insn} is the instruction that
6464was scheduled.
c237e94a
ZW
6465@end deftypefn
6466
6467@deftypefn {Target Hook} int TARGET_SCHED_ADJUST_COST (rtx @var{insn}, rtx @var{link}, rtx @var{dep_insn}, int @var{cost})
fae15c93
VM
6468This function corrects the value of @var{cost} based on the
6469relationship between @var{insn} and @var{dep_insn} through the
6470dependence @var{link}. It should return the new value. The default
6471is to make no adjustment to @var{cost}. This can be used for example
6472to specify to the scheduler using the traditional pipeline description
c237e94a 6473that an output- or anti-dependence does not incur the same cost as a
fae15c93
VM
6474data-dependence. If the scheduler using the automaton based pipeline
6475description, the cost of anti-dependence is zero and the cost of
6476output-dependence is maximum of one and the difference of latency
6477times of the first and the second insns. If these values are not
6478acceptable, you could use the hook to modify them too. See also
fa0aee89 6479@pxref{Processor pipeline description}.
c237e94a
ZW
6480@end deftypefn
6481
6482@deftypefn {Target Hook} int TARGET_SCHED_ADJUST_PRIORITY (rtx @var{insn}, int @var{priority})
6483This hook adjusts the integer scheduling priority @var{priority} of
496d7bb0
MK
6484@var{insn}. It should return the new priority. Increase the priority to
6485execute @var{insn} earlier, reduce the priority to execute @var{insn}
c237e94a
ZW
6486later. Do not define this hook if you do not need to adjust the
6487scheduling priorities of insns.
6488@end deftypefn
6489
6490@deftypefn {Target Hook} int TARGET_SCHED_REORDER (FILE *@var{file}, int @var{verbose}, rtx *@var{ready}, int *@var{n_readyp}, int @var{clock})
6491This hook is executed by the scheduler after it has scheduled the ready
6492list, to allow the machine description to reorder it (for example to
6493combine two small instructions together on @samp{VLIW} machines).
6494@var{file} is either a null pointer, or a stdio stream to write any
6495debug output to. @var{verbose} is the verbose level provided by
6496@option{-fsched-verbose-@var{n}}. @var{ready} is a pointer to the ready
6497list of instructions that are ready to be scheduled. @var{n_readyp} is
6498a pointer to the number of elements in the ready list. The scheduler
6499reads the ready list in reverse order, starting with
65a324b4 6500@var{ready}[@var{*n_readyp} @minus{} 1] and going to @var{ready}[0]. @var{clock}
c237e94a
ZW
6501is the timer tick of the scheduler. You may modify the ready list and
6502the number of ready insns. The return value is the number of insns that
6503can issue this cycle; normally this is just @code{issue_rate}. See also
6504@samp{TARGET_SCHED_REORDER2}.
6505@end deftypefn
6506
914d25dc 6507@deftypefn {Target Hook} int TARGET_SCHED_REORDER2 (FILE *@var{file}, int @var{verbose}, rtx *@var{ready}, int *@var{n_readyp}, int @var{clock})
c237e94a
ZW
6508Like @samp{TARGET_SCHED_REORDER}, but called at a different time. That
6509function is called whenever the scheduler starts a new cycle. This one
6510is called once per iteration over a cycle, immediately after
6511@samp{TARGET_SCHED_VARIABLE_ISSUE}; it can reorder the ready list and
6512return the number of insns to be scheduled in the same cycle. Defining
6513this hook can be useful if there are frequent situations where
6514scheduling one insn causes other insns to become ready in the same
6515cycle. These other insns can then be taken into account properly.
6516@end deftypefn
6517
30028c85
VM
6518@deftypefn {Target Hook} void TARGET_SCHED_DEPENDENCIES_EVALUATION_HOOK (rtx @var{head}, rtx @var{tail})
6519This hook is called after evaluation forward dependencies of insns in
6520chain given by two parameter values (@var{head} and @var{tail}
6521correspondingly) but before insns scheduling of the insn chain. For
6522example, it can be used for better insn classification if it requires
6523analysis of dependencies. This hook can use backward and forward
6524dependencies of the insn scheduler because they are already
6525calculated.
6526@end deftypefn
6527
c237e94a
ZW
6528@deftypefn {Target Hook} void TARGET_SCHED_INIT (FILE *@var{file}, int @var{verbose}, int @var{max_ready})
6529This hook is executed by the scheduler at the beginning of each block of
6530instructions that are to be scheduled. @var{file} is either a null
6531pointer, or a stdio stream to write any debug output to. @var{verbose}
6532is the verbose level provided by @option{-fsched-verbose-@var{n}}.
6533@var{max_ready} is the maximum number of insns in the current scheduling
6534region that can be live at the same time. This can be used to allocate
431ae0bf 6535scratch space if it is needed, e.g.@: by @samp{TARGET_SCHED_REORDER}.
c237e94a
ZW
6536@end deftypefn
6537
6538@deftypefn {Target Hook} void TARGET_SCHED_FINISH (FILE *@var{file}, int @var{verbose})
6539This hook is executed by the scheduler at the end of each block of
6540instructions that are to be scheduled. It can be used to perform
6541cleanup of any actions done by the other scheduling hooks. @var{file}
6542is either a null pointer, or a stdio stream to write any debug output
6543to. @var{verbose} is the verbose level provided by
6544@option{-fsched-verbose-@var{n}}.
6545@end deftypefn
6546
58565a33
SKG
6547@deftypefn {Target Hook} void TARGET_SCHED_INIT_GLOBAL (FILE *@var{file}, int @var{verbose}, int @var{old_max_uid})
6548This hook is executed by the scheduler after function level initializations.
6549@var{file} is either a null pointer, or a stdio stream to write any debug output to.
6550@var{verbose} is the verbose level provided by @option{-fsched-verbose-@var{n}}.
6551@var{old_max_uid} is the maximum insn uid when scheduling begins.
6552@end deftypefn
6553
6554@deftypefn {Target Hook} void TARGET_SCHED_FINISH_GLOBAL (FILE *@var{file}, int @var{verbose})
8a36672b 6555This is the cleanup hook corresponding to @code{TARGET_SCHED_INIT_GLOBAL}.
58565a33
SKG
6556@var{file} is either a null pointer, or a stdio stream to write any debug output to.
6557@var{verbose} is the verbose level provided by @option{-fsched-verbose-@var{n}}.
6558@end deftypefn
6559
914d25dc 6560@deftypefn {Target Hook} rtx TARGET_SCHED_DFA_PRE_CYCLE_INSN (void)
fae15c93
VM
6561The hook returns an RTL insn. The automaton state used in the
6562pipeline hazard recognizer is changed as if the insn were scheduled
6563when the new simulated processor cycle starts. Usage of the hook may
6564simplify the automaton pipeline description for some @acronym{VLIW}
6565processors. If the hook is defined, it is used only for the automaton
6566based pipeline description. The default is not to change the state
6567when the new simulated processor cycle starts.
6568@end deftypefn
6569
6570@deftypefn {Target Hook} void TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN (void)
6571The hook can be used to initialize data used by the previous hook.
6572@end deftypefn
6573
914d25dc 6574@deftypefn {Target Hook} rtx TARGET_SCHED_DFA_POST_CYCLE_INSN (void)
fae15c93
VM
6575The hook is analogous to @samp{TARGET_SCHED_DFA_PRE_CYCLE_INSN} but used
6576to changed the state as if the insn were scheduled when the new
6577simulated processor cycle finishes.
6578@end deftypefn
6579
6580@deftypefn {Target Hook} void TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN (void)
6581The hook is analogous to @samp{TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN} but
6582used to initialize data used by the previous hook.
6583@end deftypefn
6584
914d25dc 6585@deftypefn {Target Hook} void TARGET_SCHED_DFA_PRE_ADVANCE_CYCLE (void)
1c3d0d93
MK
6586The hook to notify target that the current simulated cycle is about to finish.
6587The hook is analogous to @samp{TARGET_SCHED_DFA_PRE_CYCLE_INSN} but used
021efafc 6588to change the state in more complicated situations - e.g., when advancing
1c3d0d93
MK
6589state on a single insn is not enough.
6590@end deftypefn
6591
914d25dc 6592@deftypefn {Target Hook} void TARGET_SCHED_DFA_POST_ADVANCE_CYCLE (void)
1c3d0d93
MK
6593The hook to notify target that new simulated cycle has just started.
6594The hook is analogous to @samp{TARGET_SCHED_DFA_POST_CYCLE_INSN} but used
021efafc 6595to change the state in more complicated situations - e.g., when advancing
1c3d0d93
MK
6596state on a single insn is not enough.
6597@end deftypefn
6598
fae15c93
VM
6599@deftypefn {Target Hook} int TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD (void)
6600This hook controls better choosing an insn from the ready insn queue
6601for the @acronym{DFA}-based insn scheduler. Usually the scheduler
6602chooses the first insn from the queue. If the hook returns a positive
6603value, an additional scheduler code tries all permutations of
6604@samp{TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD ()}
6605subsequent ready insns to choose an insn whose issue will result in
6606maximal number of issued insns on the same cycle. For the
6607@acronym{VLIW} processor, the code could actually solve the problem of
6608packing simple insns into the @acronym{VLIW} insn. Of course, if the
6609rules of @acronym{VLIW} packing are described in the automaton.
6610
6611This code also could be used for superscalar @acronym{RISC}
6612processors. Let us consider a superscalar @acronym{RISC} processor
6613with 3 pipelines. Some insns can be executed in pipelines @var{A} or
6614@var{B}, some insns can be executed only in pipelines @var{B} or
6615@var{C}, and one insn can be executed in pipeline @var{B}. The
6616processor may issue the 1st insn into @var{A} and the 2nd one into
6617@var{B}. In this case, the 3rd insn will wait for freeing @var{B}
6618until the next cycle. If the scheduler issues the 3rd insn the first,
6619the processor could issue all 3 insns per cycle.
6620
6621Actually this code demonstrates advantages of the automaton based
6622pipeline hazard recognizer. We try quickly and easy many insn
6623schedules to choose the best one.
6624
6625The default is no multipass scheduling.
6626@end deftypefn
6627
914d25dc 6628@deftypefn {Target Hook} int TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD (rtx @var{insn})
30028c85
VM
6629
6630This hook controls what insns from the ready insn queue will be
6631considered for the multipass insn scheduling. If the hook returns
914d25dc 6632zero for @var{insn}, the insn will be not chosen to
30028c85
VM
6633be issued.
6634
62b9c42c 6635The default is that any ready insns can be chosen to be issued.
30028c85
VM
6636@end deftypefn
6637
894fd6f2
MK
6638@deftypefn {Target Hook} void TARGET_SCHED_FIRST_CYCLE_MULTIPASS_BEGIN (void *@var{data}, char *@var{ready_try}, int @var{n_ready}, bool @var{first_cycle_insn_p})
6639This hook prepares the target backend for a new round of multipass
6640scheduling.
6641@end deftypefn
6642
6643@deftypefn {Target Hook} void TARGET_SCHED_FIRST_CYCLE_MULTIPASS_ISSUE (void *@var{data}, char *@var{ready_try}, int @var{n_ready}, rtx @var{insn}, const void *@var{prev_data})
6644This hook is called when multipass scheduling evaluates instruction INSN.
6645@end deftypefn
6646
6647@deftypefn {Target Hook} void TARGET_SCHED_FIRST_CYCLE_MULTIPASS_BACKTRACK (const void *@var{data}, char *@var{ready_try}, int @var{n_ready})
6648This is called when multipass scheduling backtracks from evaluation of
6649an instruction.
6650@end deftypefn
6651
6652@deftypefn {Target Hook} void TARGET_SCHED_FIRST_CYCLE_MULTIPASS_END (const void *@var{data})
6653This hook notifies the target about the result of the concluded current
6654round of multipass scheduling.
6655@end deftypefn
6656
6657@deftypefn {Target Hook} void TARGET_SCHED_FIRST_CYCLE_MULTIPASS_INIT (void *@var{data})
6658This hook initilizes target-specific data used in multipass scheduling.
6659@end deftypefn
6660
6661@deftypefn {Target Hook} void TARGET_SCHED_FIRST_CYCLE_MULTIPASS_FINI (void *@var{data})
6662This hook finilizes target-specific data used in multipass scheduling.
6663@end deftypefn
6664
a934eb2d 6665@deftypefn {Target Hook} int TARGET_SCHED_DFA_NEW_CYCLE (FILE *@var{dump}, int @var{verbose}, rtx @var{insn}, int @var{last_clock}, int @var{clock}, int *@var{sort_p})
a934eb2d
JR
6666This hook is called by the insn scheduler before issuing @var{insn}
6667on cycle @var{clock}. If the hook returns nonzero,
6668@var{insn} is not issued on this processor cycle. Instead,
6669the processor cycle is advanced. If *@var{sort_p}
6670is zero, the insn ready queue is not sorted on the new cycle
6671start as usually. @var{dump} and @var{verbose} specify the file and
6672verbosity level to use for debugging output.
6673@var{last_clock} and @var{clock} are, respectively, the
6674processor cycle on which the previous insn has been issued,
6675and the current processor cycle.
30028c85
VM
6676@end deftypefn
6677
72392b81 6678@deftypefn {Target Hook} bool TARGET_SCHED_IS_COSTLY_DEPENDENCE (struct _dep *@var{_dep}, int @var{cost}, int @var{distance})
569fa502 6679This hook is used to define which dependences are considered costly by
daf2f129 6680the target, so costly that it is not advisable to schedule the insns that
569fa502 6681are involved in the dependence too close to one another. The parameters
b198261f
MK
6682to this hook are as follows: The first parameter @var{_dep} is the dependence
6683being evaluated. The second parameter @var{cost} is the cost of the
72392b81 6684dependence as estimated by the scheduler, and the third
daf2f129 6685parameter @var{distance} is the distance in cycles between the two insns.
569fa502
DN
6686The hook returns @code{true} if considering the distance between the two
6687insns the dependence between them is considered costly by the target,
6688and @code{false} otherwise.
6689
6690Defining this hook can be useful in multiple-issue out-of-order machines,
daf2f129 6691where (a) it's practically hopeless to predict the actual data/resource
569fa502 6692delays, however: (b) there's a better chance to predict the actual grouping
daf2f129 6693that will be formed, and (c) correctly emulating the grouping can be very
569fa502 6694important. In such targets one may want to allow issuing dependent insns
78466c0e 6695closer to one another---i.e., closer than the dependence distance; however,
72392b81 6696not in cases of ``costly dependences'', which this hooks allows to define.
569fa502
DN
6697@end deftypefn
6698
496d7bb0
MK
6699@deftypefn {Target Hook} void TARGET_SCHED_H_I_D_EXTENDED (void)
6700This hook is called by the insn scheduler after emitting a new instruction to
6701the instruction stream. The hook notifies a target backend to extend its
6702per instruction data structures.
6703@end deftypefn
6704
b6fd8800 6705@deftypefn {Target Hook} {void *} TARGET_SCHED_ALLOC_SCHED_CONTEXT (void)
e855c69d
AB
6706Return a pointer to a store large enough to hold target scheduling context.
6707@end deftypefn
6708
6709@deftypefn {Target Hook} void TARGET_SCHED_INIT_SCHED_CONTEXT (void *@var{tc}, bool @var{clean_p})
6710Initialize store pointed to by @var{tc} to hold target scheduling context.
6711It @var{clean_p} is true then initialize @var{tc} as if scheduler is at the
ab7e224a 6712beginning of the block. Otherwise, copy the current context into @var{tc}.
e855c69d
AB
6713@end deftypefn
6714
6715@deftypefn {Target Hook} void TARGET_SCHED_SET_SCHED_CONTEXT (void *@var{tc})
914d25dc 6716Copy target scheduling context pointed to by @var{tc} to the current context.
e855c69d
AB
6717@end deftypefn
6718
6719@deftypefn {Target Hook} void TARGET_SCHED_CLEAR_SCHED_CONTEXT (void *@var{tc})
6720Deallocate internal data in target scheduling context pointed to by @var{tc}.
6721@end deftypefn
6722
6723@deftypefn {Target Hook} void TARGET_SCHED_FREE_SCHED_CONTEXT (void *@var{tc})
6724Deallocate a store for target scheduling context pointed to by @var{tc}.
6725@end deftypefn
6726
496d7bb0 6727@deftypefn {Target Hook} int TARGET_SCHED_SPECULATE_INSN (rtx @var{insn}, int @var{request}, rtx *@var{new_pat})
64ee9490
EC
6728This hook is called by the insn scheduler when @var{insn} has only
6729speculative dependencies and therefore can be scheduled speculatively.
6730The hook is used to check if the pattern of @var{insn} has a speculative
6731version and, in case of successful check, to generate that speculative
6732pattern. The hook should return 1, if the instruction has a speculative form,
8ad1dde7 6733or @minus{}1, if it doesn't. @var{request} describes the type of requested
496d7bb0
MK
6734speculation. If the return value equals 1 then @var{new_pat} is assigned
6735the generated speculative pattern.
6736@end deftypefn
6737
72392b81 6738@deftypefn {Target Hook} bool TARGET_SCHED_NEEDS_BLOCK_P (int @var{dep_status})
496d7bb0 6739This hook is called by the insn scheduler during generation of recovery code
72392b81
JR
6740for @var{insn}. It should return @code{true}, if the corresponding check
6741instruction should branch to recovery code, or @code{false} otherwise.
496d7bb0
MK
6742@end deftypefn
6743
914d25dc 6744@deftypefn {Target Hook} rtx TARGET_SCHED_GEN_SPEC_CHECK (rtx @var{insn}, rtx @var{label}, int @var{mutate_p})
496d7bb0 6745This hook is called by the insn scheduler to generate a pattern for recovery
64ee9490
EC
6746check instruction. If @var{mutate_p} is zero, then @var{insn} is a
6747speculative instruction for which the check should be generated.
6748@var{label} is either a label of a basic block, where recovery code should
6749be emitted, or a null pointer, when requested check doesn't branch to
6750recovery code (a simple check). If @var{mutate_p} is nonzero, then
6751a pattern for a branchy check corresponding to a simple check denoted by
496d7bb0
MK
6752@var{insn} should be generated. In this case @var{label} can't be null.
6753@end deftypefn
6754
5498b6d2 6755@deftypefn {Target Hook} bool TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD_SPEC (const_rtx @var{insn})
496d7bb0
MK
6756This hook is used as a workaround for
6757@samp{TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD} not being
6758called on the first instruction of the ready list. The hook is used to
5498b6d2
JR
6759discard speculative instructions that stand first in the ready list from
6760being scheduled on the current cycle. If the hook returns @code{false},
6761@var{insn} will not be chosen to be issued.
6762For non-speculative instructions,
6763the hook should always return @code{true}. For example, in the ia64 backend
496d7bb0
MK
6764the hook is used to cancel data speculative insns when the ALAT table
6765is nearly full.
6766@end deftypefn
6767
50e87e30 6768@deftypefn {Target Hook} void TARGET_SCHED_SET_SCHED_FLAGS (struct spec_info_def *@var{spec_info})
64ee9490 6769This hook is used by the insn scheduler to find out what features should be
50e87e30
JR
6770enabled/used.
6771The structure *@var{spec_info} should be filled in by the target.
496d7bb0
MK
6772The structure describes speculation types that can be used in the scheduler.
6773@end deftypefn
6774
67186a97
TS
6775@deftypefn {Target Hook} int TARGET_SCHED_SMS_RES_MII (struct ddg *@var{g})
6776This hook is called by the swing modulo scheduler to calculate a
6777resource-based lower bound which is based on the resources available in
6778the machine and the resources required by each instruction. The target
6779backend can use @var{g} to calculate such bound. A very simple lower
6780bound will be used in case this hook is not implemented: the total number
6781of instructions divided by the issue rate.
6782@end deftypefn
6783
7942e47e
RY
6784@deftypefn {Target Hook} bool TARGET_SCHED_DISPATCH (rtx @var{insn}, int @var{x})
6785This hook is called by Haifa Scheduler. It returns true if dispatch scheduling
6786is supported in hardware and the condition specified in the parameter is true.
6787@end deftypefn
6788
6789@deftypefn {Target Hook} void TARGET_SCHED_DISPATCH_DO (rtx @var{insn}, int @var{x})
6790This hook is called by Haifa Scheduler. It performs the operation specified
6791in its second parameter.
6792@end deftypefn
6793
feca2ed3
JW
6794@node Sections
6795@section Dividing the Output into Sections (Texts, Data, @dots{})
6796@c the above section title is WAY too long. maybe cut the part between
6797@c the (...)? --mew 10feb93
6798
6799An object file is divided into sections containing different types of
6800data. In the most common case, there are three sections: the @dfn{text
6801section}, which holds instructions and read-only data; the @dfn{data
6802section}, which holds initialized writable data; and the @dfn{bss
6803section}, which holds uninitialized data. Some systems have other kinds
6804of sections.
6805
d6b5193b
RS
6806@file{varasm.c} provides several well-known sections, such as
6807@code{text_section}, @code{data_section} and @code{bss_section}.
6808The normal way of controlling a @code{@var{foo}_section} variable
6809is to define the associated @code{@var{FOO}_SECTION_ASM_OP} macro,
6810as described below. The macros are only read once, when @file{varasm.c}
6811initializes itself, so their values must be run-time constants.
6812They may however depend on command-line flags.
6813
6814@emph{Note:} Some run-time files, such @file{crtstuff.c}, also make
6815use of the @code{@var{FOO}_SECTION_ASM_OP} macros, and expect them
6816to be string literals.
6817
6818Some assemblers require a different string to be written every time a
6819section is selected. If your assembler falls into this category, you
6820should define the @code{TARGET_ASM_INIT_SECTIONS} hook and use
6821@code{get_unnamed_section} to set up the sections.
6822
6823You must always create a @code{text_section}, either by defining
6824@code{TEXT_SECTION_ASM_OP} or by initializing @code{text_section}
6825in @code{TARGET_ASM_INIT_SECTIONS}. The same is true of
6826@code{data_section} and @code{DATA_SECTION_ASM_OP}. If you do not
6827create a distinct @code{readonly_data_section}, the default is to
6828reuse @code{text_section}.
6829
6830All the other @file{varasm.c} sections are optional, and are null
6831if the target does not provide them.
feca2ed3 6832
a2c4f8e0 6833@defmac TEXT_SECTION_ASM_OP
047c1c92
HPN
6834A C expression whose value is a string, including spacing, containing the
6835assembler operation that should precede instructions and read-only data.
6836Normally @code{"\t.text"} is right.
a2c4f8e0 6837@end defmac
33c09f2f 6838
a2c4f8e0 6839@defmac HOT_TEXT_SECTION_NAME
194734e9
JH
6840If defined, a C string constant for the name of the section containing most
6841frequently executed functions of the program. If not defined, GCC will provide
6842a default definition if the target supports named sections.
a2c4f8e0 6843@end defmac
194734e9 6844
a2c4f8e0 6845@defmac UNLIKELY_EXECUTED_TEXT_SECTION_NAME
194734e9
JH
6846If defined, a C string constant for the name of the section containing unlikely
6847executed functions in the program.
a2c4f8e0 6848@end defmac
194734e9 6849
a2c4f8e0 6850@defmac DATA_SECTION_ASM_OP
047c1c92
HPN
6851A C expression whose value is a string, including spacing, containing the
6852assembler operation to identify the following data as writable initialized
6853data. Normally @code{"\t.data"} is right.
a2c4f8e0 6854@end defmac
feca2ed3 6855
d6b5193b
RS
6856@defmac SDATA_SECTION_ASM_OP
6857If defined, a C expression whose value is a string, including spacing,
6858containing the assembler operation to identify the following data as
6859initialized, writable small data.
6860@end defmac
6861
a2c4f8e0 6862@defmac READONLY_DATA_SECTION_ASM_OP
d48bc59a
RH
6863A C expression whose value is a string, including spacing, containing the
6864assembler operation to identify the following data as read-only initialized
6865data.
a2c4f8e0 6866@end defmac
d48bc59a 6867
a2c4f8e0 6868@defmac BSS_SECTION_ASM_OP
047c1c92
HPN
6869If defined, a C expression whose value is a string, including spacing,
6870containing the assembler operation to identify the following data as
6871uninitialized global data. If not defined, and neither
6872@code{ASM_OUTPUT_BSS} nor @code{ASM_OUTPUT_ALIGNED_BSS} are defined,
6873uninitialized global data will be output in the data section if
630d3d5a 6874@option{-fno-common} is passed, otherwise @code{ASM_OUTPUT_COMMON} will be
047c1c92 6875used.
a2c4f8e0 6876@end defmac
feca2ed3 6877
d6b5193b
RS
6878@defmac SBSS_SECTION_ASM_OP
6879If defined, a C expression whose value is a string, including spacing,
6880containing the assembler operation to identify the following data as
6881uninitialized, writable small data.
6882@end defmac
6883
9b7e6950
RO
6884@defmac TLS_COMMON_ASM_OP
6885If defined, a C expression whose value is a string containing the
6886assembler operation to identify the following data as thread-local
6887common data. The default is @code{".tls_common"}.
6888@end defmac
6889
6890@defmac TLS_SECTION_ASM_FLAG
6891If defined, a C expression whose value is a character constant
6892containing the flag used to mark a section as a TLS section. The
6893default is @code{'T'}.
6894@end defmac
6895
a2c4f8e0 6896@defmac INIT_SECTION_ASM_OP
047c1c92
HPN
6897If defined, a C expression whose value is a string, including spacing,
6898containing the assembler operation to identify the following data as
6899initialization code. If not defined, GCC will assume such a section does
98bfa2fb
RS
6900not exist. This section has no corresponding @code{init_section}
6901variable; it is used entirely in runtime code.
a2c4f8e0 6902@end defmac
feca2ed3 6903
a2c4f8e0 6904@defmac FINI_SECTION_ASM_OP
047c1c92
HPN
6905If defined, a C expression whose value is a string, including spacing,
6906containing the assembler operation to identify the following data as
6907finalization code. If not defined, GCC will assume such a section does
98bfa2fb
RS
6908not exist. This section has no corresponding @code{fini_section}
6909variable; it is used entirely in runtime code.
a2c4f8e0 6910@end defmac
750054a2 6911
7abc66b1
JB
6912@defmac INIT_ARRAY_SECTION_ASM_OP
6913If defined, a C expression whose value is a string, including spacing,
6914containing the assembler operation to identify the following data as
6915part of the @code{.init_array} (or equivalent) section. If not
6916defined, GCC will assume such a section does not exist. Do not define
6917both this macro and @code{INIT_SECTION_ASM_OP}.
6918@end defmac
083cad55 6919
7abc66b1
JB
6920@defmac FINI_ARRAY_SECTION_ASM_OP
6921If defined, a C expression whose value is a string, including spacing,
6922containing the assembler operation to identify the following data as
6923part of the @code{.fini_array} (or equivalent) section. If not
6924defined, GCC will assume such a section does not exist. Do not define
6925both this macro and @code{FINI_SECTION_ASM_OP}.
6926@end defmac
6927
a2c4f8e0 6928@defmac CRT_CALL_STATIC_FUNCTION (@var{section_op}, @var{function})
cea3bd3e
RH
6929If defined, an ASM statement that switches to a different section
6930via @var{section_op}, calls @var{function}, and switches back to
6931the text section. This is used in @file{crtstuff.c} if
6932@code{INIT_SECTION_ASM_OP} or @code{FINI_SECTION_ASM_OP} to calls
6933to initialization and finalization functions from the init and fini
6934sections. By default, this macro uses a simple function call. Some
1b2dd04a
AO
6935ports need hand-crafted assembly code to avoid dependencies on
6936registers initialized in the function prologue or to ensure that
6937constant pools don't end up too far way in the text section.
a2c4f8e0 6938@end defmac
1b2dd04a 6939
a0cfeb0f
DD
6940@defmac TARGET_LIBGCC_SDATA_SECTION
6941If defined, a string which names the section into which small
6942variables defined in crtstuff and libgcc should go. This is useful
6943when the target has options for optimizing access to small data, and
6944you want the crtstuff and libgcc routines to be conservative in what
6945they expect of your application yet liberal in what your application
6946expects. For example, for targets with a @code{.sdata} section (like
6947MIPS), you could compile crtstuff with @code{-G 0} so that it doesn't
6948require small data support from your application, but use this macro
6949to put small data into @code{.sdata} so that your application can
6950access these variables whether it uses small data or not.
726e9992 6951@end defmac
a0cfeb0f 6952
a2c4f8e0 6953@defmac FORCE_CODE_SECTION_ALIGN
cea3bd3e
RH
6954If defined, an ASM statement that aligns a code section to some
6955arbitrary boundary. This is used to force all fragments of the
6956@code{.init} and @code{.fini} sections to have to same alignment
6957and thus prevent the linker from having to add any padding.
a2c4f8e0 6958@end defmac
cea3bd3e 6959
a2c4f8e0 6960@defmac JUMP_TABLES_IN_TEXT_SECTION
df2a54e9 6961Define this macro to be an expression with a nonzero value if jump
75197b37
BS
6962tables (for @code{tablejump} insns) should be output in the text
6963section, along with the assembler instructions. Otherwise, the
6964readonly data section is used.
feca2ed3
JW
6965
6966This macro is irrelevant if there is no separate readonly data section.
a2c4f8e0 6967@end defmac
feca2ed3 6968
d6b5193b
RS
6969@deftypefn {Target Hook} void TARGET_ASM_INIT_SECTIONS (void)
6970Define this hook if you need to do something special to set up the
6971@file{varasm.c} sections, or if your target has some special sections
6972of its own that you need to create.
6973
6974GCC calls this hook after processing the command line, but before writing
6975any assembly code, and before calling any of the section-returning hooks
6976described below.
6977@end deftypefn
6978
914d25dc 6979@deftypefn {Target Hook} int TARGET_ASM_RELOC_RW_MASK (void)
9b580a0b
RH
6980Return a mask describing how relocations should be treated when
6981selecting sections. Bit 1 should be set if global relocations
6982should be placed in a read-write section; bit 0 should be set if
6983local relocations should be placed in a read-write section.
6984
6985The default version of this function returns 3 when @option{-fpic}
6986is in effect, and 0 otherwise. The hook is typically redefined
6987when the target cannot support (some kinds of) dynamic relocations
6988in read-only sections even in executables.
6989@end deftypefn
6990
d6b5193b
RS
6991@deftypefn {Target Hook} {section *} TARGET_ASM_SELECT_SECTION (tree @var{exp}, int @var{reloc}, unsigned HOST_WIDE_INT @var{align})
6992Return the section into which @var{exp} should be placed. You can
ae46c4e0
RH
6993assume that @var{exp} is either a @code{VAR_DECL} node or a constant of
6994some sort. @var{reloc} indicates whether the initial value of @var{exp}
6995requires link-time relocations. Bit 0 is set when variable contains
6996local relocations only, while bit 1 is set for global relocations.
d6b5193b 6997@var{align} is the constant alignment in bits.
ae46c4e0
RH
6998
6999The default version of this function takes care of putting read-only
7000variables in @code{readonly_data_section}.
09afda70
GK
7001
7002See also @var{USE_SELECT_SECTION_FOR_FUNCTIONS}.
ae46c4e0
RH
7003@end deftypefn
7004
09afda70
GK
7005@defmac USE_SELECT_SECTION_FOR_FUNCTIONS
7006Define this macro if you wish TARGET_ASM_SELECT_SECTION to be called
7007for @code{FUNCTION_DECL}s as well as for variables and constants.
7008
7009In the case of a @code{FUNCTION_DECL}, @var{reloc} will be zero if the
7010function has been determined to be likely to be called, and nonzero if
7011it is unlikely to be called.
7012@end defmac
7013
ae46c4e0
RH
7014@deftypefn {Target Hook} void TARGET_ASM_UNIQUE_SECTION (tree @var{decl}, int @var{reloc})
7015Build up a unique section name, expressed as a @code{STRING_CST} node,
7016and assign it to @samp{DECL_SECTION_NAME (@var{decl})}.
7017As with @code{TARGET_ASM_SELECT_SECTION}, @var{reloc} indicates whether
7018the initial value of @var{exp} requires link-time relocations.
7019
7020The default version of this function appends the symbol name to the
7021ELF section name that would normally be used for the symbol. For
7022example, the function @code{foo} would be placed in @code{.text.foo}.
7023Whatever the actual target object format, this is often good enough.
7024@end deftypefn
7025
d6b5193b
RS
7026@deftypefn {Target Hook} {section *} TARGET_ASM_FUNCTION_RODATA_SECTION (tree @var{decl})
7027Return the readonly data section associated with
ab5c8549 7028@samp{DECL_SECTION_NAME (@var{decl})}.
d6b5193b
RS
7029The default version of this function selects @code{.gnu.linkonce.r.name} if
7030the function's section is @code{.gnu.linkonce.t.name}, @code{.rodata.name}
7031if function is in @code{.text.name}, and the normal readonly-data section
7032otherwise.
ab5c8549
JJ
7033@end deftypefn
7034
d6b5193b
RS
7035@deftypefn {Target Hook} {section *} TARGET_ASM_SELECT_RTX_SECTION (enum machine_mode @var{mode}, rtx @var{x}, unsigned HOST_WIDE_INT @var{align})
7036Return the section into which a constant @var{x}, of mode @var{mode},
7037should be placed. You can assume that @var{x} is some kind of
b64a1b53 7038constant in RTL@. The argument @var{mode} is redundant except in the
d6b5193b
RS
7039case of a @code{const_int} rtx. @var{align} is the constant alignment
7040in bits.
b64a1b53
RH
7041
7042The default version of this function takes care of putting symbolic
7043constants in @code{flag_pic} mode in @code{data_section} and everything
7044else in @code{readonly_data_section}.
7045@end deftypefn
7046
914d25dc 7047@deftypefn {Target Hook} tree TARGET_MANGLE_DECL_ASSEMBLER_NAME (tree @var{decl}, tree @var{id})
5234b8f5
DS
7048Define this hook if you need to postprocess the assembler name generated
7049by target-independent code. The @var{id} provided to this hook will be
7050the computed name (e.g., the macro @code{DECL_NAME} of the @var{decl} in C,
7051or the mangled name of the @var{decl} in C++). The return value of the
7052hook is an @code{IDENTIFIER_NODE} for the appropriate mangled name on
7053your target system. The default implementation of this hook just
7054returns the @var{id} provided.
7055@end deftypefn
7056
c6a2438a 7057@deftypefn {Target Hook} void TARGET_ENCODE_SECTION_INFO (tree @var{decl}, rtx @var{rtl}, int @var{new_decl_p})
fb49053f
RH
7058Define this hook if references to a symbol or a constant must be
7059treated differently depending on something about the variable or
7060function named by the symbol (such as what section it is in).
7061
c6a2438a
ZW
7062The hook is executed immediately after rtl has been created for
7063@var{decl}, which may be a variable or function declaration or
7064an entry in the constant pool. In either case, @var{rtl} is the
7065rtl in question. Do @emph{not} use @code{DECL_RTL (@var{decl})}
0864034e 7066in this hook; that field may not have been initialized yet.
c6a2438a
ZW
7067
7068In the case of a constant, it is safe to assume that the rtl is
7069a @code{mem} whose address is a @code{symbol_ref}. Most decls
7070will also have this form, but that is not guaranteed. Global
7071register variables, for instance, will have a @code{reg} for their
7072rtl. (Normally the right thing to do with such unusual rtl is
7073leave it alone.)
fb49053f
RH
7074
7075The @var{new_decl_p} argument will be true if this is the first time
c6a2438a 7076that @code{TARGET_ENCODE_SECTION_INFO} has been invoked on this decl. It will
fb49053f
RH
7077be false for subsequent invocations, which will happen for duplicate
7078declarations. Whether or not anything must be done for the duplicate
7079declaration depends on whether the hook examines @code{DECL_ATTRIBUTES}.
c6a2438a 7080@var{new_decl_p} is always true when the hook is called for a constant.
fb49053f
RH
7081
7082@cindex @code{SYMBOL_REF_FLAG}, in @code{TARGET_ENCODE_SECTION_INFO}
c6a2438a
ZW
7083The usual thing for this hook to do is to record flags in the
7084@code{symbol_ref}, using @code{SYMBOL_REF_FLAG} or @code{SYMBOL_REF_FLAGS}.
7085Historically, the name string was modified if it was necessary to
7086encode more than one bit of information, but this practice is now
7087discouraged; use @code{SYMBOL_REF_FLAGS}.
7088
7089The default definition of this hook, @code{default_encode_section_info}
7090in @file{varasm.c}, sets a number of commonly-useful bits in
7091@code{SYMBOL_REF_FLAGS}. Check whether the default does what you need
7092before overriding it.
fb49053f
RH
7093@end deftypefn
7094
914d25dc 7095@deftypefn {Target Hook} {const char *} TARGET_STRIP_NAME_ENCODING (const char *@var{name})
772c5265
RH
7096Decode @var{name} and return the real name part, sans
7097the characters that @code{TARGET_ENCODE_SECTION_INFO}
7098may have added.
7099@end deftypefn
7100
b6fd8800 7101@deftypefn {Target Hook} bool TARGET_IN_SMALL_DATA_P (const_tree @var{exp})
47754fd5
RH
7102Returns true if @var{exp} should be placed into a ``small data'' section.
7103The default version of this hook always returns false.
7104@end deftypefn
7105
9e3be889 7106@deftypevr {Target Hook} bool TARGET_HAVE_SRODATA_SECTION
e2a6476e
DE
7107Contains the value true if the target places read-only
7108``small data'' into a separate section. The default value is false.
9e3be889 7109@end deftypevr
e2a6476e 7110
3c5273a9
KT
7111@deftypefn {Target Hook} bool TARGET_PROFILE_BEFORE_PROLOGUE (void)
7112It returns true if target wants profile code emitted before prologue.
7113
7114The default version of this hook use the target macro
7115@code{PROFILE_BEFORE_PROLOGUE}.
7116@end deftypefn
7117
b6fd8800 7118@deftypefn {Target Hook} bool TARGET_BINDS_LOCAL_P (const_tree @var{exp})
47754fd5
RH
7119Returns true if @var{exp} names an object for which name resolution
7120rules must resolve to the current ``module'' (dynamic shared library
7121or executable image).
7122
7123The default version of this hook implements the name resolution rules
7124for ELF, which has a looser model of global name binding than other
7125currently supported object file formats.
7126@end deftypefn
7127
9e3be889 7128@deftypevr {Target Hook} bool TARGET_HAVE_TLS
e2a6476e
DE
7129Contains the value true if the target supports thread-local storage.
7130The default value is false.
9e3be889 7131@end deftypevr
e2a6476e
DE
7132
7133
feca2ed3
JW
7134@node PIC
7135@section Position Independent Code
7136@cindex position independent code
7137@cindex PIC
7138
7139This section describes macros that help implement generation of position
7140independent code. Simply defining these macros is not enough to
c6c3dba9
PB
7141generate valid PIC; you must also add support to the hook
7142@code{TARGET_LEGITIMATE_ADDRESS_P} and to the macro
7143@code{PRINT_OPERAND_ADDRESS}, as well as @code{LEGITIMIZE_ADDRESS}. You
7144must modify the definition of @samp{movsi} to do something appropriate
7145when the source operand contains a symbolic address. You may also
7146need to alter the handling of switch statements so that they use
7147relative addresses.
7148@c i rearranged the order of the macros above to try to force one of
feca2ed3
JW
7149@c them to the next line, to eliminate an overfull hbox. --mew 10feb93
7150
a2c4f8e0 7151@defmac PIC_OFFSET_TABLE_REGNUM
feca2ed3
JW
7152The register number of the register used to address a table of static
7153data addresses in memory. In some cases this register is defined by a
161d7b59 7154processor's ``application binary interface'' (ABI)@. When this macro
feca2ed3
JW
7155is defined, RTL is generated for this register once, as with the stack
7156pointer and frame pointer registers. If this macro is not defined, it
7157is up to the machine-dependent files to allocate such a register (if
003b9f78 7158necessary). Note that this register must be fixed when in use (e.g.@:
12beba6f 7159when @code{flag_pic} is true).
a2c4f8e0 7160@end defmac
feca2ed3 7161
a2c4f8e0 7162@defmac PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
f8fe0a4a
JM
7163A C expression that is nonzero if the register defined by
7164@code{PIC_OFFSET_TABLE_REGNUM} is clobbered by calls. If not defined,
7165the default is zero. Do not define
ed4db1ee 7166this macro if @code{PIC_OFFSET_TABLE_REGNUM} is not defined.
a2c4f8e0 7167@end defmac
feca2ed3 7168
a2c4f8e0 7169@defmac LEGITIMATE_PIC_OPERAND_P (@var{x})
feca2ed3
JW
7170A C expression that is nonzero if @var{x} is a legitimate immediate
7171operand on the target machine when generating position independent code.
7172You can assume that @var{x} satisfies @code{CONSTANT_P}, so you need not
7173check this. You can also assume @var{flag_pic} is true, so you need not
7174check it either. You need not define this macro if all constants
7175(including @code{SYMBOL_REF}) can be immediate operands when generating
7176position independent code.
a2c4f8e0 7177@end defmac
feca2ed3
JW
7178
7179@node Assembler Format
7180@section Defining the Output Assembler Language
7181
7182This section describes macros whose principal purpose is to describe how
648c546a 7183to write instructions in assembler language---rather than what the
feca2ed3
JW
7184instructions do.
7185
7186@menu
7187* File Framework:: Structural information for the assembler file.
7188* Data Output:: Output of constants (numbers, strings, addresses).
7189* Uninitialized Data:: Output of uninitialized variables.
7190* Label Output:: Output and generation of labels.
7191* Initialization:: General principles of initialization
6ccde948 7192 and termination routines.
feca2ed3 7193* Macros for Initialization::
6ccde948
RW
7194 Specific macros that control the handling of
7195 initialization and termination routines.
feca2ed3
JW
7196* Instruction Output:: Output of actual instructions.
7197* Dispatch Tables:: Output of jump tables.
7198* Exception Region Output:: Output of exception region code.
7199* Alignment Output:: Pseudo ops for alignment and skipping data.
7200@end menu
7201
7202@node File Framework
7203@subsection The Overall Framework of an Assembler File
7204@cindex assembler format
7205@cindex output of assembler code
7206
7207@c prevent bad page break with this line
1bc7c5b6
ZW
7208This describes the overall framework of an assembly file.
7209
1bc7c5b6 7210@findex default_file_start
914d25dc 7211@deftypefn {Target Hook} void TARGET_ASM_FILE_START (void)
1bc7c5b6
ZW
7212Output to @code{asm_out_file} any text which the assembler expects to
7213find at the beginning of a file. The default behavior is controlled
7214by two flags, documented below. Unless your target's assembler is
7215quite unusual, if you override the default, you should call
7216@code{default_file_start} at some point in your target hook. This
7217lets other target files rely on these variables.
7218@end deftypefn
feca2ed3 7219
1bc7c5b6
ZW
7220@deftypevr {Target Hook} bool TARGET_ASM_FILE_START_APP_OFF
7221If this flag is true, the text of the macro @code{ASM_APP_OFF} will be
7222printed as the very first line in the assembly file, unless
7223@option{-fverbose-asm} is in effect. (If that macro has been defined
7224to the empty string, this variable has no effect.) With the normal
7225definition of @code{ASM_APP_OFF}, the effect is to notify the GNU
7226assembler that it need not bother stripping comments or extra
7227whitespace from its input. This allows it to work a bit faster.
7228
7229The default is false. You should not set it to true unless you have
7230verified that your port does not generate any extra whitespace or
7231comments that will cause GAS to issue errors in NO_APP mode.
7232@end deftypevr
7233
7234@deftypevr {Target Hook} bool TARGET_ASM_FILE_START_FILE_DIRECTIVE
7235If this flag is true, @code{output_file_directive} will be called
7236for the primary source file, immediately after printing
7237@code{ASM_APP_OFF} (if that is enabled). Most ELF assemblers expect
7238this to be done. The default is false.
7239@end deftypevr
feca2ed3 7240
b6fd8800 7241@deftypefn {Target Hook} void TARGET_ASM_FILE_END (void)
a5fe455b
ZW
7242Output to @code{asm_out_file} any text which the assembler expects
7243to find at the end of a file. The default is to output nothing.
7244@end deftypefn
feca2ed3 7245
a5fe455b
ZW
7246@deftypefun void file_end_indicate_exec_stack ()
7247Some systems use a common convention, the @samp{.note.GNU-stack}
7248special section, to indicate whether or not an object file relies on
7249the stack being executable. If your system uses this convention, you
7250should define @code{TARGET_ASM_FILE_END} to this function. If you
7251need to do other things in that hook, have your hook function call
7252this function.
7253@end deftypefun
feca2ed3 7254
c082f9f3
SB
7255@deftypefn {Target Hook} void TARGET_ASM_LTO_START (void)
7256Output to @code{asm_out_file} any text which the assembler expects
7257to find at the start of an LTO section. The default is to output
7258nothing.
7259@end deftypefn
7260
7261@deftypefn {Target Hook} void TARGET_ASM_LTO_END (void)
7262Output to @code{asm_out_file} any text which the assembler expects
7263to find at the end of an LTO section. The default is to output
7264nothing.
7265@end deftypefn
7266
6d217c32
JJ
7267@deftypefn {Target Hook} void TARGET_ASM_CODE_END (void)
7268Output to @code{asm_out_file} any text which is needed before emitting
7269unwind info and debug info at the end of a file. Some targets emit
7270here PIC setup thunks that cannot be emitted at the end of file,
7271because they couldn't have unwind info then. The default is to output
7272nothing.
7273@end deftypefn
7274
a2c4f8e0 7275@defmac ASM_COMMENT_START
feca2ed3
JW
7276A C string constant describing how to begin a comment in the target
7277assembler language. The compiler assumes that the comment will end at
7278the end of the line.
a2c4f8e0 7279@end defmac
feca2ed3 7280
a2c4f8e0 7281@defmac ASM_APP_ON
feca2ed3
JW
7282A C string constant for text to be output before each @code{asm}
7283statement or group of consecutive ones. Normally this is
7284@code{"#APP"}, which is a comment that has no effect on most
7285assemblers but tells the GNU assembler that it must check the lines
7286that follow for all valid assembler constructs.
a2c4f8e0 7287@end defmac
feca2ed3 7288
a2c4f8e0 7289@defmac ASM_APP_OFF
feca2ed3
JW
7290A C string constant for text to be output after each @code{asm}
7291statement or group of consecutive ones. Normally this is
7292@code{"#NO_APP"}, which tells the GNU assembler to resume making the
7293time-saving assumptions that are valid for ordinary compiler output.
a2c4f8e0 7294@end defmac
feca2ed3 7295
a2c4f8e0 7296@defmac ASM_OUTPUT_SOURCE_FILENAME (@var{stream}, @var{name})
feca2ed3
JW
7297A C statement to output COFF information or DWARF debugging information
7298which indicates that filename @var{name} is the current source file to
7299the stdio stream @var{stream}.
7300
7301This macro need not be defined if the standard form of output
7302for the file format in use is appropriate.
a2c4f8e0 7303@end defmac
feca2ed3 7304
b5f5d41d
AS
7305@deftypefn {Target Hook} void TARGET_ASM_OUTPUT_SOURCE_FILENAME (FILE *@var{file}, const char *@var{name})
7306Output COFF information or DWARF debugging information which indicates that filename @var{name} is the current source file to the stdio stream @var{file}.
7307
7308 This target hook need not be defined if the standard form of output for the file format in use is appropriate.
7309@end deftypefn
7310
a2c4f8e0 7311@defmac OUTPUT_QUOTED_STRING (@var{stream}, @var{string})
e9a25f70
JL
7312A C statement to output the string @var{string} to the stdio stream
7313@var{stream}. If you do not call the function @code{output_quoted_string}
a3a15b4d 7314in your config files, GCC will only call it to output filenames to
e9a25f70
JL
7315the assembler source. So you can use it to canonicalize the format
7316of the filename using this macro.
a2c4f8e0 7317@end defmac
e9a25f70 7318
a2c4f8e0 7319@defmac ASM_OUTPUT_IDENT (@var{stream}, @var{string})
feca2ed3
JW
7320A C statement to output something to the assembler file to handle a
7321@samp{#ident} directive containing the text @var{string}. If this
7322macro is not defined, nothing is output for a @samp{#ident} directive.
a2c4f8e0 7323@end defmac
feca2ed3 7324
914d25dc 7325@deftypefn {Target Hook} void TARGET_ASM_NAMED_SECTION (const char *@var{name}, unsigned int @var{flags}, tree @var{decl})
7c262518
RH
7326Output assembly directives to switch to section @var{name}. The section
7327should have attributes as specified by @var{flags}, which is a bit mask
914d25dc
JR
7328of the @code{SECTION_*} flags defined in @file{output.h}. If @var{decl}
7329is non-NULL, it is the @code{VAR_DECL} or @code{FUNCTION_DECL} with which
7330this section is associated.
7c262518
RH
7331@end deftypefn
7332
914d25dc 7333@deftypevr {Target Hook} bool TARGET_HAVE_NAMED_SECTIONS
7c262518 7334This flag is true if the target supports @code{TARGET_ASM_NAMED_SECTION}.
914d25dc 7335@end deftypevr
7c262518 7336
434aeebb 7337@anchor{TARGET_HAVE_SWITCHABLE_BSS_SECTIONS}
914d25dc 7338@deftypevr {Target Hook} bool TARGET_HAVE_SWITCHABLE_BSS_SECTIONS
434aeebb
RS
7339This flag is true if we can create zeroed data by switching to a BSS
7340section and then using @code{ASM_OUTPUT_SKIP} to allocate the space.
7341This is true on most ELF targets.
914d25dc 7342@end deftypevr
434aeebb 7343
7c262518
RH
7344@deftypefn {Target Hook} {unsigned int} TARGET_SECTION_TYPE_FLAGS (tree @var{decl}, const char *@var{name}, int @var{reloc})
7345Choose a set of section attributes for use by @code{TARGET_ASM_NAMED_SECTION}
7346based on a variable or function decl, a section name, and whether or not the
7347declaration's initializer may contain runtime relocations. @var{decl} may be
6ccde948 7348null, in which case read-write data should be assumed.
7c262518 7349
224504d2 7350The default version of this function handles choosing code vs data,
7c262518
RH
7351read-only vs read-write data, and @code{flag_pic}. You should only
7352need to override this if your target has special flags that might be
7353set via @code{__attribute__}.
7354@end deftypefn
7355
b6fd8800 7356@deftypefn {Target Hook} int TARGET_ASM_RECORD_GCC_SWITCHES (print_switch_type @var{type}, const char *@var{text})
e0d9d0dd
NC
7357Provides the target with the ability to record the gcc command line
7358switches that have been passed to the compiler, and options that are
7359enabled. The @var{type} argument specifies what is being recorded.
7360It can take the following values:
7361
7362@table @gcctabopt
7363@item SWITCH_TYPE_PASSED
7364@var{text} is a command line switch that has been set by the user.
7365
7366@item SWITCH_TYPE_ENABLED
7367@var{text} is an option which has been enabled. This might be as a
7368direct result of a command line switch, or because it is enabled by
7369default or because it has been enabled as a side effect of a different
7370command line switch. For example, the @option{-O2} switch enables
7371various different individual optimization passes.
7372
7373@item SWITCH_TYPE_DESCRIPTIVE
7374@var{text} is either NULL or some descriptive text which should be
7375ignored. If @var{text} is NULL then it is being used to warn the
7376target hook that either recording is starting or ending. The first
7377time @var{type} is SWITCH_TYPE_DESCRIPTIVE and @var{text} is NULL, the
7378warning is for start up and the second time the warning is for
7379wind down. This feature is to allow the target hook to make any
7380necessary preparations before it starts to record switches and to
7381perform any necessary tidying up after it has finished recording
7382switches.
7383
7384@item SWITCH_TYPE_LINE_START
7385This option can be ignored by this target hook.
7386
7387@item SWITCH_TYPE_LINE_END
7388This option can be ignored by this target hook.
7389@end table
7390
7391The hook's return value must be zero. Other return values may be
7392supported in the future.
7393
7394By default this hook is set to NULL, but an example implementation is
7395provided for ELF based targets. Called @var{elf_record_gcc_switches},
7396it records the switches as ASCII text inside a new, string mergeable
7397section in the assembler output file. The name of the new section is
7398provided by the @code{TARGET_ASM_RECORD_GCC_SWITCHES_SECTION} target
7399hook.
7400@end deftypefn
7401
914d25dc 7402@deftypevr {Target Hook} {const char *} TARGET_ASM_RECORD_GCC_SWITCHES_SECTION
e0d9d0dd
NC
7403This is the name of the section that will be created by the example
7404ELF implementation of the @code{TARGET_ASM_RECORD_GCC_SWITCHES} target
7405hook.
914d25dc 7406@end deftypevr
e0d9d0dd 7407
feca2ed3
JW
7408@need 2000
7409@node Data Output
7410@subsection Output of Data
7411
301d03af
RS
7412
7413@deftypevr {Target Hook} {const char *} TARGET_ASM_BYTE_OP
7414@deftypevrx {Target Hook} {const char *} TARGET_ASM_ALIGNED_HI_OP
7415@deftypevrx {Target Hook} {const char *} TARGET_ASM_ALIGNED_SI_OP
7416@deftypevrx {Target Hook} {const char *} TARGET_ASM_ALIGNED_DI_OP
7417@deftypevrx {Target Hook} {const char *} TARGET_ASM_ALIGNED_TI_OP
7418@deftypevrx {Target Hook} {const char *} TARGET_ASM_UNALIGNED_HI_OP
7419@deftypevrx {Target Hook} {const char *} TARGET_ASM_UNALIGNED_SI_OP
7420@deftypevrx {Target Hook} {const char *} TARGET_ASM_UNALIGNED_DI_OP
7421@deftypevrx {Target Hook} {const char *} TARGET_ASM_UNALIGNED_TI_OP
7422These hooks specify assembly directives for creating certain kinds
7423of integer object. The @code{TARGET_ASM_BYTE_OP} directive creates a
7424byte-sized object, the @code{TARGET_ASM_ALIGNED_HI_OP} one creates an
7425aligned two-byte object, and so on. Any of the hooks may be
7426@code{NULL}, indicating that no suitable directive is available.
7427
7428The compiler will print these strings at the start of a new line,
7429followed immediately by the object's initial value. In most cases,
7430the string should contain a tab, a pseudo-op, and then another tab.
7431@end deftypevr
7432
7433@deftypefn {Target Hook} bool TARGET_ASM_INTEGER (rtx @var{x}, unsigned int @var{size}, int @var{aligned_p})
7434The @code{assemble_integer} function uses this hook to output an
7435integer object. @var{x} is the object's value, @var{size} is its size
7436in bytes and @var{aligned_p} indicates whether it is aligned. The
7437function should return @code{true} if it was able to output the
7438object. If it returns false, @code{assemble_integer} will try to
7439split the object into smaller parts.
7440
7441The default implementation of this hook will use the
7442@code{TARGET_ASM_BYTE_OP} family of strings, returning @code{false}
7443when the relevant string is @code{NULL}.
7444@end deftypefn
feca2ed3 7445
6cbd8875
AS
7446@deftypefn {Target Hook} bool TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA (FILE *@var{file}, rtx @var{x})
7447A target hook to recognize @var{rtx} patterns that @code{output_addr_const}
7448can't deal with, and output assembly code to @var{file} corresponding to
7449the pattern @var{x}. This may be used to allow machine-dependent
7450@code{UNSPEC}s to appear within constants.
7451
7452If target hook fails to recognize a pattern, it must return @code{false},
7453so that a standard error message is printed. If it prints an error message
7454itself, by calling, for example, @code{output_operand_lossage}, it may just
7455return @code{true}.
7456@end deftypefn
7457
a2c4f8e0 7458@defmac OUTPUT_ADDR_CONST_EXTRA (@var{stream}, @var{x}, @var{fail})
422be3c3
AO
7459A C statement to recognize @var{rtx} patterns that
7460@code{output_addr_const} can't deal with, and output assembly code to
7461@var{stream} corresponding to the pattern @var{x}. This may be used to
7462allow machine-dependent @code{UNSPEC}s to appear within constants.
7463
7464If @code{OUTPUT_ADDR_CONST_EXTRA} fails to recognize a pattern, it must
7465@code{goto fail}, so that a standard error message is printed. If it
7466prints an error message itself, by calling, for example,
7467@code{output_operand_lossage}, it may just complete normally.
a2c4f8e0 7468@end defmac
422be3c3 7469
a2c4f8e0 7470@defmac ASM_OUTPUT_ASCII (@var{stream}, @var{ptr}, @var{len})
feca2ed3
JW
7471A C statement to output to the stdio stream @var{stream} an assembler
7472instruction to assemble a string constant containing the @var{len}
7473bytes at @var{ptr}. @var{ptr} will be a C expression of type
7474@code{char *} and @var{len} a C expression of type @code{int}.
7475
7476If the assembler has a @code{.ascii} pseudo-op as found in the
7477Berkeley Unix assembler, do not define the macro
7478@code{ASM_OUTPUT_ASCII}.
a2c4f8e0 7479@end defmac
feca2ed3 7480
a2c4f8e0 7481@defmac ASM_OUTPUT_FDESC (@var{stream}, @var{decl}, @var{n})
67231816
RH
7482A C statement to output word @var{n} of a function descriptor for
7483@var{decl}. This must be defined if @code{TARGET_VTABLE_USES_DESCRIPTORS}
7484is defined, and is otherwise unused.
a2c4f8e0 7485@end defmac
67231816 7486
a2c4f8e0 7487@defmac CONSTANT_POOL_BEFORE_FUNCTION
861bb6c1 7488You may define this macro as a C expression. You should define the
df2a54e9 7489expression to have a nonzero value if GCC should output the constant
861bb6c1 7490pool for a function before the code for the function, or a zero value if
a3a15b4d
JL
7491GCC should output the constant pool after the function. If you do
7492not define this macro, the usual case, GCC will output the constant
861bb6c1 7493pool before the function.
a2c4f8e0 7494@end defmac
861bb6c1 7495
a2c4f8e0 7496@defmac ASM_OUTPUT_POOL_PROLOGUE (@var{file}, @var{funname}, @var{fundecl}, @var{size})
feca2ed3
JW
7497A C statement to output assembler commands to define the start of the
7498constant pool for a function. @var{funname} is a string giving
7499the name of the function. Should the return type of the function
7500be required, it can be obtained via @var{fundecl}. @var{size}
7501is the size, in bytes, of the constant pool that will be written
7502immediately after this call.
7503
7504If no constant-pool prefix is required, the usual case, this macro need
7505not be defined.
a2c4f8e0 7506@end defmac
feca2ed3 7507
a2c4f8e0 7508@defmac ASM_OUTPUT_SPECIAL_POOL_ENTRY (@var{file}, @var{x}, @var{mode}, @var{align}, @var{labelno}, @var{jumpto})
feca2ed3
JW
7509A C statement (with or without semicolon) to output a constant in the
7510constant pool, if it needs special treatment. (This macro need not do
7511anything for RTL expressions that can be output normally.)
7512
7513The argument @var{file} is the standard I/O stream to output the
7514assembler code on. @var{x} is the RTL expression for the constant to
7515output, and @var{mode} is the machine mode (in case @var{x} is a
7516@samp{const_int}). @var{align} is the required alignment for the value
7517@var{x}; you should output an assembler directive to force this much
7518alignment.
7519
7520The argument @var{labelno} is a number to use in an internal label for
7521the address of this pool entry. The definition of this macro is
7522responsible for outputting the label definition at the proper place.
7523Here is how to do this:
7524
3ab51846 7525@smallexample
4977bab6 7526@code{(*targetm.asm_out.internal_label)} (@var{file}, "LC", @var{labelno});
3ab51846 7527@end smallexample
feca2ed3
JW
7528
7529When you output a pool entry specially, you should end with a
7530@code{goto} to the label @var{jumpto}. This will prevent the same pool
7531entry from being output a second time in the usual manner.
7532
7533You need not define this macro if it would do nothing.
a2c4f8e0 7534@end defmac
feca2ed3 7535
a2c4f8e0 7536@defmac ASM_OUTPUT_POOL_EPILOGUE (@var{file} @var{funname} @var{fundecl} @var{size})
861bb6c1
JL
7537A C statement to output assembler commands to at the end of the constant
7538pool for a function. @var{funname} is a string giving the name of the
7539function. Should the return type of the function be required, you can
7540obtain it via @var{fundecl}. @var{size} is the size, in bytes, of the
a3a15b4d 7541constant pool that GCC wrote immediately before this call.
861bb6c1
JL
7542
7543If no constant-pool epilogue is required, the usual case, you need not
7544define this macro.
a2c4f8e0 7545@end defmac
861bb6c1 7546
980d8882 7547@defmac IS_ASM_LOGICAL_LINE_SEPARATOR (@var{C}, @var{STR})
feca2ed3 7548Define this macro as a C expression which is nonzero if @var{C} is
980d8882
BS
7549used as a logical line separator by the assembler. @var{STR} points
7550to the position in the string where @var{C} was found; this can be used if
7551a line separator uses multiple characters.
feca2ed3
JW
7552
7553If you do not define this macro, the default is that only
7554the character @samp{;} is treated as a logical line separator.
a2c4f8e0 7555@end defmac
feca2ed3 7556
8ca83838 7557@deftypevr {Target Hook} {const char *} TARGET_ASM_OPEN_PAREN
baed53ac 7558@deftypevrx {Target Hook} {const char *} TARGET_ASM_CLOSE_PAREN
17b53c33
NB
7559These target hooks are C string constants, describing the syntax in the
7560assembler for grouping arithmetic expressions. If not overridden, they
7561default to normal parentheses, which is correct for most assemblers.
8ca83838 7562@end deftypevr
17b53c33 7563
6ccde948 7564These macros are provided by @file{real.h} for writing the definitions
feca2ed3
JW
7565of @code{ASM_OUTPUT_DOUBLE} and the like:
7566
a2c4f8e0
ZW
7567@defmac REAL_VALUE_TO_TARGET_SINGLE (@var{x}, @var{l})
7568@defmacx REAL_VALUE_TO_TARGET_DOUBLE (@var{x}, @var{l})
7569@defmacx REAL_VALUE_TO_TARGET_LONG_DOUBLE (@var{x}, @var{l})
dadb213f
BE
7570@defmacx REAL_VALUE_TO_TARGET_DECIMAL32 (@var{x}, @var{l})
7571@defmacx REAL_VALUE_TO_TARGET_DECIMAL64 (@var{x}, @var{l})
7572@defmacx REAL_VALUE_TO_TARGET_DECIMAL128 (@var{x}, @var{l})
7573These translate @var{x}, of type @code{REAL_VALUE_TYPE}, to the
7574target's floating point representation, and store its bit pattern in
7575the variable @var{l}. For @code{REAL_VALUE_TO_TARGET_SINGLE} and
7576@code{REAL_VALUE_TO_TARGET_DECIMAL32}, this variable should be a
7577simple @code{long int}. For the others, it should be an array of
7578@code{long int}. The number of elements in this array is determined
7579by the size of the desired target floating point data type: 32 bits of
7580it go in each @code{long int} array element. Each array element holds
758132 bits of the result, even if @code{long int} is wider than 32 bits
7582on the host machine.
feca2ed3
JW
7583
7584The array element values are designed so that you can print them out
7585using @code{fprintf} in the order they should appear in the target
7586machine's memory.
a2c4f8e0 7587@end defmac
feca2ed3
JW
7588
7589@node Uninitialized Data
7590@subsection Output of Uninitialized Variables
7591
7592Each of the macros in this section is used to do the whole job of
7593outputting a single uninitialized variable.
7594
a2c4f8e0 7595@defmac ASM_OUTPUT_COMMON (@var{stream}, @var{name}, @var{size}, @var{rounded})
feca2ed3
JW
7596A C statement (sans semicolon) to output to the stdio stream
7597@var{stream} the assembler definition of a common-label named
7598@var{name} whose size is @var{size} bytes. The variable @var{rounded}
233215fe
DK
7599is the size rounded up to whatever alignment the caller wants. It is
7600possible that @var{size} may be zero, for instance if a struct with no
7601other member than a zero-length array is defined. In this case, the
7602backend must output a symbol definition that allocates at least one
7603byte, both so that the address of the resulting object does not compare
7604equal to any other, and because some object formats cannot even express
7605the concept of a zero-sized common symbol, as that is how they represent
7606an ordinary undefined external.
feca2ed3
JW
7607
7608Use the expression @code{assemble_name (@var{stream}, @var{name})} to
7609output the name itself; before and after that, output the additional
7610assembler syntax for defining the name, and a newline.
7611
7612This macro controls how the assembler definitions of uninitialized
7613common global variables are output.
a2c4f8e0 7614@end defmac
feca2ed3 7615
a2c4f8e0 7616@defmac ASM_OUTPUT_ALIGNED_COMMON (@var{stream}, @var{name}, @var{size}, @var{alignment})
feca2ed3
JW
7617Like @code{ASM_OUTPUT_COMMON} except takes the required alignment as a
7618separate, explicit argument. If you define this macro, it is used in
7619place of @code{ASM_OUTPUT_COMMON}, and gives you more flexibility in
7620handling the required alignment of the variable. The alignment is specified
7621as the number of bits.
a2c4f8e0 7622@end defmac
feca2ed3 7623
a2c4f8e0 7624@defmac ASM_OUTPUT_ALIGNED_DECL_COMMON (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{alignment})
e9a25f70
JL
7625Like @code{ASM_OUTPUT_ALIGNED_COMMON} except that @var{decl} of the
7626variable to be output, if there is one, or @code{NULL_TREE} if there
8760eaae 7627is no corresponding variable. If you define this macro, GCC will use it
e9a25f70
JL
7628in place of both @code{ASM_OUTPUT_COMMON} and
7629@code{ASM_OUTPUT_ALIGNED_COMMON}. Define this macro when you need to see
7630the variable's decl in order to chose what to output.
a2c4f8e0 7631@end defmac
e9a25f70 7632
a2c4f8e0 7633@defmac ASM_OUTPUT_BSS (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{rounded})
feca2ed3
JW
7634A C statement (sans semicolon) to output to the stdio stream
7635@var{stream} the assembler definition of uninitialized global @var{decl} named
7636@var{name} whose size is @var{size} bytes. The variable @var{rounded}
7637is the size rounded up to whatever alignment the caller wants.
7638
7639Try to use function @code{asm_output_bss} defined in @file{varasm.c} when
7640defining this macro. If unable, use the expression
7641@code{assemble_name (@var{stream}, @var{name})} to output the name itself;
7642before and after that, output the additional assembler syntax for defining
7643the name, and a newline.
7644
0ee2ea09 7645There are two ways of handling global BSS@. One is to define either
434aeebb
RS
7646this macro or its aligned counterpart, @code{ASM_OUTPUT_ALIGNED_BSS}.
7647The other is to have @code{TARGET_ASM_SELECT_SECTION} return a
7648switchable BSS section (@pxref{TARGET_HAVE_SWITCHABLE_BSS_SECTIONS}).
7649You do not need to do both.
7650
7651Some languages do not have @code{common} data, and require a
7652non-common form of global BSS in order to handle uninitialized globals
7653efficiently. C++ is one example of this. However, if the target does
7654not support global BSS, the front end may choose to make globals
7655common in order to save space in the object file.
a2c4f8e0 7656@end defmac
feca2ed3 7657
a2c4f8e0 7658@defmac ASM_OUTPUT_ALIGNED_BSS (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{alignment})
feca2ed3
JW
7659Like @code{ASM_OUTPUT_BSS} except takes the required alignment as a
7660separate, explicit argument. If you define this macro, it is used in
7661place of @code{ASM_OUTPUT_BSS}, and gives you more flexibility in
7662handling the required alignment of the variable. The alignment is specified
7663as the number of bits.
7664
7665Try to use function @code{asm_output_aligned_bss} defined in file
7666@file{varasm.c} when defining this macro.
a2c4f8e0 7667@end defmac
feca2ed3 7668
a2c4f8e0 7669@defmac ASM_OUTPUT_LOCAL (@var{stream}, @var{name}, @var{size}, @var{rounded})
feca2ed3
JW
7670A C statement (sans semicolon) to output to the stdio stream
7671@var{stream} the assembler definition of a local-common-label named
7672@var{name} whose size is @var{size} bytes. The variable @var{rounded}
7673is the size rounded up to whatever alignment the caller wants.
7674
7675Use the expression @code{assemble_name (@var{stream}, @var{name})} to
7676output the name itself; before and after that, output the additional
7677assembler syntax for defining the name, and a newline.
7678
7679This macro controls how the assembler definitions of uninitialized
7680static variables are output.
a2c4f8e0 7681@end defmac
feca2ed3 7682
a2c4f8e0 7683@defmac ASM_OUTPUT_ALIGNED_LOCAL (@var{stream}, @var{name}, @var{size}, @var{alignment})
feca2ed3
JW
7684Like @code{ASM_OUTPUT_LOCAL} except takes the required alignment as a
7685separate, explicit argument. If you define this macro, it is used in
7686place of @code{ASM_OUTPUT_LOCAL}, and gives you more flexibility in
7687handling the required alignment of the variable. The alignment is specified
7688as the number of bits.
a2c4f8e0 7689@end defmac
feca2ed3 7690
a2c4f8e0 7691@defmac ASM_OUTPUT_ALIGNED_DECL_LOCAL (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{alignment})
e9a25f70
JL
7692Like @code{ASM_OUTPUT_ALIGNED_DECL} except that @var{decl} of the
7693variable to be output, if there is one, or @code{NULL_TREE} if there
8760eaae 7694is no corresponding variable. If you define this macro, GCC will use it
e9a25f70
JL
7695in place of both @code{ASM_OUTPUT_DECL} and
7696@code{ASM_OUTPUT_ALIGNED_DECL}. Define this macro when you need to see
7697the variable's decl in order to chose what to output.
a2c4f8e0 7698@end defmac
e9a25f70 7699
feca2ed3
JW
7700@node Label Output
7701@subsection Output and Generation of Labels
7702
7703@c prevent bad page break with this line
7704This is about outputting labels.
7705
feca2ed3 7706@findex assemble_name
a2c4f8e0 7707@defmac ASM_OUTPUT_LABEL (@var{stream}, @var{name})
feca2ed3
JW
7708A C statement (sans semicolon) to output to the stdio stream
7709@var{stream} the assembler definition of a label named @var{name}.
7710Use the expression @code{assemble_name (@var{stream}, @var{name})} to
7711output the name itself; before and after that, output the additional
4ad5e05d
KG
7712assembler syntax for defining the name, and a newline. A default
7713definition of this macro is provided which is correct for most systems.
a2c4f8e0 7714@end defmac
feca2ed3 7715
135a687e
KT
7716@defmac ASM_OUTPUT_FUNCTION_LABEL (@var{stream}, @var{name}, @var{decl})
7717A C statement (sans semicolon) to output to the stdio stream
7718@var{stream} the assembler definition of a label named @var{name} of
7719a function.
7720Use the expression @code{assemble_name (@var{stream}, @var{name})} to
7721output the name itself; before and after that, output the additional
7722assembler syntax for defining the name, and a newline. A default
7723definition of this macro is provided which is correct for most systems.
7724
7725If this macro is not defined, then the function name is defined in the
7726usual manner as a label (by means of @code{ASM_OUTPUT_LABEL}).
7727@end defmac
7728
57829bc4
MM
7729@findex assemble_name_raw
7730@defmac ASM_OUTPUT_INTERNAL_LABEL (@var{stream}, @var{name})
e374d5c9 7731Identical to @code{ASM_OUTPUT_LABEL}, except that @var{name} is known
57829bc4
MM
7732to refer to a compiler-generated label. The default definition uses
7733@code{assemble_name_raw}, which is like @code{assemble_name} except
7734that it is more efficient.
7735@end defmac
7736
a2c4f8e0 7737@defmac SIZE_ASM_OP
2be2ac70
ZW
7738A C string containing the appropriate assembler directive to specify the
7739size of a symbol, without any arguments. On systems that use ELF, the
7740default (in @file{config/elfos.h}) is @samp{"\t.size\t"}; on other
7741systems, the default is not to define this macro.
7742
7743Define this macro only if it is correct to use the default definitions
7744of @code{ASM_OUTPUT_SIZE_DIRECTIVE} and @code{ASM_OUTPUT_MEASURED_SIZE}
7745for your system. If you need your own custom definitions of those
7746macros, or if you do not need explicit symbol sizes at all, do not
7747define this macro.
a2c4f8e0 7748@end defmac
2be2ac70 7749
a2c4f8e0 7750@defmac ASM_OUTPUT_SIZE_DIRECTIVE (@var{stream}, @var{name}, @var{size})
2be2ac70
ZW
7751A C statement (sans semicolon) to output to the stdio stream
7752@var{stream} a directive telling the assembler that the size of the
7753symbol @var{name} is @var{size}. @var{size} is a @code{HOST_WIDE_INT}.
7754If you define @code{SIZE_ASM_OP}, a default definition of this macro is
7755provided.
a2c4f8e0 7756@end defmac
2be2ac70 7757
a2c4f8e0 7758@defmac ASM_OUTPUT_MEASURED_SIZE (@var{stream}, @var{name})
2be2ac70
ZW
7759A C statement (sans semicolon) to output to the stdio stream
7760@var{stream} a directive telling the assembler to calculate the size of
99086d59 7761the symbol @var{name} by subtracting its address from the current
73774972 7762address.
99086d59
ZW
7763
7764If you define @code{SIZE_ASM_OP}, a default definition of this macro is
7765provided. The default assumes that the assembler recognizes a special
7766@samp{.} symbol as referring to the current address, and can calculate
7767the difference between this and another symbol. If your assembler does
7768not recognize @samp{.} or cannot do calculations with it, you will need
7769to redefine @code{ASM_OUTPUT_MEASURED_SIZE} to use some other technique.
a2c4f8e0 7770@end defmac
2be2ac70 7771
a2c4f8e0 7772@defmac TYPE_ASM_OP
2be2ac70
ZW
7773A C string containing the appropriate assembler directive to specify the
7774type of a symbol, without any arguments. On systems that use ELF, the
7775default (in @file{config/elfos.h}) is @samp{"\t.type\t"}; on other
7776systems, the default is not to define this macro.
7777
7778Define this macro only if it is correct to use the default definition of
7779@code{ASM_OUTPUT_TYPE_DIRECTIVE} for your system. If you need your own
7780custom definition of this macro, or if you do not need explicit symbol
7781types at all, do not define this macro.
a2c4f8e0 7782@end defmac
2be2ac70 7783
a2c4f8e0 7784@defmac TYPE_OPERAND_FMT
2be2ac70
ZW
7785A C string which specifies (using @code{printf} syntax) the format of
7786the second operand to @code{TYPE_ASM_OP}. On systems that use ELF, the
7787default (in @file{config/elfos.h}) is @samp{"@@%s"}; on other systems,
7788the default is not to define this macro.
7789
7790Define this macro only if it is correct to use the default definition of
7791@code{ASM_OUTPUT_TYPE_DIRECTIVE} for your system. If you need your own
7792custom definition of this macro, or if you do not need explicit symbol
7793types at all, do not define this macro.
a2c4f8e0 7794@end defmac
2be2ac70 7795
a2c4f8e0 7796@defmac ASM_OUTPUT_TYPE_DIRECTIVE (@var{stream}, @var{type})
2be2ac70
ZW
7797A C statement (sans semicolon) to output to the stdio stream
7798@var{stream} a directive telling the assembler that the type of the
7799symbol @var{name} is @var{type}. @var{type} is a C string; currently,
7800that string is always either @samp{"function"} or @samp{"object"}, but
7801you should not count on this.
7802
7803If you define @code{TYPE_ASM_OP} and @code{TYPE_OPERAND_FMT}, a default
7804definition of this macro is provided.
a2c4f8e0 7805@end defmac
2be2ac70 7806
a2c4f8e0 7807@defmac ASM_DECLARE_FUNCTION_NAME (@var{stream}, @var{name}, @var{decl})
feca2ed3
JW
7808A C statement (sans semicolon) to output to the stdio stream
7809@var{stream} any text necessary for declaring the name @var{name} of a
7810function which is being defined. This macro is responsible for
7811outputting the label definition (perhaps using
135a687e 7812@code{ASM_OUTPUT_FUNCTION_LABEL}). The argument @var{decl} is the
feca2ed3
JW
7813@code{FUNCTION_DECL} tree node representing the function.
7814
7815If this macro is not defined, then the function name is defined in the
135a687e 7816usual manner as a label (by means of @code{ASM_OUTPUT_FUNCTION_LABEL}).
feca2ed3 7817
2be2ac70
ZW
7818You may wish to use @code{ASM_OUTPUT_TYPE_DIRECTIVE} in the definition
7819of this macro.
a2c4f8e0 7820@end defmac
2be2ac70 7821
a2c4f8e0 7822@defmac ASM_DECLARE_FUNCTION_SIZE (@var{stream}, @var{name}, @var{decl})
feca2ed3
JW
7823A C statement (sans semicolon) to output to the stdio stream
7824@var{stream} any text necessary for declaring the size of a function
7825which is being defined. The argument @var{name} is the name of the
7826function. The argument @var{decl} is the @code{FUNCTION_DECL} tree node
7827representing the function.
7828
7829If this macro is not defined, then the function size is not defined.
7830
2be2ac70
ZW
7831You may wish to use @code{ASM_OUTPUT_MEASURED_SIZE} in the definition
7832of this macro.
a2c4f8e0 7833@end defmac
2be2ac70 7834
a2c4f8e0 7835@defmac ASM_DECLARE_OBJECT_NAME (@var{stream}, @var{name}, @var{decl})
feca2ed3
JW
7836A C statement (sans semicolon) to output to the stdio stream
7837@var{stream} any text necessary for declaring the name @var{name} of an
7838initialized variable which is being defined. This macro must output the
7839label definition (perhaps using @code{ASM_OUTPUT_LABEL}). The argument
7840@var{decl} is the @code{VAR_DECL} tree node representing the variable.
7841
7842If this macro is not defined, then the variable name is defined in the
7843usual manner as a label (by means of @code{ASM_OUTPUT_LABEL}).
7844
2be2ac70
ZW
7845You may wish to use @code{ASM_OUTPUT_TYPE_DIRECTIVE} and/or
7846@code{ASM_OUTPUT_SIZE_DIRECTIVE} in the definition of this macro.
a2c4f8e0 7847@end defmac
2be2ac70 7848
ad78130c 7849@deftypefn {Target Hook} void TARGET_ASM_DECLARE_CONSTANT_NAME (FILE *@var{file}, const char *@var{name}, const_tree @var{expr}, HOST_WIDE_INT @var{size})
e4f7c483
AS
7850A target hook to output to the stdio stream @var{file} any text necessary
7851for declaring the name @var{name} of a constant which is being defined. This
7852target hook is responsible for outputting the label definition (perhaps using
7853@code{assemble_label}). The argument @var{exp} is the value of the constant,
7854and @var{size} is the size of the constant in bytes. The @var{name}
7855will be an internal label.
18f3e349 7856
e4f7c483
AS
7857The default version of this target hook, define the @var{name} in the
7858usual manner as a label (by means of @code{assemble_label}).
18f3e349 7859
e4f7c483
AS
7860You may wish to use @code{ASM_OUTPUT_TYPE_DIRECTIVE} in this target hook.
7861@end deftypefn
18f3e349 7862
a2c4f8e0 7863@defmac ASM_DECLARE_REGISTER_GLOBAL (@var{stream}, @var{decl}, @var{regno}, @var{name})
1cb36a98
RH
7864A C statement (sans semicolon) to output to the stdio stream
7865@var{stream} any text necessary for claiming a register @var{regno}
7866for a global variable @var{decl} with name @var{name}.
7867
7868If you don't define this macro, that is equivalent to defining it to do
7869nothing.
a2c4f8e0 7870@end defmac
1cb36a98 7871
a2c4f8e0 7872@defmac ASM_FINISH_DECLARE_OBJECT (@var{stream}, @var{decl}, @var{toplevel}, @var{atend})
feca2ed3
JW
7873A C statement (sans semicolon) to finish up declaring a variable name
7874once the compiler has processed its initializer fully and thus has had a
7875chance to determine the size of an array when controlled by an
7876initializer. This is used on systems where it's necessary to declare
7877something about the size of the object.
7878
7879If you don't define this macro, that is equivalent to defining it to do
7880nothing.
7881
2be2ac70
ZW
7882You may wish to use @code{ASM_OUTPUT_SIZE_DIRECTIVE} and/or
7883@code{ASM_OUTPUT_MEASURED_SIZE} in the definition of this macro.
a2c4f8e0 7884@end defmac
2be2ac70 7885
5eb99654
KG
7886@deftypefn {Target Hook} void TARGET_ASM_GLOBALIZE_LABEL (FILE *@var{stream}, const char *@var{name})
7887This target hook is a function to output to the stdio stream
feca2ed3 7888@var{stream} some commands that will make the label @var{name} global;
5eb99654 7889that is, available for reference from other files.
feca2ed3 7890
5eb99654
KG
7891The default implementation relies on a proper definition of
7892@code{GLOBAL_ASM_OP}.
b65d23aa 7893@end deftypefn
072cdaed 7894
812b587e
SE
7895@deftypefn {Target Hook} void TARGET_ASM_GLOBALIZE_DECL_NAME (FILE *@var{stream}, tree @var{decl})
7896This target hook is a function to output to the stdio stream
7897@var{stream} some commands that will make the name associated with @var{decl}
7898global; that is, available for reference from other files.
7899
7900The default implementation uses the TARGET_ASM_GLOBALIZE_LABEL target hook.
7901@end deftypefn
7902
a2c4f8e0 7903@defmac ASM_WEAKEN_LABEL (@var{stream}, @var{name})
feca2ed3
JW
7904A C statement (sans semicolon) to output to the stdio stream
7905@var{stream} some commands that will make the label @var{name} weak;
7906that is, available for reference from other files but only used if
7907no other definition is available. Use the expression
7908@code{assemble_name (@var{stream}, @var{name})} to output the name
7909itself; before and after that, output the additional assembler syntax
7910for making that name weak, and a newline.
7911
79c4e63f
AM
7912If you don't define this macro or @code{ASM_WEAKEN_DECL}, GCC will not
7913support weak symbols and you should not define the @code{SUPPORTS_WEAK}
7914macro.
a2c4f8e0 7915@end defmac
79c4e63f 7916
a2c4f8e0 7917@defmac ASM_WEAKEN_DECL (@var{stream}, @var{decl}, @var{name}, @var{value})
79c4e63f
AM
7918Combines (and replaces) the function of @code{ASM_WEAKEN_LABEL} and
7919@code{ASM_OUTPUT_WEAK_ALIAS}, allowing access to the associated function
7920or variable decl. If @var{value} is not @code{NULL}, this C statement
7921should output to the stdio stream @var{stream} assembler code which
7922defines (equates) the weak symbol @var{name} to have the value
7923@var{value}. If @var{value} is @code{NULL}, it should output commands
7924to make @var{name} weak.
a2c4f8e0 7925@end defmac
feca2ed3 7926
ff2d10c1
AO
7927@defmac ASM_OUTPUT_WEAKREF (@var{stream}, @var{decl}, @var{name}, @var{value})
7928Outputs a directive that enables @var{name} to be used to refer to
7929symbol @var{value} with weak-symbol semantics. @code{decl} is the
7930declaration of @code{name}.
7931@end defmac
7932
a2c4f8e0 7933@defmac SUPPORTS_WEAK
74b90fe2
JDA
7934A preprocessor constant expression which evaluates to true if the target
7935supports weak symbols.
feca2ed3
JW
7936
7937If you don't define this macro, @file{defaults.h} provides a default
79c4e63f 7938definition. If either @code{ASM_WEAKEN_LABEL} or @code{ASM_WEAKEN_DECL}
74b90fe2
JDA
7939is defined, the default definition is @samp{1}; otherwise, it is @samp{0}.
7940@end defmac
7941
7942@defmac TARGET_SUPPORTS_WEAK
7943A C expression which evaluates to true if the target supports weak symbols.
7944
7945If you don't define this macro, @file{defaults.h} provides a default
7946definition. The default definition is @samp{(SUPPORTS_WEAK)}. Define
7947this macro if you want to control weak symbol support with a compiler
7948flag such as @option{-melf}.
a2c4f8e0 7949@end defmac
feca2ed3 7950
a2c4f8e0 7951@defmac MAKE_DECL_ONE_ONLY (@var{decl})
feca2ed3
JW
7952A C statement (sans semicolon) to mark @var{decl} to be emitted as a
7953public symbol such that extra copies in multiple translation units will
7954be discarded by the linker. Define this macro if your object file
7955format provides support for this concept, such as the @samp{COMDAT}
7956section flags in the Microsoft Windows PE/COFF format, and this support
7957requires changes to @var{decl}, such as putting it in a separate section.
a2c4f8e0 7958@end defmac
feca2ed3 7959
a2c4f8e0 7960@defmac SUPPORTS_ONE_ONLY
feca2ed3
JW
7961A C expression which evaluates to true if the target supports one-only
7962semantics.
7963
7964If you don't define this macro, @file{varasm.c} provides a default
7965definition. If @code{MAKE_DECL_ONE_ONLY} is defined, the default
7966definition is @samp{1}; otherwise, it is @samp{0}. Define this macro if
e9a25f70 7967you want to control one-only symbol support with a compiler flag, or if
feca2ed3
JW
7968setting the @code{DECL_ONE_ONLY} flag is enough to mark a declaration to
7969be emitted as one-only.
a2c4f8e0 7970@end defmac
feca2ed3 7971
914d25dc 7972@deftypefn {Target Hook} void TARGET_ASM_ASSEMBLE_VISIBILITY (tree @var{decl}, int @var{visibility})
93638d7a
AM
7973This target hook is a function to output to @var{asm_out_file} some
7974commands that will make the symbol(s) associated with @var{decl} have
7975hidden, protected or internal visibility as specified by @var{visibility}.
7976@end deftypefn
7977
0524c91d 7978@defmac TARGET_WEAK_NOT_IN_ARCHIVE_TOC
4746cf84 7979A C expression that evaluates to true if the target's linker expects
0524c91d 7980that weak symbols do not appear in a static archive's table of contents.
f676971a 7981The default is @code{0}.
0524c91d
MA
7982
7983Leaving weak symbols out of an archive's table of contents means that,
7984if a symbol will only have a definition in one translation unit and
7985will have undefined references from other translation units, that
7986symbol should not be weak. Defining this macro to be nonzero will
7987thus have the effect that certain symbols that would normally be weak
7988(explicit template instantiations, and vtables for polymorphic classes
7989with noninline key methods) will instead be nonweak.
7990
7991The C++ ABI requires this macro to be zero. Define this macro for
7992targets where full C++ ABI compliance is impossible and where linker
7993restrictions require weak symbols to be left out of a static archive's
7994table of contents.
4746cf84
MA
7995@end defmac
7996
a2c4f8e0 7997@defmac ASM_OUTPUT_EXTERNAL (@var{stream}, @var{decl}, @var{name})
feca2ed3
JW
7998A C statement (sans semicolon) to output to the stdio stream
7999@var{stream} any text necessary for declaring the name of an external
8000symbol named @var{name} which is referenced in this compilation but
8001not defined. The value of @var{decl} is the tree node for the
8002declaration.
8003
8004This macro need not be defined if it does not need to output anything.
8005The GNU assembler and most Unix assemblers don't require anything.
a2c4f8e0 8006@end defmac
feca2ed3 8007
6773a41c
RO
8008@deftypefn {Target Hook} void TARGET_ASM_EXTERNAL_LIBCALL (rtx @var{symref})
8009This target hook is a function to output to @var{asm_out_file} an assembler
feca2ed3 8010pseudo-op to declare a library function name external. The name of the
6773a41c
RO
8011library function is given by @var{symref}, which is a @code{symbol_ref}.
8012@end deftypefn
feca2ed3 8013
914d25dc 8014@deftypefn {Target Hook} void TARGET_ASM_MARK_DECL_PRESERVED (const char *@var{symbol})
8e3e233b 8015This target hook is a function to output to @var{asm_out_file} an assembler
914d25dc
JR
8016directive to annotate @var{symbol} as used. The Darwin target uses the
8017.no_dead_code_strip directive.
8e3e233b
DP
8018@end deftypefn
8019
a2c4f8e0 8020@defmac ASM_OUTPUT_LABELREF (@var{stream}, @var{name})
feca2ed3
JW
8021A C statement (sans semicolon) to output to the stdio stream
8022@var{stream} a reference in assembler syntax to a label named
8023@var{name}. This should add @samp{_} to the front of the name, if that
8024is customary on your operating system, as it is in most Berkeley Unix
8025systems. This macro is used in @code{assemble_name}.
a2c4f8e0 8026@end defmac
feca2ed3 8027
a2c4f8e0 8028@defmac ASM_OUTPUT_SYMBOL_REF (@var{stream}, @var{sym})
99c8c61c 8029A C statement (sans semicolon) to output a reference to
2f0b7af6 8030@code{SYMBOL_REF} @var{sym}. If not defined, @code{assemble_name}
99c8c61c
AO
8031will be used to output the name of the symbol. This macro may be used
8032to modify the way a symbol is referenced depending on information
fb49053f 8033encoded by @code{TARGET_ENCODE_SECTION_INFO}.
a2c4f8e0 8034@end defmac
99c8c61c 8035
a2c4f8e0 8036@defmac ASM_OUTPUT_LABEL_REF (@var{stream}, @var{buf})
2f0b7af6 8037A C statement (sans semicolon) to output a reference to @var{buf}, the
4226378a 8038result of @code{ASM_GENERATE_INTERNAL_LABEL}. If not defined,
2f0b7af6
GK
8039@code{assemble_name} will be used to output the name of the symbol.
8040This macro is not used by @code{output_asm_label}, or the @code{%l}
8041specifier that calls it; the intention is that this macro should be set
4226378a
PK
8042when it is necessary to output a label differently when its address is
8043being taken.
a2c4f8e0 8044@end defmac
2f0b7af6 8045
4977bab6
ZW
8046@deftypefn {Target Hook} void TARGET_ASM_INTERNAL_LABEL (FILE *@var{stream}, const char *@var{prefix}, unsigned long @var{labelno})
8047A function to output to the stdio stream @var{stream} a label whose
8048name is made from the string @var{prefix} and the number @var{labelno}.
feca2ed3
JW
8049
8050It is absolutely essential that these labels be distinct from the labels
8051used for user-level functions and variables. Otherwise, certain programs
8052will have name conflicts with internal labels.
8053
8054It is desirable to exclude internal labels from the symbol table of the
8055object file. Most assemblers have a naming convention for labels that
8056should be excluded; on many systems, the letter @samp{L} at the
8057beginning of a label has this effect. You should find out what
8058convention your system uses, and follow it.
8059
8a36672b 8060The default version of this function utilizes @code{ASM_GENERATE_INTERNAL_LABEL}.
4977bab6 8061@end deftypefn
feca2ed3 8062
a2c4f8e0 8063@defmac ASM_OUTPUT_DEBUG_LABEL (@var{stream}, @var{prefix}, @var{num})
8215347e
JW
8064A C statement to output to the stdio stream @var{stream} a debug info
8065label whose name is made from the string @var{prefix} and the number
8066@var{num}. This is useful for VLIW targets, where debug info labels
8067may need to be treated differently than branch target labels. On some
8068systems, branch target labels must be at the beginning of instruction
8069bundles, but debug info labels can occur in the middle of instruction
8070bundles.
8071
4977bab6 8072If this macro is not defined, then @code{(*targetm.asm_out.internal_label)} will be
8215347e 8073used.
a2c4f8e0 8074@end defmac
8215347e 8075
a2c4f8e0 8076@defmac ASM_GENERATE_INTERNAL_LABEL (@var{string}, @var{prefix}, @var{num})
feca2ed3
JW
8077A C statement to store into the string @var{string} a label whose name
8078is made from the string @var{prefix} and the number @var{num}.
8079
8080This string, when output subsequently by @code{assemble_name}, should
4977bab6 8081produce the output that @code{(*targetm.asm_out.internal_label)} would produce
feca2ed3
JW
8082with the same @var{prefix} and @var{num}.
8083
8084If the string begins with @samp{*}, then @code{assemble_name} will
8085output the rest of the string unchanged. It is often convenient for
8086@code{ASM_GENERATE_INTERNAL_LABEL} to use @samp{*} in this way. If the
8087string doesn't start with @samp{*}, then @code{ASM_OUTPUT_LABELREF} gets
8088to output the string, and may change it. (Of course,
8089@code{ASM_OUTPUT_LABELREF} is also part of your machine description, so
8090you should know what it does on your machine.)
a2c4f8e0 8091@end defmac
feca2ed3 8092
a2c4f8e0 8093@defmac ASM_FORMAT_PRIVATE_NAME (@var{outvar}, @var{name}, @var{number})
feca2ed3
JW
8094A C expression to assign to @var{outvar} (which is a variable of type
8095@code{char *}) a newly allocated string made from the string
8096@var{name} and the number @var{number}, with some suitable punctuation
8097added. Use @code{alloca} to get space for the string.
8098
8099The string will be used as an argument to @code{ASM_OUTPUT_LABELREF} to
8100produce an assembler label for an internal static variable whose name is
8101@var{name}. Therefore, the string must be such as to result in valid
8102assembler code. The argument @var{number} is different each time this
8103macro is executed; it prevents conflicts between similarly-named
8104internal static variables in different scopes.
8105
8106Ideally this string should not be a valid C identifier, to prevent any
8107conflict with the user's own symbols. Most assemblers allow periods
8108or percent signs in assembler symbols; putting at least one of these
8109between the name and the number will suffice.
8110
4977bab6
ZW
8111If this macro is not defined, a default definition will be provided
8112which is correct for most systems.
a2c4f8e0 8113@end defmac
4977bab6 8114
a2c4f8e0 8115@defmac ASM_OUTPUT_DEF (@var{stream}, @var{name}, @var{value})
feca2ed3
JW
8116A C statement to output to the stdio stream @var{stream} assembler code
8117which defines (equates) the symbol @var{name} to have the value @var{value}.
8118
203cb4ef 8119@findex SET_ASM_OP
aee96fe9 8120If @code{SET_ASM_OP} is defined, a default definition is provided which is
feca2ed3 8121correct for most systems.
a2c4f8e0 8122@end defmac
810e3c45 8123
a2c4f8e0 8124@defmac ASM_OUTPUT_DEF_FROM_DECLS (@var{stream}, @var{decl_of_name}, @var{decl_of_value})
e4faf1eb 8125A C statement to output to the stdio stream @var{stream} assembler code
3b7a2e58 8126which defines (equates) the symbol whose tree node is @var{decl_of_name}
e4faf1eb
NC
8127to have the value of the tree node @var{decl_of_value}. This macro will
8128be used in preference to @samp{ASM_OUTPUT_DEF} if it is defined and if
8129the tree nodes are available.
8130
203cb4ef 8131@findex SET_ASM_OP
aee96fe9 8132If @code{SET_ASM_OP} is defined, a default definition is provided which is
956d6950 8133correct for most systems.
a2c4f8e0 8134@end defmac
956d6950 8135
083b6717
JDA
8136@defmac TARGET_DEFERRED_OUTPUT_DEFS (@var{decl_of_name}, @var{decl_of_value})
8137A C statement that evaluates to true if the assembler code which defines
8138(equates) the symbol whose tree node is @var{decl_of_name} to have the value
8139of the tree node @var{decl_of_value} should be emitted near the end of the
8140current compilation unit. The default is to not defer output of defines.
8141This macro affects defines output by @samp{ASM_OUTPUT_DEF} and
8142@samp{ASM_OUTPUT_DEF_FROM_DECLS}.
8143@end defmac
8144
a2c4f8e0 8145@defmac ASM_OUTPUT_WEAK_ALIAS (@var{stream}, @var{name}, @var{value})
810e3c45
JM
8146A C statement to output to the stdio stream @var{stream} assembler code
8147which defines (equates) the weak symbol @var{name} to have the value
3aa8ab7b
L
8148@var{value}. If @var{value} is @code{NULL}, it defines @var{name} as
8149an undefined weak symbol.
810e3c45
JM
8150
8151Define this macro if the target only supports weak aliases; define
aee96fe9 8152@code{ASM_OUTPUT_DEF} instead if possible.
a2c4f8e0 8153@end defmac
810e3c45 8154
a2c4f8e0 8155@defmac OBJC_GEN_METHOD_LABEL (@var{buf}, @var{is_inst}, @var{class_name}, @var{cat_name}, @var{sel_name})
feca2ed3 8156Define this macro to override the default assembler names used for
2147b154 8157Objective-C methods.
feca2ed3
JW
8158
8159The default name is a unique method number followed by the name of the
8160class (e.g.@: @samp{_1_Foo}). For methods in categories, the name of
8161the category is also included in the assembler name (e.g.@:
8162@samp{_1_Foo_Bar}).
8163
8164These names are safe on most systems, but make debugging difficult since
8165the method's selector is not present in the name. Therefore, particular
8166systems define other ways of computing names.
8167
8168@var{buf} is an expression of type @code{char *} which gives you a
8169buffer in which to store the name; its length is as long as
8170@var{class_name}, @var{cat_name} and @var{sel_name} put together, plus
817150 characters extra.
8172
8173The argument @var{is_inst} specifies whether the method is an instance
8174method or a class method; @var{class_name} is the name of the class;
59d42021 8175@var{cat_name} is the name of the category (or @code{NULL} if the method is not
feca2ed3
JW
8176in a category); and @var{sel_name} is the name of the selector.
8177
8178On systems where the assembler can handle quoted names, you can use this
8179macro to provide more human-readable names.
a2c4f8e0 8180@end defmac
28df0b5a 8181
a2c4f8e0 8182@defmac ASM_DECLARE_CLASS_REFERENCE (@var{stream}, @var{name})
f60b945b
SS
8183A C statement (sans semicolon) to output to the stdio stream
8184@var{stream} commands to declare that the label @var{name} is an
8185Objective-C class reference. This is only needed for targets whose
8186linkers have special support for NeXT-style runtimes.
a2c4f8e0 8187@end defmac
f60b945b 8188
a2c4f8e0 8189@defmac ASM_DECLARE_UNRESOLVED_REFERENCE (@var{stream}, @var{name})
28df0b5a
SS
8190A C statement (sans semicolon) to output to the stdio stream
8191@var{stream} commands to declare that the label @var{name} is an
8192unresolved Objective-C class reference. This is only needed for targets
8193whose linkers have special support for NeXT-style runtimes.
a2c4f8e0 8194@end defmac
feca2ed3
JW
8195
8196@node Initialization
8197@subsection How Initialization Functions Are Handled
8198@cindex initialization routines
8199@cindex termination routines
8200@cindex constructors, output of
8201@cindex destructors, output of
8202
8203The compiled code for certain languages includes @dfn{constructors}
8204(also called @dfn{initialization routines})---functions to initialize
8205data in the program when the program is started. These functions need
8206to be called before the program is ``started''---that is to say, before
8207@code{main} is called.
8208
8209Compiling some languages generates @dfn{destructors} (also called
8210@dfn{termination routines}) that should be called when the program
8211terminates.
8212
8213To make the initialization and termination functions work, the compiler
8214must output something in the assembler code to cause those functions to
8215be called at the appropriate time. When you port the compiler to a new
8216system, you need to specify how to do this.
8217
8218There are two major ways that GCC currently supports the execution of
8219initialization and termination functions. Each way has two variants.
8220Much of the structure is common to all four variations.
8221
8222@findex __CTOR_LIST__
8223@findex __DTOR_LIST__
8224The linker must build two lists of these functions---a list of
8225initialization functions, called @code{__CTOR_LIST__}, and a list of
8226termination functions, called @code{__DTOR_LIST__}.
8227
8228Each list always begins with an ignored function pointer (which may hold
82290, @minus{}1, or a count of the function pointers after it, depending on
8230the environment). This is followed by a series of zero or more function
8231pointers to constructors (or destructors), followed by a function
8232pointer containing zero.
8233
8234Depending on the operating system and its executable file format, either
8235@file{crtstuff.c} or @file{libgcc2.c} traverses these lists at startup
8236time and exit time. Constructors are called in reverse order of the
8237list; destructors in forward order.
8238
8239The best way to handle static constructors works only for object file
8240formats which provide arbitrarily-named sections. A section is set
8241aside for a list of constructors, and another for a list of destructors.
8242Traditionally these are called @samp{.ctors} and @samp{.dtors}. Each
8243object file that defines an initialization function also puts a word in
8244the constructor section to point to that function. The linker
8245accumulates all these words into one contiguous @samp{.ctors} section.
8246Termination functions are handled similarly.
8247
2cc07db4
RH
8248This method will be chosen as the default by @file{target-def.h} if
8249@code{TARGET_ASM_NAMED_SECTION} is defined. A target that does not
f282ffb3 8250support arbitrary sections, but does support special designated
2cc07db4
RH
8251constructor and destructor sections may define @code{CTORS_SECTION_ASM_OP}
8252and @code{DTORS_SECTION_ASM_OP} to achieve the same effect.
feca2ed3
JW
8253
8254When arbitrary sections are available, there are two variants, depending
8255upon how the code in @file{crtstuff.c} is called. On systems that
2cc07db4 8256support a @dfn{.init} section which is executed at program startup,
feca2ed3 8257parts of @file{crtstuff.c} are compiled into that section. The
05739753 8258program is linked by the @command{gcc} driver like this:
feca2ed3 8259
3ab51846 8260@smallexample
2cc07db4 8261ld -o @var{output_file} crti.o crtbegin.o @dots{} -lgcc crtend.o crtn.o
3ab51846 8262@end smallexample
feca2ed3 8263
2cc07db4
RH
8264The prologue of a function (@code{__init}) appears in the @code{.init}
8265section of @file{crti.o}; the epilogue appears in @file{crtn.o}. Likewise
8266for the function @code{__fini} in the @dfn{.fini} section. Normally these
8267files are provided by the operating system or by the GNU C library, but
8268are provided by GCC for a few targets.
8269
8270The objects @file{crtbegin.o} and @file{crtend.o} are (for most targets)
8271compiled from @file{crtstuff.c}. They contain, among other things, code
8272fragments within the @code{.init} and @code{.fini} sections that branch
8273to routines in the @code{.text} section. The linker will pull all parts
8274of a section together, which results in a complete @code{__init} function
8275that invokes the routines we need at startup.
feca2ed3
JW
8276
8277To use this variant, you must define the @code{INIT_SECTION_ASM_OP}
8278macro properly.
8279
2cc07db4
RH
8280If no init section is available, when GCC compiles any function called
8281@code{main} (or more accurately, any function designated as a program
8282entry point by the language front end calling @code{expand_main_function}),
8283it inserts a procedure call to @code{__main} as the first executable code
8284after the function prologue. The @code{__main} function is defined
8285in @file{libgcc2.c} and runs the global constructors.
feca2ed3
JW
8286
8287In file formats that don't support arbitrary sections, there are again
8288two variants. In the simplest variant, the GNU linker (GNU @code{ld})
8289and an `a.out' format must be used. In this case,
2cc07db4 8290@code{TARGET_ASM_CONSTRUCTOR} is defined to produce a @code{.stabs}
feca2ed3
JW
8291entry of type @samp{N_SETT}, referencing the name @code{__CTOR_LIST__},
8292and with the address of the void function containing the initialization
8293code as its value. The GNU linker recognizes this as a request to add
2cc07db4 8294the value to a @dfn{set}; the values are accumulated, and are eventually
feca2ed3
JW
8295placed in the executable as a vector in the format described above, with
8296a leading (ignored) count and a trailing zero element.
2cc07db4 8297@code{TARGET_ASM_DESTRUCTOR} is handled similarly. Since no init
feca2ed3
JW
8298section is available, the absence of @code{INIT_SECTION_ASM_OP} causes
8299the compilation of @code{main} to call @code{__main} as above, starting
8300the initialization process.
8301
8302The last variant uses neither arbitrary sections nor the GNU linker.
8303This is preferable when you want to do dynamic linking and when using
161d7b59 8304file formats which the GNU linker does not support, such as `ECOFF'@. In
2cc07db4
RH
8305this case, @code{TARGET_HAVE_CTORS_DTORS} is false, initialization and
8306termination functions are recognized simply by their names. This requires
8307an extra program in the linkage step, called @command{collect2}. This program
8308pretends to be the linker, for use with GCC; it does its job by running
8309the ordinary linker, but also arranges to include the vectors of
8310initialization and termination functions. These functions are called
8311via @code{__main} as described above. In order to use this method,
8312@code{use_collect2} must be defined in the target in @file{config.gcc}.
feca2ed3
JW
8313
8314@ifinfo
8315The following section describes the specific macros that control and
8316customize the handling of initialization and termination functions.
8317@end ifinfo
8318
8319@node Macros for Initialization
8320@subsection Macros Controlling Initialization Routines
8321
8322Here are the macros that control how the compiler handles initialization
8323and termination functions:
8324
a2c4f8e0 8325@defmac INIT_SECTION_ASM_OP
047c1c92
HPN
8326If defined, a C string constant, including spacing, for the assembler
8327operation to identify the following data as initialization code. If not
8328defined, GCC will assume such a section does not exist. When you are
8329using special sections for initialization and termination functions, this
8330macro also controls how @file{crtstuff.c} and @file{libgcc2.c} arrange to
8331run the initialization functions.
a2c4f8e0 8332@end defmac
feca2ed3 8333
a2c4f8e0 8334@defmac HAS_INIT_SECTION
feca2ed3 8335If defined, @code{main} will not call @code{__main} as described above.
2cc07db4
RH
8336This macro should be defined for systems that control start-up code
8337on a symbol-by-symbol basis, such as OSF/1, and should not
8338be defined explicitly for systems that support @code{INIT_SECTION_ASM_OP}.
a2c4f8e0 8339@end defmac
feca2ed3 8340
a2c4f8e0 8341@defmac LD_INIT_SWITCH
feca2ed3
JW
8342If defined, a C string constant for a switch that tells the linker that
8343the following symbol is an initialization routine.
a2c4f8e0 8344@end defmac
feca2ed3 8345
a2c4f8e0 8346@defmac LD_FINI_SWITCH
feca2ed3
JW
8347If defined, a C string constant for a switch that tells the linker that
8348the following symbol is a finalization routine.
a2c4f8e0 8349@end defmac
feca2ed3 8350
a2c4f8e0 8351@defmac COLLECT_SHARED_INIT_FUNC (@var{stream}, @var{func})
414e05cf
RE
8352If defined, a C statement that will write a function that can be
8353automatically called when a shared library is loaded. The function
8354should call @var{func}, which takes no arguments. If not defined, and
8355the object format requires an explicit initialization function, then a
172270b3 8356function called @code{_GLOBAL__DI} will be generated.
414e05cf
RE
8357
8358This function and the following one are used by collect2 when linking a
f282ffb3 8359shared library that needs constructors or destructors, or has DWARF2
414e05cf 8360exception tables embedded in the code.
a2c4f8e0 8361@end defmac
414e05cf 8362
a2c4f8e0 8363@defmac COLLECT_SHARED_FINI_FUNC (@var{stream}, @var{func})
414e05cf
RE
8364If defined, a C statement that will write a function that can be
8365automatically called when a shared library is unloaded. The function
8366should call @var{func}, which takes no arguments. If not defined, and
8367the object format requires an explicit finalization function, then a
172270b3 8368function called @code{_GLOBAL__DD} will be generated.
a2c4f8e0 8369@end defmac
414e05cf 8370
a2c4f8e0 8371@defmac INVOKE__main
feca2ed3
JW
8372If defined, @code{main} will call @code{__main} despite the presence of
8373@code{INIT_SECTION_ASM_OP}. This macro should be defined for systems
8374where the init section is not actually run automatically, but is still
8375useful for collecting the lists of constructors and destructors.
a2c4f8e0 8376@end defmac
feca2ed3 8377
a2c4f8e0 8378@defmac SUPPORTS_INIT_PRIORITY
ea4f1fce
JO
8379If nonzero, the C++ @code{init_priority} attribute is supported and the
8380compiler should emit instructions to control the order of initialization
8381of objects. If zero, the compiler will issue an error message upon
8382encountering an @code{init_priority} attribute.
a2c4f8e0 8383@end defmac
2cc07db4 8384
914d25dc 8385@deftypevr {Target Hook} bool TARGET_HAVE_CTORS_DTORS
2cc07db4
RH
8386This value is true if the target supports some ``native'' method of
8387collecting constructors and destructors to be run at startup and exit.
8388It is false if we must use @command{collect2}.
914d25dc 8389@end deftypevr
2cc07db4
RH
8390
8391@deftypefn {Target Hook} void TARGET_ASM_CONSTRUCTOR (rtx @var{symbol}, int @var{priority})
8392If defined, a function that outputs assembler code to arrange to call
8393the function referenced by @var{symbol} at initialization time.
ea4f1fce 8394
2cc07db4
RH
8395Assume that @var{symbol} is a @code{SYMBOL_REF} for a function taking
8396no arguments and with no return value. If the target supports initialization
8397priorities, @var{priority} is a value between 0 and @code{MAX_INIT_PRIORITY};
8398otherwise it must be @code{DEFAULT_INIT_PRIORITY}.
8399
14976c58 8400If this macro is not defined by the target, a suitable default will
2cc07db4
RH
8401be chosen if (1) the target supports arbitrary section names, (2) the
8402target defines @code{CTORS_SECTION_ASM_OP}, or (3) @code{USE_COLLECT2}
8403is not defined.
8404@end deftypefn
8405
8406@deftypefn {Target Hook} void TARGET_ASM_DESTRUCTOR (rtx @var{symbol}, int @var{priority})
8407This is like @code{TARGET_ASM_CONSTRUCTOR} but used for termination
feca2ed3 8408functions rather than initialization functions.
2cc07db4 8409@end deftypefn
14686fcd 8410
2cc07db4
RH
8411If @code{TARGET_HAVE_CTORS_DTORS} is true, the initialization routine
8412generated for the generated object file will have static linkage.
feca2ed3 8413
2cc07db4
RH
8414If your system uses @command{collect2} as the means of processing
8415constructors, then that program normally uses @command{nm} to scan
8416an object file for constructor functions to be called.
14686fcd 8417
4a023207 8418On certain kinds of systems, you can define this macro to make
2cc07db4 8419@command{collect2} work faster (and, in some cases, make it work at all):
feca2ed3 8420
a2c4f8e0 8421@defmac OBJECT_FORMAT_COFF
feca2ed3 8422Define this macro if the system uses COFF (Common Object File Format)
2cc07db4 8423object files, so that @command{collect2} can assume this format and scan
feca2ed3 8424object files directly for dynamic constructor/destructor functions.
feca2ed3 8425
4a023207 8426This macro is effective only in a native compiler; @command{collect2} as
2cc07db4 8427part of a cross compiler always uses @command{nm} for the target machine.
a2c4f8e0 8428@end defmac
feca2ed3 8429
a2c4f8e0 8430@defmac REAL_NM_FILE_NAME
feca2ed3 8431Define this macro as a C string constant containing the file name to use
2cc07db4
RH
8432to execute @command{nm}. The default is to search the path normally for
8433@command{nm}.
3e794bfe
RO
8434@end defmac
8435
8436@defmac NM_FLAGS
8437@command{collect2} calls @command{nm} to scan object files for static
8438constructors and destructors and LTO info. By default, @option{-n} is
8439passed. Define @code{NM_FLAGS} to a C string constant if other options
8440are needed to get the same output formut as GNU @command{nm -n}
8441produces.
8442@end defmac
feca2ed3
JW
8443
8444If your system supports shared libraries and has a program to list the
8445dynamic dependencies of a given library or executable, you can define
8446these macros to enable support for running initialization and
8447termination functions in shared libraries:
8448
a2c4f8e0 8449@defmac LDD_SUFFIX
2cc07db4 8450Define this macro to a C string constant containing the name of the program
3e794bfe 8451which lists dynamic dependencies, like @command{ldd} under SunOS 4.
a2c4f8e0 8452@end defmac
feca2ed3 8453
a2c4f8e0 8454@defmac PARSE_LDD_OUTPUT (@var{ptr})
feca2ed3 8455Define this macro to be C code that extracts filenames from the output
aee96fe9 8456of the program denoted by @code{LDD_SUFFIX}. @var{ptr} is a variable
feca2ed3
JW
8457of type @code{char *} that points to the beginning of a line of output
8458from @code{LDD_SUFFIX}. If the line lists a dynamic dependency, the
aee96fe9
JM
8459code must advance @var{ptr} to the beginning of the filename on that
8460line. Otherwise, it must set @var{ptr} to @code{NULL}.
a2c4f8e0 8461@end defmac
feca2ed3 8462
881466d8
JDA
8463@defmac SHLIB_SUFFIX
8464Define this macro to a C string constant containing the default shared
8465library extension of the target (e.g., @samp{".so"}). @command{collect2}
8466strips version information after this suffix when generating global
8467constructor and destructor names. This define is only needed on targets
8468that use @command{collect2} to process constructors and destructors.
8469@end defmac
8470
feca2ed3
JW
8471@node Instruction Output
8472@subsection Output of Assembler Instructions
8473
8474@c prevent bad page break with this line
8475This describes assembler instruction output.
8476
a2c4f8e0 8477@defmac REGISTER_NAMES
feca2ed3
JW
8478A C initializer containing the assembler's names for the machine
8479registers, each one as a C string constant. This is what translates
8480register numbers in the compiler into assembler language.
a2c4f8e0 8481@end defmac
feca2ed3 8482
a2c4f8e0 8483@defmac ADDITIONAL_REGISTER_NAMES
feca2ed3
JW
8484If defined, a C initializer for an array of structures containing a name
8485and a register number. This macro defines additional names for hard
8486registers, thus allowing the @code{asm} option in declarations to refer
8487to registers using alternate names.
a2c4f8e0 8488@end defmac
feca2ed3 8489
0c6d290e
RE
8490@defmac OVERLAPPING_REGISTER_NAMES
8491If defined, a C initializer for an array of structures containing a
8492name, a register number and a count of the number of consecutive
8493machine registers the name overlaps. This macro defines additional
8494names for hard registers, thus allowing the @code{asm} option in
8495declarations to refer to registers using alternate names. Unlike
8496@code{ADDITIONAL_REGISTER_NAMES}, this macro should be used when the
8497register name implies multiple underlying registers.
8498
8499This macro should be used when it is important that a clobber in an
8500@code{asm} statement clobbers all the underlying values implied by the
8501register name. For example, on ARM, clobbering the double-precision
8502VFP register ``d0'' implies clobbering both single-precision registers
8503``s0'' and ``s1''.
8504@end defmac
8505
a2c4f8e0 8506@defmac ASM_OUTPUT_OPCODE (@var{stream}, @var{ptr})
feca2ed3
JW
8507Define this macro if you are using an unusual assembler that
8508requires different names for the machine instructions.
8509
8510The definition is a C statement or statements which output an
8511assembler instruction opcode to the stdio stream @var{stream}. The
8512macro-operand @var{ptr} is a variable of type @code{char *} which
8513points to the opcode name in its ``internal'' form---the form that is
8514written in the machine description. The definition should output the
8515opcode name to @var{stream}, performing any translation you desire, and
8516increment the variable @var{ptr} to point at the end of the opcode
8517so that it will not be output twice.
8518
8519In fact, your macro definition may process less than the entire opcode
8520name, or more than the opcode name; but if you want to process text
8521that includes @samp{%}-sequences to substitute operands, you must take
8522care of the substitution yourself. Just be sure to increment
8523@var{ptr} over whatever text should not be output normally.
8524
37bef197 8525@findex recog_data.operand
feca2ed3 8526If you need to look at the operand values, they can be found as the
37bef197 8527elements of @code{recog_data.operand}.
feca2ed3
JW
8528
8529If the macro definition does nothing, the instruction is output
8530in the usual way.
a2c4f8e0 8531@end defmac
feca2ed3 8532
a2c4f8e0 8533@defmac FINAL_PRESCAN_INSN (@var{insn}, @var{opvec}, @var{noperands})
feca2ed3
JW
8534If defined, a C statement to be executed just prior to the output of
8535assembler code for @var{insn}, to modify the extracted operands so
8536they will be output differently.
8537
8538Here the argument @var{opvec} is the vector containing the operands
8539extracted from @var{insn}, and @var{noperands} is the number of
8540elements of the vector which contain meaningful data for this insn.
8541The contents of this vector are what will be used to convert the insn
8542template into assembler code, so you can change the assembler output
8543by changing the contents of the vector.
8544
8545This macro is useful when various assembler syntaxes share a single
8546file of instruction patterns; by defining this macro differently, you
8547can cause a large class of instructions to be output differently (such
8548as with rearranged operands). Naturally, variations in assembler
8549syntax affecting individual insn patterns ought to be handled by
8550writing conditional output routines in those patterns.
8551
8552If this macro is not defined, it is equivalent to a null statement.
a2c4f8e0 8553@end defmac
feca2ed3 8554
914d25dc 8555@deftypefn {Target Hook} void TARGET_ASM_FINAL_POSTSCAN_INSN (FILE *@var{file}, rtx @var{insn}, rtx *@var{opvec}, int @var{noperands})
1afc5373
CF
8556If defined, this target hook is a function which is executed just after the
8557output of assembler code for @var{insn}, to change the mode of the assembler
8558if necessary.
8559
8560Here the argument @var{opvec} is the vector containing the operands
8561extracted from @var{insn}, and @var{noperands} is the number of
8562elements of the vector which contain meaningful data for this insn.
8563The contents of this vector are what was used to convert the insn
8564template into assembler code, so you can change the assembler mode
8565by checking the contents of the vector.
8566@end deftypefn
8567
a2c4f8e0 8568@defmac PRINT_OPERAND (@var{stream}, @var{x}, @var{code})
feca2ed3
JW
8569A C compound statement to output to stdio stream @var{stream} the
8570assembler syntax for an instruction operand @var{x}. @var{x} is an
8571RTL expression.
8572
8573@var{code} is a value that can be used to specify one of several ways
8574of printing the operand. It is used when identical operands must be
8575printed differently depending on the context. @var{code} comes from
8576the @samp{%} specification that was used to request printing of the
8577operand. If the specification was just @samp{%@var{digit}} then
8578@var{code} is 0; if the specification was @samp{%@var{ltr}
8579@var{digit}} then @var{code} is the ASCII code for @var{ltr}.
8580
8581@findex reg_names
8582If @var{x} is a register, this macro should print the register's name.
8583The names can be found in an array @code{reg_names} whose type is
8584@code{char *[]}. @code{reg_names} is initialized from
8585@code{REGISTER_NAMES}.
8586
8587When the machine description has a specification @samp{%@var{punct}}
8588(a @samp{%} followed by a punctuation character), this macro is called
8589with a null pointer for @var{x} and the punctuation character for
8590@var{code}.
a2c4f8e0 8591@end defmac
feca2ed3 8592
a2c4f8e0 8593@defmac PRINT_OPERAND_PUNCT_VALID_P (@var{code})
feca2ed3
JW
8594A C expression which evaluates to true if @var{code} is a valid
8595punctuation character for use in the @code{PRINT_OPERAND} macro. If
8596@code{PRINT_OPERAND_PUNCT_VALID_P} is not defined, it means that no
8597punctuation characters (except for the standard one, @samp{%}) are used
8598in this way.
a2c4f8e0 8599@end defmac
feca2ed3 8600
a2c4f8e0 8601@defmac PRINT_OPERAND_ADDRESS (@var{stream}, @var{x})
feca2ed3
JW
8602A C compound statement to output to stdio stream @var{stream} the
8603assembler syntax for an instruction operand that is a memory reference
8604whose address is @var{x}. @var{x} is an RTL expression.
8605
fb49053f 8606@cindex @code{TARGET_ENCODE_SECTION_INFO} usage
feca2ed3 8607On some machines, the syntax for a symbolic address depends on the
fb49053f
RH
8608section that the address refers to. On these machines, define the hook
8609@code{TARGET_ENCODE_SECTION_INFO} to store the information into the
a2c4f8e0
ZW
8610@code{symbol_ref}, and then check for it here. @xref{Assembler
8611Format}.
8612@end defmac
feca2ed3 8613
feca2ed3 8614@findex dbr_sequence_length
a2c4f8e0 8615@defmac DBR_OUTPUT_SEQEND (@var{file})
feca2ed3
JW
8616A C statement, to be executed after all slot-filler instructions have
8617been output. If necessary, call @code{dbr_sequence_length} to
8618determine the number of slots filled in a sequence (zero if not
8619currently outputting a sequence), to decide how many no-ops to output,
8620or whatever.
8621
8622Don't define this macro if it has nothing to do, but it is helpful in
8623reading assembly output if the extent of the delay sequence is made
e979f9e8 8624explicit (e.g.@: with white space).
a2c4f8e0 8625@end defmac
feca2ed3
JW
8626
8627@findex final_sequence
8628Note that output routines for instructions with delay slots must be
e979f9e8
JM
8629prepared to deal with not being output as part of a sequence
8630(i.e.@: when the scheduling pass is not run, or when no slot fillers could be
feca2ed3
JW
8631found.) The variable @code{final_sequence} is null when not
8632processing a sequence, otherwise it contains the @code{sequence} rtx
8633being output.
8634
feca2ed3 8635@findex asm_fprintf
a2c4f8e0
ZW
8636@defmac REGISTER_PREFIX
8637@defmacx LOCAL_LABEL_PREFIX
8638@defmacx USER_LABEL_PREFIX
8639@defmacx IMMEDIATE_PREFIX
feca2ed3
JW
8640If defined, C string expressions to be used for the @samp{%R}, @samp{%L},
8641@samp{%U}, and @samp{%I} options of @code{asm_fprintf} (see
8642@file{final.c}). These are useful when a single @file{md} file must
8643support multiple assembler formats. In that case, the various @file{tm.h}
8644files can define these macros differently.
a2c4f8e0 8645@end defmac
feca2ed3 8646
a2c4f8e0 8647@defmac ASM_FPRINTF_EXTENSIONS (@var{file}, @var{argptr}, @var{format})
3b7a2e58 8648If defined this macro should expand to a series of @code{case}
fe0503ea
NC
8649statements which will be parsed inside the @code{switch} statement of
8650the @code{asm_fprintf} function. This allows targets to define extra
8651printf formats which may useful when generating their assembler
4bd0bee9 8652statements. Note that uppercase letters are reserved for future
fe0503ea
NC
8653generic extensions to asm_fprintf, and so are not available to target
8654specific code. The output file is given by the parameter @var{file}.
8655The varargs input pointer is @var{argptr} and the rest of the format
8656string, starting the character after the one that is being switched
8657upon, is pointed to by @var{format}.
a2c4f8e0 8658@end defmac
fe0503ea 8659
a2c4f8e0 8660@defmac ASSEMBLER_DIALECT
feca2ed3
JW
8661If your target supports multiple dialects of assembler language (such as
8662different opcodes), define this macro as a C expression that gives the
8663numeric index of the assembler language dialect to use, with zero as the
8664first variant.
8665
8666If this macro is defined, you may use constructs of the form
c237e94a 8667@smallexample
f282ffb3 8668@samp{@{option0|option1|option2@dots{}@}}
c237e94a
ZW
8669@end smallexample
8670@noindent
8671in the output templates of patterns (@pxref{Output Template}) or in the
8672first argument of @code{asm_fprintf}. This construct outputs
8673@samp{option0}, @samp{option1}, @samp{option2}, etc., if the value of
8674@code{ASSEMBLER_DIALECT} is zero, one, two, etc. Any special characters
8675within these strings retain their usual meaning. If there are fewer
8676alternatives within the braces than the value of
8677@code{ASSEMBLER_DIALECT}, the construct outputs nothing.
feca2ed3
JW
8678
8679If you do not define this macro, the characters @samp{@{}, @samp{|} and
8680@samp{@}} do not have any special meaning when used in templates or
8681operands to @code{asm_fprintf}.
8682
8683Define the macros @code{REGISTER_PREFIX}, @code{LOCAL_LABEL_PREFIX},
8684@code{USER_LABEL_PREFIX} and @code{IMMEDIATE_PREFIX} if you can express
e5e809f4 8685the variations in assembler language syntax with that mechanism. Define
feca2ed3
JW
8686@code{ASSEMBLER_DIALECT} and use the @samp{@{option0|option1@}} syntax
8687if the syntax variant are larger and involve such things as different
8688opcodes or operand order.
a2c4f8e0 8689@end defmac
feca2ed3 8690
a2c4f8e0 8691@defmac ASM_OUTPUT_REG_PUSH (@var{stream}, @var{regno})
feca2ed3
JW
8692A C expression to output to @var{stream} some assembler code
8693which will push hard register number @var{regno} onto the stack.
8694The code need not be optimal, since this macro is used only when
8695profiling.
a2c4f8e0 8696@end defmac
feca2ed3 8697
a2c4f8e0 8698@defmac ASM_OUTPUT_REG_POP (@var{stream}, @var{regno})
feca2ed3
JW
8699A C expression to output to @var{stream} some assembler code
8700which will pop hard register number @var{regno} off of the stack.
8701The code need not be optimal, since this macro is used only when
8702profiling.
a2c4f8e0 8703@end defmac
feca2ed3
JW
8704
8705@node Dispatch Tables
8706@subsection Output of Dispatch Tables
8707
8708@c prevent bad page break with this line
8709This concerns dispatch tables.
8710
feca2ed3 8711@cindex dispatch table
a2c4f8e0 8712@defmac ASM_OUTPUT_ADDR_DIFF_ELT (@var{stream}, @var{body}, @var{value}, @var{rel})
feca2ed3
JW
8713A C statement to output to the stdio stream @var{stream} an assembler
8714pseudo-instruction to generate a difference between two labels.
8715@var{value} and @var{rel} are the numbers of two internal labels. The
8716definitions of these labels are output using
4977bab6 8717@code{(*targetm.asm_out.internal_label)}, and they must be printed in the same
feca2ed3
JW
8718way here. For example,
8719
3ab51846 8720@smallexample
feca2ed3
JW
8721fprintf (@var{stream}, "\t.word L%d-L%d\n",
8722 @var{value}, @var{rel})
3ab51846 8723@end smallexample
feca2ed3
JW
8724
8725You must provide this macro on machines where the addresses in a
f0523f02 8726dispatch table are relative to the table's own address. If defined, GCC
161d7b59 8727will also use this macro on all machines when producing PIC@.
aee96fe9 8728@var{body} is the body of the @code{ADDR_DIFF_VEC}; it is provided so that the
33f7f353 8729mode and flags can be read.
a2c4f8e0 8730@end defmac
feca2ed3 8731
a2c4f8e0 8732@defmac ASM_OUTPUT_ADDR_VEC_ELT (@var{stream}, @var{value})
feca2ed3
JW
8733This macro should be provided on machines where the addresses
8734in a dispatch table are absolute.
8735
8736The definition should be a C statement to output to the stdio stream
8737@var{stream} an assembler pseudo-instruction to generate a reference to
8738a label. @var{value} is the number of an internal label whose
4977bab6 8739definition is output using @code{(*targetm.asm_out.internal_label)}.
feca2ed3
JW
8740For example,
8741
3ab51846 8742@smallexample
feca2ed3 8743fprintf (@var{stream}, "\t.word L%d\n", @var{value})
3ab51846 8744@end smallexample
a2c4f8e0 8745@end defmac
feca2ed3 8746
a2c4f8e0 8747@defmac ASM_OUTPUT_CASE_LABEL (@var{stream}, @var{prefix}, @var{num}, @var{table})
feca2ed3
JW
8748Define this if the label before a jump-table needs to be output
8749specially. The first three arguments are the same as for
4977bab6 8750@code{(*targetm.asm_out.internal_label)}; the fourth argument is the
feca2ed3
JW
8751jump-table which follows (a @code{jump_insn} containing an
8752@code{addr_vec} or @code{addr_diff_vec}).
8753
8754This feature is used on system V to output a @code{swbeg} statement
8755for the table.
8756
8757If this macro is not defined, these labels are output with
4977bab6 8758@code{(*targetm.asm_out.internal_label)}.
a2c4f8e0 8759@end defmac
feca2ed3 8760
a2c4f8e0 8761@defmac ASM_OUTPUT_CASE_END (@var{stream}, @var{num}, @var{table})
feca2ed3
JW
8762Define this if something special must be output at the end of a
8763jump-table. The definition should be a C statement to be executed
8764after the assembler code for the table is written. It should write
8765the appropriate code to stdio stream @var{stream}. The argument
8766@var{table} is the jump-table insn, and @var{num} is the label-number
8767of the preceding label.
8768
8769If this macro is not defined, nothing special is output at the end of
8770the jump-table.
a2c4f8e0 8771@end defmac
feca2ed3 8772
914d25dc 8773@deftypefn {Target Hook} void TARGET_ASM_EMIT_UNWIND_LABEL (FILE *@var{stream}, tree @var{decl}, int @var{for_eh}, int @var{empty})
8a36672b 8774This target hook emits a label at the beginning of each FDE@. It
4746cf84
MA
8775should be defined on targets where FDEs need special labels, and it
8776should write the appropriate label, for the FDE associated with the
8777function declaration @var{decl}, to the stdio stream @var{stream}.
eeab4d81
MS
8778The third argument, @var{for_eh}, is a boolean: true if this is for an
8779exception table. The fourth argument, @var{empty}, is a boolean:
8a36672b 8780true if this is a placeholder label for an omitted FDE@.
4746cf84
MA
8781
8782The default is that FDEs are not given nonlocal labels.
8783@end deftypefn
8784
914d25dc 8785@deftypefn {Target Hook} void TARGET_ASM_EMIT_EXCEPT_TABLE_LABEL (FILE *@var{stream})
083cad55
EC
8786This target hook emits a label at the beginning of the exception table.
8787It should be defined on targets where it is desirable for the table
8788to be broken up according to function.
8789
8790The default is that no label is emitted.
8791@end deftypefn
8792
a68b5e52
RH
8793@deftypefn {Target Hook} void TARGET_ASM_EMIT_EXCEPT_PERSONALITY (rtx @var{personality})
8794If the target implements @code{TARGET_ASM_UNWIND_EMIT}, this hook may be used to emit a directive to install a personality hook into the unwind info. This hook should not be used if dwarf2 unwind info is used.
8795@end deftypefn
8796
38f8b050 8797@deftypefn {Target Hook} void TARGET_ASM_UNWIND_EMIT (FILE *@var{stream}, rtx @var{insn})
914d25dc 8798This target hook emits assembly directives required to unwind the
f0a0390e
RH
8799given instruction. This is only used when @code{TARGET_EXCEPT_UNWIND_INFO}
8800returns @code{UI_TARGET}.
951120ea
PB
8801@end deftypefn
8802
3bc6b3e6
RH
8803@deftypevr {Target Hook} bool TARGET_ASM_UNWIND_EMIT_BEFORE_INSN
8804True if the @code{TARGET_ASM_UNWIND_EMIT} hook should be called before the assembly for @var{insn} has been emitted, false if the hook should be called afterward.
8805@end deftypevr
8806
02f52e19 8807@node Exception Region Output
feca2ed3
JW
8808@subsection Assembler Commands for Exception Regions
8809
8810@c prevent bad page break with this line
8811
8812This describes commands marking the start and the end of an exception
8813region.
8814
a2c4f8e0 8815@defmac EH_FRAME_SECTION_NAME
7c262518
RH
8816If defined, a C string constant for the name of the section containing
8817exception handling frame unwind information. If not defined, GCC will
8818provide a default definition if the target supports named sections.
8819@file{crtstuff.c} uses this macro to switch to the appropriate section.
0021b564
JM
8820
8821You should define this symbol if your target supports DWARF 2 frame
8822unwind information and the default definition does not work.
a2c4f8e0 8823@end defmac
0021b564 8824
a2c4f8e0 8825@defmac EH_FRAME_IN_DATA_SECTION
02c9b1ca
RH
8826If defined, DWARF 2 frame unwind information will be placed in the
8827data section even though the target supports named sections. This
8828might be necessary, for instance, if the system linker does garbage
8829collection and sections cannot be marked as not to be collected.
8830
8831Do not define this macro unless @code{TARGET_ASM_NAMED_SECTION} is
8832also defined.
a2c4f8e0 8833@end defmac
02c9b1ca 8834
1a35e62d
MM
8835@defmac EH_TABLES_CAN_BE_READ_ONLY
8836Define this macro to 1 if your target is such that no frame unwind
8837information encoding used with non-PIC code will ever require a
8838runtime relocation, but the linker may not support merging read-only
8839and read-write sections into a single read-write section.
8840@end defmac
8841
a2c4f8e0 8842@defmac MASK_RETURN_ADDR
aee96fe9 8843An rtx used to mask the return address found via @code{RETURN_ADDR_RTX}, so
feca2ed3 8844that it does not contain any extraneous set bits in it.
a2c4f8e0 8845@end defmac
0021b564 8846
a2c4f8e0 8847@defmac DWARF2_UNWIND_INFO
0021b564
JM
8848Define this macro to 0 if your target supports DWARF 2 frame unwind
8849information, but it does not yet work with exception handling.
8850Otherwise, if your target supports this information (if it defines
f0a0390e
RH
8851@code{INCOMING_RETURN_ADDR_RTX} and either @code{UNALIGNED_INT_ASM_OP}
8852or @code{OBJECT_FORMAT_ELF}), GCC will provide a default definition of 1.
8853@end defmac
0021b564 8854
f0a0390e
RH
8855@deftypefn {Target Hook} {enum unwind_info_type} TARGET_EXCEPT_UNWIND_INFO (void)
8856This hook defines the mechanism that will be used for exception handling
8857by the target. If the target has ABI specified unwind tables, the hook
8858should return @code{UI_TARGET}. If the target is to use the
8859@code{setjmp}/@code{longjmp}-based exception handling scheme, the hook
8860should return @code{UI_SJLJ}. If the target supports DWARF 2 frame unwind
8861information, the hook should return @code{UI_DWARF2}.
0021b564 8862
f0a0390e
RH
8863A target may, if exceptions are disabled, choose to return @code{UI_NONE}.
8864This may end up simplifying other parts of target-specific code. The
8865default implementation of this hook never returns @code{UI_NONE}.
0021b564 8866
f0a0390e
RH
8867Note that the value returned by this hook should be constant. It should
8868not depend on anything except command-line switches. In particular, the
8869setting @code{UI_SJLJ} must be fixed at compiler start-up as C pre-processor
8870macros and builtin functions related to exception handling are set up
8871depending on this setting.
8872
8873The default implementation of the hook first honors the
8874@option{--enable-sjlj-exceptions} configure option, then
8875@code{DWARF2_UNWIND_INFO}, and finally defaults to @code{UI_SJLJ}.
8876@end deftypefn
951120ea 8877
9e3be889 8878@deftypevr {Target Hook} bool TARGET_UNWIND_TABLES_DEFAULT
617a1b71
PB
8879This variable should be set to @code{true} if the target ABI requires unwinding
8880tables even when exceptions are not used.
9e3be889 8881@end deftypevr
617a1b71 8882
c14aea87
RO
8883@defmac MUST_USE_SJLJ_EXCEPTIONS
8884This macro need only be defined if @code{DWARF2_UNWIND_INFO} is
8885runtime-variable. In that case, @file{except.h} cannot correctly
4f6c2131
EB
8886determine the corresponding definition of @code{MUST_USE_SJLJ_EXCEPTIONS},
8887so the target must provide it directly.
8888@end defmac
8889
8890@defmac DONT_USE_BUILTIN_SETJMP
8891Define this macro to 1 if the @code{setjmp}/@code{longjmp}-based scheme
8892should use the @code{setjmp}/@code{longjmp} functions from the C library
8893instead of the @code{__builtin_setjmp}/@code{__builtin_longjmp} machinery.
c14aea87
RO
8894@end defmac
8895
a2c4f8e0 8896@defmac DWARF_CIE_DATA_ALIGNMENT
27c35f4b
HPN
8897This macro need only be defined if the target might save registers in the
8898function prologue at an offset to the stack pointer that is not aligned to
8899@code{UNITS_PER_WORD}. The definition should be the negative minimum
8900alignment if @code{STACK_GROWS_DOWNWARD} is defined, and the positive
8901minimum alignment otherwise. @xref{SDB and DWARF}. Only applicable if
8902the target supports DWARF 2 frame unwind information.
a2c4f8e0 8903@end defmac
feca2ed3 8904
9e3be889 8905@deftypevr {Target Hook} bool TARGET_TERMINATE_DW2_EH_FRAME_INFO
7606e68f
SS
8906Contains the value true if the target should add a zero word onto the
8907end of a Dwarf-2 frame info section when used for exception handling.
8908Default value is false if @code{EH_FRAME_SECTION_NAME} is defined, and
8909true otherwise.
9e3be889 8910@end deftypevr
7606e68f 8911
96714395
AH
8912@deftypefn {Target Hook} rtx TARGET_DWARF_REGISTER_SPAN (rtx @var{reg})
8913Given a register, this hook should return a parallel of registers to
8914represent where to find the register pieces. Define this hook if the
8915register and its mode are represented in Dwarf in non-contiguous
8916locations, or if the register should be represented in more than one
8917register in Dwarf. Otherwise, this hook should return @code{NULL_RTX}.
8918If not defined, the default is to return @code{NULL_RTX}.
8919@end deftypefn
8920
37ea0b7e
JM
8921@deftypefn {Target Hook} void TARGET_INIT_DWARF_REG_SIZES_EXTRA (tree @var{address})
8922If some registers are represented in Dwarf-2 unwind information in
8923multiple pieces, define this hook to fill in information about the
8924sizes of those pieces in the table used by the unwinder at runtime.
8925It will be called by @code{expand_builtin_init_dwarf_reg_sizes} after
8926filling in a single size corresponding to each hard register;
8927@var{address} is the address of the table.
8928@end deftypefn
8929
617a1b71
PB
8930@deftypefn {Target Hook} bool TARGET_ASM_TTYPE (rtx @var{sym})
8931This hook is used to output a reference from a frame unwinding table to
8932the type_info object identified by @var{sym}. It should return @code{true}
8933if the reference was output. Returning @code{false} will cause the
8934reference to be output using the normal Dwarf2 routines.
8935@end deftypefn
8936
914d25dc
JR
8937@deftypevr {Target Hook} bool TARGET_ARM_EABI_UNWINDER
8938This flag should be set to @code{true} on targets that use an ARM EABI
617a1b71
PB
8939based unwinding library, and @code{false} on other targets. This effects
8940the format of unwinding tables, and how the unwinder in entered after
8941running a cleanup. The default is @code{false}.
914d25dc 8942@end deftypevr
617a1b71 8943
feca2ed3
JW
8944@node Alignment Output
8945@subsection Assembler Commands for Alignment
8946
8947@c prevent bad page break with this line
8948This describes commands for alignment.
8949
a2c4f8e0 8950@defmac JUMP_ALIGN (@var{label})
247a370b 8951The alignment (log base 2) to put in front of @var{label}, which is
f710504c 8952a common destination of jumps and has no fallthru incoming edge.
25e22dc0
JH
8953
8954This macro need not be defined if you don't want any special alignment
8955to be done at such a time. Most machine descriptions do not currently
8956define the macro.
efa3896a 8957
3446405d
JH
8958Unless it's necessary to inspect the @var{label} parameter, it is better
8959to set the variable @var{align_jumps} in the target's
74f7912a 8960@code{TARGET_OPTION_OVERRIDE}. Otherwise, you should try to honor the user's
247a370b 8961selection in @var{align_jumps} in a @code{JUMP_ALIGN} implementation.
a2c4f8e0 8962@end defmac
247a370b 8963
ad0c4c36
DD
8964@deftypefn {Target Hook} int TARGET_ASM_JUMP_ALIGN_MAX_SKIP (rtx @var{label})
8965The maximum number of bytes to skip before @var{label} when applying
8966@code{JUMP_ALIGN}. This works only if
8967@code{ASM_OUTPUT_MAX_SKIP_ALIGN} is defined.
8968@end deftypefn
8969
a2c4f8e0 8970@defmac LABEL_ALIGN_AFTER_BARRIER (@var{label})
247a370b
JH
8971The alignment (log base 2) to put in front of @var{label}, which follows
8972a @code{BARRIER}.
8973
8974This macro need not be defined if you don't want any special alignment
8975to be done at such a time. Most machine descriptions do not currently
8976define the macro.
a2c4f8e0 8977@end defmac
3446405d 8978
ad0c4c36
DD
8979@deftypefn {Target Hook} int TARGET_ASM_LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP (rtx @var{label})
8980The maximum number of bytes to skip before @var{label} when applying
efa3896a
GK
8981@code{LABEL_ALIGN_AFTER_BARRIER}. This works only if
8982@code{ASM_OUTPUT_MAX_SKIP_ALIGN} is defined.
ad0c4c36 8983@end deftypefn
efa3896a 8984
a2c4f8e0 8985@defmac LOOP_ALIGN (@var{label})
fc470718 8986The alignment (log base 2) to put in front of @var{label}, which follows
aee96fe9 8987a @code{NOTE_INSN_LOOP_BEG} note.
feca2ed3
JW
8988
8989This macro need not be defined if you don't want any special alignment
8990to be done at such a time. Most machine descriptions do not currently
8991define the macro.
8992
efa3896a 8993Unless it's necessary to inspect the @var{label} parameter, it is better
aee96fe9 8994to set the variable @code{align_loops} in the target's
74f7912a 8995@code{TARGET_OPTION_OVERRIDE}. Otherwise, you should try to honor the user's
aee96fe9 8996selection in @code{align_loops} in a @code{LOOP_ALIGN} implementation.
a2c4f8e0 8997@end defmac
efa3896a 8998
ad0c4c36
DD
8999@deftypefn {Target Hook} int TARGET_ASM_LOOP_ALIGN_MAX_SKIP (rtx @var{label})
9000The maximum number of bytes to skip when applying @code{LOOP_ALIGN} to
9001@var{label}. This works only if @code{ASM_OUTPUT_MAX_SKIP_ALIGN} is
9002defined.
9003@end deftypefn
efa3896a 9004
a2c4f8e0 9005@defmac LABEL_ALIGN (@var{label})
fc470718 9006The alignment (log base 2) to put in front of @var{label}.
aee96fe9 9007If @code{LABEL_ALIGN_AFTER_BARRIER} / @code{LOOP_ALIGN} specify a different alignment,
fc470718
R
9008the maximum of the specified values is used.
9009
efa3896a 9010Unless it's necessary to inspect the @var{label} parameter, it is better
aee96fe9 9011to set the variable @code{align_labels} in the target's
74f7912a 9012@code{TARGET_OPTION_OVERRIDE}. Otherwise, you should try to honor the user's
aee96fe9 9013selection in @code{align_labels} in a @code{LABEL_ALIGN} implementation.
a2c4f8e0 9014@end defmac
efa3896a 9015
ad0c4c36
DD
9016@deftypefn {Target Hook} int TARGET_ASM_LABEL_ALIGN_MAX_SKIP (rtx @var{label})
9017The maximum number of bytes to skip when applying @code{LABEL_ALIGN}
9018to @var{label}. This works only if @code{ASM_OUTPUT_MAX_SKIP_ALIGN}
9019is defined.
9020@end deftypefn
efa3896a 9021
a2c4f8e0 9022@defmac ASM_OUTPUT_SKIP (@var{stream}, @var{nbytes})
feca2ed3
JW
9023A C statement to output to the stdio stream @var{stream} an assembler
9024instruction to advance the location counter by @var{nbytes} bytes.
9025Those bytes should be zero when loaded. @var{nbytes} will be a C
606e938d 9026expression of type @code{unsigned HOST_WIDE_INT}.
a2c4f8e0 9027@end defmac
feca2ed3 9028
a2c4f8e0 9029@defmac ASM_NO_SKIP_IN_TEXT
feca2ed3 9030Define this macro if @code{ASM_OUTPUT_SKIP} should not be used in the
556e0f21 9031text section because it fails to put zeros in the bytes that are skipped.
feca2ed3
JW
9032This is true on many Unix systems, where the pseudo--op to skip bytes
9033produces no-op instructions rather than zeros when used in the text
9034section.
a2c4f8e0 9035@end defmac
feca2ed3 9036
a2c4f8e0 9037@defmac ASM_OUTPUT_ALIGN (@var{stream}, @var{power})
feca2ed3
JW
9038A C statement to output to the stdio stream @var{stream} an assembler
9039command to advance the location counter to a multiple of 2 to the
9040@var{power} bytes. @var{power} will be a C expression of type @code{int}.
a2c4f8e0 9041@end defmac
26f63a77 9042
a2c4f8e0 9043@defmac ASM_OUTPUT_ALIGN_WITH_NOP (@var{stream}, @var{power})
8e16ab99
SF
9044Like @code{ASM_OUTPUT_ALIGN}, except that the ``nop'' instruction is used
9045for padding, if necessary.
a2c4f8e0 9046@end defmac
8e16ab99 9047
a2c4f8e0 9048@defmac ASM_OUTPUT_MAX_SKIP_ALIGN (@var{stream}, @var{power}, @var{max_skip})
26f63a77
JL
9049A C statement to output to the stdio stream @var{stream} an assembler
9050command to advance the location counter to a multiple of 2 to the
9051@var{power} bytes, but only if @var{max_skip} or fewer bytes are needed to
9052satisfy the alignment request. @var{power} and @var{max_skip} will be
9053a C expression of type @code{int}.
a2c4f8e0 9054@end defmac
feca2ed3
JW
9055
9056@need 3000
9057@node Debugging Info
9058@section Controlling Debugging Information Format
9059
9060@c prevent bad page break with this line
9061This describes how to specify debugging information.
9062
9063@menu
9064* All Debuggers:: Macros that affect all debugging formats uniformly.
9065* DBX Options:: Macros enabling specific options in DBX format.
9066* DBX Hooks:: Hook macros for varying DBX format.
9067* File Names and DBX:: Macros controlling output of file names in DBX format.
9068* SDB and DWARF:: Macros for SDB (COFF) and DWARF formats.
5f98259a 9069* VMS Debug:: Macros for VMS debug format.
feca2ed3
JW
9070@end menu
9071
9072@node All Debuggers
9073@subsection Macros Affecting All Debugging Formats
9074
9075@c prevent bad page break with this line
9076These macros affect all debugging formats.
9077
a2c4f8e0 9078@defmac DBX_REGISTER_NUMBER (@var{regno})
feca2ed3 9079A C expression that returns the DBX register number for the compiler
4617e3b5
KG
9080register number @var{regno}. In the default macro provided, the value
9081of this expression will be @var{regno} itself. But sometimes there are
9082some registers that the compiler knows about and DBX does not, or vice
9083versa. In such cases, some register may need to have one number in the
9084compiler and another for DBX@.
feca2ed3 9085
a3a15b4d 9086If two registers have consecutive numbers inside GCC, and they can be
feca2ed3
JW
9087used as a pair to hold a multiword value, then they @emph{must} have
9088consecutive numbers after renumbering with @code{DBX_REGISTER_NUMBER}.
9089Otherwise, debuggers will be unable to access such a pair, because they
9090expect register pairs to be consecutive in their own numbering scheme.
9091
9092If you find yourself defining @code{DBX_REGISTER_NUMBER} in way that
9093does not preserve register pairs, then what you must do instead is
9094redefine the actual register numbering scheme.
a2c4f8e0 9095@end defmac
feca2ed3 9096
a2c4f8e0 9097@defmac DEBUGGER_AUTO_OFFSET (@var{x})
feca2ed3
JW
9098A C expression that returns the integer offset value for an automatic
9099variable having address @var{x} (an RTL expression). The default
9100computation assumes that @var{x} is based on the frame-pointer and
9101gives the offset from the frame-pointer. This is required for targets
9102that produce debugging output for DBX or COFF-style debugging output
9103for SDB and allow the frame-pointer to be eliminated when the
630d3d5a 9104@option{-g} options is used.
a2c4f8e0 9105@end defmac
feca2ed3 9106
a2c4f8e0 9107@defmac DEBUGGER_ARG_OFFSET (@var{offset}, @var{x})
feca2ed3
JW
9108A C expression that returns the integer offset value for an argument
9109having address @var{x} (an RTL expression). The nominal offset is
9110@var{offset}.
a2c4f8e0 9111@end defmac
feca2ed3 9112
a2c4f8e0 9113@defmac PREFERRED_DEBUGGING_TYPE
a3a15b4d 9114A C expression that returns the type of debugging output GCC should
630d3d5a 9115produce when the user specifies just @option{-g}. Define
a3a15b4d 9116this if you have arranged for GCC to support more than one format of
e5e809f4 9117debugging output. Currently, the allowable values are @code{DBX_DEBUG},
5f98259a
RK
9118@code{SDB_DEBUG}, @code{DWARF_DEBUG}, @code{DWARF2_DEBUG},
9119@code{XCOFF_DEBUG}, @code{VMS_DEBUG}, and @code{VMS_AND_DWARF2_DEBUG}.
feca2ed3 9120
630d3d5a 9121When the user specifies @option{-ggdb}, GCC normally also uses the
e5e809f4 9122value of this macro to select the debugging output format, but with two
16201823 9123exceptions. If @code{DWARF2_DEBUGGING_INFO} is defined, GCC uses the
e5e809f4 9124value @code{DWARF2_DEBUG}. Otherwise, if @code{DBX_DEBUGGING_INFO} is
a3a15b4d 9125defined, GCC uses @code{DBX_DEBUG}.
deabc777 9126
feca2ed3 9127The value of this macro only affects the default debugging output; the
630d3d5a 9128user can always get a specific type of output by using @option{-gstabs},
def66b10 9129@option{-gcoff}, @option{-gdwarf-2}, @option{-gxcoff}, or @option{-gvms}.
a2c4f8e0 9130@end defmac
feca2ed3
JW
9131
9132@node DBX Options
9133@subsection Specific Options for DBX Output
9134
9135@c prevent bad page break with this line
9136These are specific options for DBX output.
9137
a2c4f8e0 9138@defmac DBX_DEBUGGING_INFO
a3a15b4d 9139Define this macro if GCC should produce debugging output for DBX
630d3d5a 9140in response to the @option{-g} option.
a2c4f8e0 9141@end defmac
feca2ed3 9142
a2c4f8e0 9143@defmac XCOFF_DEBUGGING_INFO
a3a15b4d 9144Define this macro if GCC should produce XCOFF format debugging output
630d3d5a 9145in response to the @option{-g} option. This is a variant of DBX format.
a2c4f8e0 9146@end defmac
feca2ed3 9147
a2c4f8e0 9148@defmac DEFAULT_GDB_EXTENSIONS
a3a15b4d 9149Define this macro to control whether GCC should by default generate
feca2ed3
JW
9150GDB's extended version of DBX debugging information (assuming DBX-format
9151debugging information is enabled at all). If you don't define the
9152macro, the default is 1: always generate the extended information
9153if there is any occasion to.
a2c4f8e0 9154@end defmac
feca2ed3 9155
a2c4f8e0 9156@defmac DEBUG_SYMS_TEXT
feca2ed3
JW
9157Define this macro if all @code{.stabs} commands should be output while
9158in the text section.
a2c4f8e0 9159@end defmac
feca2ed3 9160
a2c4f8e0 9161@defmac ASM_STABS_OP
047c1c92
HPN
9162A C string constant, including spacing, naming the assembler pseudo op to
9163use instead of @code{"\t.stabs\t"} to define an ordinary debugging symbol.
9164If you don't define this macro, @code{"\t.stabs\t"} is used. This macro
9165applies only to DBX debugging information format.
a2c4f8e0 9166@end defmac
feca2ed3 9167
a2c4f8e0 9168@defmac ASM_STABD_OP
047c1c92
HPN
9169A C string constant, including spacing, naming the assembler pseudo op to
9170use instead of @code{"\t.stabd\t"} to define a debugging symbol whose
9171value is the current location. If you don't define this macro,
9172@code{"\t.stabd\t"} is used. This macro applies only to DBX debugging
9173information format.
a2c4f8e0 9174@end defmac
feca2ed3 9175
a2c4f8e0 9176@defmac ASM_STABN_OP
047c1c92
HPN
9177A C string constant, including spacing, naming the assembler pseudo op to
9178use instead of @code{"\t.stabn\t"} to define a debugging symbol with no
9179name. If you don't define this macro, @code{"\t.stabn\t"} is used. This
9180macro applies only to DBX debugging information format.
a2c4f8e0 9181@end defmac
feca2ed3 9182
a2c4f8e0 9183@defmac DBX_NO_XREFS
feca2ed3
JW
9184Define this macro if DBX on your system does not support the construct
9185@samp{xs@var{tagname}}. On some systems, this construct is used to
9186describe a forward reference to a structure named @var{tagname}.
9187On other systems, this construct is not supported at all.
a2c4f8e0 9188@end defmac
feca2ed3 9189
a2c4f8e0 9190@defmac DBX_CONTIN_LENGTH
feca2ed3
JW
9191A symbol name in DBX-format debugging information is normally
9192continued (split into two separate @code{.stabs} directives) when it
9193exceeds a certain length (by default, 80 characters). On some
9194operating systems, DBX requires this splitting; on others, splitting
9195must not be done. You can inhibit splitting by defining this macro
9196with the value zero. You can override the default splitting-length by
9197defining this macro as an expression for the length you desire.
a2c4f8e0 9198@end defmac
feca2ed3 9199
a2c4f8e0 9200@defmac DBX_CONTIN_CHAR
feca2ed3
JW
9201Normally continuation is indicated by adding a @samp{\} character to
9202the end of a @code{.stabs} string when a continuation follows. To use
9203a different character instead, define this macro as a character
9204constant for the character you want to use. Do not define this macro
9205if backslash is correct for your system.
a2c4f8e0 9206@end defmac
feca2ed3 9207
a2c4f8e0 9208@defmac DBX_STATIC_STAB_DATA_SECTION
feca2ed3
JW
9209Define this macro if it is necessary to go to the data section before
9210outputting the @samp{.stabs} pseudo-op for a non-global static
9211variable.
a2c4f8e0 9212@end defmac
feca2ed3 9213
a2c4f8e0 9214@defmac DBX_TYPE_DECL_STABS_CODE
feca2ed3
JW
9215The value to use in the ``code'' field of the @code{.stabs} directive
9216for a typedef. The default is @code{N_LSYM}.
a2c4f8e0 9217@end defmac
feca2ed3 9218
a2c4f8e0 9219@defmac DBX_STATIC_CONST_VAR_CODE
feca2ed3
JW
9220The value to use in the ``code'' field of the @code{.stabs} directive
9221for a static variable located in the text section. DBX format does not
9222provide any ``right'' way to do this. The default is @code{N_FUN}.
a2c4f8e0 9223@end defmac
feca2ed3 9224
a2c4f8e0 9225@defmac DBX_REGPARM_STABS_CODE
feca2ed3
JW
9226The value to use in the ``code'' field of the @code{.stabs} directive
9227for a parameter passed in registers. DBX format does not provide any
9228``right'' way to do this. The default is @code{N_RSYM}.
a2c4f8e0 9229@end defmac
feca2ed3 9230
a2c4f8e0 9231@defmac DBX_REGPARM_STABS_LETTER
feca2ed3
JW
9232The letter to use in DBX symbol data to identify a symbol as a parameter
9233passed in registers. DBX format does not customarily provide any way to
9234do this. The default is @code{'P'}.
a2c4f8e0 9235@end defmac
feca2ed3 9236
a2c4f8e0 9237@defmac DBX_FUNCTION_FIRST
feca2ed3
JW
9238Define this macro if the DBX information for a function and its
9239arguments should precede the assembler code for the function. Normally,
9240in DBX format, the debugging information entirely follows the assembler
9241code.
a2c4f8e0 9242@end defmac
feca2ed3 9243
a2c4f8e0 9244@defmac DBX_BLOCKS_FUNCTION_RELATIVE
3e487b21
ZW
9245Define this macro, with value 1, if the value of a symbol describing
9246the scope of a block (@code{N_LBRAC} or @code{N_RBRAC}) should be
9247relative to the start of the enclosing function. Normally, GCC uses
9248an absolute address.
9249@end defmac
9250
9251@defmac DBX_LINES_FUNCTION_RELATIVE
9252Define this macro, with value 1, if the value of a symbol indicating
9253the current line number (@code{N_SLINE}) should be relative to the
9254start of the enclosing function. Normally, GCC uses an absolute address.
a2c4f8e0 9255@end defmac
feca2ed3 9256
a2c4f8e0 9257@defmac DBX_USE_BINCL
f0523f02 9258Define this macro if GCC should generate @code{N_BINCL} and
feca2ed3 9259@code{N_EINCL} stabs for included header files, as on Sun systems. This
f0523f02
JM
9260macro also directs GCC to output a type number as a pair of a file
9261number and a type number within the file. Normally, GCC does not
feca2ed3
JW
9262generate @code{N_BINCL} or @code{N_EINCL} stabs, and it outputs a single
9263number for a type number.
a2c4f8e0 9264@end defmac
feca2ed3
JW
9265
9266@node DBX Hooks
9267@subsection Open-Ended Hooks for DBX Format
9268
9269@c prevent bad page break with this line
9270These are hooks for DBX format.
9271
a2c4f8e0 9272@defmac DBX_OUTPUT_LBRAC (@var{stream}, @var{name})
feca2ed3
JW
9273Define this macro to say how to output to @var{stream} the debugging
9274information for the start of a scope level for variable names. The
9275argument @var{name} is the name of an assembler symbol (for use with
9276@code{assemble_name}) whose value is the address where the scope begins.
a2c4f8e0 9277@end defmac
feca2ed3 9278
a2c4f8e0 9279@defmac DBX_OUTPUT_RBRAC (@var{stream}, @var{name})
feca2ed3 9280Like @code{DBX_OUTPUT_LBRAC}, but for the end of a scope level.
a2c4f8e0 9281@end defmac
feca2ed3 9282
a2c4f8e0 9283@defmac DBX_OUTPUT_NFUN (@var{stream}, @var{lscope_label}, @var{decl})
374b0b7d
AM
9284Define this macro if the target machine requires special handling to
9285output an @code{N_FUN} entry for the function @var{decl}.
a2c4f8e0 9286@end defmac
374b0b7d 9287
3e487b21
ZW
9288@defmac DBX_OUTPUT_SOURCE_LINE (@var{stream}, @var{line}, @var{counter})
9289A C statement to output DBX debugging information before code for line
9290number @var{line} of the current source file to the stdio stream
8a36672b 9291@var{stream}. @var{counter} is the number of time the macro was
3e487b21
ZW
9292invoked, including the current invocation; it is intended to generate
9293unique labels in the assembly output.
9294
9295This macro should not be defined if the default output is correct, or
9296if it can be made correct by defining @code{DBX_LINES_FUNCTION_RELATIVE}.
9297@end defmac
9298
a2c4f8e0 9299@defmac NO_DBX_FUNCTION_END
feca2ed3 9300Some stabs encapsulation formats (in particular ECOFF), cannot handle the
c771326b 9301@code{.stabs "",N_FUN,,0,0,Lscope-function-1} gdb dbx extension construct.
feca2ed3
JW
9302On those machines, define this macro to turn this feature off without
9303disturbing the rest of the gdb extensions.
a2c4f8e0 9304@end defmac
feca2ed3 9305
5d865dac
EB
9306@defmac NO_DBX_BNSYM_ENSYM
9307Some assemblers cannot handle the @code{.stabd BNSYM/ENSYM,0,0} gdb dbx
9308extension construct. On those machines, define this macro to turn this
9309feature off without disturbing the rest of the gdb extensions.
9310@end defmac
9311
feca2ed3
JW
9312@node File Names and DBX
9313@subsection File Names in DBX Format
9314
9315@c prevent bad page break with this line
9316This describes file names in DBX format.
9317
a2c4f8e0 9318@defmac DBX_OUTPUT_MAIN_SOURCE_FILENAME (@var{stream}, @var{name})
feca2ed3 9319A C statement to output DBX debugging information to the stdio stream
93a27b7b 9320@var{stream}, which indicates that file @var{name} is the main source
feca2ed3
JW
9321file---the file specified as the input file for compilation.
9322This macro is called only once, at the beginning of compilation.
9323
9324This macro need not be defined if the standard form of output
9325for DBX debugging information is appropriate.
93a27b7b
ZW
9326
9327It may be necessary to refer to a label equal to the beginning of the
9328text section. You can use @samp{assemble_name (stream, ltext_label_name)}
9329to do so. If you do this, you must also set the variable
9330@var{used_ltext_label_name} to @code{true}.
a2c4f8e0 9331@end defmac
feca2ed3 9332
93a27b7b
ZW
9333@defmac NO_DBX_MAIN_SOURCE_DIRECTORY
9334Define this macro, with value 1, if GCC should not emit an indication
9335of the current directory for compilation and current source language at
9336the beginning of the file.
9337@end defmac
feca2ed3 9338
93a27b7b
ZW
9339@defmac NO_DBX_GCC_MARKER
9340Define this macro, with value 1, if GCC should not emit an indication
9341that this object file was compiled by GCC@. The default is to emit
9342an @code{N_OPT} stab at the beginning of every source file, with
9343@samp{gcc2_compiled.} for the string and value 0.
a2c4f8e0 9344@end defmac
feca2ed3 9345
a2c4f8e0 9346@defmac DBX_OUTPUT_MAIN_SOURCE_FILE_END (@var{stream}, @var{name})
feca2ed3 9347A C statement to output DBX debugging information at the end of
93a27b7b
ZW
9348compilation of the main source file @var{name}. Output should be
9349written to the stdio stream @var{stream}.
feca2ed3
JW
9350
9351If you don't define this macro, nothing special is output at the end
9352of compilation, which is correct for most machines.
a2c4f8e0 9353@end defmac
feca2ed3 9354
3e487b21
ZW
9355@defmac DBX_OUTPUT_NULL_N_SO_AT_MAIN_SOURCE_FILE_END
9356Define this macro @emph{instead of} defining
9357@code{DBX_OUTPUT_MAIN_SOURCE_FILE_END}, if what needs to be output at
e4ae5e77 9358the end of compilation is an @code{N_SO} stab with an empty string,
3e487b21
ZW
9359whose value is the highest absolute text address in the file.
9360@end defmac
9361
feca2ed3
JW
9362@need 2000
9363@node SDB and DWARF
9364@subsection Macros for SDB and DWARF Output
9365
9366@c prevent bad page break with this line
9367Here are macros for SDB and DWARF output.
9368
a2c4f8e0 9369@defmac SDB_DEBUGGING_INFO
a3a15b4d 9370Define this macro if GCC should produce COFF-style debugging output
630d3d5a 9371for SDB in response to the @option{-g} option.
a2c4f8e0 9372@end defmac
feca2ed3 9373
a2c4f8e0 9374@defmac DWARF2_DEBUGGING_INFO
a3a15b4d 9375Define this macro if GCC should produce dwarf version 2 format
630d3d5a 9376debugging output in response to the @option{-g} option.
f3ff3f4a 9377
b6fd8800 9378@deftypefn {Target Hook} int TARGET_DWARF_CALLING_CONVENTION (const_tree @var{function})
a1c496cb
EC
9379Define this to enable the dwarf attribute @code{DW_AT_calling_convention} to
9380be emitted for each function. Instead of an integer return the enum
9381value for the @code{DW_CC_} tag.
9382@end deftypefn
9383
861bb6c1
JL
9384To support optional call frame debugging information, you must also
9385define @code{INCOMING_RETURN_ADDR_RTX} and either set
9386@code{RTX_FRAME_RELATED_P} on the prologue insns if you use RTL for the
9387prologue, or call @code{dwarf2out_def_cfa} and @code{dwarf2out_reg_save}
08c148a8 9388as appropriate from @code{TARGET_ASM_FUNCTION_PROLOGUE} if you don't.
a2c4f8e0 9389@end defmac
861bb6c1 9390
a2c4f8e0 9391@defmac DWARF2_FRAME_INFO
a3a15b4d 9392Define this macro to a nonzero value if GCC should always output
f0a0390e
RH
9393Dwarf 2 frame information. If @code{TARGET_EXCEPT_UNWIND_INFO}
9394(@pxref{Exception Region Output}) returns @code{UI_DWARF2}, and
9395exceptions are enabled, GCC will output this information not matter
9396how you define @code{DWARF2_FRAME_INFO}.
a2c4f8e0 9397@end defmac
9ec36da5 9398
f0a0390e
RH
9399@deftypefn {Target Hook} {enum unwind_info_type} TARGET_DEBUG_UNWIND_INFO (void)
9400This hook defines the mechanism that will be used for describing frame
9401unwind information to the debugger. Normally the hook will return
9402@code{UI_DWARF2} if DWARF 2 debug information is enabled, and
9403return @code{UI_NONE} otherwise.
9404
9405A target may return @code{UI_DWARF2} even when DWARF 2 debug information
9406is disabled in order to always output DWARF 2 frame information.
9407
9408A target may return @code{UI_TARGET} if it has ABI specified unwind tables.
9409This will suppress generation of the normal debug frame unwind information.
9410@end deftypefn
9411
a2c4f8e0 9412@defmac DWARF2_ASM_LINE_DEBUG_INFO
b2244e22
JW
9413Define this macro to be a nonzero value if the assembler can generate Dwarf 2
9414line debug info sections. This will result in much more compact line number
9415tables, and hence is desirable if it works.
a2c4f8e0 9416@end defmac
b2244e22 9417
9730bc27
TT
9418@deftypevr {Target Hook} bool TARGET_WANT_DEBUG_PUB_SECTIONS
9419True if the @code{.debug_pubtypes} and @code{.debug_pubnames} sections should be emitted. These sections are not used on most platforms, and in particular GDB does not use them.
9420@end deftypevr
9421
a2c4f8e0 9422@defmac ASM_OUTPUT_DWARF_DELTA (@var{stream}, @var{size}, @var{label1}, @var{label2})
7606e68f 9423A C statement to issue assembly directives that create a difference
192d0f89 9424@var{lab1} minus @var{lab2}, using an integer of the given @var{size}.
a2c4f8e0 9425@end defmac
7606e68f 9426
67ad2ae7
DR
9427@defmac ASM_OUTPUT_DWARF_VMS_DELTA (@var{stream}, @var{size}, @var{label1}, @var{label2})
9428A C statement to issue assembly directives that create a difference
9429between the two given labels in system defined units, e.g. instruction
9430slots on IA64 VMS, using an integer of the given size.
9431@end defmac
9432
192d0f89 9433@defmac ASM_OUTPUT_DWARF_OFFSET (@var{stream}, @var{size}, @var{label}, @var{section})
7606e68f 9434A C statement to issue assembly directives that create a
192d0f89
GK
9435section-relative reference to the given @var{label}, using an integer of the
9436given @var{size}. The label is known to be defined in the given @var{section}.
a2c4f8e0 9437@end defmac
7606e68f 9438
a2c4f8e0 9439@defmac ASM_OUTPUT_DWARF_PCREL (@var{stream}, @var{size}, @var{label})
7606e68f 9440A C statement to issue assembly directives that create a self-relative
192d0f89 9441reference to the given @var{label}, using an integer of the given @var{size}.
a2c4f8e0 9442@end defmac
7606e68f 9443
7e49a4b3
OH
9444@defmac ASM_OUTPUT_DWARF_TABLE_REF (@var{label})
9445A C statement to issue assembly directives that create a reference to
9446the DWARF table identifier @var{label} from the current section. This
9447is used on some systems to avoid garbage collecting a DWARF table which
9448is referenced by a function.
9449@end defmac
9450
914d25dc 9451@deftypefn {Target Hook} void TARGET_ASM_OUTPUT_DWARF_DTPREL (FILE *@var{file}, int @var{size}, rtx @var{x})
fdbe66f2
EB
9452If defined, this target hook is a function which outputs a DTP-relative
9453reference to the given TLS symbol of the specified size.
9454@end deftypefn
9455
a2c4f8e0 9456@defmac PUT_SDB_@dots{}
feca2ed3
JW
9457Define these macros to override the assembler syntax for the special
9458SDB assembler directives. See @file{sdbout.c} for a list of these
9459macros and their arguments. If the standard syntax is used, you need
9460not define them yourself.
a2c4f8e0 9461@end defmac
feca2ed3 9462
a2c4f8e0 9463@defmac SDB_DELIM
feca2ed3
JW
9464Some assemblers do not support a semicolon as a delimiter, even between
9465SDB assembler directives. In that case, define this macro to be the
9466delimiter to use (usually @samp{\n}). It is not necessary to define
9467a new set of @code{PUT_SDB_@var{op}} macros if this is the only change
9468required.
a2c4f8e0 9469@end defmac
feca2ed3 9470
a2c4f8e0 9471@defmac SDB_ALLOW_UNKNOWN_REFERENCES
feca2ed3
JW
9472Define this macro to allow references to unknown structure,
9473union, or enumeration tags to be emitted. Standard COFF does not
9474allow handling of unknown references, MIPS ECOFF has support for
9475it.
a2c4f8e0 9476@end defmac
feca2ed3 9477
a2c4f8e0 9478@defmac SDB_ALLOW_FORWARD_REFERENCES
feca2ed3
JW
9479Define this macro to allow references to structure, union, or
9480enumeration tags that have not yet been seen to be handled. Some
9481assemblers choke if forward tags are used, while some require it.
a2c4f8e0 9482@end defmac
feca2ed3 9483
3e487b21
ZW
9484@defmac SDB_OUTPUT_SOURCE_LINE (@var{stream}, @var{line})
9485A C statement to output SDB debugging information before code for line
9486number @var{line} of the current source file to the stdio stream
9487@var{stream}. The default is to emit an @code{.ln} directive.
9488@end defmac
9489
5f98259a
RK
9490@need 2000
9491@node VMS Debug
9492@subsection Macros for VMS Debug Format
9493
9494@c prevent bad page break with this line
9495Here are macros for VMS debug format.
9496
a2c4f8e0 9497@defmac VMS_DEBUGGING_INFO
5f98259a
RK
9498Define this macro if GCC should produce debugging output for VMS
9499in response to the @option{-g} option. The default behavior for VMS
9500is to generate minimal debug info for a traceback in the absence of
9501@option{-g} unless explicitly overridden with @option{-g0}. This
fac0f722 9502behavior is controlled by @code{TARGET_OPTION_OPTIMIZATION} and
74f7912a 9503@code{TARGET_OPTION_OVERRIDE}.
a2c4f8e0 9504@end defmac
5f98259a 9505
b216cd4a 9506@node Floating Point
feca2ed3
JW
9507@section Cross Compilation and Floating Point
9508@cindex cross compilation and floating point
9509@cindex floating point and cross compilation
9510
b216cd4a 9511While all modern machines use twos-complement representation for integers,
feca2ed3
JW
9512there are a variety of representations for floating point numbers. This
9513means that in a cross-compiler the representation of floating point numbers
9514in the compiled program may be different from that used in the machine
9515doing the compilation.
9516
feca2ed3 9517Because different representation systems may offer different amounts of
b216cd4a
ZW
9518range and precision, all floating point constants must be represented in
9519the target machine's format. Therefore, the cross compiler cannot
9520safely use the host machine's floating point arithmetic; it must emulate
9521the target's arithmetic. To ensure consistency, GCC always uses
9522emulation to work with floating point values, even when the host and
9523target floating point formats are identical.
9524
9525The following macros are provided by @file{real.h} for the compiler to
9526use. All parts of the compiler which generate or optimize
ba31d94e
ZW
9527floating-point calculations must use these macros. They may evaluate
9528their operands more than once, so operands must not have side effects.
feca2ed3 9529
b216cd4a
ZW
9530@defmac REAL_VALUE_TYPE
9531The C data type to be used to hold a floating point value in the target
9532machine's format. Typically this is a @code{struct} containing an
9533array of @code{HOST_WIDE_INT}, but all code should treat it as an opaque
9534quantity.
9535@end defmac
9536
9537@deftypefn Macro int REAL_VALUES_EQUAL (REAL_VALUE_TYPE @var{x}, REAL_VALUE_TYPE @var{y})
9538Compares for equality the two values, @var{x} and @var{y}. If the target
9539floating point format supports negative zeroes and/or NaNs,
9540@samp{REAL_VALUES_EQUAL (-0.0, 0.0)} is true, and
9541@samp{REAL_VALUES_EQUAL (NaN, NaN)} is false.
9542@end deftypefn
9543
9544@deftypefn Macro int REAL_VALUES_LESS (REAL_VALUE_TYPE @var{x}, REAL_VALUE_TYPE @var{y})
9545Tests whether @var{x} is less than @var{y}.
9546@end deftypefn
9547
b216cd4a
ZW
9548@deftypefn Macro HOST_WIDE_INT REAL_VALUE_FIX (REAL_VALUE_TYPE @var{x})
9549Truncates @var{x} to a signed integer, rounding toward zero.
9550@end deftypefn
9551
9552@deftypefn Macro {unsigned HOST_WIDE_INT} REAL_VALUE_UNSIGNED_FIX (REAL_VALUE_TYPE @var{x})
9553Truncates @var{x} to an unsigned integer, rounding toward zero. If
9554@var{x} is negative, returns zero.
9555@end deftypefn
9556
b216cd4a
ZW
9557@deftypefn Macro REAL_VALUE_TYPE REAL_VALUE_ATOF (const char *@var{string}, enum machine_mode @var{mode})
9558Converts @var{string} into a floating point number in the target machine's
9559representation for mode @var{mode}. This routine can handle both
9560decimal and hexadecimal floating point constants, using the syntax
9561defined by the C language for both.
9562@end deftypefn
feca2ed3 9563
15e5ad76 9564@deftypefn Macro int REAL_VALUE_NEGATIVE (REAL_VALUE_TYPE @var{x})
ce3649d2 9565Returns 1 if @var{x} is negative (including negative zero), 0 otherwise.
15e5ad76
ZW
9566@end deftypefn
9567
b216cd4a
ZW
9568@deftypefn Macro int REAL_VALUE_ISINF (REAL_VALUE_TYPE @var{x})
9569Determines whether @var{x} represents infinity (positive or negative).
9570@end deftypefn
9571
9572@deftypefn Macro int REAL_VALUE_ISNAN (REAL_VALUE_TYPE @var{x})
9573Determines whether @var{x} represents a ``NaN'' (not-a-number).
9574@end deftypefn
9575
9576@deftypefn Macro void REAL_ARITHMETIC (REAL_VALUE_TYPE @var{output}, enum tree_code @var{code}, REAL_VALUE_TYPE @var{x}, REAL_VALUE_TYPE @var{y})
9577Calculates an arithmetic operation on the two floating point values
9578@var{x} and @var{y}, storing the result in @var{output} (which must be a
9579variable).
9580
9581The operation to be performed is specified by @var{code}. Only the
9582following codes are supported: @code{PLUS_EXPR}, @code{MINUS_EXPR},
9583@code{MULT_EXPR}, @code{RDIV_EXPR}, @code{MAX_EXPR}, @code{MIN_EXPR}.
9584
9585If @code{REAL_ARITHMETIC} is asked to evaluate division by zero and the
9586target's floating point format cannot represent infinity, it will call
9587@code{abort}. Callers should check for this situation first, using
9588@code{MODE_HAS_INFINITIES}. @xref{Storage Layout}.
9589@end deftypefn
9590
9591@deftypefn Macro REAL_VALUE_TYPE REAL_VALUE_NEGATE (REAL_VALUE_TYPE @var{x})
9592Returns the negative of the floating point value @var{x}.
9593@end deftypefn
9594
15e5ad76
ZW
9595@deftypefn Macro REAL_VALUE_TYPE REAL_VALUE_ABS (REAL_VALUE_TYPE @var{x})
9596Returns the absolute value of @var{x}.
9597@end deftypefn
9598
b216cd4a
ZW
9599@deftypefn Macro REAL_VALUE_TYPE REAL_VALUE_TRUNCATE (REAL_VALUE_TYPE @var{mode}, enum machine_mode @var{x})
9600Truncates the floating point value @var{x} to fit in @var{mode}. The
9601return value is still a full-size @code{REAL_VALUE_TYPE}, but it has an
ab873839 9602appropriate bit pattern to be output as a floating constant whose
b216cd4a
ZW
9603precision accords with mode @var{mode}.
9604@end deftypefn
9605
9606@deftypefn Macro void REAL_VALUE_TO_INT (HOST_WIDE_INT @var{low}, HOST_WIDE_INT @var{high}, REAL_VALUE_TYPE @var{x})
9607Converts a floating point value @var{x} into a double-precision integer
9608which is then stored into @var{low} and @var{high}. If the value is not
9609integral, it is truncated.
9610@end deftypefn
9611
9612@deftypefn Macro void REAL_VALUE_FROM_INT (REAL_VALUE_TYPE @var{x}, HOST_WIDE_INT @var{low}, HOST_WIDE_INT @var{high}, enum machine_mode @var{mode})
b216cd4a
ZW
9613Converts a double-precision integer found in @var{low} and @var{high},
9614into a floating point value which is then stored into @var{x}. The
9615value is truncated to fit in mode @var{mode}.
9616@end deftypefn
feca2ed3 9617
9f09b1f2
R
9618@node Mode Switching
9619@section Mode Switching Instructions
9620@cindex mode switching
9621The following macros control mode switching optimizations:
9622
a2c4f8e0 9623@defmac OPTIMIZE_MODE_SWITCHING (@var{entity})
9f09b1f2
R
9624Define this macro if the port needs extra instructions inserted for mode
9625switching in an optimizing compilation.
9626
9627For an example, the SH4 can perform both single and double precision
9628floating point operations, but to perform a single precision operation,
9629the FPSCR PR bit has to be cleared, while for a double precision
9630operation, this bit has to be set. Changing the PR bit requires a general
9631purpose register as a scratch register, hence these FPSCR sets have to
e979f9e8 9632be inserted before reload, i.e.@: you can't put this into instruction emitting
18dbd950 9633or @code{TARGET_MACHINE_DEPENDENT_REORG}.
9f09b1f2
R
9634
9635You can have multiple entities that are mode-switched, and select at run time
9636which entities actually need it. @code{OPTIMIZE_MODE_SWITCHING} should
14976c58 9637return nonzero for any @var{entity} that needs mode-switching.
9f09b1f2
R
9638If you define this macro, you also have to define
9639@code{NUM_MODES_FOR_MODE_SWITCHING}, @code{MODE_NEEDED},
9640@code{MODE_PRIORITY_TO_MODE} and @code{EMIT_MODE_SET}.
73774972
EC
9641@code{MODE_AFTER}, @code{MODE_ENTRY}, and @code{MODE_EXIT}
9642are optional.
a2c4f8e0 9643@end defmac
9f09b1f2 9644
a2c4f8e0 9645@defmac NUM_MODES_FOR_MODE_SWITCHING
9f09b1f2
R
9646If you define @code{OPTIMIZE_MODE_SWITCHING}, you have to define this as
9647initializer for an array of integers. Each initializer element
9648N refers to an entity that needs mode switching, and specifies the number
9649of different modes that might need to be set for this entity.
78466c0e
JM
9650The position of the initializer in the initializer---starting counting at
9651zero---determines the integer that is used to refer to the mode-switched
9f09b1f2
R
9652entity in question.
9653In macros that take mode arguments / yield a mode result, modes are
630d3d5a 9654represented as numbers 0 @dots{} N @minus{} 1. N is used to specify that no mode
9f09b1f2 9655switch is needed / supplied.
a2c4f8e0 9656@end defmac
9f09b1f2 9657
a2c4f8e0 9658@defmac MODE_NEEDED (@var{entity}, @var{insn})
9f09b1f2
R
9659@var{entity} is an integer specifying a mode-switched entity. If
9660@code{OPTIMIZE_MODE_SWITCHING} is defined, you must define this macro to
9661return an integer value not larger than the corresponding element in
aee96fe9
JM
9662@code{NUM_MODES_FOR_MODE_SWITCHING}, to denote the mode that @var{entity} must
9663be switched into prior to the execution of @var{insn}.
a2c4f8e0 9664@end defmac
9f09b1f2 9665
73774972
EC
9666@defmac MODE_AFTER (@var{mode}, @var{insn})
9667If this macro is defined, it is evaluated for every @var{insn} during
8a36672b 9668mode switching. It determines the mode that an insn results in (if
73774972
EC
9669different from the incoming mode).
9670@end defmac
9671
9672@defmac MODE_ENTRY (@var{entity})
9673If this macro is defined, it is evaluated for every @var{entity} that needs
8a36672b
JM
9674mode switching. It should evaluate to an integer, which is a mode that
9675@var{entity} is assumed to be switched to at function entry. If @code{MODE_ENTRY}
73774972
EC
9676is defined then @code{MODE_EXIT} must be defined.
9677@end defmac
9678
9679@defmac MODE_EXIT (@var{entity})
9f09b1f2 9680If this macro is defined, it is evaluated for every @var{entity} that needs
8a36672b
JM
9681mode switching. It should evaluate to an integer, which is a mode that
9682@var{entity} is assumed to be switched to at function exit. If @code{MODE_EXIT}
73774972 9683is defined then @code{MODE_ENTRY} must be defined.
a2c4f8e0 9684@end defmac
9f09b1f2 9685
a2c4f8e0 9686@defmac MODE_PRIORITY_TO_MODE (@var{entity}, @var{n})
aee96fe9
JM
9687This macro specifies the order in which modes for @var{entity} are processed.
96880 is the highest priority, @code{NUM_MODES_FOR_MODE_SWITCHING[@var{entity}] - 1} the
9f09b1f2 9689lowest. The value of the macro should be an integer designating a mode
aee96fe9 9690for @var{entity}. For any fixed @var{entity}, @code{mode_priority_to_mode}
630d3d5a 9691(@var{entity}, @var{n}) shall be a bijection in 0 @dots{}
aee96fe9 9692@code{num_modes_for_mode_switching[@var{entity}] - 1}.
a2c4f8e0 9693@end defmac
9f09b1f2 9694
a2c4f8e0 9695@defmac EMIT_MODE_SET (@var{entity}, @var{mode}, @var{hard_regs_live})
9f09b1f2
R
9696Generate one or more insns to set @var{entity} to @var{mode}.
9697@var{hard_reg_live} is the set of hard registers live at the point where
9698the insn(s) are to be inserted.
a2c4f8e0 9699@end defmac
9f09b1f2 9700
91d231cb
JM
9701@node Target Attributes
9702@section Defining target-specific uses of @code{__attribute__}
9703@cindex target attributes
9704@cindex machine attributes
9705@cindex attributes, target-specific
9706
9707Target-specific attributes may be defined for functions, data and types.
9708These are described using the following target hooks; they also need to
9709be documented in @file{extend.texi}.
9710
9711@deftypevr {Target Hook} {const struct attribute_spec *} TARGET_ATTRIBUTE_TABLE
9712If defined, this target hook points to an array of @samp{struct
9713attribute_spec} (defined in @file{tree.h}) specifying the machine
9714specific attributes for this target and some of the restrictions on the
9715entities to which these attributes are applied and the arguments they
9716take.
9717@end deftypevr
9718
564a129d
JM
9719@deftypefn {Target Hook} bool TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P (const_tree @var{name})
9720If defined, this target hook is a function which returns true if the
9721machine-specific attribute named @var{name} expects an identifier
9722given as its first argument to be passed on as a plain identifier, not
9723subjected to name lookup. If this is not defined, the default is
9724false for all machine-specific attributes.
9725@end deftypefn
9726
b6fd8800 9727@deftypefn {Target Hook} int TARGET_COMP_TYPE_ATTRIBUTES (const_tree @var{type1}, const_tree @var{type2})
91d231cb
JM
9728If defined, this target hook is a function which returns zero if the attributes on
9729@var{type1} and @var{type2} are incompatible, one if they are compatible,
9730and two if they are nearly compatible (which causes a warning to be
9731generated). If this is not defined, machine-specific attributes are
9732supposed always to be compatible.
9733@end deftypefn
9734
9735@deftypefn {Target Hook} void TARGET_SET_DEFAULT_TYPE_ATTRIBUTES (tree @var{type})
9736If defined, this target hook is a function which assigns default attributes to
914d25dc 9737the newly defined @var{type}.
91d231cb
JM
9738@end deftypefn
9739
9740@deftypefn {Target Hook} tree TARGET_MERGE_TYPE_ATTRIBUTES (tree @var{type1}, tree @var{type2})
9741Define this target hook if the merging of type attributes needs special
9742handling. If defined, the result is a list of the combined
9743@code{TYPE_ATTRIBUTES} of @var{type1} and @var{type2}. It is assumed
9744that @code{comptypes} has already been called and returned 1. This
9745function may call @code{merge_attributes} to handle machine-independent
9746merging.
9747@end deftypefn
9748
9749@deftypefn {Target Hook} tree TARGET_MERGE_DECL_ATTRIBUTES (tree @var{olddecl}, tree @var{newdecl})
9750Define this target hook if the merging of decl attributes needs special
9751handling. If defined, the result is a list of the combined
9752@code{DECL_ATTRIBUTES} of @var{olddecl} and @var{newdecl}.
9753@var{newdecl} is a duplicate declaration of @var{olddecl}. Examples of
9754when this is needed are when one attribute overrides another, or when an
9755attribute is nullified by a subsequent definition. This function may
9756call @code{merge_attributes} to handle machine-independent merging.
9757
9758@findex TARGET_DLLIMPORT_DECL_ATTRIBUTES
b2ca3702
MM
9759If the only target-specific handling you require is @samp{dllimport}
9760for Microsoft Windows targets, you should define the macro
9761@code{TARGET_DLLIMPORT_DECL_ATTRIBUTES} to @code{1}. The compiler
9762will then define a function called
9763@code{merge_dllimport_decl_attributes} which can then be defined as
9764the expansion of @code{TARGET_MERGE_DECL_ATTRIBUTES}. You can also
9765add @code{handle_dll_attribute} in the attribute table for your port
9766to perform initial processing of the @samp{dllimport} and
9767@samp{dllexport} attributes. This is done in @file{i386/cygwin.h} and
9768@file{i386/i386.c}, for example.
91d231cb
JM
9769@end deftypefn
9770
b6fd8800 9771@deftypefn {Target Hook} bool TARGET_VALID_DLLIMPORT_ATTRIBUTE_P (const_tree @var{decl})
38f8b050 9772@var{decl} is a variable or function with @code{__attribute__((dllimport))} specified. Use this hook if the target needs to add extra validation checks to @code{handle_dll_attribute}.
43d9ad1d
DS
9773@end deftypefn
9774
63c5b495 9775@defmac TARGET_DECLSPEC
1a141fe1 9776Define this macro to a nonzero value if you want to treat
63c5b495
MM
9777@code{__declspec(X)} as equivalent to @code{__attribute((X))}. By
9778default, this behavior is enabled only for targets that define
9779@code{TARGET_DLLIMPORT_DECL_ATTRIBUTES}. The current implementation
9780of @code{__declspec} is via a built-in macro, but you should not rely
9781on this implementation detail.
9782@end defmac
9783
91d231cb
JM
9784@deftypefn {Target Hook} void TARGET_INSERT_ATTRIBUTES (tree @var{node}, tree *@var{attr_ptr})
9785Define this target hook if you want to be able to add attributes to a decl
9786when it is being created. This is normally useful for back ends which
9787wish to implement a pragma by using the attributes which correspond to
9788the pragma's effect. The @var{node} argument is the decl which is being
9789created. The @var{attr_ptr} argument is a pointer to the attribute list
9790for this decl. The list itself should not be modified, since it may be
9791shared with other decls, but attributes may be chained on the head of
9792the list and @code{*@var{attr_ptr}} modified to point to the new
9793attributes, or a copy of the list may be made if further changes are
9794needed.
9795@end deftypefn
9796
65a324b4 9797@deftypefn {Target Hook} bool TARGET_FUNCTION_ATTRIBUTE_INLINABLE_P (const_tree @var{fndecl})
91d231cb
JM
9798@cindex inlining
9799This target hook returns @code{true} if it is ok to inline @var{fndecl}
9800into the current function, despite its having target-specific
9801attributes, @code{false} otherwise. By default, if a function has a
9802target specific attribute attached to it, it will not be inlined.
9803@end deftypefn
9804
914d25dc 9805@deftypefn {Target Hook} bool TARGET_OPTION_VALID_ATTRIBUTE_P (tree @var{fndecl}, tree @var{name}, tree @var{args}, int @var{flags})
ab442df7
MM
9806This hook is called to parse the @code{attribute(option("..."))}, and
9807it allows the function to set different target machine compile time
9808options for the current function that might be different than the
9809options specified on the command line. The hook should return
9810@code{true} if the options are valid.
9811
9812The hook should set the @var{DECL_FUNCTION_SPECIFIC_TARGET} field in
9813the function declaration to hold a pointer to a target specific
9814@var{struct cl_target_option} structure.
9815@end deftypefn
9816
9817@deftypefn {Target Hook} void TARGET_OPTION_SAVE (struct cl_target_option *@var{ptr})
9818This hook is called to save any additional target specific information
9819in the @var{struct cl_target_option} structure for function specific
9820options.
9821@xref{Option file format}.
9822@end deftypefn
9823
9824@deftypefn {Target Hook} void TARGET_OPTION_RESTORE (struct cl_target_option *@var{ptr})
9825This hook is called to restore any additional target specific
9826information in the @var{struct cl_target_option} structure for
9827function specific options.
9828@end deftypefn
9829
d2143a2f 9830@deftypefn {Target Hook} void TARGET_OPTION_PRINT (FILE *@var{file}, int @var{indent}, struct cl_target_option *@var{ptr})
ab442df7
MM
9831This hook is called to print any additional target specific
9832information in the @var{struct cl_target_option} structure for
9833function specific options.
9834@end deftypefn
9835
56cb42ea 9836@deftypefn {Target Hook} bool TARGET_OPTION_PRAGMA_PARSE (tree @var{args}, tree @var{pop_target})
ab442df7
MM
9837This target hook parses the options for @code{#pragma GCC option} to
9838set the machine specific options for functions that occur later in the
9839input stream. The options should be the same as handled by the
56cb42ea 9840@code{TARGET_OPTION_VALID_ATTRIBUTE_P} hook.
ab442df7
MM
9841@end deftypefn
9842
74f7912a
JR
9843@deftypefn {Target Hook} void TARGET_OPTION_OVERRIDE (void)
9844Sometimes certain combinations of command options do not make sense on
9845a particular target machine. You can override the hook
9846@code{TARGET_OPTION_OVERRIDE} to take account of this. This hooks is called
9847once just after all the command options have been parsed.
9848
9849Don't use this hook to turn on various extra optimizations for
fac0f722 9850@option{-O}. That is what @code{TARGET_OPTION_OPTIMIZATION} is for.
74f7912a
JR
9851
9852If you need to do something whenever the optimization level is
9853changed via the optimize attribute or pragma, see
9854@code{TARGET_OVERRIDE_OPTIONS_AFTER_CHANGE}
9855@end deftypefn
9856
ab442df7
MM
9857@deftypefn {Target Hook} bool TARGET_CAN_INLINE_P (tree @var{caller}, tree @var{callee})
9858This target hook returns @code{false} if the @var{caller} function
9859cannot inline @var{callee}, based on target specific information. By
9860default, inlining is not allowed if the callee function has function
9861specific target options and the caller does not use the same options.
9862@end deftypefn
9863
feb60f03
NS
9864@node Emulated TLS
9865@section Emulating TLS
9866@cindex Emulated TLS
9867
9868For targets whose psABI does not provide Thread Local Storage via
9869specific relocations and instruction sequences, an emulation layer is
9870used. A set of target hooks allows this emulation layer to be
9871configured for the requirements of a particular target. For instance
a640c13b 9872the psABI may in fact specify TLS support in terms of an emulation
feb60f03
NS
9873layer.
9874
9875The emulation layer works by creating a control object for every TLS
9876object. To access the TLS object, a lookup function is provided
9877which, when given the address of the control object, will return the
9878address of the current thread's instance of the TLS object.
9879
9880@deftypevr {Target Hook} {const char *} TARGET_EMUTLS_GET_ADDRESS
9881Contains the name of the helper function that uses a TLS control
9882object to locate a TLS instance. The default causes libgcc's
9883emulated TLS helper function to be used.
9884@end deftypevr
9885
9886@deftypevr {Target Hook} {const char *} TARGET_EMUTLS_REGISTER_COMMON
9887Contains the name of the helper function that should be used at
9888program startup to register TLS objects that are implicitly
9889initialized to zero. If this is @code{NULL}, all TLS objects will
9890have explicit initializers. The default causes libgcc's emulated TLS
9891registration function to be used.
9892@end deftypevr
9893
9894@deftypevr {Target Hook} {const char *} TARGET_EMUTLS_VAR_SECTION
9895Contains the name of the section in which TLS control variables should
9896be placed. The default of @code{NULL} allows these to be placed in
9897any section.
9898@end deftypevr
9899
9900@deftypevr {Target Hook} {const char *} TARGET_EMUTLS_TMPL_SECTION
9901Contains the name of the section in which TLS initializers should be
9902placed. The default of @code{NULL} allows these to be placed in any
9903section.
9904@end deftypevr
9905
9906@deftypevr {Target Hook} {const char *} TARGET_EMUTLS_VAR_PREFIX
9907Contains the prefix to be prepended to TLS control variable names.
9908The default of @code{NULL} uses a target-specific prefix.
9909@end deftypevr
9910
9911@deftypevr {Target Hook} {const char *} TARGET_EMUTLS_TMPL_PREFIX
9912Contains the prefix to be prepended to TLS initializer objects. The
9913default of @code{NULL} uses a target-specific prefix.
9914@end deftypevr
9915
9916@deftypefn {Target Hook} tree TARGET_EMUTLS_VAR_FIELDS (tree @var{type}, tree *@var{name})
9917Specifies a function that generates the FIELD_DECLs for a TLS control
9918object type. @var{type} is the RECORD_TYPE the fields are for and
9919@var{name} should be filled with the structure tag, if the default of
9920@code{__emutls_object} is unsuitable. The default creates a type suitable
9921for libgcc's emulated TLS function.
9922@end deftypefn
9923
9924@deftypefn {Target Hook} tree TARGET_EMUTLS_VAR_INIT (tree @var{var}, tree @var{decl}, tree @var{tmpl_addr})
9925Specifies a function that generates the CONSTRUCTOR to initialize a
9926TLS control object. @var{var} is the TLS control object, @var{decl}
9927is the TLS object and @var{tmpl_addr} is the address of the
9928initializer. The default initializes libgcc's emulated TLS control object.
9929@end deftypefn
9930
b6fd8800 9931@deftypevr {Target Hook} bool TARGET_EMUTLS_VAR_ALIGN_FIXED
feb60f03
NS
9932Specifies whether the alignment of TLS control variable objects is
9933fixed and should not be increased as some backends may do to optimize
9934single objects. The default is false.
9935@end deftypevr
9936
b6fd8800 9937@deftypevr {Target Hook} bool TARGET_EMUTLS_DEBUG_FORM_TLS_ADDRESS
feb60f03
NS
9938Specifies whether a DWARF @code{DW_OP_form_tls_address} location descriptor
9939may be used to describe emulated TLS control objects.
9940@end deftypevr
9941
d604bca3
MH
9942@node MIPS Coprocessors
9943@section Defining coprocessor specifics for MIPS targets.
9944@cindex MIPS coprocessor-definition macros
9945
9946The MIPS specification allows MIPS implementations to have as many as 4
2dd76960 9947coprocessors, each with as many as 32 private registers. GCC supports
d604bca3
MH
9948accessing these registers and transferring values between the registers
9949and memory using asm-ized variables. For example:
9950
9951@smallexample
9952 register unsigned int cp0count asm ("c0r1");
9953 unsigned int d;
9954
9955 d = cp0count + 3;
9956@end smallexample
9957
9958(``c0r1'' is the default name of register 1 in coprocessor 0; alternate
9959names may be added as described below, or the default names may be
9960overridden entirely in @code{SUBTARGET_CONDITIONAL_REGISTER_USAGE}.)
9961
9962Coprocessor registers are assumed to be epilogue-used; sets to them will
9963be preserved even if it does not appear that the register is used again
9964later in the function.
9965
9966Another note: according to the MIPS spec, coprocessor 1 (if present) is
8a36672b 9967the FPU@. One accesses COP1 registers through standard mips
d604bca3
MH
9968floating-point support; they are not included in this mechanism.
9969
9970There is one macro used in defining the MIPS coprocessor interface which
9971you may want to override in subtargets; it is described below.
9972
a2c4f8e0 9973@defmac ALL_COP_ADDITIONAL_REGISTER_NAMES
d604bca3
MH
9974A comma-separated list (with leading comma) of pairs describing the
9975alternate names of coprocessor registers. The format of each entry should be
9976@smallexample
9977@{ @var{alternatename}, @var{register_number}@}
9978@end smallexample
9979Default: empty.
a2c4f8e0 9980@end defmac
d604bca3 9981
7bb1ad93
GK
9982@node PCH Target
9983@section Parameters for Precompiled Header Validity Checking
9984@cindex parameters, precompiled headers
9985
0678ade0 9986@deftypefn {Target Hook} {void *} TARGET_GET_PCH_VALIDITY (size_t *@var{sz})
914d25dc
JR
9987This hook returns a pointer to the data needed by
9988@code{TARGET_PCH_VALID_P} and sets
0678ade0 9989@samp{*@var{sz}} to the size of the data in bytes.
7bb1ad93
GK
9990@end deftypefn
9991
b6fd8800 9992@deftypefn {Target Hook} {const char *} TARGET_PCH_VALID_P (const void *@var{data}, size_t @var{sz})
8d932be3
RS
9993This hook checks whether the options used to create a PCH file are
9994compatible with the current settings. It returns @code{NULL}
9995if so and a suitable error message if not. Error messages will
9996be presented to the user and must be localized using @samp{_(@var{msg})}.
9997
9998@var{data} is the data that was returned by @code{TARGET_GET_PCH_VALIDITY}
9999when the PCH file was created and @var{sz} is the size of that data in bytes.
10000It's safe to assume that the data was created by the same version of the
10001compiler, so no format checking is needed.
10002
10003The default definition of @code{default_pch_valid_p} should be
10004suitable for most targets.
10005@end deftypefn
10006
b6fd8800 10007@deftypefn {Target Hook} {const char *} TARGET_CHECK_PCH_TARGET_FLAGS (int @var{pch_flags})
8d932be3
RS
10008If this hook is nonnull, the default implementation of
10009@code{TARGET_PCH_VALID_P} will use it to check for compatible values
10010of @code{target_flags}. @var{pch_flags} specifies the value that
10011@code{target_flags} had when the PCH file was created. The return
10012value is the same as for @code{TARGET_PCH_VALID_P}.
7bb1ad93
GK
10013@end deftypefn
10014
4185ae53
PB
10015@node C++ ABI
10016@section C++ ABI parameters
10017@cindex parameters, c++ abi
10018
10019@deftypefn {Target Hook} tree TARGET_CXX_GUARD_TYPE (void)
10020Define this hook to override the integer type used for guard variables.
10021These are used to implement one-time construction of static objects. The
10022default is long_long_integer_type_node.
10023@end deftypefn
10024
10025@deftypefn {Target Hook} bool TARGET_CXX_GUARD_MASK_BIT (void)
f676971a 10026This hook determines how guard variables are used. It should return
914d25dc
JR
10027@code{false} (the default) if the first byte should be used. A return value of
10028@code{true} indicates that only the least significant bit should be used.
4185ae53
PB
10029@end deftypefn
10030
46e995e0
PB
10031@deftypefn {Target Hook} tree TARGET_CXX_GET_COOKIE_SIZE (tree @var{type})
10032This hook returns the size of the cookie to use when allocating an array
10033whose elements have the indicated @var{type}. Assumes that it is already
10034known that a cookie is needed. The default is
10035@code{max(sizeof (size_t), alignof(type))}, as defined in section 2.7 of the
8a36672b 10036IA64/Generic C++ ABI@.
46e995e0
PB
10037@end deftypefn
10038
10039@deftypefn {Target Hook} bool TARGET_CXX_COOKIE_HAS_SIZE (void)
10040This hook should return @code{true} if the element size should be stored in
10041array cookies. The default is to return @code{false}.
10042@end deftypefn
10043
38f8b050 10044@deftypefn {Target Hook} int TARGET_CXX_IMPORT_EXPORT_CLASS (tree @var{type}, int @var{import_export})
d59c7b4b
NC
10045If defined by a backend this hook allows the decision made to export
10046class @var{type} to be overruled. Upon entry @var{import_export}
78466c0e 10047will contain 1 if the class is going to be exported, @minus{}1 if it is going
d59c7b4b
NC
10048to be imported and 0 otherwise. This function should return the
10049modified value and perform any other actions necessary to support the
10050backend's targeted operating system.
10051@end deftypefn
10052
44d10c10
PB
10053@deftypefn {Target Hook} bool TARGET_CXX_CDTOR_RETURNS_THIS (void)
10054This hook should return @code{true} if constructors and destructors return
10055the address of the object created/destroyed. The default is to return
10056@code{false}.
10057@end deftypefn
10058
af287697
MM
10059@deftypefn {Target Hook} bool TARGET_CXX_KEY_METHOD_MAY_BE_INLINE (void)
10060This hook returns true if the key method for a class (i.e., the method
10061which, if defined in the current translation unit, causes the virtual
10062table to be emitted) may be an inline function. Under the standard
10063Itanium C++ ABI the key method may be an inline function so long as
10064the function is not declared inline in the class definition. Under
10065some variants of the ABI, an inline function can never be the key
10066method. The default is to return @code{true}.
10067@end deftypefn
10068
1e731102 10069@deftypefn {Target Hook} void TARGET_CXX_DETERMINE_CLASS_DATA_VISIBILITY (tree @var{decl})
38f8b050 10070@var{decl} is a virtual table, virtual table table, typeinfo object, or other similar implicit class data object that will be emitted with external linkage in this translation unit. No ELF visibility has been explicitly specified. If the target needs to specify a visibility other than that of the containing class, use this hook to set @code{DECL_VISIBILITY} and @code{DECL_VISIBILITY_SPECIFIED}.
1e731102
MM
10071@end deftypefn
10072
10073@deftypefn {Target Hook} bool TARGET_CXX_CLASS_DATA_ALWAYS_COMDAT (void)
10074This hook returns true (the default) if virtual tables and other
10075similar implicit class data objects are always COMDAT if they have
10076external linkage. If this hook returns false, then class data for
10077classes whose virtual table will be emitted in only one translation
10078unit will not be COMDAT.
505970fc
MM
10079@end deftypefn
10080
157600d0
GK
10081@deftypefn {Target Hook} bool TARGET_CXX_LIBRARY_RTTI_COMDAT (void)
10082This hook returns true (the default) if the RTTI information for
10083the basic types which is defined in the C++ runtime should always
10084be COMDAT, false if it should not be COMDAT.
10085@end deftypefn
10086
9f62c3e3
PB
10087@deftypefn {Target Hook} bool TARGET_CXX_USE_AEABI_ATEXIT (void)
10088This hook returns true if @code{__aeabi_atexit} (as defined by the ARM EABI)
10089should be used to register static destructors when @option{-fuse-cxa-atexit}
10090is in effect. The default is to return false to use @code{__cxa_atexit}.
10091@end deftypefn
10092
97388150
DS
10093@deftypefn {Target Hook} bool TARGET_CXX_USE_ATEXIT_FOR_CXA_ATEXIT (void)
10094This hook returns true if the target @code{atexit} function can be used
10095in the same manner as @code{__cxa_atexit} to register C++ static
10096destructors. This requires that @code{atexit}-registered functions in
10097shared libraries are run in the correct order when the libraries are
10098unloaded. The default is to return false.
10099@end deftypefn
10100
43d9ad1d 10101@deftypefn {Target Hook} void TARGET_CXX_ADJUST_CLASS_AT_DEFINITION (tree @var{type})
38f8b050 10102@var{type} is a C++ class (i.e., RECORD_TYPE or UNION_TYPE) that has just been defined. Use this hook to make adjustments to the class (eg, tweak visibility or perform any other required target modifications).
43d9ad1d
DS
10103@end deftypefn
10104
09e881c9
BE
10105@node Named Address Spaces
10106@section Adding support for named address spaces
10107@cindex named address spaces
10108
10109The draft technical report of the ISO/IEC JTC1 S22 WG14 N1275
10110standards committee, @cite{Programming Languages - C - Extensions to
10111support embedded processors}, specifies a syntax for embedded
10112processors to specify alternate address spaces. You can configure a
10113GCC port to support section 5.1 of the draft report to add support for
10114address spaces other than the default address space. These address
10115spaces are new keywords that are similar to the @code{volatile} and
10116@code{const} type attributes.
10117
02a9370c 10118Pointers to named address spaces can have a different size than
09e881c9
BE
10119pointers to the generic address space.
10120
10121For example, the SPU port uses the @code{__ea} address space to refer
10122to memory in the host processor, rather than memory local to the SPU
10123processor. Access to memory in the @code{__ea} address space involves
10124issuing DMA operations to move data between the host processor and the
10125local processor memory address space. Pointers in the @code{__ea}
10126address space are either 32 bits or 64 bits based on the
10127@option{-mea32} or @option{-mea64} switches (native SPU pointers are
10128always 32 bits).
10129
10130Internally, address spaces are represented as a small integer in the
10131range 0 to 15 with address space 0 being reserved for the generic
10132address space.
10133
3ef0694c
UW
10134To register a named address space qualifier keyword with the C front end,
10135the target may call the @code{c_register_addr_space} routine. For example,
10136the SPU port uses the following to declare @code{__ea} as the keyword for
10137named address space #1:
36c5e70a
BE
10138@smallexample
10139#define ADDR_SPACE_EA 1
3ef0694c 10140c_register_addr_space ("__ea", ADDR_SPACE_EA);
36c5e70a 10141@end smallexample
36c5e70a 10142
d4ebfa65
BE
10143@deftypefn {Target Hook} {enum machine_mode} TARGET_ADDR_SPACE_POINTER_MODE (addr_space_t @var{address_space})
10144Define this to return the machine mode to use for pointers to
10145@var{address_space} if the target supports named address spaces.
10146The default version of this hook returns @code{ptr_mode} for the
10147generic address space only.
10148@end deftypefn
10149
10150@deftypefn {Target Hook} {enum machine_mode} TARGET_ADDR_SPACE_ADDRESS_MODE (addr_space_t @var{address_space})
10151Define this to return the machine mode to use for addresses in
10152@var{address_space} if the target supports named address spaces.
10153The default version of this hook returns @code{Pmode} for the
10154generic address space only.
10155@end deftypefn
10156
10157@deftypefn {Target Hook} bool TARGET_ADDR_SPACE_VALID_POINTER_MODE (enum machine_mode @var{mode}, addr_space_t @var{as})
10158Define this to return nonzero if the port can handle pointers
10159with machine mode @var{mode} to address space @var{as}. This target
10160hook is the same as the @code{TARGET_VALID_POINTER_MODE} target hook,
10161except that it includes explicit named address space support. The default
10162version of this hook returns true for the modes returned by either the
10163@code{TARGET_ADDR_SPACE_POINTER_MODE} or @code{TARGET_ADDR_SPACE_ADDRESS_MODE}
10164target hooks for the given address space.
10165@end deftypefn
10166
b6fd8800 10167@deftypefn {Target Hook} bool TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P (enum machine_mode @var{mode}, rtx @var{exp}, bool @var{strict}, addr_space_t @var{as})
09e881c9
BE
10168Define this to return true if @var{exp} is a valid address for mode
10169@var{mode} in the named address space @var{as}. The @var{strict}
10170parameter says whether strict addressing is in effect after reload has
10171finished. This target hook is the same as the
10172@code{TARGET_LEGITIMATE_ADDRESS_P} target hook, except that it includes
10173explicit named address space support.
10174@end deftypefn
10175
b6fd8800 10176@deftypefn {Target Hook} rtx TARGET_ADDR_SPACE_LEGITIMIZE_ADDRESS (rtx @var{x}, rtx @var{oldx}, enum machine_mode @var{mode}, addr_space_t @var{as})
09e881c9
BE
10177Define this to modify an invalid address @var{x} to be a valid address
10178with mode @var{mode} in the named address space @var{as}. This target
10179hook is the same as the @code{TARGET_LEGITIMIZE_ADDRESS} target hook,
10180except that it includes explicit named address space support.
10181@end deftypefn
10182
b6fd8800 10183@deftypefn {Target Hook} bool TARGET_ADDR_SPACE_SUBSET_P (addr_space_t @var{superset}, addr_space_t @var{subset})
09e881c9
BE
10184Define this to return whether the @var{subset} named address space is
10185contained within the @var{superset} named address space. Pointers to
10186a named address space that is a subset of another named address space
10187will be converted automatically without a cast if used together in
10188arithmetic operations. Pointers to a superset address space can be
a4ce9883 10189converted to pointers to a subset address space via explicit casts.
09e881c9
BE
10190@end deftypefn
10191
b6fd8800 10192@deftypefn {Target Hook} rtx TARGET_ADDR_SPACE_CONVERT (rtx @var{op}, tree @var{from_type}, tree @var{to_type})
09e881c9
BE
10193Define this to convert the pointer expression represented by the RTL
10194@var{op} with type @var{from_type} that points to a named address
10195space to a new pointer expression with type @var{to_type} that points
10196to a different named address space. When this hook it called, it is
10197guaranteed that one of the two address spaces is a subset of the other,
10198as determined by the @code{TARGET_ADDR_SPACE_SUBSET_P} target hook.
10199@end deftypefn
10200
feca2ed3
JW
10201@node Misc
10202@section Miscellaneous Parameters
10203@cindex parameters, miscellaneous
10204
10205@c prevent bad page break with this line
10206Here are several miscellaneous parameters.
10207
e543e219
ZW
10208@defmac HAS_LONG_COND_BRANCH
10209Define this boolean macro to indicate whether or not your architecture
10210has conditional branches that can span all of memory. It is used in
10211conjunction with an optimization that partitions hot and cold basic
10212blocks into separate sections of the executable. If this macro is
10213set to false, gcc will convert any conditional branches that attempt
10214to cross between sections into unconditional branches or indirect jumps.
10215@end defmac
10216
10217@defmac HAS_LONG_UNCOND_BRANCH
10218Define this boolean macro to indicate whether or not your architecture
10219has unconditional branches that can span all of memory. It is used in
10220conjunction with an optimization that partitions hot and cold basic
10221blocks into separate sections of the executable. If this macro is
10222set to false, gcc will convert any unconditional branches that attempt
10223to cross between sections into indirect jumps.
a2c4f8e0 10224@end defmac
8fe0ca0c 10225
a2c4f8e0 10226@defmac CASE_VECTOR_MODE
feca2ed3
JW
10227An alias for a machine mode name. This is the machine mode that
10228elements of a jump-table should have.
a2c4f8e0 10229@end defmac
feca2ed3 10230
a2c4f8e0 10231@defmac CASE_VECTOR_SHORTEN_MODE (@var{min_offset}, @var{max_offset}, @var{body})
33f7f353
JR
10232Optional: return the preferred mode for an @code{addr_diff_vec}
10233when the minimum and maximum offset are known. If you define this,
10234it enables extra code in branch shortening to deal with @code{addr_diff_vec}.
4226378a 10235To make this work, you also have to define @code{INSN_ALIGN} and
33f7f353 10236make the alignment for @code{addr_diff_vec} explicit.
391aaa6b 10237The @var{body} argument is provided so that the offset_unsigned and scale
33f7f353 10238flags can be updated.
a2c4f8e0 10239@end defmac
33f7f353 10240
a2c4f8e0 10241@defmac CASE_VECTOR_PC_RELATIVE
18543a22 10242Define this macro to be a C expression to indicate when jump-tables
9c49953c
KH
10243should contain relative addresses. You need not define this macro if
10244jump-tables never contain relative addresses, or jump-tables should
10245contain relative addresses only when @option{-fPIC} or @option{-fPIC}
10246is in effect.
a2c4f8e0 10247@end defmac
feca2ed3 10248
b6fd8800 10249@deftypefn {Target Hook} {unsigned int} TARGET_CASE_VALUES_THRESHOLD (void)
e6ff3083 10250This function return the smallest number of different values for which it
feca2ed3
JW
10251is best to use a jump-table instead of a tree of conditional branches.
10252The default is four for machines with a @code{casesi} instruction and
10253five otherwise. This is best for most machines.
e6ff3083 10254@end deftypefn
feca2ed3 10255
a2c4f8e0 10256@defmac CASE_USE_BIT_TESTS
9bb231fd
RS
10257Define this macro to be a C expression to indicate whether C switch
10258statements may be implemented by a sequence of bit tests. This is
10259advantageous on processors that can efficiently implement left shift
10260of 1 by the number of bits held in a register, but inappropriate on
10261targets that would require a loop. By default, this macro returns
10262@code{true} if the target defines an @code{ashlsi3} pattern, and
10263@code{false} otherwise.
a2c4f8e0 10264@end defmac
9bb231fd 10265
a2c4f8e0 10266@defmac WORD_REGISTER_OPERATIONS
feca2ed3
JW
10267Define this macro if operations between registers with integral mode
10268smaller than a word are always performed on the entire register.
10269Most RISC machines have this property and most CISC machines do not.
a2c4f8e0 10270@end defmac
feca2ed3 10271
7be4d808 10272@defmac LOAD_EXTEND_OP (@var{mem_mode})
feca2ed3 10273Define this macro to be a C expression indicating when insns that read
7be4d808
R
10274memory in @var{mem_mode}, an integral mode narrower than a word, set the
10275bits outside of @var{mem_mode} to be either the sign-extension or the
feca2ed3 10276zero-extension of the data read. Return @code{SIGN_EXTEND} for values
7be4d808 10277of @var{mem_mode} for which the
feca2ed3 10278insn sign-extends, @code{ZERO_EXTEND} for which it zero-extends, and
f822d252 10279@code{UNKNOWN} for other modes.
feca2ed3 10280
7be4d808 10281This macro is not called with @var{mem_mode} non-integral or with a width
feca2ed3
JW
10282greater than or equal to @code{BITS_PER_WORD}, so you may return any
10283value in this case. Do not define this macro if it would always return
f822d252 10284@code{UNKNOWN}. On machines where this macro is defined, you will normally
feca2ed3 10285define it as the constant @code{SIGN_EXTEND} or @code{ZERO_EXTEND}.
7be4d808 10286
f822d252 10287You may return a non-@code{UNKNOWN} value even if for some hard registers
7be4d808
R
10288the sign extension is not performed, if for the @code{REGNO_REG_CLASS}
10289of these hard registers @code{CANNOT_CHANGE_MODE_CLASS} returns nonzero
10290when the @var{from} mode is @var{mem_mode} and the @var{to} mode is any
10291integral mode larger than this but not larger than @code{word_mode}.
10292
f822d252 10293You must return @code{UNKNOWN} if for some hard registers that allow this
7be4d808
R
10294mode, @code{CANNOT_CHANGE_MODE_CLASS} says that they cannot change to
10295@code{word_mode}, but that they can change to another integral mode that
10296is larger then @var{mem_mode} but still smaller than @code{word_mode}.
a2c4f8e0 10297@end defmac
feca2ed3 10298
a2c4f8e0 10299@defmac SHORT_IMMEDIATES_SIGN_EXTEND
77643ab8
MM
10300Define this macro if loading short immediate values into registers sign
10301extends.
a2c4f8e0 10302@end defmac
77643ab8 10303
a2c4f8e0 10304@defmac FIXUNS_TRUNC_LIKE_FIX_TRUNC
feca2ed3
JW
10305Define this macro if the same instructions that convert a floating
10306point number to a signed fixed point number also convert validly to an
10307unsigned one.
a2c4f8e0 10308@end defmac
feca2ed3 10309
728d406c 10310@deftypefn {Target Hook} {unsigned int} TARGET_MIN_DIVISIONS_FOR_RECIP_MUL (enum machine_mode @var{mode})
bc23502b
PB
10311When @option{-ffast-math} is in effect, GCC tries to optimize
10312divisions by the same divisor, by turning them into multiplications by
10313the reciprocal. This target hook specifies the minimum number of divisions
10314that should be there for GCC to perform the optimization for a variable
10315of mode @var{mode}. The default implementation returns 3 if the machine
10316has an instruction for the division, and 2 if it does not.
10317@end deftypefn
10318
a2c4f8e0 10319@defmac MOVE_MAX
feca2ed3
JW
10320The maximum number of bytes that a single instruction can move quickly
10321between memory and registers or between two memory locations.
a2c4f8e0 10322@end defmac
feca2ed3 10323
a2c4f8e0 10324@defmac MAX_MOVE_MAX
feca2ed3
JW
10325The maximum number of bytes that a single instruction can move quickly
10326between memory and registers or between two memory locations. If this
10327is undefined, the default is @code{MOVE_MAX}. Otherwise, it is the
10328constant value that is the largest value that @code{MOVE_MAX} can have
10329at run-time.
a2c4f8e0 10330@end defmac
feca2ed3 10331
a2c4f8e0 10332@defmac SHIFT_COUNT_TRUNCATED
feca2ed3
JW
10333A C expression that is nonzero if on this machine the number of bits
10334actually used for the count of a shift operation is equal to the number
10335of bits needed to represent the size of the object being shifted. When
df2a54e9 10336this macro is nonzero, the compiler will assume that it is safe to omit
feca2ed3
JW
10337a sign-extend, zero-extend, and certain bitwise `and' instructions that
10338truncates the count of a shift operation. On machines that have
c771326b 10339instructions that act on bit-fields at variable positions, which may
feca2ed3
JW
10340include `bit test' instructions, a nonzero @code{SHIFT_COUNT_TRUNCATED}
10341also enables deletion of truncations of the values that serve as
c771326b 10342arguments to bit-field instructions.
feca2ed3
JW
10343
10344If both types of instructions truncate the count (for shifts) and
c771326b 10345position (for bit-field operations), or if no variable-position bit-field
feca2ed3
JW
10346instructions exist, you should define this macro.
10347
10348However, on some machines, such as the 80386 and the 680x0, truncation
10349only applies to shift operations and not the (real or pretended)
c771326b 10350bit-field operations. Define @code{SHIFT_COUNT_TRUNCATED} to be zero on
feca2ed3
JW
10351such machines. Instead, add patterns to the @file{md} file that include
10352the implied truncation of the shift instructions.
10353
10354You need not define this macro if it would always have the value of zero.
a2c4f8e0 10355@end defmac
feca2ed3 10356
273a2526 10357@anchor{TARGET_SHIFT_TRUNCATION_MASK}
914d25dc 10358@deftypefn {Target Hook} {unsigned HOST_WIDE_INT} TARGET_SHIFT_TRUNCATION_MASK (enum machine_mode @var{mode})
273a2526
RS
10359This function describes how the standard shift patterns for @var{mode}
10360deal with shifts by negative amounts or by more than the width of the mode.
10361@xref{shift patterns}.
10362
10363On many machines, the shift patterns will apply a mask @var{m} to the
10364shift count, meaning that a fixed-width shift of @var{x} by @var{y} is
10365equivalent to an arbitrary-width shift of @var{x} by @var{y & m}. If
10366this is true for mode @var{mode}, the function should return @var{m},
10367otherwise it should return 0. A return value of 0 indicates that no
10368particular behavior is guaranteed.
10369
10370Note that, unlike @code{SHIFT_COUNT_TRUNCATED}, this function does
10371@emph{not} apply to general shift rtxes; it applies only to instructions
10372that are generated by the named shift patterns.
10373
10374The default implementation of this function returns
10375@code{GET_MODE_BITSIZE (@var{mode}) - 1} if @code{SHIFT_COUNT_TRUNCATED}
10376and 0 otherwise. This definition is always safe, but if
10377@code{SHIFT_COUNT_TRUNCATED} is false, and some shift patterns
10378nevertheless truncate the shift count, you may get better code
10379by overriding it.
10380@end deftypefn
10381
a2c4f8e0 10382@defmac TRULY_NOOP_TRUNCATION (@var{outprec}, @var{inprec})
feca2ed3
JW
10383A C expression which is nonzero if on this machine it is safe to
10384``convert'' an integer of @var{inprec} bits to one of @var{outprec}
10385bits (where @var{outprec} is smaller than @var{inprec}) by merely
10386operating on it as if it had only @var{outprec} bits.
10387
10388On many machines, this expression can be 1.
10389
10390@c rearranged this, removed the phrase "it is reported that". this was
10391@c to fix an overfull hbox. --mew 10feb93
10392When @code{TRULY_NOOP_TRUNCATION} returns 1 for a pair of sizes for
10393modes for which @code{MODES_TIEABLE_P} is 0, suboptimal code can result.
10394If this is the case, making @code{TRULY_NOOP_TRUNCATION} return 0 in
10395such cases may improve things.
a2c4f8e0 10396@end defmac
feca2ed3 10397
b12cbf2c 10398@deftypefn {Target Hook} int TARGET_MODE_REP_EXTENDED (enum machine_mode @var{mode}, enum machine_mode @var{rep_mode})
66a4ad37 10399The representation of an integral mode can be such that the values
b12cbf2c
AN
10400are always extended to a wider integral mode. Return
10401@code{SIGN_EXTEND} if values of @var{mode} are represented in
10402sign-extended form to @var{rep_mode}. Return @code{UNKNOWN}
10403otherwise. (Currently, none of the targets use zero-extended
10404representation this way so unlike @code{LOAD_EXTEND_OP},
10405@code{TARGET_MODE_REP_EXTENDED} is expected to return either
10406@code{SIGN_EXTEND} or @code{UNKNOWN}. Also no target extends
914d25dc 10407@var{mode} to @var{rep_mode} so that @var{rep_mode} is not the next
b12cbf2c
AN
10408widest integral mode and currently we take advantage of this fact.)
10409
10410Similarly to @code{LOAD_EXTEND_OP} you may return a non-@code{UNKNOWN}
10411value even if the extension is not performed on certain hard registers
10412as long as for the @code{REGNO_REG_CLASS} of these hard registers
10413@code{CANNOT_CHANGE_MODE_CLASS} returns nonzero.
10414
10415Note that @code{TARGET_MODE_REP_EXTENDED} and @code{LOAD_EXTEND_OP}
10416describe two related properties. If you define
10417@code{TARGET_MODE_REP_EXTENDED (mode, word_mode)} you probably also want
10418to define @code{LOAD_EXTEND_OP (mode)} to return the same type of
10419extension.
10420
10421In order to enforce the representation of @code{mode},
10422@code{TRULY_NOOP_TRUNCATION} should return false when truncating to
10423@code{mode}.
10424@end deftypefn
10425
a2c4f8e0 10426@defmac STORE_FLAG_VALUE
feca2ed3
JW
10427A C expression describing the value returned by a comparison operator
10428with an integral mode and stored by a store-flag instruction
ac5eda13
PB
10429(@samp{cstore@var{mode}4}) when the condition is true. This description must
10430apply to @emph{all} the @samp{cstore@var{mode}4} patterns and all the
feca2ed3
JW
10431comparison operators whose results have a @code{MODE_INT} mode.
10432
630d3d5a
JM
10433A value of 1 or @minus{}1 means that the instruction implementing the
10434comparison operator returns exactly 1 or @minus{}1 when the comparison is true
feca2ed3
JW
10435and 0 when the comparison is false. Otherwise, the value indicates
10436which bits of the result are guaranteed to be 1 when the comparison is
10437true. This value is interpreted in the mode of the comparison
10438operation, which is given by the mode of the first operand in the
ac5eda13 10439@samp{cstore@var{mode}4} pattern. Either the low bit or the sign bit of
feca2ed3
JW
10440@code{STORE_FLAG_VALUE} be on. Presently, only those bits are used by
10441the compiler.
10442
630d3d5a 10443If @code{STORE_FLAG_VALUE} is neither 1 or @minus{}1, the compiler will
feca2ed3
JW
10444generate code that depends only on the specified bits. It can also
10445replace comparison operators with equivalent operations if they cause
10446the required bits to be set, even if the remaining bits are undefined.
10447For example, on a machine whose comparison operators return an
10448@code{SImode} value and where @code{STORE_FLAG_VALUE} is defined as
10449@samp{0x80000000}, saying that just the sign bit is relevant, the
10450expression
10451
10452@smallexample
10453(ne:SI (and:SI @var{x} (const_int @var{power-of-2})) (const_int 0))
10454@end smallexample
10455
10456@noindent
10457can be converted to
10458
10459@smallexample
10460(ashift:SI @var{x} (const_int @var{n}))
10461@end smallexample
10462
10463@noindent
10464where @var{n} is the appropriate shift count to move the bit being
10465tested into the sign bit.
10466
10467There is no way to describe a machine that always sets the low-order bit
10468for a true value, but does not guarantee the value of any other bits,
10469but we do not know of any machine that has such an instruction. If you
a3a15b4d 10470are trying to port GCC to such a machine, include an instruction to
feca2ed3 10471perform a logical-and of the result with 1 in the pattern for the
b11cc610 10472comparison operators and let us know at @email{gcc@@gcc.gnu.org}.
feca2ed3
JW
10473
10474Often, a machine will have multiple instructions that obtain a value
10475from a comparison (or the condition codes). Here are rules to guide the
10476choice of value for @code{STORE_FLAG_VALUE}, and hence the instructions
10477to be used:
10478
10479@itemize @bullet
10480@item
10481Use the shortest sequence that yields a valid definition for
10482@code{STORE_FLAG_VALUE}. It is more efficient for the compiler to
10483``normalize'' the value (convert it to, e.g., 1 or 0) than for the
10484comparison operators to do so because there may be opportunities to
10485combine the normalization with other operations.
10486
10487@item
630d3d5a 10488For equal-length sequences, use a value of 1 or @minus{}1, with @minus{}1 being
feca2ed3
JW
10489slightly preferred on machines with expensive jumps and 1 preferred on
10490other machines.
10491
10492@item
10493As a second choice, choose a value of @samp{0x80000001} if instructions
10494exist that set both the sign and low-order bits but do not define the
10495others.
10496
10497@item
10498Otherwise, use a value of @samp{0x80000000}.
10499@end itemize
10500
10501Many machines can produce both the value chosen for
10502@code{STORE_FLAG_VALUE} and its negation in the same number of
10503instructions. On those machines, you should also define a pattern for
10504those cases, e.g., one matching
10505
10506@smallexample
10507(set @var{A} (neg:@var{m} (ne:@var{m} @var{B} @var{C})))
10508@end smallexample
10509
10510Some machines can also perform @code{and} or @code{plus} operations on
10511condition code values with less instructions than the corresponding
ac5eda13 10512@samp{cstore@var{mode}4} insn followed by @code{and} or @code{plus}. On those
feca2ed3
JW
10513machines, define the appropriate patterns. Use the names @code{incscc}
10514and @code{decscc}, respectively, for the patterns which perform
10515@code{plus} or @code{minus} operations on condition code values. See
10516@file{rs6000.md} for some examples. The GNU Superoptizer can be used to
10517find such instruction sequences on other machines.
10518
06f31100
RS
10519If this macro is not defined, the default value, 1, is used. You need
10520not define @code{STORE_FLAG_VALUE} if the machine has no store-flag
10521instructions, or if the value generated by these instructions is 1.
a2c4f8e0 10522@end defmac
feca2ed3 10523
a2c4f8e0 10524@defmac FLOAT_STORE_FLAG_VALUE (@var{mode})
df2a54e9 10525A C expression that gives a nonzero @code{REAL_VALUE_TYPE} value that is
feca2ed3 10526returned when comparison operators with floating-point results are true.
fc7ca5fd 10527Define this macro on machines that have comparison operations that return
feca2ed3
JW
10528floating-point values. If there are no such operations, do not define
10529this macro.
a2c4f8e0 10530@end defmac
feca2ed3 10531
fc7ca5fd 10532@defmac VECTOR_STORE_FLAG_VALUE (@var{mode})
a4d05547 10533A C expression that gives a rtx representing the nonzero true element
fc7ca5fd
RS
10534for vector comparisons. The returned rtx should be valid for the inner
10535mode of @var{mode} which is guaranteed to be a vector mode. Define
10536this macro on machines that have vector comparison operations that
10537return a vector result. If there are no such operations, do not define
10538this macro. Typically, this macro is defined as @code{const1_rtx} or
10539@code{constm1_rtx}. This macro may return @code{NULL_RTX} to prevent
10540the compiler optimizing such vector comparison operations for the
10541given mode.
10542@end defmac
10543
a2c4f8e0
ZW
10544@defmac CLZ_DEFINED_VALUE_AT_ZERO (@var{mode}, @var{value})
10545@defmacx CTZ_DEFINED_VALUE_AT_ZERO (@var{mode}, @var{value})
14670a74
SL
10546A C expression that indicates whether the architecture defines a value
10547for @code{clz} or @code{ctz} with a zero operand.
10548A result of @code{0} indicates the value is undefined.
10549If the value is defined for only the RTL expression, the macro should
10550evaluate to @code{1}; if the value applies also to the corresponding optab
10551entry (which is normally the case if it expands directly into
10552the corresponding RTL), then the macro should evaluate to @code{2}.
10553In the cases where the value is defined, @var{value} should be set to
10554this value.
10555
10556If this macro is not defined, the value of @code{clz} or
10557@code{ctz} at zero is assumed to be undefined.
7dba8395
RH
10558
10559This macro must be defined if the target's expansion for @code{ffs}
10560relies on a particular value to get correct results. Otherwise it
14670a74
SL
10561is not necessary, though it may be used to optimize some corner cases, and
10562to provide a default expansion for the @code{ffs} optab.
7dba8395
RH
10563
10564Note that regardless of this macro the ``definedness'' of @code{clz}
10565and @code{ctz} at zero do @emph{not} extend to the builtin functions
10566visible to the user. Thus one may be free to adjust the value at will
10567to match the target expansion of these operations without fear of
8a36672b 10568breaking the API@.
a2c4f8e0 10569@end defmac
7dba8395 10570
a2c4f8e0 10571@defmac Pmode
feca2ed3
JW
10572An alias for the machine mode for pointers. On most machines, define
10573this to be the integer mode corresponding to the width of a hardware
10574pointer; @code{SImode} on 32-bit machine or @code{DImode} on 64-bit machines.
10575On some machines you must define this to be one of the partial integer
10576modes, such as @code{PSImode}.
10577
10578The width of @code{Pmode} must be at least as large as the value of
10579@code{POINTER_SIZE}. If it is not equal, you must define the macro
10580@code{POINTERS_EXTEND_UNSIGNED} to specify how pointers are extended
10581to @code{Pmode}.
a2c4f8e0 10582@end defmac
feca2ed3 10583
a2c4f8e0 10584@defmac FUNCTION_MODE
feca2ed3 10585An alias for the machine mode used for memory references to functions
f71e957e
DK
10586being called, in @code{call} RTL expressions. On most CISC machines,
10587where an instruction can begin at any byte address, this should be
10588@code{QImode}. On most RISC machines, where all instructions have fixed
10589size and alignment, this should be a mode with the same size and alignment
10590as the machine instruction words - typically @code{SImode} or @code{HImode}.
a2c4f8e0 10591@end defmac
feca2ed3 10592
a2c4f8e0 10593@defmac STDC_0_IN_SYSTEM_HEADERS
ee773fcc
NB
10594In normal operation, the preprocessor expands @code{__STDC__} to the
10595constant 1, to signify that GCC conforms to ISO Standard C@. On some
10596hosts, like Solaris, the system compiler uses a different convention,
10597where @code{__STDC__} is normally 0, but is 1 if the user specifies
10598strict conformance to the C Standard.
10599
10600Defining @code{STDC_0_IN_SYSTEM_HEADERS} makes GNU CPP follows the host
10601convention when processing system header files, but when processing user
10602files @code{__STDC__} will always expand to 1.
a2c4f8e0 10603@end defmac
ee773fcc 10604
a2c4f8e0 10605@defmac NO_IMPLICIT_EXTERN_C
161d7b59 10606Define this macro if the system header files support C++ as well as C@.
feca2ed3
JW
10607This macro inhibits the usual method of using system header files in
10608C++, which is to pretend that the file's contents are enclosed in
10609@samp{extern "C" @{@dots{}@}}.
a2c4f8e0 10610@end defmac
feca2ed3 10611
feca2ed3
JW
10612@findex #pragma
10613@findex pragma
a2c4f8e0 10614@defmac REGISTER_TARGET_PRAGMAS ()
8b97c5f8 10615Define this macro if you want to implement any target-specific pragmas.
a5da89c6 10616If defined, it is a C expression which makes a series of calls to
b5b3e36a
DJ
10617@code{c_register_pragma} or @code{c_register_pragma_with_expansion}
10618for each pragma. The macro may also do any
a5da89c6 10619setup required for the pragmas.
8b97c5f8
ZW
10620
10621The primary reason to define this macro is to provide compatibility with
10622other compilers for the same target. In general, we discourage
161d7b59 10623definition of target-specific pragmas for GCC@.
feca2ed3 10624
c237e94a 10625If the pragma can be implemented by attributes then you should consider
91d231cb 10626defining the target hook @samp{TARGET_INSERT_ATTRIBUTES} as well.
f09db6e0 10627
8b97c5f8
ZW
10628Preprocessor macros that appear on pragma lines are not expanded. All
10629@samp{#pragma} directives that do not match any registered pragma are
630d3d5a 10630silently ignored, unless the user specifies @option{-Wunknown-pragmas}.
a2c4f8e0 10631@end defmac
8b97c5f8 10632
c58b209a 10633@deftypefun void c_register_pragma (const char *@var{space}, const char *@var{name}, void (*@var{callback}) (struct cpp_reader *))
b5b3e36a 10634@deftypefunx void c_register_pragma_with_expansion (const char *@var{space}, const char *@var{name}, void (*@var{callback}) (struct cpp_reader *))
8b97c5f8 10635
b5b3e36a
DJ
10636Each call to @code{c_register_pragma} or
10637@code{c_register_pragma_with_expansion} establishes one pragma. The
8b97c5f8
ZW
10638@var{callback} routine will be called when the preprocessor encounters a
10639pragma of the form
10640
10641@smallexample
10642#pragma [@var{space}] @var{name} @dots{}
10643@end smallexample
10644
a5da89c6
NB
10645@var{space} is the case-sensitive namespace of the pragma, or
10646@code{NULL} to put the pragma in the global namespace. The callback
10647routine receives @var{pfile} as its first argument, which can be passed
51fabca5 10648on to cpplib's functions if necessary. You can lex tokens after the
75ce3d48 10649@var{name} by calling @code{pragma_lex}. Tokens that are not read by the
51fabca5 10650callback will be silently ignored. The end of the line is indicated by
b5b3e36a
DJ
10651a token of type @code{CPP_EOF}. Macro expansion occurs on the
10652arguments of pragmas registered with
10653@code{c_register_pragma_with_expansion} but not on the arguments of
10654pragmas registered with @code{c_register_pragma}.
8b97c5f8 10655
75ce3d48 10656Note that the use of @code{pragma_lex} is specific to the C and C++
aac69a49 10657compilers. It will not work in the Java or Fortran compilers, or any
75ce3d48 10658other language compilers for that matter. Thus if @code{pragma_lex} is going
aac69a49 10659to be called from target-specific code, it must only be done so when
c771326b 10660building the C and C++ compilers. This can be done by defining the
aac69a49 10661variables @code{c_target_objs} and @code{cxx_target_objs} in the
aee96fe9 10662target entry in the @file{config.gcc} file. These variables should name
aac69a49 10663the target-specific, language-specific object file which contains the
75ce3d48 10664code that uses @code{pragma_lex}. Note it will also be necessary to add a
aac69a49
NC
10665rule to the makefile fragment pointed to by @code{tmake_file} that shows
10666how to build this object file.
8b97c5f8
ZW
10667@end deftypefun
10668
b5b3e36a 10669@defmac HANDLE_PRAGMA_PACK_WITH_EXPANSION
24a57808 10670Define this macro if macros should be expanded in the
b5b3e36a
DJ
10671arguments of @samp{#pragma pack}.
10672@end defmac
10673
914d25dc
JR
10674@deftypevr {Target Hook} bool TARGET_HANDLE_PRAGMA_EXTERN_PREFIX
10675True if @code{#pragma extern_prefix} is to be supported.
10676@end deftypevr
10677
467cecf3
JB
10678@defmac TARGET_DEFAULT_PACK_STRUCT
10679If your target requires a structure packing default other than 0 (meaning
0bdcd332 10680the machine default), define this macro to the necessary value (in bytes).
8b7d4300 10681This must be a value that would also be valid to use with
467cecf3
JB
10682@samp{#pragma pack()} (that is, a small power of two).
10683@end defmac
10684
a2c4f8e0 10685@defmac DOLLARS_IN_IDENTIFIERS
b1822ccc 10686Define this macro to control use of the character @samp{$} in
170ea7b9 10687identifier names for the C family of languages. 0 means @samp{$} is
b1822ccc
NB
10688not allowed by default; 1 means it is allowed. 1 is the default;
10689there is no need to define this macro in that case.
a2c4f8e0 10690@end defmac
feca2ed3 10691
a2c4f8e0 10692@defmac NO_DOLLAR_IN_LABEL
feca2ed3
JW
10693Define this macro if the assembler does not accept the character
10694@samp{$} in label names. By default constructors and destructors in
10695G++ have @samp{$} in the identifiers. If this macro is defined,
10696@samp{.} is used instead.
a2c4f8e0 10697@end defmac
feca2ed3 10698
a2c4f8e0 10699@defmac NO_DOT_IN_LABEL
feca2ed3
JW
10700Define this macro if the assembler does not accept the character
10701@samp{.} in label names. By default constructors and destructors in G++
10702have names that use @samp{.}. If this macro is defined, these names
10703are rewritten to avoid @samp{.}.
a2c4f8e0 10704@end defmac
feca2ed3 10705
a2c4f8e0 10706@defmac INSN_SETS_ARE_DELAYED (@var{insn})
feca2ed3
JW
10707Define this macro as a C expression that is nonzero if it is safe for the
10708delay slot scheduler to place instructions in the delay slot of @var{insn},
10709even if they appear to use a resource set or clobbered in @var{insn}.
a3a15b4d 10710@var{insn} is always a @code{jump_insn} or an @code{insn}; GCC knows that
feca2ed3
JW
10711every @code{call_insn} has this behavior. On machines where some @code{insn}
10712or @code{jump_insn} is really a function call and hence has this behavior,
10713you should define this macro.
10714
10715You need not define this macro if it would always return zero.
a2c4f8e0 10716@end defmac
feca2ed3 10717
a2c4f8e0 10718@defmac INSN_REFERENCES_ARE_DELAYED (@var{insn})
feca2ed3
JW
10719Define this macro as a C expression that is nonzero if it is safe for the
10720delay slot scheduler to place instructions in the delay slot of @var{insn},
10721even if they appear to set or clobber a resource referenced in @var{insn}.
10722@var{insn} is always a @code{jump_insn} or an @code{insn}. On machines where
10723some @code{insn} or @code{jump_insn} is really a function call and its operands
10724are registers whose use is actually in the subroutine it calls, you should
10725define this macro. Doing so allows the delay slot scheduler to move
10726instructions which copy arguments into the argument registers into the delay
10727slot of @var{insn}.
10728
10729You need not define this macro if it would always return zero.
a2c4f8e0 10730@end defmac
feca2ed3 10731
a2c4f8e0 10732@defmac MULTIPLE_SYMBOL_SPACES
15072eb1
ZW
10733Define this macro as a C expression that is nonzero if, in some cases,
10734global symbols from one translation unit may not be bound to undefined
10735symbols in another translation unit without user intervention. For
10736instance, under Microsoft Windows symbols must be explicitly imported
10737from shared libraries (DLLs).
10738
10739You need not define this macro if it would always evaluate to zero.
a2c4f8e0 10740@end defmac
861bb6c1 10741
61158923 10742@deftypefn {Target Hook} tree TARGET_MD_ASM_CLOBBERS (tree @var{outputs}, tree @var{inputs}, tree @var{clobbers})
67dfe110 10743This target hook should add to @var{clobbers} @code{STRING_CST} trees for
61158923 10744any hard regs the port wishes to automatically clobber for an asm.
67dfe110 10745It should return the result of the last @code{tree_cons} used to add a
61158923
HPN
10746clobber. The @var{outputs}, @var{inputs} and @var{clobber} lists are the
10747corresponding parameters to the asm and may be inspected to avoid
10748clobbering a register that is an input or output of the asm. You can use
91b4415a 10749@code{tree_overlaps_hard_reg_set}, declared in @file{tree.h}, to test
61158923 10750for overlap with regards to asm-declared registers.
67dfe110 10751@end deftypefn
57bcb97a 10752
a2c4f8e0 10753@defmac MATH_LIBRARY
71d718e0 10754Define this macro as a C string constant for the linker argument to link
d9d16a19
JM
10755in the system math library, minus the initial @samp{"-l"}, or
10756@samp{""} if the target does not have a
71d718e0
JM
10757separate math library.
10758
d9d16a19 10759You need only define this macro if the default of @samp{"m"} is wrong.
a2c4f8e0 10760@end defmac
512b62fb 10761
a2c4f8e0 10762@defmac LIBRARY_PATH_ENV
512b62fb
JM
10763Define this macro as a C string constant for the environment variable that
10764specifies where the linker should look for libraries.
10765
10766You need only define this macro if the default of @samp{"LIBRARY_PATH"}
10767is wrong.
a2c4f8e0 10768@end defmac
e09d24ff 10769
4969c0d8
L
10770@defmac TARGET_POSIX_IO
10771Define this macro if the target supports the following POSIX@ file
10772functions, access, mkdir and file locking with fcntl / F_SETLKW@.
10773Defining @code{TARGET_POSIX_IO} will enable the test coverage code
e09d24ff 10774to use file locking when exiting a program, which avoids race conditions
4969c0d8 10775if the program has forked. It will also create directories at run-time
709a840a 10776for cross-profiling.
a2c4f8e0 10777@end defmac
0c99ec5c 10778
a2c4f8e0 10779@defmac MAX_CONDITIONAL_EXECUTE
0c99ec5c
RH
10780
10781A C expression for the maximum number of instructions to execute via
10782conditional execution instructions instead of a branch. A value of
10783@code{BRANCH_COST}+1 is the default if the machine does not use cc0, and
107841 if it does use cc0.
a2c4f8e0 10785@end defmac
90280148 10786
a2c4f8e0 10787@defmac IFCVT_MODIFY_TESTS (@var{ce_info}, @var{true_expr}, @var{false_expr})
c05ffc49
BS
10788Used if the target needs to perform machine-dependent modifications on the
10789conditionals used for turning basic blocks into conditionally executed code.
10790@var{ce_info} points to a data structure, @code{struct ce_if_block}, which
10791contains information about the currently processed blocks. @var{true_expr}
10792and @var{false_expr} are the tests that are used for converting the
10793then-block and the else-block, respectively. Set either @var{true_expr} or
10794@var{false_expr} to a null pointer if the tests cannot be converted.
a2c4f8e0 10795@end defmac
c05ffc49 10796
a2c4f8e0 10797@defmac IFCVT_MODIFY_MULTIPLE_TESTS (@var{ce_info}, @var{bb}, @var{true_expr}, @var{false_expr})
c05ffc49
BS
10798Like @code{IFCVT_MODIFY_TESTS}, but used when converting more complicated
10799if-statements into conditions combined by @code{and} and @code{or} operations.
10800@var{bb} contains the basic block that contains the test that is currently
10801being processed and about to be turned into a condition.
a2c4f8e0 10802@end defmac
90280148 10803
a2c4f8e0 10804@defmac IFCVT_MODIFY_INSN (@var{ce_info}, @var{pattern}, @var{insn})
c05ffc49
BS
10805A C expression to modify the @var{PATTERN} of an @var{INSN} that is to
10806be converted to conditional execution format. @var{ce_info} points to
10807a data structure, @code{struct ce_if_block}, which contains information
10808about the currently processed blocks.
a2c4f8e0 10809@end defmac
90280148 10810
a2c4f8e0 10811@defmac IFCVT_MODIFY_FINAL (@var{ce_info})
90280148 10812A C expression to perform any final machine dependent modifications in
c05ffc49
BS
10813converting code to conditional execution. The involved basic blocks
10814can be found in the @code{struct ce_if_block} structure that is pointed
10815to by @var{ce_info}.
a2c4f8e0 10816@end defmac
90280148 10817
a2c4f8e0 10818@defmac IFCVT_MODIFY_CANCEL (@var{ce_info})
90280148 10819A C expression to cancel any machine dependent modifications in
c05ffc49
BS
10820converting code to conditional execution. The involved basic blocks
10821can be found in the @code{struct ce_if_block} structure that is pointed
10822to by @var{ce_info}.
a2c4f8e0 10823@end defmac
c05ffc49 10824
a2c4f8e0 10825@defmac IFCVT_INIT_EXTRA_FIELDS (@var{ce_info})
c05ffc49
BS
10826A C expression to initialize any extra fields in a @code{struct ce_if_block}
10827structure, which are defined by the @code{IFCVT_EXTRA_FIELDS} macro.
a2c4f8e0 10828@end defmac
c05ffc49 10829
a2c4f8e0 10830@defmac IFCVT_EXTRA_FIELDS
c05ffc49 10831If defined, it should expand to a set of field declarations that will be
c0478a66 10832added to the @code{struct ce_if_block} structure. These should be initialized
c05ffc49 10833by the @code{IFCVT_INIT_EXTRA_FIELDS} macro.
a2c4f8e0 10834@end defmac
c05ffc49 10835
b6fd8800 10836@deftypefn {Target Hook} void TARGET_MACHINE_DEPENDENT_REORG (void)
18dbd950
RS
10837If non-null, this hook performs a target-specific pass over the
10838instruction stream. The compiler will run it at all optimization levels,
10839just before the point at which it normally does delayed-branch scheduling.
10840
10841The exact purpose of the hook varies from target to target. Some use
10842it to do transformations that are necessary for correctness, such as
10843laying out in-function constant pools or avoiding hardware hazards.
10844Others use it as an opportunity to do some machine-dependent optimizations.
10845
10846You need not implement the hook if it has nothing to do. The default
10847definition is null.
10848@end deftypefn
10849
b6fd8800 10850@deftypefn {Target Hook} void TARGET_INIT_BUILTINS (void)
f6155fda
SS
10851Define this hook if you have any machine-specific built-in functions
10852that need to be defined. It should be a function that performs the
4a1d48f6
BS
10853necessary setup.
10854
c771326b 10855Machine specific built-in functions can be useful to expand special machine
4a1d48f6
BS
10856instructions that would otherwise not normally be generated because
10857they have no equivalent in the source language (for example, SIMD vector
10858instructions or prefetch instructions).
10859
6e34d3a3
JM
10860To create a built-in function, call the function
10861@code{lang_hooks.builtin_function}
c771326b 10862which is defined by the language front end. You can use any type nodes set
4a1d48f6 10863up by @code{build_common_tree_nodes} and @code{build_common_tree_nodes_2};
c237e94a 10864only language front ends that use those two functions will call
f6155fda 10865@samp{TARGET_INIT_BUILTINS}.
acdcefcc 10866@end deftypefn
4a1d48f6 10867
914d25dc 10868@deftypefn {Target Hook} tree TARGET_BUILTIN_DECL (unsigned @var{code}, bool @var{initialize_p})
e9e4b3a8
RG
10869Define this hook if you have any machine-specific built-in functions
10870that need to be defined. It should be a function that returns the
10871builtin function declaration for the builtin function code @var{code}.
10872If there is no such builtin and it cannot be initialized at this time
10873if @var{initialize_p} is true the function should return @code{NULL_TREE}.
10874If @var{code} is out of range the function should return
10875@code{error_mark_node}.
10876@end deftypefn
10877
f6155fda 10878@deftypefn {Target Hook} rtx TARGET_EXPAND_BUILTIN (tree @var{exp}, rtx @var{target}, rtx @var{subtarget}, enum machine_mode @var{mode}, int @var{ignore})
4a1d48f6 10879
c771326b 10880Expand a call to a machine specific built-in function that was set up by
f6155fda
SS
10881@samp{TARGET_INIT_BUILTINS}. @var{exp} is the expression for the
10882function call; the result should go to @var{target} if that is
10883convenient, and have mode @var{mode} if that is convenient.
10884@var{subtarget} may be used as the target for computing one of
10885@var{exp}'s operands. @var{ignore} is nonzero if the value is to be
10886ignored. This function should return the result of the call to the
10887built-in function.
acdcefcc 10888@end deftypefn
4a1d48f6 10889
7a241624 10890@deftypefn {Target Hook} tree TARGET_RESOLVE_OVERLOADED_BUILTIN (unsigned int @var{loc}, tree @var{fndecl}, void *@var{arglist})
4268e4cf
PB
10891Select a replacement for a machine specific built-in function that
10892was set up by @samp{TARGET_INIT_BUILTINS}. This is done
10893@emph{before} regular type checking, and so allows the target to
10894implement a crude form of function overloading. @var{fndecl} is the
10895declaration of the built-in function. @var{arglist} is the list of
10896arguments passed to the built-in function. The result is a
10897complete expression that implements the operation, usually
10898another @code{CALL_EXPR}.
7a241624 10899@var{arglist} really has type @samp{VEC(tree,gc)*}
4268e4cf
PB
10900@end deftypefn
10901
f311c3b4 10902@deftypefn {Target Hook} tree TARGET_FOLD_BUILTIN (tree @var{fndecl}, int @var{n_args}, tree *@var{argp}, bool @var{ignore})
a05a80fc
KH
10903Fold a call to a machine specific built-in function that was set up by
10904@samp{TARGET_INIT_BUILTINS}. @var{fndecl} is the declaration of the
f311c3b4
NF
10905built-in function. @var{n_args} is the number of arguments passed to
10906the function; the arguments themselves are pointed to by @var{argp}.
10907The result is another tree containing a simplified expression for the
10908call's result. If @var{ignore} is true the value will be ignored.
d6c2b67d
PB
10909@end deftypefn
10910
72392b81 10911@deftypefn {Target Hook} {const char *} TARGET_INVALID_WITHIN_DOLOOP (const_rtx @var{insn})
a71a498d 10912
e7e64a25 10913Take an instruction in @var{insn} and return NULL if it is valid within a
72392b81
JR
10914low-overhead loop, otherwise return a string explaining why doloop
10915could not be applied.
a71a498d 10916
e7e64a25
AS
10917Many targets use special registers for low-overhead looping. For any
10918instruction that clobbers these this function should return a string indicating
083cad55 10919the reason why the doloop could not be applied.
a71a498d 10920By default, the RTL loop optimizer does not use a present doloop pattern for
083cad55 10921loops containing function calls or branch on table instructions.
a71a498d
AS
10922@end deftypefn
10923
a2c4f8e0 10924@defmac MD_CAN_REDIRECT_BRANCH (@var{branch1}, @var{branch2})
6e7b03e1 10925
4fe9b91c 10926Take a branch insn in @var{branch1} and another in @var{branch2}.
6e7b03e1
AH
10927Return true if redirecting @var{branch1} to the destination of
10928@var{branch2} is possible.
10929
10930On some targets, branches may have a limited range. Optimizing the
10931filling of delay slots can result in branches being redirected, and this
10932may in turn cause a branch offset to overflow.
a2c4f8e0 10933@end defmac
6e7b03e1 10934
914d25dc 10935@deftypefn {Target Hook} bool TARGET_COMMUTATIVE_P (const_rtx @var{x}, int @var{outer_code})
8ddf681a
R
10936This target hook returns @code{true} if @var{x} is considered to be commutative.
10937Usually, this is just COMMUTATIVE_P (@var{x}), but the HP PA doesn't consider
0ee2ea09 10938PLUS to be commutative inside a MEM@. @var{outer_code} is the rtx code
8ddf681a
R
10939of the enclosing rtl, if known, otherwise it is UNKNOWN.
10940@end deftypefn
10941
b48f503c 10942@deftypefn {Target Hook} rtx TARGET_ALLOCATE_INITIAL_VALUE (rtx @var{hard_reg})
385b6e2d
R
10943
10944When the initial value of a hard register has been copied in a pseudo
4fe9b91c 10945register, it is often not necessary to actually allocate another register
385b6e2d 10946to this pseudo register, because the original hard register or a stack slot
b48f503c
KK
10947it has been saved into can be used. @code{TARGET_ALLOCATE_INITIAL_VALUE}
10948is called at the start of register allocation once for each hard register
10949that had its initial value copied by using
385b6e2d
R
10950@code{get_func_hard_reg_initial_val} or @code{get_hard_reg_initial_val}.
10951Possible values are @code{NULL_RTX}, if you don't want
10952to do any special allocation, a @code{REG} rtx---that would typically be
10953the hard register itself, if it is known not to be clobbered---or a
10954@code{MEM}.
10955If you are returning a @code{MEM}, this is only a hint for the allocator;
10956it might decide to use another register anyways.
b48f503c
KK
10957You may use @code{current_function_leaf_function} in the hook, functions
10958that use @code{REG_N_SETS}, to determine if the hard
385b6e2d 10959register in question will not be clobbered.
b48f503c
KK
10960The default value of this hook is @code{NULL}, which disables any special
10961allocation.
10962@end deftypefn
385b6e2d 10963
215b063c
PB
10964@deftypefn {Target Hook} int TARGET_UNSPEC_MAY_TRAP_P (const_rtx @var{x}, unsigned @var{flags})
10965This target hook returns nonzero if @var{x}, an @code{unspec} or
10966@code{unspec_volatile} operation, might cause a trap. Targets can use
10967this hook to enhance precision of analysis for @code{unspec} and
10968@code{unspec_volatile} operations. You may call @code{may_trap_p_1}
10969to analyze inner elements of @var{x} in which case @var{flags} should be
10970passed along.
10971@end deftypefn
10972
db2960f4
SL
10973@deftypefn {Target Hook} void TARGET_SET_CURRENT_FUNCTION (tree @var{decl})
10974The compiler invokes this hook whenever it changes its current function
10975context (@code{cfun}). You can define this function if
10976the back end needs to perform any initialization or reset actions on a
10977per-function basis. For example, it may be used to implement function
10978attributes that affect register usage or code generation patterns.
10979The argument @var{decl} is the declaration for the new function context,
10980and may be null to indicate that the compiler has left a function context
10981and is returning to processing at the top level.
10982The default hook function does nothing.
10983
10984GCC sets @code{cfun} to a dummy function context during initialization of
10985some parts of the back end. The hook function is not invoked in this
10986situation; you need not worry about the hook being invoked recursively,
10987or when the back end is in a partially-initialized state.
914d25dc
JR
10988@code{cfun} might be @code{NULL} to indicate processing at top level,
10989outside of any function scope.
db2960f4
SL
10990@end deftypefn
10991
a2c4f8e0 10992@defmac TARGET_OBJECT_SUFFIX
807633e5
ZW
10993Define this macro to be a C string representing the suffix for object
10994files on your target machine. If you do not define this macro, GCC will
10995use @samp{.o} as the suffix for object files.
a2c4f8e0 10996@end defmac
807633e5 10997
a2c4f8e0 10998@defmac TARGET_EXECUTABLE_SUFFIX
807633e5
ZW
10999Define this macro to be a C string representing the suffix to be
11000automatically added to executable files on your target machine. If you
11001do not define this macro, GCC will use the null string as the suffix for
11002executable files.
a2c4f8e0 11003@end defmac
807633e5 11004
a2c4f8e0 11005@defmac COLLECT_EXPORT_LIST
807633e5
ZW
11006If defined, @code{collect2} will scan the individual object files
11007specified on its command line and create an export list for the linker.
11008Define this macro for systems like AIX, where the linker discards
11009object files that are not referenced from @code{main} and uses export
11010lists.
a2c4f8e0 11011@end defmac
807633e5 11012
a2c4f8e0 11013@defmac MODIFY_JNI_METHOD_CALL (@var{mdecl})
55ae46b1
RM
11014Define this macro to a C expression representing a variant of the
11015method call @var{mdecl}, if Java Native Interface (JNI) methods
11016must be invoked differently from other methods on your target.
95fef11f 11017For example, on 32-bit Microsoft Windows, JNI methods must be invoked using
55ae46b1
RM
11018the @code{stdcall} calling convention and this macro is then
11019defined as this expression:
11020
11021@smallexample
11022build_type_attribute_variant (@var{mdecl},
11023 build_tree_list
11024 (get_identifier ("stdcall"),
11025 NULL))
11026@end smallexample
a2c4f8e0 11027@end defmac
e4ec2cac
AO
11028
11029@deftypefn {Target Hook} bool TARGET_CANNOT_MODIFY_JUMPS_P (void)
11030This target hook returns @code{true} past the point in which new jump
11031instructions could be created. On machines that require a register for
11032every jump such as the SHmedia ISA of SH5, this point would typically be
11033reload, so this target hook should be defined to a function such as:
11034
11035@smallexample
11036static bool
11037cannot_modify_jumps_past_reload_p ()
11038@{
11039 return (reload_completed || reload_in_progress);
11040@}
11041@end smallexample
11042@end deftypefn
fe3ad572 11043
a87cf97e 11044@deftypefn {Target Hook} reg_class_t TARGET_BRANCH_TARGET_REGISTER_CLASS (void)
fe3ad572
SC
11045This target hook returns a register class for which branch target register
11046optimizations should be applied. All registers in this class should be
c0cbdbd9 11047usable interchangeably. After reload, registers in this class will be
fe3ad572
SC
11048re-allocated and loads will be hoisted out of loops and be subjected
11049to inter-block scheduling.
11050@end deftypefn
11051
11052@deftypefn {Target Hook} bool TARGET_BRANCH_TARGET_REGISTER_CALLEE_SAVED (bool @var{after_prologue_epilogue_gen})
11053Branch target register optimization will by default exclude callee-saved
11054registers
11055that are not already live during the current function; if this target hook
11056returns true, they will be included. The target code must than make sure
11057that all target registers in the class returned by
11058@samp{TARGET_BRANCH_TARGET_REGISTER_CLASS} that might need saving are
11059saved. @var{after_prologue_epilogue_gen} indicates if prologues and
11060epilogues have already been generated. Note, even if you only return
11061true when @var{after_prologue_epilogue_gen} is false, you still are likely
11062to have to make special provisions in @code{INITIAL_ELIMINATION_OFFSET}
11063to reserve space for caller-saved target registers.
11064@end deftypefn
2082e02f 11065
2929029c
WG
11066@deftypefn {Target Hook} bool TARGET_HAVE_CONDITIONAL_EXECUTION (void)
11067This target hook returns true if the target supports conditional execution.
11068This target hook is required only when the target has several different
11069modes and they have different conditional execution capability, such as ARM.
11070@end deftypefn
11071
40ac4f73
CB
11072@deftypefn {Target Hook} unsigned TARGET_LOOP_UNROLL_ADJUST (unsigned @var{nunroll}, struct loop *@var{loop})
11073This target hook returns a new value for the number of times @var{loop}
11074should be unrolled. The parameter @var{nunroll} is the number of times
11075the loop is to be unrolled. The parameter @var{loop} is a pointer to
11076the loop, which is going to be checked for unrolling. This target hook
11077is required only when the target has special constraints like maximum
11078number of memory accesses.
11079@end deftypefn
11080
2082e02f 11081@defmac POWI_MAX_MULTS
73774972 11082If defined, this macro is interpreted as a signed integer C expression
2082e02f
RS
11083that specifies the maximum number of floating point multiplications
11084that should be emitted when expanding exponentiation by an integer
11085constant inline. When this value is defined, exponentiation requiring
11086more than this number of multiplications is implemented by calling the
11087system library's @code{pow}, @code{powf} or @code{powl} routines.
11088The default value places no upper bound on the multiplication count.
11089@end defmac
94d1613b 11090
3dd53121 11091@deftypefn Macro void TARGET_EXTRA_INCLUDES (const char *@var{sysroot}, const char *@var{iprefix}, int @var{stdinc})
94d1613b
MS
11092This target hook should register any extra include files for the
11093target. The parameter @var{stdinc} indicates if normal include files
3dd53121
AP
11094are present. The parameter @var{sysroot} is the system root directory.
11095The parameter @var{iprefix} is the prefix for the gcc directory.
11096@end deftypefn
11097
11098@deftypefn Macro void TARGET_EXTRA_PRE_INCLUDES (const char *@var{sysroot}, const char *@var{iprefix}, int @var{stdinc})
11099This target hook should register any extra include files for the
11100target before any standard headers. The parameter @var{stdinc}
11101indicates if normal include files are present. The parameter
11102@var{sysroot} is the system root directory. The parameter
11103@var{iprefix} is the prefix for the gcc directory.
94d1613b
MS
11104@end deftypefn
11105
11106@deftypefn Macro void TARGET_OPTF (char *@var{path})
11107This target hook should register special include paths for the target.
11108The parameter @var{path} is the include to register. On Darwin
11109systems, this is used for Framework includes, which have semantics
11110that are different from @option{-I}.
11111@end deftypefn
4a77e08c 11112
914d25dc
JR
11113@defmac bool TARGET_USE_LOCAL_THUNK_ALIAS_P (tree @var{fndecl})
11114This target macro returns @code{true} if it is safe to use a local alias
4a77e08c 11115for a virtual function @var{fndecl} when constructing thunks,
914d25dc 11116@code{false} otherwise. By default, the macro returns @code{true} for all
431ae0bf 11117functions, if a target supports aliases (i.e.@: defines
4a77e08c 11118@code{ASM_OUTPUT_DEF}), @code{false} otherwise,
914d25dc 11119@end defmac
a2bec818
DJ
11120
11121@defmac TARGET_FORMAT_TYPES
11122If defined, this macro is the name of a global variable containing
11123target-specific format checking information for the @option{-Wformat}
11124option. The default is to have no target-specific format checks.
11125@end defmac
11126
11127@defmac TARGET_N_FORMAT_TYPES
11128If defined, this macro is the number of entries in
11129@code{TARGET_FORMAT_TYPES}.
11130@end defmac
e50e6b88 11131
6590fc9f
KT
11132@defmac TARGET_OVERRIDES_FORMAT_ATTRIBUTES
11133If defined, this macro is the name of a global variable containing
11134target-specific format overrides for the @option{-Wformat} option. The
11135default is to have no target-specific format overrides. If defined,
11136@code{TARGET_FORMAT_TYPES} must be defined, too.
11137@end defmac
11138
11139@defmac TARGET_OVERRIDES_FORMAT_ATTRIBUTES_COUNT
11140If defined, this macro specifies the number of entries in
11141@code{TARGET_OVERRIDES_FORMAT_ATTRIBUTES}.
11142@end defmac
11143
94564826
KT
11144@defmac TARGET_OVERRIDES_FORMAT_INIT
11145If defined, this macro specifies the optional initialization
11146routine for target specific customizations of the system printf
11147and scanf formatter settings.
11148@end defmac
11149
914d25dc 11150@deftypevr {Target Hook} bool TARGET_RELAXED_ORDERING
445cf5eb
JM
11151If set to @code{true}, means that the target's memory model does not
11152guarantee that loads which do not depend on one another will access
11153main memory in the order of the instruction stream; if ordering is
11154important, an explicit memory barrier must be used. This is true of
11155many recent processors which implement a policy of ``relaxed,''
11156``weak,'' or ``release'' memory consistency, such as Alpha, PowerPC,
11157and ia64. The default is @code{false}.
914d25dc 11158@end deftypevr
445cf5eb 11159
b6fd8800 11160@deftypefn {Target Hook} {const char *} TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN (const_tree @var{typelist}, const_tree @var{funcdecl}, const_tree @var{val})
083cad55
EC
11161If defined, this macro returns the diagnostic message when it is
11162illegal to pass argument @var{val} to function @var{funcdecl}
4d3e6fae
FJ
11163with prototype @var{typelist}.
11164@end deftypefn
11165
b6fd8800 11166@deftypefn {Target Hook} {const char *} TARGET_INVALID_CONVERSION (const_tree @var{fromtype}, const_tree @var{totype})
4de67c26
JM
11167If defined, this macro returns the diagnostic message when it is
11168invalid to convert from @var{fromtype} to @var{totype}, or @code{NULL}
11169if validity should be determined by the front end.
11170@end deftypefn
11171
b6fd8800 11172@deftypefn {Target Hook} {const char *} TARGET_INVALID_UNARY_OP (int @var{op}, const_tree @var{type})
4de67c26
JM
11173If defined, this macro returns the diagnostic message when it is
11174invalid to apply operation @var{op} (where unary plus is denoted by
11175@code{CONVERT_EXPR}) to an operand of type @var{type}, or @code{NULL}
11176if validity should be determined by the front end.
11177@end deftypefn
11178
b6fd8800 11179@deftypefn {Target Hook} {const char *} TARGET_INVALID_BINARY_OP (int @var{op}, const_tree @var{type1}, const_tree @var{type2})
4de67c26
JM
11180If defined, this macro returns the diagnostic message when it is
11181invalid to apply operation @var{op} to operands of types @var{type1}
11182and @var{type2}, or @code{NULL} if validity should be determined by
11183the front end.
11184@end deftypefn
11185
b6fd8800 11186@deftypefn {Target Hook} {const char *} TARGET_INVALID_PARAMETER_TYPE (const_tree @var{type})
40449a90
SL
11187If defined, this macro returns the diagnostic message when it is
11188invalid for functions to include parameters of type @var{type},
11189or @code{NULL} if validity should be determined by
11190the front end. This is currently used only by the C and C++ front ends.
11191@end deftypefn
11192
b6fd8800 11193@deftypefn {Target Hook} {const char *} TARGET_INVALID_RETURN_TYPE (const_tree @var{type})
40449a90
SL
11194If defined, this macro returns the diagnostic message when it is
11195invalid for functions to have return type @var{type},
11196or @code{NULL} if validity should be determined by
11197the front end. This is currently used only by the C and C++ front ends.
11198@end deftypefn
11199
b6fd8800 11200@deftypefn {Target Hook} tree TARGET_PROMOTED_TYPE (const_tree @var{type})
40449a90
SL
11201If defined, this target hook returns the type to which values of
11202@var{type} should be promoted when they appear in expressions,
11203analogous to the integer promotions, or @code{NULL_TREE} to use the
11204front end's normal promotion rules. This hook is useful when there are
11205target-specific types with special promotion rules.
11206This is currently used only by the C and C++ front ends.
11207@end deftypefn
11208
b6fd8800 11209@deftypefn {Target Hook} tree TARGET_CONVERT_TO_TYPE (tree @var{type}, tree @var{expr})
40449a90
SL
11210If defined, this hook returns the result of converting @var{expr} to
11211@var{type}. It should return the converted expression,
11212or @code{NULL_TREE} to apply the front end's normal conversion rules.
11213This hook is useful when there are target-specific types with special
11214conversion rules.
11215This is currently used only by the C and C++ front ends.
11216@end deftypefn
11217
e50e6b88
DS
11218@defmac TARGET_USE_JCR_SECTION
11219This macro determines whether to use the JCR section to register Java
11220classes. By default, TARGET_USE_JCR_SECTION is defined to 1 if both
11221SUPPORTS_WEAK and TARGET_HAVE_NAMED_SECTIONS are true, else 0.
11222@end defmac
64ee9490
EC
11223
11224@defmac OBJC_JBLEN
11225This macro determines the size of the objective C jump buffer for the
11226NeXT runtime. By default, OBJC_JBLEN is defined to an innocuous value.
11227@end defmac
56e449d3
SL
11228
11229@defmac LIBGCC2_UNWIND_ATTRIBUTE
11230Define this macro if any target-specific attributes need to be attached
11231to the functions in @file{libgcc} that provide low-level support for
11232call stack unwinding. It is used in declarations in @file{unwind-generic.h}
11233and the associated definitions of those functions.
11234@end defmac
007e61c2 11235
2e3f842f
L
11236@deftypefn {Target Hook} void TARGET_UPDATE_STACK_BOUNDARY (void)
11237Define this macro to update the current function stack boundary if
11238necessary.
11239@end deftypefn
11240
11241@deftypefn {Target Hook} rtx TARGET_GET_DRAP_RTX (void)
914d25dc 11242This hook should return an rtx for Dynamic Realign Argument Pointer (DRAP) if a
2e3f842f 11243different argument pointer register is needed to access the function's
914d25dc
JR
11244argument list due to stack realignment. Return @code{NULL} if no DRAP
11245is needed.
2e3f842f
L
11246@end deftypefn
11247
b6fd8800 11248@deftypefn {Target Hook} bool TARGET_ALLOCATE_STACK_SLOTS_FOR_ARGS (void)
007e61c2
PB
11249When optimization is disabled, this hook indicates whether or not
11250arguments should be allocated to stack slots. Normally, GCC allocates
11251stacks slots for arguments when not optimizing in order to make
11252debugging easier. However, when a function is declared with
11253@code{__attribute__((naked))}, there is no stack frame, and the compiler
11254cannot safely move arguments from the registers in which they are passed
11255to the stack. Therefore, this hook should return true in general, but
11256false for naked functions. The default implementation always returns true.
11257@end deftypefn
2c5bfdf7 11258
2c5bfdf7
AN
11259@deftypevr {Target Hook} {unsigned HOST_WIDE_INT} TARGET_CONST_ANCHOR
11260On some architectures it can take multiple instructions to synthesize
11261a constant. If there is another constant already in a register that
11262is close enough in value then it is preferable that the new constant
11263is computed from this register using immediate addition or
a4ce9883 11264subtraction. We accomplish this through CSE. Besides the value of
2c5bfdf7
AN
11265the constant we also add a lower and an upper constant anchor to the
11266available expressions. These are then queried when encountering new
11267constants. The anchors are computed by rounding the constant up and
11268down to a multiple of the value of @code{TARGET_CONST_ANCHOR}.
11269@code{TARGET_CONST_ANCHOR} should be the maximum positive value
11270accepted by immediate-add plus one. We currently assume that the
11271value of @code{TARGET_CONST_ANCHOR} is a power of 2. For example, on
11272MIPS, where add-immediate takes a 16-bit signed value,
11273@code{TARGET_CONST_ANCHOR} is set to @samp{0x8000}. The default value
11274is zero, which disables this optimization. @end deftypevr