OSDN Git Service

* Makefile.in (TARGET_H, TARGET_DEF_H): New.
[pf3gnuchains/gcc-fork.git] / gcc / doc / tm.texi
1 @c Copyright (C) 1988,1989,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001
2 @c Free Software Foundation, Inc.
3 @c This is part of the GCC manual.
4 @c For copying conditions, see the file gcc.texi.
5
6 @node Target Macros
7 @chapter Target Description Macros and Functions
8 @cindex machine description macros
9 @cindex target description macros
10 @cindex macros, target description
11 @cindex @file{tm.h} macros
12
13 In addition to the file @file{@var{machine}.md}, a machine description
14 includes a C header file conventionally given the name
15 @file{@var{machine}.h} and a C source file named @file{@var{machine}.c}.
16 The header file defines numerous macros that convey the information
17 about the target machine that does not fit into the scheme of the
18 @file{.md} file.  The file @file{tm.h} should be a link to
19 @file{@var{machine}.h}.  The header file @file{config.h} includes
20 @file{tm.h} and most compiler source files include @file{config.h}.  The
21 source file defines a variable @code{target}, which is a structure
22 containing pointers to functions and data relating to the target
23 machine.  @file{@var{machine}.c} should also contain their definitions,
24 if they are not defined elsewhere in GCC, and other functions called
25 through the macros defined in the @file{.h} file.
26
27 @menu
28 * Target Structure::    The @code{target} variable.
29 * Driver::              Controlling how the driver runs the compilation passes.
30 * Run-time Target::     Defining @samp{-m} options like @option{-m68000} and @option{-m68020}.
31 * Per-Function Data::   Defining data structures for per-function information.
32 * Storage Layout::      Defining sizes and alignments of data.
33 * Type Layout::         Defining sizes and properties of basic user data types.
34 * Escape Sequences::    Defining the value of target character escape sequences
35 * Registers::           Naming and describing the hardware registers.
36 * Register Classes::    Defining the classes of hardware registers.
37 * Stack and Calling::   Defining which way the stack grows and by how much.
38 * Varargs::             Defining the varargs macros.
39 * Trampolines::         Code set up at run time to enter a nested function.
40 * Library Calls::       Controlling how library routines are implicitly called.
41 * Addressing Modes::    Defining addressing modes valid for memory operands.
42 * Condition Code::      Defining how insns update the condition code.
43 * Costs::               Defining relative costs of different operations.
44 * Sections::            Dividing storage into text, data, and other sections.
45 * PIC::                 Macros for position independent code.
46 * Assembler Format::    Defining how to write insns and pseudo-ops to output.
47 * Debugging Info::      Defining the format of debugging output.
48 * Cross-compilation::   Handling floating point for cross-compilers.
49 * Mode Switching::      Insertion of mode-switching instructions.
50 * Misc::                Everything else.
51 @end menu
52
53 @node Target Structure
54 @section The Global @code{target} Variable
55 @cindex target hooks
56 @cindex target functions
57
58 @deftypevar {struct gcc_target} target
59 The target @file{.c} file must define the global @code{target} variable
60 which contains pointers to functions and data relating to the target
61 machine.  The variable is declared in @file{target.h};
62 @file{target-def.h} defines the macro @code{TARGET_INITIALIZER} which is
63 used to initialize the variable, and macros for the default initializers
64 for elements of the structure.  The @file{.c} file should override those
65 macros for which the default definition is inappropriate.  For example:
66 @smallexample
67 #include "target.h"
68 #include "target-def.h"
69
70 /* @r{Initialize the GCC target structure.}  */
71
72 #undef TARGET_VALID_TYPE_ATTRIBUTE
73 #define TARGET_VALID_TYPE_ATTRIBUTE @var{machine}_valid_type_attribute_p
74
75 struct gcc_target target = TARGET_INITIALIZER;
76 @end smallexample
77 @end deftypevar
78
79 Where a macro should be defined in the @file{.c} file in this manner to
80 form part of the @code{target} structure, it is documented below as a
81 ``Target Hook'' with a prototype.  Many macros will change in future
82 from being defined in the @file{.h} file to being part of the
83 @code{target} structure.
84
85 @node Driver
86 @section Controlling the Compilation Driver, @file{gcc}
87 @cindex driver
88 @cindex controlling the compilation driver
89
90 @c prevent bad page break with this line
91 You can control the compilation driver.
92
93 @table @code
94 @findex SWITCH_TAKES_ARG
95 @item SWITCH_TAKES_ARG (@var{char})
96 A C expression which determines whether the option @option{-@var{char}}
97 takes arguments.  The value should be the number of arguments that
98 option takes--zero, for many options.
99
100 By default, this macro is defined as
101 @code{DEFAULT_SWITCH_TAKES_ARG}, which handles the standard options
102 properly.  You need not define @code{SWITCH_TAKES_ARG} unless you
103 wish to add additional options which take arguments.  Any redefinition
104 should call @code{DEFAULT_SWITCH_TAKES_ARG} and then check for
105 additional options.
106
107 @findex WORD_SWITCH_TAKES_ARG
108 @item WORD_SWITCH_TAKES_ARG (@var{name})
109 A C expression which determines whether the option @option{-@var{name}}
110 takes arguments.  The value should be the number of arguments that
111 option takes--zero, for many options.  This macro rather than
112 @code{SWITCH_TAKES_ARG} is used for multi-character option names.
113
114 By default, this macro is defined as
115 @code{DEFAULT_WORD_SWITCH_TAKES_ARG}, which handles the standard options
116 properly.  You need not define @code{WORD_SWITCH_TAKES_ARG} unless you
117 wish to add additional options which take arguments.  Any redefinition
118 should call @code{DEFAULT_WORD_SWITCH_TAKES_ARG} and then check for
119 additional options.
120
121 @findex SWITCH_CURTAILS_COMPILATION
122 @item SWITCH_CURTAILS_COMPILATION (@var{char})
123 A C expression which determines whether the option @option{-@var{char}}
124 stops compilation before the generation of an executable.  The value is
125 boolean, non-zero if the option does stop an executable from being
126 generated, zero otherwise.
127
128 By default, this macro is defined as
129 @code{DEFAULT_SWITCH_CURTAILS_COMPILATION}, which handles the standard
130 options properly.  You need not define
131 @code{SWITCH_CURTAILS_COMPILATION} unless you wish to add additional
132 options which affect the generation of an executable.  Any redefinition
133 should call @code{DEFAULT_SWITCH_CURTAILS_COMPILATION} and then check
134 for additional options.
135
136 @findex SWITCHES_NEED_SPACES
137 @item SWITCHES_NEED_SPACES
138 A string-valued C expression which enumerates the options for which
139 the linker needs a space between the option and its argument.
140
141 If this macro is not defined, the default value is @code{""}.
142
143 @findex CPP_SPEC
144 @item CPP_SPEC
145 A C string constant that tells the GCC driver program options to
146 pass to CPP.  It can also specify how to translate options you
147 give to GCC into options for GCC to pass to the CPP.
148
149 Do not define this macro if it does not need to do anything.
150
151 @findex CPLUSPLUS_CPP_SPEC
152 @item CPLUSPLUS_CPP_SPEC
153 This macro is just like @code{CPP_SPEC}, but is used for C++, rather
154 than C.  If you do not define this macro, then the value of
155 @code{CPP_SPEC} (if any) will be used instead.
156
157 @findex NO_BUILTIN_SIZE_TYPE
158 @item NO_BUILTIN_SIZE_TYPE
159 If this macro is defined, the preprocessor will not define the built-in macro
160 @code{__SIZE_TYPE__}.  The macro @code{__SIZE_TYPE__} must then be defined
161 by @code{CPP_SPEC} instead.
162
163 This should be defined if @code{SIZE_TYPE} depends on target dependent flags
164 which are not accessible to the preprocessor.  Otherwise, it should not
165 be defined.
166
167 @findex NO_BUILTIN_PTRDIFF_TYPE
168 @item NO_BUILTIN_PTRDIFF_TYPE
169 If this macro is defined, the preprocessor will not define the built-in macro
170 @code{__PTRDIFF_TYPE__}.  The macro @code{__PTRDIFF_TYPE__} must then be
171 defined by @code{CPP_SPEC} instead.
172
173 This should be defined if @code{PTRDIFF_TYPE} depends on target dependent flags
174 which are not accessible to the preprocessor.  Otherwise, it should not
175 be defined.
176
177 @findex NO_BUILTIN_WCHAR_TYPE
178 @item NO_BUILTIN_WCHAR_TYPE
179 If this macro is defined, the preprocessor will not define the built-in macro
180 @code{__WCHAR_TYPE__}.  The macro @code{__WCHAR_TYPE__} must then be
181 defined by @code{CPP_SPEC} instead.
182
183 This should be defined if @code{WCHAR_TYPE} depends on target dependent flags
184 which are not accessible to the preprocessor.  Otherwise, it should not
185 be defined.
186
187 @findex NO_BUILTIN_WINT_TYPE
188 @item NO_BUILTIN_WINT_TYPE
189 If this macro is defined, the preprocessor will not define the built-in macro
190 @code{__WINT_TYPE__}.  The macro @code{__WINT_TYPE__} must then be
191 defined by @code{CPP_SPEC} instead.
192
193 This should be defined if @code{WINT_TYPE} depends on target dependent flags
194 which are not accessible to the preprocessor.  Otherwise, it should not
195 be defined.
196
197 @findex SIGNED_CHAR_SPEC
198 @item SIGNED_CHAR_SPEC
199 A C string constant that tells the GCC driver program options to
200 pass to CPP.  By default, this macro is defined to pass the option
201 @option{-D__CHAR_UNSIGNED__} to CPP if @code{char} will be treated as
202 @code{unsigned char} by @code{cc1}.
203
204 Do not define this macro unless you need to override the default
205 definition.
206
207 @findex CC1_SPEC
208 @item CC1_SPEC
209 A C string constant that tells the GCC driver program options to
210 pass to @code{cc1}, @code{cc1plus}, @code{f771}, and the other language
211 front ends.
212 It can also specify how to translate options you give to GCC into options
213 for GCC to pass to front ends.
214
215 Do not define this macro if it does not need to do anything.
216
217 @findex CC1PLUS_SPEC
218 @item CC1PLUS_SPEC
219 A C string constant that tells the GCC driver program options to
220 pass to @code{cc1plus}.  It can also specify how to translate options you
221 give to GCC into options for GCC to pass to the @code{cc1plus}.
222
223 Do not define this macro if it does not need to do anything.
224 Note that everything defined in CC1_SPEC is already passed to
225 @code{cc1plus} so there is no need to duplicate the contents of
226 CC1_SPEC in CC1PLUS_SPEC.
227
228 @findex ASM_SPEC
229 @item ASM_SPEC
230 A C string constant that tells the GCC driver program options to
231 pass to the assembler.  It can also specify how to translate options
232 you give to GCC into options for GCC to pass to the assembler.
233 See the file @file{sun3.h} for an example of this.
234
235 Do not define this macro if it does not need to do anything.
236
237 @findex ASM_FINAL_SPEC
238 @item ASM_FINAL_SPEC
239 A C string constant that tells the GCC driver program how to
240 run any programs which cleanup after the normal assembler.
241 Normally, this is not needed.  See the file @file{mips.h} for
242 an example of this.
243
244 Do not define this macro if it does not need to do anything.
245
246 @findex LINK_SPEC
247 @item LINK_SPEC
248 A C string constant that tells the GCC driver program options to
249 pass to the linker.  It can also specify how to translate options you
250 give to GCC into options for GCC to pass to the linker.
251
252 Do not define this macro if it does not need to do anything.
253
254 @findex LIB_SPEC
255 @item LIB_SPEC
256 Another C string constant used much like @code{LINK_SPEC}.  The difference
257 between the two is that @code{LIB_SPEC} is used at the end of the
258 command given to the linker.
259
260 If this macro is not defined, a default is provided that
261 loads the standard C library from the usual place.  See @file{gcc.c}.
262
263 @findex LIBGCC_SPEC
264 @item LIBGCC_SPEC
265 Another C string constant that tells the GCC driver program
266 how and when to place a reference to @file{libgcc.a} into the
267 linker command line.  This constant is placed both before and after
268 the value of @code{LIB_SPEC}.
269
270 If this macro is not defined, the GCC driver provides a default that
271 passes the string @option{-lgcc} to the linker.
272
273 @findex STARTFILE_SPEC
274 @item STARTFILE_SPEC
275 Another C string constant used much like @code{LINK_SPEC}.  The
276 difference between the two is that @code{STARTFILE_SPEC} is used at
277 the very beginning of the command given to the linker.
278
279 If this macro is not defined, a default is provided that loads the
280 standard C startup file from the usual place.  See @file{gcc.c}.
281
282 @findex ENDFILE_SPEC
283 @item ENDFILE_SPEC
284 Another C string constant used much like @code{LINK_SPEC}.  The
285 difference between the two is that @code{ENDFILE_SPEC} is used at
286 the very end of the command given to the linker.
287
288 Do not define this macro if it does not need to do anything.
289
290 @findex THREAD_MODEL_SPEC
291 @item THREAD_MODEL_SPEC
292 GCC @code{-v} will print the thread model GCC was configured to use.
293 However, this doesn't work on platforms that are multilibbed on thread
294 models, such as AIX 4.3.  On such platforms, define
295 @code{THREAD_MODEL_SPEC} such that it evaluates to a string without
296 blanks that names one of the recognized thread models.  @code{%*}, the
297 default value of this macro, will expand to the value of
298 @code{thread_file} set in @file{config.gcc}.
299
300 @findex EXTRA_SPECS
301 @item EXTRA_SPECS
302 Define this macro to provide additional specifications to put in the
303 @file{specs} file that can be used in various specifications like
304 @code{CC1_SPEC}.
305
306 The definition should be an initializer for an array of structures,
307 containing a string constant, that defines the specification name, and a
308 string constant that provides the specification.
309
310 Do not define this macro if it does not need to do anything.
311
312 @code{EXTRA_SPECS} is useful when an architecture contains several
313 related targets, which have various @code{@dots{}_SPECS} which are similar
314 to each other, and the maintainer would like one central place to keep
315 these definitions.
316
317 For example, the PowerPC System V.4 targets use @code{EXTRA_SPECS} to
318 define either @code{_CALL_SYSV} when the System V calling sequence is
319 used or @code{_CALL_AIX} when the older AIX-based calling sequence is
320 used.
321
322 The @file{config/rs6000/rs6000.h} target file defines:
323
324 @example
325 #define EXTRA_SPECS \
326   @{ "cpp_sysv_default", CPP_SYSV_DEFAULT @},
327
328 #define CPP_SYS_DEFAULT ""
329 @end example
330
331 The @file{config/rs6000/sysv.h} target file defines:
332 @smallexample
333 #undef CPP_SPEC
334 #define CPP_SPEC \
335 "%@{posix: -D_POSIX_SOURCE @} \
336 %@{mcall-sysv: -D_CALL_SYSV @} %@{mcall-aix: -D_CALL_AIX @} \
337 %@{!mcall-sysv: %@{!mcall-aix: %(cpp_sysv_default) @}@} \
338 %@{msoft-float: -D_SOFT_FLOAT@} %@{mcpu=403: -D_SOFT_FLOAT@}"
339
340 #undef CPP_SYSV_DEFAULT
341 #define CPP_SYSV_DEFAULT "-D_CALL_SYSV"
342 @end smallexample
343
344 while the @file{config/rs6000/eabiaix.h} target file defines
345 @code{CPP_SYSV_DEFAULT} as:
346
347 @smallexample
348 #undef CPP_SYSV_DEFAULT
349 #define CPP_SYSV_DEFAULT "-D_CALL_AIX"
350 @end smallexample
351
352 @findex LINK_LIBGCC_SPECIAL
353 @item LINK_LIBGCC_SPECIAL
354 Define this macro if the driver program should find the library
355 @file{libgcc.a} itself and should not pass @option{-L} options to the
356 linker.  If you do not define this macro, the driver program will pass
357 the argument @option{-lgcc} to tell the linker to do the search and will
358 pass @option{-L} options to it.
359
360 @findex LINK_LIBGCC_SPECIAL_1
361 @item LINK_LIBGCC_SPECIAL_1
362 Define this macro if the driver program should find the library
363 @file{libgcc.a}.  If you do not define this macro, the driver program will pass
364 the argument @option{-lgcc} to tell the linker to do the search.
365 This macro is similar to @code{LINK_LIBGCC_SPECIAL}, except that it does
366 not affect @option{-L} options.
367
368 @findex LINK_COMMAND_SPEC
369 @item LINK_COMMAND_SPEC
370 A C string constant giving the complete command line need to execute the
371 linker.  When you do this, you will need to update your port each time a
372 change is made to the link command line within @file{gcc.c}.  Therefore,
373 define this macro only if you need to completely redefine the command
374 line for invoking the linker and there is no other way to accomplish
375 the effect you need.
376
377 @findex LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
378 @item LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
379 A nonzero value causes collect2 to remove duplicate -L<directory> search
380 directories from linking commands.  Do not give it a nonzero value if
381 removing duplicate search directories changes the linker's semantics.
382
383 @findex MULTILIB_DEFAULTS
384 @item MULTILIB_DEFAULTS
385 Define this macro as a C expression for the initializer of an array of
386 string to tell the driver program which options are defaults for this
387 target and thus do not need to be handled specially when using
388 @code{MULTILIB_OPTIONS}.
389
390 Do not define this macro if @code{MULTILIB_OPTIONS} is not defined in
391 the target makefile fragment or if none of the options listed in
392 @code{MULTILIB_OPTIONS} are set by default.
393 @xref{Target Fragment}.
394
395 @findex RELATIVE_PREFIX_NOT_LINKDIR
396 @item RELATIVE_PREFIX_NOT_LINKDIR
397 Define this macro to tell @code{gcc} that it should only translate
398 a @option{-B} prefix into a @option{-L} linker option if the prefix
399 indicates an absolute file name.
400
401 @findex STANDARD_EXEC_PREFIX
402 @item STANDARD_EXEC_PREFIX
403 Define this macro as a C string constant if you wish to override the
404 standard choice of @file{/usr/local/lib/gcc-lib/} as the default prefix to
405 try when searching for the executable files of the compiler.
406
407 @findex MD_EXEC_PREFIX
408 @item MD_EXEC_PREFIX
409 If defined, this macro is an additional prefix to try after
410 @code{STANDARD_EXEC_PREFIX}.  @code{MD_EXEC_PREFIX} is not searched
411 when the @option{-b} option is used, or the compiler is built as a cross
412 compiler.  If you define @code{MD_EXEC_PREFIX}, then be sure to add it
413 to the list of directories used to find the assembler in @file{configure.in}.
414
415 @findex STANDARD_STARTFILE_PREFIX
416 @item STANDARD_STARTFILE_PREFIX
417 Define this macro as a C string constant if you wish to override the
418 standard choice of @file{/usr/local/lib/} as the default prefix to
419 try when searching for startup files such as @file{crt0.o}.
420
421 @findex MD_STARTFILE_PREFIX
422 @item MD_STARTFILE_PREFIX
423 If defined, this macro supplies an additional prefix to try after the
424 standard prefixes.  @code{MD_EXEC_PREFIX} is not searched when the
425 @option{-b} option is used, or when the compiler is built as a cross
426 compiler.
427
428 @findex MD_STARTFILE_PREFIX_1
429 @item MD_STARTFILE_PREFIX_1
430 If defined, this macro supplies yet another prefix to try after the
431 standard prefixes.  It is not searched when the @option{-b} option is
432 used, or when the compiler is built as a cross compiler.
433
434 @findex INIT_ENVIRONMENT
435 @item INIT_ENVIRONMENT
436 Define this macro as a C string constant if you wish to set environment
437 variables for programs called by the driver, such as the assembler and
438 loader.  The driver passes the value of this macro to @code{putenv} to
439 initialize the necessary environment variables.
440
441 @findex LOCAL_INCLUDE_DIR
442 @item LOCAL_INCLUDE_DIR
443 Define this macro as a C string constant if you wish to override the
444 standard choice of @file{/usr/local/include} as the default prefix to
445 try when searching for local header files.  @code{LOCAL_INCLUDE_DIR}
446 comes before @code{SYSTEM_INCLUDE_DIR} in the search order.
447
448 Cross compilers do not use this macro and do not search either
449 @file{/usr/local/include} or its replacement.
450
451 @findex MODIFY_TARGET_NAME
452 @item MODIFY_TARGET_NAME
453 Define this macro if you with to define command-line switches that modify the
454 default target name
455
456 For each switch, you can include a string to be appended to the first
457 part of the configuration name or a string to be deleted from the
458 configuration name, if present.  The definition should be an initializer
459 for an array of structures.  Each array element should have three
460 elements: the switch name (a string constant, including the initial
461 dash), one of the enumeration codes @code{ADD} or @code{DELETE} to
462 indicate whether the string should be inserted or deleted, and the string
463 to be inserted or deleted (a string constant).
464
465 For example, on a machine where @samp{64} at the end of the
466 configuration name denotes a 64-bit target and you want the @option{-32}
467 and @option{-64} switches to select between 32- and 64-bit targets, you would
468 code
469
470 @smallexample
471 #define MODIFY_TARGET_NAME \
472   @{ @{ "-32", DELETE, "64"@}, \
473      @{"-64", ADD, "64"@}@}
474 @end smallexample
475
476
477 @findex SYSTEM_INCLUDE_DIR
478 @item SYSTEM_INCLUDE_DIR
479 Define this macro as a C string constant if you wish to specify a
480 system-specific directory to search for header files before the standard
481 directory.  @code{SYSTEM_INCLUDE_DIR} comes before
482 @code{STANDARD_INCLUDE_DIR} in the search order.
483
484 Cross compilers do not use this macro and do not search the directory
485 specified.
486
487 @findex STANDARD_INCLUDE_DIR
488 @item STANDARD_INCLUDE_DIR
489 Define this macro as a C string constant if you wish to override the
490 standard choice of @file{/usr/include} as the default prefix to
491 try when searching for header files.
492
493 Cross compilers do not use this macro and do not search either
494 @file{/usr/include} or its replacement.
495
496 @findex STANDARD_INCLUDE_COMPONENT
497 @item STANDARD_INCLUDE_COMPONENT
498 The ``component'' corresponding to @code{STANDARD_INCLUDE_DIR}.
499 See @code{INCLUDE_DEFAULTS}, below, for the description of components.
500 If you do not define this macro, no component is used.
501
502 @findex INCLUDE_DEFAULTS
503 @item INCLUDE_DEFAULTS
504 Define this macro if you wish to override the entire default search path
505 for include files.  For a native compiler, the default search path
506 usually consists of @code{GCC_INCLUDE_DIR}, @code{LOCAL_INCLUDE_DIR},
507 @code{SYSTEM_INCLUDE_DIR}, @code{GPLUSPLUS_INCLUDE_DIR}, and
508 @code{STANDARD_INCLUDE_DIR}.  In addition, @code{GPLUSPLUS_INCLUDE_DIR}
509 and @code{GCC_INCLUDE_DIR} are defined automatically by @file{Makefile},
510 and specify private search areas for GCC.  The directory
511 @code{GPLUSPLUS_INCLUDE_DIR} is used only for C++ programs.
512
513 The definition should be an initializer for an array of structures.
514 Each array element should have four elements: the directory name (a
515 string constant), the component name (also a string constant), a flag
516 for C++-only directories,
517 and a flag showing that the includes in the directory don't need to be
518 wrapped in @code{extern @samp{C}} when compiling C++.  Mark the end of
519 the array with a null element.
520
521 The component name denotes what GNU package the include file is part of,
522 if any, in all upper-case letters.  For example, it might be @samp{GCC}
523 or @samp{BINUTILS}.  If the package is part of a vendor-supplied
524 operating system, code the component name as @samp{0}.
525
526 For example, here is the definition used for VAX/VMS:
527
528 @example
529 #define INCLUDE_DEFAULTS \
530 @{                                       \
531   @{ "GNU_GXX_INCLUDE:", "G++", 1, 1@},   \
532   @{ "GNU_CC_INCLUDE:", "GCC", 0, 0@},    \
533   @{ "SYS$SYSROOT:[SYSLIB.]", 0, 0, 0@},  \
534   @{ ".", 0, 0, 0@},                      \
535   @{ 0, 0, 0, 0@}                         \
536 @}
537 @end example
538 @end table
539
540 Here is the order of prefixes tried for exec files:
541
542 @enumerate
543 @item
544 Any prefixes specified by the user with @option{-B}.
545
546 @item
547 The environment variable @code{GCC_EXEC_PREFIX}, if any.
548
549 @item
550 The directories specified by the environment variable @code{COMPILER_PATH}.
551
552 @item
553 The macro @code{STANDARD_EXEC_PREFIX}.
554
555 @item
556 @file{/usr/lib/gcc/}.
557
558 @item
559 The macro @code{MD_EXEC_PREFIX}, if any.
560 @end enumerate
561
562 Here is the order of prefixes tried for startfiles:
563
564 @enumerate
565 @item
566 Any prefixes specified by the user with @option{-B}.
567
568 @item
569 The environment variable @code{GCC_EXEC_PREFIX}, if any.
570
571 @item
572 The directories specified by the environment variable @code{LIBRARY_PATH}
573 (or port-specific name; native only, cross compilers do not use this).
574
575 @item
576 The macro @code{STANDARD_EXEC_PREFIX}.
577
578 @item
579 @file{/usr/lib/gcc/}.
580
581 @item
582 The macro @code{MD_EXEC_PREFIX}, if any.
583
584 @item
585 The macro @code{MD_STARTFILE_PREFIX}, if any.
586
587 @item
588 The macro @code{STANDARD_STARTFILE_PREFIX}.
589
590 @item
591 @file{/lib/}.
592
593 @item
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
604 Here are run-time target specifications.
605
606 @table @code
607 @findex CPP_PREDEFINES
608 @item CPP_PREDEFINES
609 Define this to be a string constant containing @option{-D} options to
610 define the predefined macros that identify this machine and system.
611 These macros will be predefined unless the @option{-ansi} option (or a
612 @option{-std} option for strict ISO C conformance) is specified.
613
614 In addition, a parallel set of macros are predefined, whose names are
615 made by appending @samp{__} at the beginning and at the end.  These
616 @samp{__} macros are permitted by the ISO standard, so they are
617 predefined regardless of whether @option{-ansi} or a @option{-std} option
618 is specified.
619
620 For example, on the Sun, one can use the following value:
621
622 @smallexample
623 "-Dmc68000 -Dsun -Dunix"
624 @end smallexample
625
626 The result is to define the macros @code{__mc68000__}, @code{__sun__}
627 and @code{__unix__} unconditionally, and the macros @code{mc68000},
628 @code{sun} and @code{unix} provided @option{-ansi} is not specified.
629
630 @findex extern int target_flags
631 @item extern int target_flags;
632 This declaration should be present.
633
634 @cindex optional hardware or system features
635 @cindex features, optional, in system conventions
636 @item TARGET_@dots{}
637 This series of macros is to allow compiler command arguments to
638 enable or disable the use of optional features of the target machine.
639 For example, one machine description serves both the 68000 and
640 the 68020; a command argument tells the compiler whether it should
641 use 68020-only instructions or not.  This command argument works
642 by means of a macro @code{TARGET_68020} that tests a bit in
643 @code{target_flags}.
644
645 Define a macro @code{TARGET_@var{featurename}} for each such option.
646 Its definition should test a bit in @code{target_flags}.  It is
647 recommended that a helper macro @code{TARGET_MASK_@var{featurename}}
648 is defined for each bit-value to test, and used in
649 @code{TARGET_@var{featurename}} and @code{TARGET_SWITCHES}.  For
650 example:
651
652 @smallexample
653 #define TARGET_MASK_68020 1
654 #define TARGET_68020 (target_flags & TARGET_MASK_68020)
655 @end smallexample
656
657 One place where these macros are used is in the condition-expressions
658 of instruction patterns.  Note how @code{TARGET_68020} appears
659 frequently in the 68000 machine description file, @file{m68k.md}.
660 Another place they are used is in the definitions of the other
661 macros in the @file{@var{machine}.h} file.
662
663 @findex TARGET_SWITCHES
664 @item TARGET_SWITCHES
665 This macro defines names of command options to set and clear
666 bits in @code{target_flags}.  Its definition is an initializer
667 with a subgrouping for each command option.
668
669 Each subgrouping contains a string constant, that defines the option
670 name, a number, which contains the bits to set in
671 @code{target_flags}, and a second string which is the description
672 displayed by @option{--help}.  If the number is negative then the bits specified
673 by the number are cleared instead of being set.  If the description
674 string is present but empty, then no help information will be displayed
675 for that option, but it will not count as an undocumented option.  The
676 actual option name is made by appending @samp{-m} to the specified name.
677 Non-empty description strings should be marked with @code{N_(@dots{})} for
678 @command{xgettext}.  In addition to the description for @option{--help},
679 more detailed documentation for each option should be added to
680 @file{invoke.texi}.
681
682 One of the subgroupings should have a null string.  The number in
683 this grouping is the default value for @code{target_flags}.  Any
684 target options act starting with that value.
685
686 Here is an example which defines @option{-m68000} and @option{-m68020}
687 with opposite meanings, and picks the latter as the default:
688
689 @smallexample
690 #define TARGET_SWITCHES \
691   @{ @{ "68020", TARGET_MASK_68020, "" @},      \
692     @{ "68000", -TARGET_MASK_68020, \
693       N_("Compile for the 68000") @}, \
694     @{ "", TARGET_MASK_68020, "" @}@}
695 @end smallexample
696
697 @findex TARGET_OPTIONS
698 @item TARGET_OPTIONS
699 This macro is similar to @code{TARGET_SWITCHES} but defines names of command
700 options that have values.  Its definition is an initializer with a
701 subgrouping for each command option.
702
703 Each subgrouping contains a string constant, that defines the fixed part
704 of the option name, the address of a variable, and a description string
705 (which should again be marked with @code{N_(@dots{})}).
706 The variable, type @code{char *}, is set to the variable part of the
707 given option if the fixed part matches.  The actual option name is made
708 by appending @samp{-m} to the specified name.  Again, each option should
709 also be documented in @file{invoke.texi}.
710
711 Here is an example which defines @option{-mshort-data-@var{number}}.  If the
712 given option is @option{-mshort-data-512}, the variable @code{m88k_short_data}
713 will be set to the string @code{"512"}.
714
715 @smallexample
716 extern char *m88k_short_data;
717 #define TARGET_OPTIONS \
718  @{ @{ "short-data-", &m88k_short_data, \
719      N_("Specify the size of the short data section") @} @}
720 @end smallexample
721
722 @findex TARGET_VERSION
723 @item TARGET_VERSION
724 This macro is a C statement to print on @code{stderr} a string
725 describing the particular machine description choice.  Every machine
726 description should define @code{TARGET_VERSION}.  For example:
727
728 @smallexample
729 #ifdef MOTOROLA
730 #define TARGET_VERSION \
731   fprintf (stderr, " (68k, Motorola syntax)");
732 #else
733 #define TARGET_VERSION \
734   fprintf (stderr, " (68k, MIT syntax)");
735 #endif
736 @end smallexample
737
738 @findex OVERRIDE_OPTIONS
739 @item OVERRIDE_OPTIONS
740 Sometimes certain combinations of command options do not make sense on
741 a particular target machine.  You can define a macro
742 @code{OVERRIDE_OPTIONS} to take account of this.  This macro, if
743 defined, is executed once just after all the command options have been
744 parsed.
745
746 Don't use this macro to turn on various extra optimizations for
747 @option{-O}.  That is what @code{OPTIMIZATION_OPTIONS} is for.
748
749 @findex OPTIMIZATION_OPTIONS
750 @item OPTIMIZATION_OPTIONS (@var{level}, @var{size})
751 Some machines may desire to change what optimizations are performed for
752 various optimization levels.   This macro, if defined, is executed once
753 just after the optimization level is determined and before the remainder
754 of the command options have been parsed.  Values set in this macro are
755 used as the default values for the other command line options.
756
757 @var{level} is the optimization level specified; 2 if @option{-O2} is
758 specified, 1 if @option{-O} is specified, and 0 if neither is specified.
759
760 @var{size} is non-zero if @option{-Os} is specified and zero otherwise.
761
762 You should not use this macro to change options that are not
763 machine-specific.  These should uniformly selected by the same
764 optimization level on all supported machines.  Use this macro to enable
765 machine-specific optimizations.
766
767 @strong{Do not examine @code{write_symbols} in
768 this macro!} The debugging options are not supposed to alter the
769 generated code.
770
771 @findex CAN_DEBUG_WITHOUT_FP
772 @item CAN_DEBUG_WITHOUT_FP
773 Define this macro if debugging can be performed even without a frame
774 pointer.  If this macro is defined, GCC will turn on the
775 @option{-fomit-frame-pointer} option whenever @option{-O} is specified.
776 @end table
777
778 @node Per-Function Data
779 @section Defining data structures for per-function information.
780 @cindex per-function data
781 @cindex data structures
782
783 If the target needs to store information on a per-function basis, GCC
784 provides a macro and a couple of variables to allow this.  Note, just
785 using statics to store the information is a bad idea, since GCC supports
786 nested functions, so you can be halfway through encoding one function
787 when another one comes along.
788
789 GCC defines a data structure called @code{struct function} which
790 contains all of the data specific to an individual function.  This
791 structure contains a field called @code{machine} whose type is
792 @code{struct machine_function *}, which can be used by targets to point
793 to their own specific data.
794
795 If a target needs per-function specific data it should define the type
796 @code{struct machine_function} and also the macro
797 @code{INIT_EXPANDERS}.  This macro should be used to initialise some or
798 all of the function pointers @code{init_machine_status},
799 @code{free_machine_status} and @code{mark_machine_status}.  These
800 pointers are explained below.
801
802 One typical use of per-function, target specific data is to create an
803 RTX to hold the register containing the function's return address.  This
804 RTX can then be used to implement the @code{__builtin_return_address}
805 function, for level 0.
806
807 Note - earlier implementations of GCC used a single data area to hold
808 all of the per-function information.  Thus when processing of a nested
809 function began the old per-function data had to be pushed onto a
810 stack, and when the processing was finished, it had to be popped off the
811 stack.  GCC used to provide function pointers called
812 @code{save_machine_status} and @code{restore_machine_status} to handle
813 the saving and restoring of the target specific information.  Since the
814 single data area approach is no longer used, these pointers are no
815 longer supported.
816
817 The macro and function pointers are described below.
818
819 @table @code
820 @findex INIT_EXPANDERS
821 @item   INIT_EXPANDERS
822 Macro called to initialise any target specific information.  This macro
823 is called once per function, before generation of any RTL has begun.
824 The intention of this macro is to allow the initialisation of the
825 function pointers below.
826
827 @findex init_machine_status
828 @item   init_machine_status
829 This is a @code{void (*)(struct function *)} function pointer.  If this
830 pointer is non-NULL it will be called once per function, before function
831 compilation starts, in order to allow the target to perform any target
832 specific initialisation of the @code{struct function} structure.  It is
833 intended that this would be used to initialise the @code{machine} of
834 that structure.
835
836 @findex free_machine_status
837 @item   free_machine_status
838 This is a @code{void (*)(struct function *)} function pointer.  If this
839 pointer is non-NULL it will be called once per function, after the
840 function has been compiled, in order to allow any memory allocated
841 during the @code{init_machine_status} function call to be freed.
842
843 @findex mark_machine_status
844 @item   mark_machine_status
845 This is a @code{void (*)(struct function *)} function pointer.  If this
846 pointer is non-NULL it will be called once per function in order to mark
847 any data items in the @code{struct machine_function} structure which
848 need garbage collection.
849
850 @end table
851
852 @node Storage Layout
853 @section Storage Layout
854 @cindex storage layout
855
856 Note that the definitions of the macros in this table which are sizes or
857 alignments measured in bits do not need to be constant.  They can be C
858 expressions that refer to static variables, such as the @code{target_flags}.
859 @xref{Run-time Target}.
860
861 @table @code
862 @findex BITS_BIG_ENDIAN
863 @item BITS_BIG_ENDIAN
864 Define this macro to have the value 1 if the most significant bit in a
865 byte has the lowest number; otherwise define it to have the value zero.
866 This means that bit-field instructions count from the most significant
867 bit.  If the machine has no bit-field instructions, then this must still
868 be defined, but it doesn't matter which value it is defined to.  This
869 macro need not be a constant.
870
871 This macro does not affect the way structure fields are packed into
872 bytes or words; that is controlled by @code{BYTES_BIG_ENDIAN}.
873
874 @findex BYTES_BIG_ENDIAN
875 @item BYTES_BIG_ENDIAN
876 Define this macro to have the value 1 if the most significant byte in a
877 word has the lowest number.  This macro need not be a constant.
878
879 @findex WORDS_BIG_ENDIAN
880 @item WORDS_BIG_ENDIAN
881 Define this macro to have the value 1 if, in a multiword object, the
882 most significant word has the lowest number.  This applies to both
883 memory locations and registers; GCC fundamentally assumes that the
884 order of words in memory is the same as the order in registers.  This
885 macro need not be a constant.
886
887 @findex LIBGCC2_WORDS_BIG_ENDIAN
888 @item LIBGCC2_WORDS_BIG_ENDIAN
889 Define this macro if WORDS_BIG_ENDIAN is not constant.  This must be a
890 constant value with the same meaning as WORDS_BIG_ENDIAN, which will be
891 used only when compiling libgcc2.c.  Typically the value will be set
892 based on preprocessor defines.
893
894 @findex FLOAT_WORDS_BIG_ENDIAN
895 @item FLOAT_WORDS_BIG_ENDIAN
896 Define this macro to have the value 1 if @code{DFmode}, @code{XFmode} or
897 @code{TFmode} floating point numbers are stored in memory with the word
898 containing the sign bit at the lowest address; otherwise define it to
899 have the value 0.  This macro need not be a constant.
900
901 You need not define this macro if the ordering is the same as for
902 multi-word integers.
903
904 @findex BITS_PER_UNIT
905 @item BITS_PER_UNIT
906 Define this macro to be the number of bits in an addressable storage
907 unit (byte); normally 8.
908
909 @findex BITS_PER_WORD
910 @item BITS_PER_WORD
911 Number of bits in a word; normally 32.
912
913 @findex MAX_BITS_PER_WORD
914 @item MAX_BITS_PER_WORD
915 Maximum number of bits in a word.  If this is undefined, the default is
916 @code{BITS_PER_WORD}.  Otherwise, it is the constant value that is the
917 largest value that @code{BITS_PER_WORD} can have at run-time.
918
919 @findex UNITS_PER_WORD
920 @item UNITS_PER_WORD
921 Number of storage units in a word; normally 4.
922
923 @findex MIN_UNITS_PER_WORD
924 @item MIN_UNITS_PER_WORD
925 Minimum number of units in a word.  If this is undefined, the default is
926 @code{UNITS_PER_WORD}.  Otherwise, it is the constant value that is the
927 smallest value that @code{UNITS_PER_WORD} can have at run-time.
928
929 @findex POINTER_SIZE
930 @item POINTER_SIZE
931 Width of a pointer, in bits.  You must specify a value no wider than the
932 width of @code{Pmode}.  If it is not equal to the width of @code{Pmode},
933 you must define @code{POINTERS_EXTEND_UNSIGNED}.
934
935 @findex POINTERS_EXTEND_UNSIGNED
936 @item POINTERS_EXTEND_UNSIGNED
937 A C expression whose value is nonzero if pointers that need to be
938 extended from being @code{POINTER_SIZE} bits wide to @code{Pmode} are to
939 be zero-extended and zero if they are to be sign-extended.
940
941 You need not define this macro if the @code{POINTER_SIZE} is equal
942 to the width of @code{Pmode}.
943
944 @findex PROMOTE_MODE
945 @item PROMOTE_MODE (@var{m}, @var{unsignedp}, @var{type})
946 A macro to update @var{m} and @var{unsignedp} when an object whose type
947 is @var{type} and which has the specified mode and signedness is to be
948 stored in a register.  This macro is only called when @var{type} is a
949 scalar type.
950
951 On most RISC machines, which only have operations that operate on a full
952 register, define this macro to set @var{m} to @code{word_mode} if
953 @var{m} is an integer mode narrower than @code{BITS_PER_WORD}.  In most
954 cases, only integer modes should be widened because wider-precision
955 floating-point operations are usually more expensive than their narrower
956 counterparts.
957
958 For most machines, the macro definition does not change @var{unsignedp}.
959 However, some machines, have instructions that preferentially handle
960 either signed or unsigned quantities of certain modes.  For example, on
961 the DEC Alpha, 32-bit loads from memory and 32-bit add instructions
962 sign-extend the result to 64 bits.  On such machines, set
963 @var{unsignedp} according to which kind of extension is more efficient.
964
965 Do not define this macro if it would never modify @var{m}.
966
967 @findex PROMOTE_FUNCTION_ARGS
968 @item PROMOTE_FUNCTION_ARGS
969 Define this macro if the promotion described by @code{PROMOTE_MODE}
970 should also be done for outgoing function arguments.
971
972 @findex PROMOTE_FUNCTION_RETURN
973 @item PROMOTE_FUNCTION_RETURN
974 Define this macro if the promotion described by @code{PROMOTE_MODE}
975 should also be done for the return value of functions.
976
977 If this macro is defined, @code{FUNCTION_VALUE} must perform the same
978 promotions done by @code{PROMOTE_MODE}.
979
980 @findex PROMOTE_FOR_CALL_ONLY
981 @item PROMOTE_FOR_CALL_ONLY
982 Define this macro if the promotion described by @code{PROMOTE_MODE}
983 should @emph{only} be performed for outgoing function arguments or
984 function return values, as specified by @code{PROMOTE_FUNCTION_ARGS}
985 and @code{PROMOTE_FUNCTION_RETURN}, respectively.
986
987 @findex PARM_BOUNDARY
988 @item PARM_BOUNDARY
989 Normal alignment required for function parameters on the stack, in
990 bits.  All stack parameters receive at least this much alignment
991 regardless of data type.  On most machines, this is the same as the
992 size of an integer.
993
994 @findex STACK_BOUNDARY
995 @item STACK_BOUNDARY
996 Define this macro if there is a guaranteed alignment for the stack
997 pointer on this machine.  The definition is a C expression
998 for the desired alignment (measured in bits).  This value is used as a
999 default if PREFERRED_STACK_BOUNDARY is not defined.
1000
1001 @findex PREFERRED_STACK_BOUNDARY
1002 @item PREFERRED_STACK_BOUNDARY
1003 Define this macro if you wish to preserve a certain alignment for
1004 the stack pointer.  The definition is a C expression
1005 for the desired alignment (measured in bits).  If STACK_BOUNDARY is
1006 also defined, this macro must evaluate to a value equal to or larger
1007 than STACK_BOUNDARY.
1008
1009 @cindex @code{PUSH_ROUNDING}, interaction with @code{PREFERRED_STACK_BOUNDARY}
1010 If @code{PUSH_ROUNDING} is not defined, the stack will always be aligned
1011 to the specified boundary.  If @code{PUSH_ROUNDING} is defined and specifies
1012 a less strict alignment than @code{PREFERRED_STACK_BOUNDARY}, the stack may
1013 be momentarily unaligned while pushing arguments.
1014
1015 @findex FUNCTION_BOUNDARY
1016 @item FUNCTION_BOUNDARY
1017 Alignment required for a function entry point, in bits.
1018
1019 @findex BIGGEST_ALIGNMENT
1020 @item BIGGEST_ALIGNMENT
1021 Biggest alignment that any data type can require on this machine, in bits.
1022
1023 @findex MINIMUM_ATOMIC_ALIGNMENT
1024 @item MINIMUM_ATOMIC_ALIGNMENT
1025 If defined, the smallest alignment, in bits, that can be given to an
1026 object that can be referenced in one operation, without disturbing any
1027 nearby object.  Normally, this is @code{BITS_PER_UNIT}, but may be larger
1028 on machines that don't have byte or half-word store operations.
1029
1030 @findex BIGGEST_FIELD_ALIGNMENT
1031 @item BIGGEST_FIELD_ALIGNMENT
1032 Biggest alignment that any structure or union field can require on this
1033 machine, in bits.  If defined, this overrides @code{BIGGEST_ALIGNMENT} for
1034 structure and union fields only, unless the field alignment has been set
1035 by the @code{__attribute__ ((aligned (@var{n})))} construct.
1036
1037 @findex ADJUST_FIELD_ALIGN
1038 @item ADJUST_FIELD_ALIGN (@var{field}, @var{computed})
1039 An expression for the alignment of a structure field @var{field} if the
1040 alignment computed in the usual way is @var{computed}.  GCC uses
1041 this value instead of the value in @code{BIGGEST_ALIGNMENT} or
1042 @code{BIGGEST_FIELD_ALIGNMENT}, if defined, for structure fields only.
1043
1044 @findex MAX_OFILE_ALIGNMENT
1045 @item MAX_OFILE_ALIGNMENT
1046 Biggest alignment supported by the object file format of this machine.
1047 Use this macro to limit the alignment which can be specified using the
1048 @code{__attribute__ ((aligned (@var{n})))} construct.  If not defined,
1049 the default value is @code{BIGGEST_ALIGNMENT}.
1050
1051 @findex DATA_ALIGNMENT
1052 @item DATA_ALIGNMENT (@var{type}, @var{basic-align})
1053 If defined, a C expression to compute the alignment for a variable in
1054 the static store.  @var{type} is the data type, and @var{basic-align} is
1055 the alignment that the object would ordinarily have.  The value of this
1056 macro is used instead of that alignment to align the object.
1057
1058 If this macro is not defined, then @var{basic-align} is used.
1059
1060 @findex strcpy
1061 One use of this macro is to increase alignment of medium-size data to
1062 make it all fit in fewer cache lines.  Another is to cause character
1063 arrays to be word-aligned so that @code{strcpy} calls that copy
1064 constants to character arrays can be done inline.
1065
1066 @findex CONSTANT_ALIGNMENT
1067 @item CONSTANT_ALIGNMENT (@var{constant}, @var{basic-align})
1068 If defined, a C expression to compute the alignment given to a constant
1069 that is being placed in memory.  @var{constant} is the constant and
1070 @var{basic-align} is the alignment that the object would ordinarily
1071 have.  The value of this macro is used instead of that alignment to
1072 align the object.
1073
1074 If this macro is not defined, then @var{basic-align} is used.
1075
1076 The typical use of this macro is to increase alignment for string
1077 constants to be word aligned so that @code{strcpy} calls that copy
1078 constants can be done inline.
1079
1080 @findex LOCAL_ALIGNMENT
1081 @item LOCAL_ALIGNMENT (@var{type}, @var{basic-align})
1082 If defined, a C expression to compute the alignment for a variable in
1083 the local store.  @var{type} is the data type, and @var{basic-align} is
1084 the alignment that the object would ordinarily have.  The value of this
1085 macro is used instead of that alignment to align the object.
1086
1087 If this macro is not defined, then @var{basic-align} is used.
1088
1089 One use of this macro is to increase alignment of medium-size data to
1090 make it all fit in fewer cache lines.
1091
1092 @findex EMPTY_FIELD_BOUNDARY
1093 @item EMPTY_FIELD_BOUNDARY
1094 Alignment in bits to be given to a structure bit-field that follows an
1095 empty field such as @code{int : 0;}.
1096
1097 Note that @code{PCC_BITFIELD_TYPE_MATTERS} also affects the alignment
1098 that results from an empty field.
1099
1100 @findex STRUCTURE_SIZE_BOUNDARY
1101 @item STRUCTURE_SIZE_BOUNDARY
1102 Number of bits which any structure or union's size must be a multiple of.
1103 Each structure or union's size is rounded up to a multiple of this.
1104
1105 If you do not define this macro, the default is the same as
1106 @code{BITS_PER_UNIT}.
1107
1108 @findex STRICT_ALIGNMENT
1109 @item STRICT_ALIGNMENT
1110 Define this macro to be the value 1 if instructions will fail to work
1111 if given data not on the nominal alignment.  If instructions will merely
1112 go slower in that case, define this macro as 0.
1113
1114 @findex PCC_BITFIELD_TYPE_MATTERS
1115 @item PCC_BITFIELD_TYPE_MATTERS
1116 Define this if you wish to imitate the way many other C compilers handle
1117 alignment of bit-fields and the structures that contain them.
1118
1119 The behavior is that the type written for a bit-field (@code{int},
1120 @code{short}, or other integer type) imposes an alignment for the
1121 entire structure, as if the structure really did contain an ordinary
1122 field of that type.  In addition, the bit-field is placed within the
1123 structure so that it would fit within such a field, not crossing a
1124 boundary for it.
1125
1126 Thus, on most machines, a bit-field whose type is written as @code{int}
1127 would not cross a four-byte boundary, and would force four-byte
1128 alignment for the whole structure.  (The alignment used may not be four
1129 bytes; it is controlled by the other alignment parameters.)
1130
1131 If the macro is defined, its definition should be a C expression;
1132 a nonzero value for the expression enables this behavior.
1133
1134 Note that if this macro is not defined, or its value is zero, some
1135 bit-fields may cross more than one alignment boundary.  The compiler can
1136 support such references if there are @samp{insv}, @samp{extv}, and
1137 @samp{extzv} insns that can directly reference memory.
1138
1139 The other known way of making bit-fields work is to define
1140 @code{STRUCTURE_SIZE_BOUNDARY} as large as @code{BIGGEST_ALIGNMENT}.
1141 Then every structure can be accessed with fullwords.
1142
1143 Unless the machine has bit-field instructions or you define
1144 @code{STRUCTURE_SIZE_BOUNDARY} that way, you must define
1145 @code{PCC_BITFIELD_TYPE_MATTERS} to have a nonzero value.
1146
1147 If your aim is to make GCC use the same conventions for laying out
1148 bit-fields as are used by another compiler, here is how to investigate
1149 what the other compiler does.  Compile and run this program:
1150
1151 @example
1152 struct foo1
1153 @{
1154   char x;
1155   char :0;
1156   char y;
1157 @};
1158
1159 struct foo2
1160 @{
1161   char x;
1162   int :0;
1163   char y;
1164 @};
1165
1166 main ()
1167 @{
1168   printf ("Size of foo1 is %d\n",
1169           sizeof (struct foo1));
1170   printf ("Size of foo2 is %d\n",
1171           sizeof (struct foo2));
1172   exit (0);
1173 @}
1174 @end example
1175
1176 If this prints 2 and 5, then the compiler's behavior is what you would
1177 get from @code{PCC_BITFIELD_TYPE_MATTERS}.
1178
1179 @findex BITFIELD_NBYTES_LIMITED
1180 @item BITFIELD_NBYTES_LIMITED
1181 Like PCC_BITFIELD_TYPE_MATTERS except that its effect is limited to
1182 aligning a bit-field within the structure.
1183
1184 @findex MEMBER_TYPE_FORCES_BLK
1185 @item MEMBER_TYPE_FORCES_BLK (@var{field})
1186 Return 1 if a structure or array containing @var{field} should be accessed using
1187 @code{BLKMODE}.
1188
1189 Normally, this is not needed.  See the file @file{c4x.h} for an example
1190 of how to use this macro to prevent a structure having a floating point
1191 field from being accessed in an integer mode.
1192
1193 @findex ROUND_TYPE_SIZE
1194 @item ROUND_TYPE_SIZE (@var{type}, @var{computed}, @var{specified})
1195 Define this macro as an expression for the overall size of a type
1196 (given by @var{type} as a tree node) when the size computed in the
1197 usual way is @var{computed} and the alignment is @var{specified}.
1198
1199 The default is to round @var{computed} up to a multiple of @var{specified}.
1200
1201 @findex ROUND_TYPE_SIZE_UNIT
1202 @item ROUND_TYPE_SIZE_UNIT (@var{type}, @var{computed}, @var{specified})
1203 Similar to @code{ROUND_TYPE_SIZE}, but sizes and alignments are
1204 specified in units (bytes).  If you define @code{ROUND_TYPE_SIZE},
1205 you must also define this macro and they must be defined consistently
1206 with each other.
1207
1208 @findex ROUND_TYPE_ALIGN
1209 @item ROUND_TYPE_ALIGN (@var{type}, @var{computed}, @var{specified})
1210 Define this macro as an expression for the alignment of a type (given
1211 by @var{type} as a tree node) if the alignment computed in the usual
1212 way is @var{computed} and the alignment explicitly specified was
1213 @var{specified}.
1214
1215 The default is to use @var{specified} if it is larger; otherwise, use
1216 the smaller of @var{computed} and @code{BIGGEST_ALIGNMENT}
1217
1218 @findex MAX_FIXED_MODE_SIZE
1219 @item MAX_FIXED_MODE_SIZE
1220 An integer expression for the size in bits of the largest integer
1221 machine mode that should actually be used.  All integer machine modes of
1222 this size or smaller can be used for structures and unions with the
1223 appropriate sizes.  If this macro is undefined, @code{GET_MODE_BITSIZE
1224 (DImode)} is assumed.
1225
1226 @findex VECTOR_MODE_SUPPORTED_P
1227 @item VECTOR_MODE_SUPPORTED_P(@var{mode})
1228 Define this macro to be nonzero if the port is prepared to handle insns
1229 involving vector mode @var{mode}.  At the very least, it must have move
1230 patterns for this mode.
1231
1232 @findex STACK_SAVEAREA_MODE
1233 @item STACK_SAVEAREA_MODE (@var{save_level})
1234 If defined, an expression of type @code{enum machine_mode} that
1235 specifies the mode of the save area operand of a
1236 @code{save_stack_@var{level}} named pattern (@pxref{Standard Names}).
1237 @var{save_level} is one of @code{SAVE_BLOCK}, @code{SAVE_FUNCTION}, or
1238 @code{SAVE_NONLOCAL} and selects which of the three named patterns is
1239 having its mode specified.
1240
1241 You need not define this macro if it always returns @code{Pmode}.  You
1242 would most commonly define this macro if the
1243 @code{save_stack_@var{level}} patterns need to support both a 32- and a
1244 64-bit mode.
1245
1246 @findex STACK_SIZE_MODE
1247 @item STACK_SIZE_MODE
1248 If defined, an expression of type @code{enum machine_mode} that
1249 specifies the mode of the size increment operand of an
1250 @code{allocate_stack} named pattern (@pxref{Standard Names}).
1251
1252 You need not define this macro if it always returns @code{word_mode}.
1253 You would most commonly define this macro if the @code{allocate_stack}
1254 pattern needs to support both a 32- and a 64-bit mode.
1255
1256 @findex CHECK_FLOAT_VALUE
1257 @item CHECK_FLOAT_VALUE (@var{mode}, @var{value}, @var{overflow})
1258 A C statement to validate the value @var{value} (of type
1259 @code{double}) for mode @var{mode}.  This means that you check whether
1260 @var{value} fits within the possible range of values for mode
1261 @var{mode} on this target machine.  The mode @var{mode} is always
1262 a mode of class @code{MODE_FLOAT}.  @var{overflow} is nonzero if
1263 the value is already known to be out of range.
1264
1265 If @var{value} is not valid or if @var{overflow} is nonzero, you should
1266 set @var{overflow} to 1 and then assign some valid value to @var{value}.
1267 Allowing an invalid value to go through the compiler can produce
1268 incorrect assembler code which may even cause Unix assemblers to crash.
1269
1270 This macro need not be defined if there is no work for it to do.
1271
1272 @findex TARGET_FLOAT_FORMAT
1273 @item TARGET_FLOAT_FORMAT
1274 A code distinguishing the floating point format of the target machine.
1275 There are three defined values:
1276
1277 @table @code
1278 @findex IEEE_FLOAT_FORMAT
1279 @item IEEE_FLOAT_FORMAT
1280 This code indicates IEEE floating point.  It is the default; there is no
1281 need to define this macro when the format is IEEE.
1282
1283 @findex VAX_FLOAT_FORMAT
1284 @item VAX_FLOAT_FORMAT
1285 This code indicates the peculiar format used on the Vax.
1286
1287 @findex UNKNOWN_FLOAT_FORMAT
1288 @item UNKNOWN_FLOAT_FORMAT
1289 This code indicates any other format.
1290 @end table
1291
1292 The value of this macro is compared with @code{HOST_FLOAT_FORMAT}
1293 (@pxref{Config}) to determine whether the target machine has the same
1294 format as the host machine.  If any other formats are actually in use on
1295 supported machines, new codes should be defined for them.
1296
1297 The ordering of the component words of floating point values stored in
1298 memory is controlled by @code{FLOAT_WORDS_BIG_ENDIAN} for the target
1299 machine and @code{HOST_FLOAT_WORDS_BIG_ENDIAN} for the host.
1300
1301 @findex DEFAULT_VTABLE_THUNKS
1302 @item DEFAULT_VTABLE_THUNKS
1303 GCC supports two ways of implementing C++ vtables:  traditional or with
1304 so-called ``thunks''.  The flag @option{-fvtable-thunk} chooses between them.
1305 Define this macro to be a C expression for the default value of that flag.
1306 If @code{DEFAULT_VTABLE_THUNKS} is 0, GCC uses the traditional
1307 implementation by default.  The ``thunk'' implementation is more efficient
1308 (especially if you have provided an implementation of
1309 @code{ASM_OUTPUT_MI_THUNK}, see @ref{Function Entry}), but is not binary
1310 compatible with code compiled using the traditional implementation.
1311 If you are writing a new port, define @code{DEFAULT_VTABLE_THUNKS} to 1.
1312
1313 If you do not define this macro, the default for @option{-fvtable-thunk} is 0.
1314 @end table
1315
1316 @node Type Layout
1317 @section Layout of Source Language Data Types
1318
1319 These macros define the sizes and other characteristics of the standard
1320 basic data types used in programs being compiled.  Unlike the macros in
1321 the previous section, these apply to specific features of C and related
1322 languages, rather than to fundamental aspects of storage layout.
1323
1324 @table @code
1325 @findex INT_TYPE_SIZE
1326 @item INT_TYPE_SIZE
1327 A C expression for the size in bits of the type @code{int} on the
1328 target machine.  If you don't define this, the default is one word.
1329
1330 @findex MAX_INT_TYPE_SIZE
1331 @item MAX_INT_TYPE_SIZE
1332 Maximum number for the size in bits of the type @code{int} on the target
1333 machine.  If this is undefined, the default is @code{INT_TYPE_SIZE}.
1334 Otherwise, it is the constant value that is the largest value that
1335 @code{INT_TYPE_SIZE} can have at run-time.  This is used in @code{cpp}.
1336
1337 @findex SHORT_TYPE_SIZE
1338 @item SHORT_TYPE_SIZE
1339 A C expression for the size in bits of the type @code{short} on the
1340 target machine.  If you don't define this, the default is half a word.
1341 (If this would be less than one storage unit, it is rounded up to one
1342 unit.)
1343
1344 @findex LONG_TYPE_SIZE
1345 @item LONG_TYPE_SIZE
1346 A C expression for the size in bits of the type @code{long} on the
1347 target machine.  If you don't define this, the default is one word.
1348
1349 @findex MAX_LONG_TYPE_SIZE
1350 @item MAX_LONG_TYPE_SIZE
1351 Maximum number for the size in bits of the type @code{long} on the
1352 target machine.  If this is undefined, the default is
1353 @code{LONG_TYPE_SIZE}.  Otherwise, it is the constant value that is the
1354 largest value that @code{LONG_TYPE_SIZE} can have at run-time.  This is
1355 used in @code{cpp}.
1356
1357 @findex LONG_LONG_TYPE_SIZE
1358 @item LONG_LONG_TYPE_SIZE
1359 A C expression for the size in bits of the type @code{long long} on the
1360 target machine.  If you don't define this, the default is two
1361 words.  If you want to support GNU Ada on your machine, the value of this
1362 macro must be at least 64.
1363
1364 @findex CHAR_TYPE_SIZE
1365 @item CHAR_TYPE_SIZE
1366 A C expression for the size in bits of the type @code{char} on the
1367 target machine.  If you don't define this, the default is
1368 @code{BITS_PER_UNIT}.
1369
1370 @findex MAX_CHAR_TYPE_SIZE
1371 @item MAX_CHAR_TYPE_SIZE
1372 Maximum number for the size in bits of the type @code{char} on the
1373 target machine.  If this is undefined, the default is
1374 @code{CHAR_TYPE_SIZE}.  Otherwise, it is the constant value that is the
1375 largest value that @code{CHAR_TYPE_SIZE} can have at run-time.  This is
1376 used in @code{cpp}.
1377
1378 @findex FLOAT_TYPE_SIZE
1379 @item FLOAT_TYPE_SIZE
1380 A C expression for the size in bits of the type @code{float} on the
1381 target machine.  If you don't define this, the default is one word.
1382
1383 @findex DOUBLE_TYPE_SIZE
1384 @item DOUBLE_TYPE_SIZE
1385 A C expression for the size in bits of the type @code{double} on the
1386 target machine.  If you don't define this, the default is two
1387 words.
1388
1389 @findex LONG_DOUBLE_TYPE_SIZE
1390 @item LONG_DOUBLE_TYPE_SIZE
1391 A C expression for the size in bits of the type @code{long double} on
1392 the target machine.  If you don't define this, the default is two
1393 words.
1394
1395 @findex WIDEST_HARDWARE_FP_SIZE
1396 @item WIDEST_HARDWARE_FP_SIZE
1397 A C expression for the size in bits of the widest floating-point format
1398 supported by the hardware.  If you define this macro, you must specify a
1399 value less than or equal to the value of @code{LONG_DOUBLE_TYPE_SIZE}.
1400 If you do not define this macro, the value of @code{LONG_DOUBLE_TYPE_SIZE}
1401 is the default.
1402
1403 @findex DEFAULT_SIGNED_CHAR
1404 @item DEFAULT_SIGNED_CHAR
1405 An expression whose value is 1 or 0, according to whether the type
1406 @code{char} should be signed or unsigned by default.  The user can
1407 always override this default with the options @option{-fsigned-char}
1408 and @option{-funsigned-char}.
1409
1410 @findex DEFAULT_SHORT_ENUMS
1411 @item DEFAULT_SHORT_ENUMS
1412 A C expression to determine whether to give an @code{enum} type
1413 only as many bytes as it takes to represent the range of possible values
1414 of that type.  A nonzero value means to do that; a zero value means all
1415 @code{enum} types should be allocated like @code{int}.
1416
1417 If you don't define the macro, the default is 0.
1418
1419 @findex SIZE_TYPE
1420 @item SIZE_TYPE
1421 A C expression for a string describing the name of the data type to use
1422 for size values.  The typedef name @code{size_t} is defined using the
1423 contents of the string.
1424
1425 The string can contain more than one keyword.  If so, separate them with
1426 spaces, and write first any length keyword, then @code{unsigned} if
1427 appropriate, and finally @code{int}.  The string must exactly match one
1428 of the data type names defined in the function
1429 @code{init_decl_processing} in the file @file{c-decl.c}.  You may not
1430 omit @code{int} or change the order---that would cause the compiler to
1431 crash on startup.
1432
1433 If you don't define this macro, the default is @code{"long unsigned
1434 int"}.
1435
1436 @findex PTRDIFF_TYPE
1437 @item PTRDIFF_TYPE
1438 A C expression for a string describing the name of the data type to use
1439 for the result of subtracting two pointers.  The typedef name
1440 @code{ptrdiff_t} is defined using the contents of the string.  See
1441 @code{SIZE_TYPE} above for more information.
1442
1443 If you don't define this macro, the default is @code{"long int"}.
1444
1445 @findex WCHAR_TYPE
1446 @item WCHAR_TYPE
1447 A C expression for a string describing the name of the data type to use
1448 for wide characters.  The typedef name @code{wchar_t} is defined using
1449 the contents of the string.  See @code{SIZE_TYPE} above for more
1450 information.
1451
1452 If you don't define this macro, the default is @code{"int"}.
1453
1454 @findex WCHAR_TYPE_SIZE
1455 @item WCHAR_TYPE_SIZE
1456 A C expression for the size in bits of the data type for wide
1457 characters.  This is used in @code{cpp}, which cannot make use of
1458 @code{WCHAR_TYPE}.
1459
1460 @findex MAX_WCHAR_TYPE_SIZE
1461 @item MAX_WCHAR_TYPE_SIZE
1462 Maximum number for the size in bits of the data type for wide
1463 characters.  If this is undefined, the default is
1464 @code{WCHAR_TYPE_SIZE}.  Otherwise, it is the constant value that is the
1465 largest value that @code{WCHAR_TYPE_SIZE} can have at run-time.  This is
1466 used in @code{cpp}.
1467
1468 @findex GCOV_TYPE_SIZE
1469 @item GCOV_TYPE_SIZE
1470 A C expression for the size in bits of the type used for gcov counters on the
1471 target machine.  If you don't define this, the default is one
1472 @code{LONG_TYPE_SIZE} in case it is greater or equal to 64-bit and
1473 @code{LONG_LONG_TYPE_SIZE} otherwise.  You may want to re-define the type to
1474 ensure atomicity for counters in multithreaded programs.
1475
1476 @findex WINT_TYPE
1477 @item WINT_TYPE
1478 A C expression for a string describing the name of the data type to
1479 use for wide characters passed to @code{printf} and returned from
1480 @code{getwc}.  The typedef name @code{wint_t} is defined using the
1481 contents of the string.  See @code{SIZE_TYPE} above for more
1482 information.
1483
1484 If you don't define this macro, the default is @code{"unsigned int"}.
1485
1486 @findex INTMAX_TYPE
1487 @item INTMAX_TYPE
1488 A C expression for a string describing the name of the data type that
1489 can represent any value of any standard or extended signed integer type.
1490 The typedef name @code{intmax_t} is defined using the contents of the
1491 string.  See @code{SIZE_TYPE} above for more information.
1492
1493 If you don't define this macro, the default is the first of
1494 @code{"int"}, @code{"long int"}, or @code{"long long int"} that has as
1495 much precision as @code{long long int}.
1496
1497 @findex UINTMAX_TYPE
1498 @item UINTMAX_TYPE
1499 A C expression for a string describing the name of the data type that
1500 can represent any value of any standard or extended unsigned integer
1501 type.  The typedef name @code{uintmax_t} is defined using the contents
1502 of the string.  See @code{SIZE_TYPE} above for more information.
1503
1504 If you don't define this macro, the default is the first of
1505 @code{"unsigned int"}, @code{"long unsigned int"}, or @code{"long long
1506 unsigned int"} that has as much precision as @code{long long unsigned
1507 int}.
1508
1509 @findex OBJC_SELECTORS_WITHOUT_LABELS
1510 @item OBJC_SELECTORS_WITHOUT_LABELS
1511 Define this macro if the compiler can group all the selectors together
1512 into a vector and use just one label at the beginning of the vector.
1513 Otherwise, the compiler must give each selector its own assembler
1514 label.
1515
1516 On certain machines, it is important to have a separate label for each
1517 selector because this enables the linker to eliminate duplicate selectors.
1518
1519 @findex TARGET_PTRMEMFUNC_VBIT_LOCATION
1520 @item TARGET_PTRMEMFUNC_VBIT_LOCATION
1521 The C++ compiler represents a pointer-to-member-function with a struct
1522 that looks like:
1523
1524 @example
1525   struct @{
1526     union @{
1527       void (*fn)();
1528       ptrdiff_t vtable_index;
1529     @};
1530     ptrdiff_t delta;
1531   @};
1532 @end example
1533
1534 @noindent
1535 The C++ compiler must use one bit to indicate whether the function that
1536 will be called through a pointer-to-member-function is virtual.
1537 Normally, we assume that the low-order bit of a function pointer must
1538 always be zero.  Then, by ensuring that the vtable_index is odd, we can
1539 distinguish which variant of the union is in use.  But, on some
1540 platforms function pointers can be odd, and so this doesn't work.  In
1541 that case, we use the low-order bit of the @code{delta} field, and shift
1542 the remainder of the @code{delta} field to the left.
1543
1544 GCC will automatically make the right selection about where to store
1545 this bit using the @code{FUNCTION_BOUNDARY} setting for your platform.
1546 However, some platforms such as ARM/Thumb have @code{FUNCTION_BOUNDARY}
1547 set such that functions always start at even addresses, but the lowest
1548 bit of pointers to functions indicate whether the function at that
1549 address is in ARM or Thumb mode.  If this is the case of your
1550 architecture, you should define this macro to
1551 @code{ptrmemfunc_vbit_in_delta}.
1552
1553 In general, you should not have to define this macro.  On architectures
1554 in which function addresses are always even, according to
1555 @code{FUNCTION_BOUNDARY}, GCC will automatically define this macro to
1556 @code{ptrmemfunc_vbit_in_pfn}.
1557 @end table
1558
1559 @node Escape Sequences
1560 @section Target Character Escape Sequences
1561 @cindex escape sequences
1562
1563 By default, GCC assumes that the C character escape sequences take on
1564 their ASCII values for the target.  If this is not correct, you must
1565 explicitly define all of the macros below.
1566
1567 @table @code
1568 @findex TARGET_BELL
1569 @item TARGET_BELL
1570 A C constant expression for the integer value for escape sequence
1571 @samp{\a}.
1572
1573 @findex TARGET_TAB
1574 @findex TARGET_BS
1575 @findex TARGET_NEWLINE
1576 @item TARGET_BS
1577 @itemx TARGET_TAB
1578 @itemx TARGET_NEWLINE
1579 C constant expressions for the integer values for escape sequences
1580 @samp{\b}, @samp{\t} and @samp{\n}.
1581
1582 @findex TARGET_VT
1583 @findex TARGET_FF
1584 @findex TARGET_CR
1585 @item TARGET_VT
1586 @itemx TARGET_FF
1587 @itemx TARGET_CR
1588 C constant expressions for the integer values for escape sequences
1589 @samp{\v}, @samp{\f} and @samp{\r}.
1590 @end table
1591
1592 @node Registers
1593 @section Register Usage
1594 @cindex register usage
1595
1596 This section explains how to describe what registers the target machine
1597 has, and how (in general) they can be used.
1598
1599 The description of which registers a specific instruction can use is
1600 done with register classes; see @ref{Register Classes}.  For information
1601 on using registers to access a stack frame, see @ref{Frame Registers}.
1602 For passing values in registers, see @ref{Register Arguments}.
1603 For returning values in registers, see @ref{Scalar Return}.
1604
1605 @menu
1606 * Register Basics::             Number and kinds of registers.
1607 * Allocation Order::            Order in which registers are allocated.
1608 * Values in Registers::         What kinds of values each reg can hold.
1609 * Leaf Functions::              Renumbering registers for leaf functions.
1610 * Stack Registers::             Handling a register stack such as 80387.
1611 @end menu
1612
1613 @node Register Basics
1614 @subsection Basic Characteristics of Registers
1615
1616 @c prevent bad page break with this line
1617 Registers have various characteristics.
1618
1619 @table @code
1620 @findex FIRST_PSEUDO_REGISTER
1621 @item FIRST_PSEUDO_REGISTER
1622 Number of hardware registers known to the compiler.  They receive
1623 numbers 0 through @code{FIRST_PSEUDO_REGISTER-1}; thus, the first
1624 pseudo register's number really is assigned the number
1625 @code{FIRST_PSEUDO_REGISTER}.
1626
1627 @item FIXED_REGISTERS
1628 @findex FIXED_REGISTERS
1629 @cindex fixed register
1630 An initializer that says which registers are used for fixed purposes
1631 all throughout the compiled code and are therefore not available for
1632 general allocation.  These would include the stack pointer, the frame
1633 pointer (except on machines where that can be used as a general
1634 register when no frame pointer is needed), the program counter on
1635 machines where that is considered one of the addressable registers,
1636 and any other numbered register with a standard use.
1637
1638 This information is expressed as a sequence of numbers, separated by
1639 commas and surrounded by braces.  The @var{n}th number is 1 if
1640 register @var{n} is fixed, 0 otherwise.
1641
1642 The table initialized from this macro, and the table initialized by
1643 the following one, may be overridden at run time either automatically,
1644 by the actions of the macro @code{CONDITIONAL_REGISTER_USAGE}, or by
1645 the user with the command options @option{-ffixed-@var{reg}},
1646 @option{-fcall-used-@var{reg}} and @option{-fcall-saved-@var{reg}}.
1647
1648 @findex CALL_USED_REGISTERS
1649 @item CALL_USED_REGISTERS
1650 @cindex call-used register
1651 @cindex call-clobbered register
1652 @cindex call-saved register
1653 Like @code{FIXED_REGISTERS} but has 1 for each register that is
1654 clobbered (in general) by function calls as well as for fixed
1655 registers.  This macro therefore identifies the registers that are not
1656 available for general allocation of values that must live across
1657 function calls.
1658
1659 If a register has 0 in @code{CALL_USED_REGISTERS}, the compiler
1660 automatically saves it on function entry and restores it on function
1661 exit, if the register is used within the function.
1662
1663 @findex HARD_REGNO_CALL_PART_CLOBBERED
1664 @item HARD_REGNO_CALL_PART_CLOBBERED (@var{regno}, @var{mode})
1665 @cindex call-used register
1666 @cindex call-clobbered register
1667 @cindex call-saved register
1668 A C expression that is non-zero if it is not permissible to store a
1669 value of mode @var{mode} in hard register number @var{regno} across a
1670 call without some part of it being clobbered.  For most machines this
1671 macro need not be defined.  It is only required for machines that do not
1672 preserve the entire contents of a register across a call.
1673
1674 @findex CONDITIONAL_REGISTER_USAGE
1675 @findex fixed_regs
1676 @findex call_used_regs
1677 @item CONDITIONAL_REGISTER_USAGE
1678 Zero or more C statements that may conditionally modify five variables
1679 @code{fixed_regs}, @code{call_used_regs}, @code{global_regs},
1680 (these three are of type @code{char []}), @code{reg_names} (of type
1681 @code{const char * []}) and @code{reg_class_contents} (of type
1682 @code{HARD_REG_SET}).
1683 Before the macro is called @code{fixed_regs}, @code{call_used_regs}
1684 @code{reg_class_contents} and @code{reg_names} have been initialized
1685 from @code{FIXED_REGISTERS}, @code{CALL_USED_REGISTERS},
1686 @code{REG_CLASS_CONTENTS} and @code{REGISTER_NAMES}, respectively,
1687 @code{global_regs} has been cleared, and any @option{-ffixed-@var{reg}},
1688 @option{-fcall-used-@var{reg}} and @option{-fcall-saved-@var{reg}} command
1689 options have been applied.
1690
1691 This is necessary in case the fixed or call-clobbered registers depend
1692 on target flags.
1693
1694 You need not define this macro if it has no work to do.
1695
1696 @cindex disabling certain registers
1697 @cindex controlling register usage
1698 If the usage of an entire class of registers depends on the target
1699 flags, you may indicate this to GCC by using this macro to modify
1700 @code{fixed_regs} and @code{call_used_regs} to 1 for each of the
1701 registers in the classes which should not be used by GCC.  Also define
1702 the macro @code{REG_CLASS_FROM_LETTER} to return @code{NO_REGS} if it
1703 is called with a letter for a class that shouldn't be used.
1704
1705 (However, if this class is not included in @code{GENERAL_REGS} and all
1706 of the insn patterns whose constraints permit this class are
1707 controlled by target switches, then GCC will automatically avoid using
1708 these registers when the target switches are opposed to them.)
1709
1710 @findex NON_SAVING_SETJMP
1711 @item NON_SAVING_SETJMP
1712 If this macro is defined and has a nonzero value, it means that
1713 @code{setjmp} and related functions fail to save the registers, or that
1714 @code{longjmp} fails to restore them.  To compensate, the compiler
1715 avoids putting variables in registers in functions that use
1716 @code{setjmp}.
1717
1718 @findex INCOMING_REGNO
1719 @item INCOMING_REGNO (@var{out})
1720 Define this macro if the target machine has register windows.  This C
1721 expression returns the register number as seen by the called function
1722 corresponding to the register number @var{out} as seen by the calling
1723 function.  Return @var{out} if register number @var{out} is not an
1724 outbound register.
1725
1726 @findex OUTGOING_REGNO
1727 @item OUTGOING_REGNO (@var{in})
1728 Define this macro if the target machine has register windows.  This C
1729 expression returns the register number as seen by the calling function
1730 corresponding to the register number @var{in} as seen by the called
1731 function.  Return @var{in} if register number @var{in} is not an inbound
1732 register.
1733
1734 @findex LOCAL_REGNO
1735 @item LOCAL_REGNO (@var{regno})
1736 Define this macro if the target machine has register windows.  This C
1737 expression returns true if the register is call-saved but is in the
1738 register window.  Unlike most call-saved registers, such registers
1739 need not be explicitly restored on function exit or during non-local
1740 gotos.
1741
1742 @ignore
1743 @findex PC_REGNUM
1744 @item PC_REGNUM
1745 If the program counter has a register number, define this as that
1746 register number.  Otherwise, do not define it.
1747 @end ignore
1748 @end table
1749
1750 @node Allocation Order
1751 @subsection Order of Allocation of Registers
1752 @cindex order of register allocation
1753 @cindex register allocation order
1754
1755 @c prevent bad page break with this line
1756 Registers are allocated in order.
1757
1758 @table @code
1759 @findex REG_ALLOC_ORDER
1760 @item REG_ALLOC_ORDER
1761 If defined, an initializer for a vector of integers, containing the
1762 numbers of hard registers in the order in which GCC should prefer
1763 to use them (from most preferred to least).
1764
1765 If this macro is not defined, registers are used lowest numbered first
1766 (all else being equal).
1767
1768 One use of this macro is on machines where the highest numbered
1769 registers must always be saved and the save-multiple-registers
1770 instruction supports only sequences of consecutive registers.  On such
1771 machines, define @code{REG_ALLOC_ORDER} to be an initializer that lists
1772 the highest numbered allocable register first.
1773
1774 @findex ORDER_REGS_FOR_LOCAL_ALLOC
1775 @item ORDER_REGS_FOR_LOCAL_ALLOC
1776 A C statement (sans semicolon) to choose the order in which to allocate
1777 hard registers for pseudo-registers local to a basic block.
1778
1779 Store the desired register order in the array @code{reg_alloc_order}.
1780 Element 0 should be the register to allocate first; element 1, the next
1781 register; and so on.
1782
1783 The macro body should not assume anything about the contents of
1784 @code{reg_alloc_order} before execution of the macro.
1785
1786 On most machines, it is not necessary to define this macro.
1787 @end table
1788
1789 @node Values in Registers
1790 @subsection How Values Fit in Registers
1791
1792 This section discusses the macros that describe which kinds of values
1793 (specifically, which machine modes) each register can hold, and how many
1794 consecutive registers are needed for a given mode.
1795
1796 @table @code
1797 @findex HARD_REGNO_NREGS
1798 @item HARD_REGNO_NREGS (@var{regno}, @var{mode})
1799 A C expression for the number of consecutive hard registers, starting
1800 at register number @var{regno}, required to hold a value of mode
1801 @var{mode}.
1802
1803 On a machine where all registers are exactly one word, a suitable
1804 definition of this macro is
1805
1806 @smallexample
1807 #define HARD_REGNO_NREGS(REGNO, MODE)            \
1808    ((GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1)  \
1809     / UNITS_PER_WORD)
1810 @end smallexample
1811
1812 @findex HARD_REGNO_MODE_OK
1813 @item HARD_REGNO_MODE_OK (@var{regno}, @var{mode})
1814 A C expression that is nonzero if it is permissible to store a value
1815 of mode @var{mode} in hard register number @var{regno} (or in several
1816 registers starting with that one).  For a machine where all registers
1817 are equivalent, a suitable definition is
1818
1819 @smallexample
1820 #define HARD_REGNO_MODE_OK(REGNO, MODE) 1
1821 @end smallexample
1822
1823 You need not include code to check for the numbers of fixed registers,
1824 because the allocation mechanism considers them to be always occupied.
1825
1826 @cindex register pairs
1827 On some machines, double-precision values must be kept in even/odd
1828 register pairs.  You can implement that by defining this macro to reject
1829 odd register numbers for such modes.
1830
1831 The minimum requirement for a mode to be OK in a register is that the
1832 @samp{mov@var{mode}} instruction pattern support moves between the
1833 register and other hard register in the same class and that moving a
1834 value into the register and back out not alter it.
1835
1836 Since the same instruction used to move @code{word_mode} will work for
1837 all narrower integer modes, it is not necessary on any machine for
1838 @code{HARD_REGNO_MODE_OK} to distinguish between these modes, provided
1839 you define patterns @samp{movhi}, etc., to take advantage of this.  This
1840 is useful because of the interaction between @code{HARD_REGNO_MODE_OK}
1841 and @code{MODES_TIEABLE_P}; it is very desirable for all integer modes
1842 to be tieable.
1843
1844 Many machines have special registers for floating point arithmetic.
1845 Often people assume that floating point machine modes are allowed only
1846 in floating point registers.  This is not true.  Any registers that
1847 can hold integers can safely @emph{hold} a floating point machine
1848 mode, whether or not floating arithmetic can be done on it in those
1849 registers.  Integer move instructions can be used to move the values.
1850
1851 On some machines, though, the converse is true: fixed-point machine
1852 modes may not go in floating registers.  This is true if the floating
1853 registers normalize any value stored in them, because storing a
1854 non-floating value there would garble it.  In this case,
1855 @code{HARD_REGNO_MODE_OK} should reject fixed-point machine modes in
1856 floating registers.  But if the floating registers do not automatically
1857 normalize, if you can store any bit pattern in one and retrieve it
1858 unchanged without a trap, then any machine mode may go in a floating
1859 register, so you can define this macro to say so.
1860
1861 The primary significance of special floating registers is rather that
1862 they are the registers acceptable in floating point arithmetic
1863 instructions.  However, this is of no concern to
1864 @code{HARD_REGNO_MODE_OK}.  You handle it by writing the proper
1865 constraints for those instructions.
1866
1867 On some machines, the floating registers are especially slow to access,
1868 so that it is better to store a value in a stack frame than in such a
1869 register if floating point arithmetic is not being done.  As long as the
1870 floating registers are not in class @code{GENERAL_REGS}, they will not
1871 be used unless some pattern's constraint asks for one.
1872
1873 @findex MODES_TIEABLE_P
1874 @item MODES_TIEABLE_P (@var{mode1}, @var{mode2})
1875 A C expression that is nonzero if a value of mode
1876 @var{mode1} is accessible in mode @var{mode2} without copying.
1877
1878 If @code{HARD_REGNO_MODE_OK (@var{r}, @var{mode1})} and
1879 @code{HARD_REGNO_MODE_OK (@var{r}, @var{mode2})} are always the same for
1880 any @var{r}, then @code{MODES_TIEABLE_P (@var{mode1}, @var{mode2})}
1881 should be nonzero.  If they differ for any @var{r}, you should define
1882 this macro to return zero unless some other mechanism ensures the
1883 accessibility of the value in a narrower mode.
1884
1885 You should define this macro to return nonzero in as many cases as
1886 possible since doing so will allow GCC to perform better register
1887 allocation.
1888
1889 @findex AVOID_CCMODE_COPIES
1890 @item AVOID_CCMODE_COPIES
1891 Define this macro if the compiler should avoid copies to/from @code{CCmode}
1892 registers.  You should only define this macro if support for copying to/from
1893 @code{CCmode} is incomplete.
1894
1895 @findex SUBREG_REGNO_OFFSET
1896 @item SUBREG_REGNO_OFFSET
1897 Define this macro if the compiler needs to handle subregs in a non-standard
1898 way.  The macro returns the correct regno offset for mode @code{YMODE} given
1899 a subreg of type @code{XMODE}.
1900 This macro takes 4 parameters:
1901 @table @code
1902 @item XREGNO
1903 A regno of an inner hard subreg_reg (or what will become one).
1904 @item XMODE
1905 The mode of xregno.
1906 @item OFFSET
1907 The byte offset.
1908 @item YMODE
1909 The mode of a top level SUBREG (or what may become one).
1910 @end table
1911 The default function can be found in rtlanal.c, function
1912 @code{subreg_regno_offset}. Normally this does not need to be defined.
1913 @end table
1914
1915 @node Leaf Functions
1916 @subsection Handling Leaf Functions
1917
1918 @cindex leaf functions
1919 @cindex functions, leaf
1920 On some machines, a leaf function (i.e., one which makes no calls) can run
1921 more efficiently if it does not make its own register window.  Often this
1922 means it is required to receive its arguments in the registers where they
1923 are passed by the caller, instead of the registers where they would
1924 normally arrive.
1925
1926 The special treatment for leaf functions generally applies only when
1927 other conditions are met; for example, often they may use only those
1928 registers for its own variables and temporaries.  We use the term ``leaf
1929 function'' to mean a function that is suitable for this special
1930 handling, so that functions with no calls are not necessarily ``leaf
1931 functions''.
1932
1933 GCC assigns register numbers before it knows whether the function is
1934 suitable for leaf function treatment.  So it needs to renumber the
1935 registers in order to output a leaf function.  The following macros
1936 accomplish this.
1937
1938 @table @code
1939 @findex LEAF_REGISTERS
1940 @item LEAF_REGISTERS
1941 Name of a char vector, indexed by hard register number, which
1942 contains 1 for a register that is allowable in a candidate for leaf
1943 function treatment.
1944
1945 If leaf function treatment involves renumbering the registers, then the
1946 registers marked here should be the ones before renumbering---those that
1947 GCC would ordinarily allocate.  The registers which will actually be
1948 used in the assembler code, after renumbering, should not be marked with 1
1949 in this vector.
1950
1951 Define this macro only if the target machine offers a way to optimize
1952 the treatment of leaf functions.
1953
1954 @findex LEAF_REG_REMAP
1955 @item LEAF_REG_REMAP (@var{regno})
1956 A C expression whose value is the register number to which @var{regno}
1957 should be renumbered, when a function is treated as a leaf function.
1958
1959 If @var{regno} is a register number which should not appear in a leaf
1960 function before renumbering, then the expression should yield @minus{}1, which
1961 will cause the compiler to abort.
1962
1963 Define this macro only if the target machine offers a way to optimize the
1964 treatment of leaf functions, and registers need to be renumbered to do
1965 this.
1966 @end table
1967
1968 @findex current_function_is_leaf
1969 @findex current_function_uses_only_leaf_regs
1970 Normally, @code{FUNCTION_PROLOGUE} and @code{FUNCTION_EPILOGUE} must
1971 treat leaf functions specially.  They can test the C variable
1972 @code{current_function_is_leaf} which is nonzero for leaf functions.
1973 @code{current_function_is_leaf} is set prior to local register allocation
1974 and is valid for the remaining compiler passes.  They can also test the C
1975 variable @code{current_function_uses_only_leaf_regs} which is nonzero for
1976 leaf functions which only use leaf registers.
1977 @code{current_function_uses_only_leaf_regs} is valid after reload and is
1978 only useful if @code{LEAF_REGISTERS} is defined.
1979 @c changed this to fix overfull.  ALSO:  why the "it" at the beginning
1980 @c of the next paragraph?!  --mew 2feb93
1981
1982 @node Stack Registers
1983 @subsection Registers That Form a Stack
1984
1985 There are special features to handle computers where some of the
1986 ``registers'' form a stack, as in the 80387 coprocessor for the 80386.
1987 Stack registers are normally written by pushing onto the stack, and are
1988 numbered relative to the top of the stack.
1989
1990 Currently, GCC can only handle one group of stack-like registers, and
1991 they must be consecutively numbered.
1992
1993 @table @code
1994 @findex STACK_REGS
1995 @item STACK_REGS
1996 Define this if the machine has any stack-like registers.
1997
1998 @findex FIRST_STACK_REG
1999 @item FIRST_STACK_REG
2000 The number of the first stack-like register.  This one is the top
2001 of the stack.
2002
2003 @findex LAST_STACK_REG
2004 @item LAST_STACK_REG
2005 The number of the last stack-like register.  This one is the bottom of
2006 the stack.
2007 @end table
2008
2009 @node Register Classes
2010 @section Register Classes
2011 @cindex register class definitions
2012 @cindex class definitions, register
2013
2014 On many machines, the numbered registers are not all equivalent.
2015 For example, certain registers may not be allowed for indexed addressing;
2016 certain registers may not be allowed in some instructions.  These machine
2017 restrictions are described to the compiler using @dfn{register classes}.
2018
2019 You define a number of register classes, giving each one a name and saying
2020 which of the registers belong to it.  Then you can specify register classes
2021 that are allowed as operands to particular instruction patterns.
2022
2023 @findex ALL_REGS
2024 @findex NO_REGS
2025 In general, each register will belong to several classes.  In fact, one
2026 class must be named @code{ALL_REGS} and contain all the registers.  Another
2027 class must be named @code{NO_REGS} and contain no registers.  Often the
2028 union of two classes will be another class; however, this is not required.
2029
2030 @findex GENERAL_REGS
2031 One of the classes must be named @code{GENERAL_REGS}.  There is nothing
2032 terribly special about the name, but the operand constraint letters
2033 @samp{r} and @samp{g} specify this class.  If @code{GENERAL_REGS} is
2034 the same as @code{ALL_REGS}, just define it as a macro which expands
2035 to @code{ALL_REGS}.
2036
2037 Order the classes so that if class @var{x} is contained in class @var{y}
2038 then @var{x} has a lower class number than @var{y}.
2039
2040 The way classes other than @code{GENERAL_REGS} are specified in operand
2041 constraints is through machine-dependent operand constraint letters.
2042 You can define such letters to correspond to various classes, then use
2043 them in operand constraints.
2044
2045 You should define a class for the union of two classes whenever some
2046 instruction allows both classes.  For example, if an instruction allows
2047 either a floating point (coprocessor) register or a general register for a
2048 certain operand, you should define a class @code{FLOAT_OR_GENERAL_REGS}
2049 which includes both of them.  Otherwise you will get suboptimal code.
2050
2051 You must also specify certain redundant information about the register
2052 classes: for each class, which classes contain it and which ones are
2053 contained in it; for each pair of classes, the largest class contained
2054 in their union.
2055
2056 When a value occupying several consecutive registers is expected in a
2057 certain class, all the registers used must belong to that class.
2058 Therefore, register classes cannot be used to enforce a requirement for
2059 a register pair to start with an even-numbered register.  The way to
2060 specify this requirement is with @code{HARD_REGNO_MODE_OK}.
2061
2062 Register classes used for input-operands of bitwise-and or shift
2063 instructions have a special requirement: each such class must have, for
2064 each fixed-point machine mode, a subclass whose registers can transfer that
2065 mode to or from memory.  For example, on some machines, the operations for
2066 single-byte values (@code{QImode}) are limited to certain registers.  When
2067 this is so, each register class that is used in a bitwise-and or shift
2068 instruction must have a subclass consisting of registers from which
2069 single-byte values can be loaded or stored.  This is so that
2070 @code{PREFERRED_RELOAD_CLASS} can always have a possible value to return.
2071
2072 @table @code
2073 @findex enum reg_class
2074 @item enum reg_class
2075 An enumeral type that must be defined with all the register class names
2076 as enumeral values.  @code{NO_REGS} must be first.  @code{ALL_REGS}
2077 must be the last register class, followed by one more enumeral value,
2078 @code{LIM_REG_CLASSES}, which is not a register class but rather
2079 tells how many classes there are.
2080
2081 Each register class has a number, which is the value of casting
2082 the class name to type @code{int}.  The number serves as an index
2083 in many of the tables described below.
2084
2085 @findex N_REG_CLASSES
2086 @item N_REG_CLASSES
2087 The number of distinct register classes, defined as follows:
2088
2089 @example
2090 #define N_REG_CLASSES (int) LIM_REG_CLASSES
2091 @end example
2092
2093 @findex REG_CLASS_NAMES
2094 @item REG_CLASS_NAMES
2095 An initializer containing the names of the register classes as C string
2096 constants.  These names are used in writing some of the debugging dumps.
2097
2098 @findex REG_CLASS_CONTENTS
2099 @item REG_CLASS_CONTENTS
2100 An initializer containing the contents of the register classes, as integers
2101 which are bit masks.  The @var{n}th integer specifies the contents of class
2102 @var{n}.  The way the integer @var{mask} is interpreted is that
2103 register @var{r} is in the class if @code{@var{mask} & (1 << @var{r})} is 1.
2104
2105 When the machine has more than 32 registers, an integer does not suffice.
2106 Then the integers are replaced by sub-initializers, braced groupings containing
2107 several integers.  Each sub-initializer must be suitable as an initializer
2108 for the type @code{HARD_REG_SET} which is defined in @file{hard-reg-set.h}.
2109 In this situation, the first integer in each sub-initializer corresponds to
2110 registers 0 through 31, the second integer to registers 32 through 63, and
2111 so on.
2112
2113 @findex REGNO_REG_CLASS
2114 @item REGNO_REG_CLASS (@var{regno})
2115 A C expression whose value is a register class containing hard register
2116 @var{regno}.  In general there is more than one such class; choose a class
2117 which is @dfn{minimal}, meaning that no smaller class also contains the
2118 register.
2119
2120 @findex BASE_REG_CLASS
2121 @item BASE_REG_CLASS
2122 A macro whose definition is the name of the class to which a valid
2123 base register must belong.  A base register is one used in an address
2124 which is the register value plus a displacement.
2125
2126 @findex INDEX_REG_CLASS
2127 @item INDEX_REG_CLASS
2128 A macro whose definition is the name of the class to which a valid
2129 index register must belong.  An index register is one used in an
2130 address where its value is either multiplied by a scale factor or
2131 added to another register (as well as added to a displacement).
2132
2133 @findex REG_CLASS_FROM_LETTER
2134 @item REG_CLASS_FROM_LETTER (@var{char})
2135 A C expression which defines the machine-dependent operand constraint
2136 letters for register classes.  If @var{char} is such a letter, the
2137 value should be the register class corresponding to it.  Otherwise,
2138 the value should be @code{NO_REGS}.  The register letter @samp{r},
2139 corresponding to class @code{GENERAL_REGS}, will not be passed
2140 to this macro; you do not need to handle it.
2141
2142 @findex REGNO_OK_FOR_BASE_P
2143 @item REGNO_OK_FOR_BASE_P (@var{num})
2144 A C expression which is nonzero if register number @var{num} is
2145 suitable for use as a base register in operand addresses.  It may be
2146 either a suitable hard register or a pseudo register that has been
2147 allocated such a hard register.
2148
2149 @findex REGNO_MODE_OK_FOR_BASE_P
2150 @item REGNO_MODE_OK_FOR_BASE_P (@var{num}, @var{mode})
2151 A C expression that is just like @code{REGNO_OK_FOR_BASE_P}, except that
2152 that expression may examine the mode of the memory reference in
2153 @var{mode}.  You should define this macro if the mode of the memory
2154 reference affects whether a register may be used as a base register.  If
2155 you define this macro, the compiler will use it instead of
2156 @code{REGNO_OK_FOR_BASE_P}.
2157
2158 @findex REGNO_OK_FOR_INDEX_P
2159 @item REGNO_OK_FOR_INDEX_P (@var{num})
2160 A C expression which is nonzero if register number @var{num} is
2161 suitable for use as an index register in operand addresses.  It may be
2162 either a suitable hard register or a pseudo register that has been
2163 allocated such a hard register.
2164
2165 The difference between an index register and a base register is that
2166 the index register may be scaled.  If an address involves the sum of
2167 two registers, neither one of them scaled, then either one may be
2168 labeled the ``base'' and the other the ``index''; but whichever
2169 labeling is used must fit the machine's constraints of which registers
2170 may serve in each capacity.  The compiler will try both labelings,
2171 looking for one that is valid, and will reload one or both registers
2172 only if neither labeling works.
2173
2174 @findex PREFERRED_RELOAD_CLASS
2175 @item PREFERRED_RELOAD_CLASS (@var{x}, @var{class})
2176 A C expression that places additional restrictions on the register class
2177 to use when it is necessary to copy value @var{x} into a register in class
2178 @var{class}.  The value is a register class; perhaps @var{class}, or perhaps
2179 another, smaller class.  On many machines, the following definition is
2180 safe:
2181
2182 @example
2183 #define PREFERRED_RELOAD_CLASS(X,CLASS) CLASS
2184 @end example
2185
2186 Sometimes returning a more restrictive class makes better code.  For
2187 example, on the 68000, when @var{x} is an integer constant that is in range
2188 for a @samp{moveq} instruction, the value of this macro is always
2189 @code{DATA_REGS} as long as @var{class} includes the data registers.
2190 Requiring a data register guarantees that a @samp{moveq} will be used.
2191
2192 If @var{x} is a @code{const_double}, by returning @code{NO_REGS}
2193 you can force @var{x} into a memory constant.  This is useful on
2194 certain machines where immediate floating values cannot be loaded into
2195 certain kinds of registers.
2196
2197 @findex PREFERRED_OUTPUT_RELOAD_CLASS
2198 @item PREFERRED_OUTPUT_RELOAD_CLASS (@var{x}, @var{class})
2199 Like @code{PREFERRED_RELOAD_CLASS}, but for output reloads instead of
2200 input reloads.  If you don't define this macro, the default is to use
2201 @var{class}, unchanged.
2202
2203 @findex LIMIT_RELOAD_CLASS
2204 @item LIMIT_RELOAD_CLASS (@var{mode}, @var{class})
2205 A C expression that places additional restrictions on the register class
2206 to use when it is necessary to be able to hold a value of mode
2207 @var{mode} in a reload register for which class @var{class} would
2208 ordinarily be used.
2209
2210 Unlike @code{PREFERRED_RELOAD_CLASS}, this macro should be used when
2211 there are certain modes that simply can't go in certain reload classes.
2212
2213 The value is a register class; perhaps @var{class}, or perhaps another,
2214 smaller class.
2215
2216 Don't define this macro unless the target machine has limitations which
2217 require the macro to do something nontrivial.
2218
2219 @findex SECONDARY_RELOAD_CLASS
2220 @findex SECONDARY_INPUT_RELOAD_CLASS
2221 @findex SECONDARY_OUTPUT_RELOAD_CLASS
2222 @item SECONDARY_RELOAD_CLASS (@var{class}, @var{mode}, @var{x})
2223 @itemx SECONDARY_INPUT_RELOAD_CLASS (@var{class}, @var{mode}, @var{x})
2224 @itemx SECONDARY_OUTPUT_RELOAD_CLASS (@var{class}, @var{mode}, @var{x})
2225 Many machines have some registers that cannot be copied directly to or
2226 from memory or even from other types of registers.  An example is the
2227 @samp{MQ} register, which on most machines, can only be copied to or
2228 from general registers, but not memory.  Some machines allow copying all
2229 registers to and from memory, but require a scratch register for stores
2230 to some memory locations (e.g., those with symbolic address on the RT,
2231 and those with certain symbolic address on the Sparc when compiling
2232 PIC).  In some cases, both an intermediate and a scratch register are
2233 required.
2234
2235 You should define these macros to indicate to the reload phase that it may
2236 need to allocate at least one register for a reload in addition to the
2237 register to contain the data.  Specifically, if copying @var{x} to a
2238 register @var{class} in @var{mode} requires an intermediate register,
2239 you should define @code{SECONDARY_INPUT_RELOAD_CLASS} to return the
2240 largest register class all of whose registers can be used as
2241 intermediate registers or scratch registers.
2242
2243 If copying a register @var{class} in @var{mode} to @var{x} requires an
2244 intermediate or scratch register, @code{SECONDARY_OUTPUT_RELOAD_CLASS}
2245 should be defined to return the largest register class required.  If the
2246 requirements for input and output reloads are the same, the macro
2247 @code{SECONDARY_RELOAD_CLASS} should be used instead of defining both
2248 macros identically.
2249
2250 The values returned by these macros are often @code{GENERAL_REGS}.
2251 Return @code{NO_REGS} if no spare register is needed; i.e., if @var{x}
2252 can be directly copied to or from a register of @var{class} in
2253 @var{mode} without requiring a scratch register.  Do not define this
2254 macro if it would always return @code{NO_REGS}.
2255
2256 If a scratch register is required (either with or without an
2257 intermediate register), you should define patterns for
2258 @samp{reload_in@var{m}} or @samp{reload_out@var{m}}, as required
2259 (@pxref{Standard Names}.  These patterns, which will normally be
2260 implemented with a @code{define_expand}, should be similar to the
2261 @samp{mov@var{m}} patterns, except that operand 2 is the scratch
2262 register.
2263
2264 Define constraints for the reload register and scratch register that
2265 contain a single register class.  If the original reload register (whose
2266 class is @var{class}) can meet the constraint given in the pattern, the
2267 value returned by these macros is used for the class of the scratch
2268 register.  Otherwise, two additional reload registers are required.
2269 Their classes are obtained from the constraints in the insn pattern.
2270
2271 @var{x} might be a pseudo-register or a @code{subreg} of a
2272 pseudo-register, which could either be in a hard register or in memory.
2273 Use @code{true_regnum} to find out; it will return @minus{}1 if the pseudo is
2274 in memory and the hard register number if it is in a register.
2275
2276 These macros should not be used in the case where a particular class of
2277 registers can only be copied to memory and not to another class of
2278 registers.  In that case, secondary reload registers are not needed and
2279 would not be helpful.  Instead, a stack location must be used to perform
2280 the copy and the @code{mov@var{m}} pattern should use memory as a
2281 intermediate storage.  This case often occurs between floating-point and
2282 general registers.
2283
2284 @findex SECONDARY_MEMORY_NEEDED
2285 @item SECONDARY_MEMORY_NEEDED (@var{class1}, @var{class2}, @var{m})
2286 Certain machines have the property that some registers cannot be copied
2287 to some other registers without using memory.  Define this macro on
2288 those machines to be a C expression that is non-zero if objects of mode
2289 @var{m} in registers of @var{class1} can only be copied to registers of
2290 class @var{class2} by storing a register of @var{class1} into memory
2291 and loading that memory location into a register of @var{class2}.
2292
2293 Do not define this macro if its value would always be zero.
2294
2295 @findex SECONDARY_MEMORY_NEEDED_RTX
2296 @item SECONDARY_MEMORY_NEEDED_RTX (@var{mode})
2297 Normally when @code{SECONDARY_MEMORY_NEEDED} is defined, the compiler
2298 allocates a stack slot for a memory location needed for register copies.
2299 If this macro is defined, the compiler instead uses the memory location
2300 defined by this macro.
2301
2302 Do not define this macro if you do not define
2303 @code{SECONDARY_MEMORY_NEEDED}.
2304
2305 @findex SECONDARY_MEMORY_NEEDED_MODE
2306 @item SECONDARY_MEMORY_NEEDED_MODE (@var{mode})
2307 When the compiler needs a secondary memory location to copy between two
2308 registers of mode @var{mode}, it normally allocates sufficient memory to
2309 hold a quantity of @code{BITS_PER_WORD} bits and performs the store and
2310 load operations in a mode that many bits wide and whose class is the
2311 same as that of @var{mode}.
2312
2313 This is right thing to do on most machines because it ensures that all
2314 bits of the register are copied and prevents accesses to the registers
2315 in a narrower mode, which some machines prohibit for floating-point
2316 registers.
2317
2318 However, this default behavior is not correct on some machines, such as
2319 the DEC Alpha, that store short integers in floating-point registers
2320 differently than in integer registers.  On those machines, the default
2321 widening will not work correctly and you must define this macro to
2322 suppress that widening in some cases.  See the file @file{alpha.h} for
2323 details.
2324
2325 Do not define this macro if you do not define
2326 @code{SECONDARY_MEMORY_NEEDED} or if widening @var{mode} to a mode that
2327 is @code{BITS_PER_WORD} bits wide is correct for your machine.
2328
2329 @findex SMALL_REGISTER_CLASSES
2330 @item SMALL_REGISTER_CLASSES
2331 On some machines, it is risky to let hard registers live across arbitrary
2332 insns.  Typically, these machines have instructions that require values
2333 to be in specific registers (like an accumulator), and reload will fail
2334 if the required hard register is used for another purpose across such an
2335 insn.
2336
2337 Define @code{SMALL_REGISTER_CLASSES} to be an expression with a non-zero
2338 value on these machines.  When this macro has a non-zero value, the
2339 compiler will try to minimize the lifetime of hard registers.
2340
2341 It is always safe to define this macro with a non-zero value, but if you
2342 unnecessarily define it, you will reduce the amount of optimizations
2343 that can be performed in some cases.  If you do not define this macro
2344 with a non-zero value when it is required, the compiler will run out of
2345 spill registers and print a fatal error message.  For most machines, you
2346 should not define this macro at all.
2347
2348 @findex CLASS_LIKELY_SPILLED_P
2349 @item CLASS_LIKELY_SPILLED_P (@var{class})
2350 A C expression whose value is nonzero if pseudos that have been assigned
2351 to registers of class @var{class} would likely be spilled because
2352 registers of @var{class} are needed for spill registers.
2353
2354 The default value of this macro returns 1 if @var{class} has exactly one
2355 register and zero otherwise.  On most machines, this default should be
2356 used.  Only define this macro to some other expression if pseudos
2357 allocated by @file{local-alloc.c} end up in memory because their hard
2358 registers were needed for spill registers.  If this macro returns nonzero
2359 for those classes, those pseudos will only be allocated by
2360 @file{global.c}, which knows how to reallocate the pseudo to another
2361 register.  If there would not be another register available for
2362 reallocation, you should not change the definition of this macro since
2363 the only effect of such a definition would be to slow down register
2364 allocation.
2365
2366 @findex CLASS_MAX_NREGS
2367 @item CLASS_MAX_NREGS (@var{class}, @var{mode})
2368 A C expression for the maximum number of consecutive registers
2369 of class @var{class} needed to hold a value of mode @var{mode}.
2370
2371 This is closely related to the macro @code{HARD_REGNO_NREGS}.  In fact,
2372 the value of the macro @code{CLASS_MAX_NREGS (@var{class}, @var{mode})}
2373 should be the maximum value of @code{HARD_REGNO_NREGS (@var{regno},
2374 @var{mode})} for all @var{regno} values in the class @var{class}.
2375
2376 This macro helps control the handling of multiple-word values
2377 in the reload pass.
2378
2379 @item CLASS_CANNOT_CHANGE_MODE
2380 If defined, a C expression for a class that contains registers for
2381 which the compiler may not change modes arbitrarily.
2382
2383 @item CLASS_CANNOT_CHANGE_MODE_P(@var{from}, @var{to})
2384 A C expression that is true if, for a register in
2385 @code{CLASS_CANNOT_CHANGE_MODE}, the requested mode punning is illegal.
2386
2387 For the example, loading 32-bit integer or floating-point objects into
2388 floating-point registers on the Alpha extends them to 64-bits.
2389 Therefore loading a 64-bit object and then storing it as a 32-bit object
2390 does not store the low-order 32-bits, as would be the case for a normal
2391 register.  Therefore, @file{alpha.h} defines @code{CLASS_CANNOT_CHANGE_MODE}
2392 as @code{FLOAT_REGS} and @code{CLASS_CANNOT_CHANGE_MODE_P} restricts
2393 mode changes to same-size modes.
2394
2395 Compare this to IA-64, which extends floating-point values to 82-bits,
2396 and stores 64-bit integers in a different format than 64-bit doubles.
2397 Therefore @code{CLASS_CANNOT_CHANGE_MODE_P} is always true.
2398 @end table
2399
2400 Three other special macros describe which operands fit which constraint
2401 letters.
2402
2403 @table @code
2404 @findex CONST_OK_FOR_LETTER_P
2405 @item CONST_OK_FOR_LETTER_P (@var{value}, @var{c})
2406 A C expression that defines the machine-dependent operand constraint
2407 letters (@samp{I}, @samp{J}, @samp{K}, @dots{} @samp{P}) that specify
2408 particular ranges of integer values.  If @var{c} is one of those
2409 letters, the expression should check that @var{value}, an integer, is in
2410 the appropriate range and return 1 if so, 0 otherwise.  If @var{c} is
2411 not one of those letters, the value should be 0 regardless of
2412 @var{value}.
2413
2414 @findex CONST_DOUBLE_OK_FOR_LETTER_P
2415 @item CONST_DOUBLE_OK_FOR_LETTER_P (@var{value}, @var{c})
2416 A C expression that defines the machine-dependent operand constraint
2417 letters that specify particular ranges of @code{const_double} values
2418 (@samp{G} or @samp{H}).
2419
2420 If @var{c} is one of those letters, the expression should check that
2421 @var{value}, an RTX of code @code{const_double}, is in the appropriate
2422 range and return 1 if so, 0 otherwise.  If @var{c} is not one of those
2423 letters, the value should be 0 regardless of @var{value}.
2424
2425 @code{const_double} is used for all floating-point constants and for
2426 @code{DImode} fixed-point constants.  A given letter can accept either
2427 or both kinds of values.  It can use @code{GET_MODE} to distinguish
2428 between these kinds.
2429
2430 @findex EXTRA_CONSTRAINT
2431 @item EXTRA_CONSTRAINT (@var{value}, @var{c})
2432 A C expression that defines the optional machine-dependent constraint
2433 letters that can be used to segregate specific types of operands, usually
2434 memory references, for the target machine.  Any letter that is not
2435 elsewhere defined and not matched by @code{REG_CLASS_FROM_LETTER}
2436 may be used.  Normally this macro will not be defined.
2437
2438 If it is required for a particular target machine, it should return 1
2439 if @var{value} corresponds to the operand type represented by the
2440 constraint letter @var{c}.  If @var{c} is not defined as an extra
2441 constraint, the value returned should be 0 regardless of @var{value}.
2442
2443 For example, on the ROMP, load instructions cannot have their output
2444 in r0 if the memory reference contains a symbolic address.  Constraint
2445 letter @samp{Q} is defined as representing a memory address that does
2446 @emph{not} contain a symbolic address.  An alternative is specified with
2447 a @samp{Q} constraint on the input and @samp{r} on the output.  The next
2448 alternative specifies @samp{m} on the input and a register class that
2449 does not include r0 on the output.
2450 @end table
2451
2452 @node Stack and Calling
2453 @section Stack Layout and Calling Conventions
2454 @cindex calling conventions
2455
2456 @c prevent bad page break with this line
2457 This describes the stack layout and calling conventions.
2458
2459 @menu
2460 * Frame Layout::
2461 * Stack Checking::
2462 * Frame Registers::
2463 * Elimination::
2464 * Stack Arguments::
2465 * Register Arguments::
2466 * Scalar Return::
2467 * Aggregate Return::
2468 * Caller Saves::
2469 * Function Entry::
2470 * Profiling::
2471 * Inlining::
2472 * Tail Calling::
2473 @end menu
2474
2475 @node Frame Layout
2476 @subsection Basic Stack Layout
2477 @cindex stack frame layout
2478 @cindex frame layout
2479
2480 @c prevent bad page break with this line
2481 Here is the basic stack layout.
2482
2483 @table @code
2484 @findex STACK_GROWS_DOWNWARD
2485 @item STACK_GROWS_DOWNWARD
2486 Define this macro if pushing a word onto the stack moves the stack
2487 pointer to a smaller address.
2488
2489 When we say, ``define this macro if @dots{},'' it means that the
2490 compiler checks this macro only with @code{#ifdef} so the precise
2491 definition used does not matter.
2492
2493 @findex FRAME_GROWS_DOWNWARD
2494 @item FRAME_GROWS_DOWNWARD
2495 Define this macro if the addresses of local variable slots are at negative
2496 offsets from the frame pointer.
2497
2498 @findex ARGS_GROW_DOWNWARD
2499 @item ARGS_GROW_DOWNWARD
2500 Define this macro if successive arguments to a function occupy decreasing
2501 addresses on the stack.
2502
2503 @findex STARTING_FRAME_OFFSET
2504 @item STARTING_FRAME_OFFSET
2505 Offset from the frame pointer to the first local variable slot to be allocated.
2506
2507 If @code{FRAME_GROWS_DOWNWARD}, find the next slot's offset by
2508 subtracting the first slot's length from @code{STARTING_FRAME_OFFSET}.
2509 Otherwise, it is found by adding the length of the first slot to the
2510 value @code{STARTING_FRAME_OFFSET}.
2511 @c i'm not sure if the above is still correct.. had to change it to get
2512 @c rid of an overfull.  --mew 2feb93
2513
2514 @findex STACK_POINTER_OFFSET
2515 @item STACK_POINTER_OFFSET
2516 Offset from the stack pointer register to the first location at which
2517 outgoing arguments are placed.  If not specified, the default value of
2518 zero is used.  This is the proper value for most machines.
2519
2520 If @code{ARGS_GROW_DOWNWARD}, this is the offset to the location above
2521 the first location at which outgoing arguments are placed.
2522
2523 @findex FIRST_PARM_OFFSET
2524 @item FIRST_PARM_OFFSET (@var{fundecl})
2525 Offset from the argument pointer register to the first argument's
2526 address.  On some machines it may depend on the data type of the
2527 function.
2528
2529 If @code{ARGS_GROW_DOWNWARD}, this is the offset to the location above
2530 the first argument's address.
2531
2532 @findex STACK_DYNAMIC_OFFSET
2533 @item STACK_DYNAMIC_OFFSET (@var{fundecl})
2534 Offset from the stack pointer register to an item dynamically allocated
2535 on the stack, e.g., by @code{alloca}.
2536
2537 The default value for this macro is @code{STACK_POINTER_OFFSET} plus the
2538 length of the outgoing arguments.  The default is correct for most
2539 machines.  See @file{function.c} for details.
2540
2541 @findex DYNAMIC_CHAIN_ADDRESS
2542 @item DYNAMIC_CHAIN_ADDRESS (@var{frameaddr})
2543 A C expression whose value is RTL representing the address in a stack
2544 frame where the pointer to the caller's frame is stored.  Assume that
2545 @var{frameaddr} is an RTL expression for the address of the stack frame
2546 itself.
2547
2548 If you don't define this macro, the default is to return the value
2549 of @var{frameaddr}---that is, the stack frame address is also the
2550 address of the stack word that points to the previous frame.
2551
2552 @findex SETUP_FRAME_ADDRESSES
2553 @item SETUP_FRAME_ADDRESSES
2554 If defined, a C expression that produces the machine-specific code to
2555 setup the stack so that arbitrary frames can be accessed.  For example,
2556 on the Sparc, we must flush all of the register windows to the stack
2557 before we can access arbitrary stack frames.  You will seldom need to
2558 define this macro.
2559
2560 @findex BUILTIN_SETJMP_FRAME_VALUE
2561 @item BUILTIN_SETJMP_FRAME_VALUE
2562 If defined, a C expression that contains an rtx that is used to store
2563 the address of the current frame into the built in @code{setjmp} buffer.
2564 The default value, @code{virtual_stack_vars_rtx}, is correct for most
2565 machines.  One reason you may need to define this macro is if
2566 @code{hard_frame_pointer_rtx} is the appropriate value on your machine.
2567
2568 @findex RETURN_ADDR_RTX
2569 @item RETURN_ADDR_RTX (@var{count}, @var{frameaddr})
2570 A C expression whose value is RTL representing the value of the return
2571 address for the frame @var{count} steps up from the current frame, after
2572 the prologue.  @var{frameaddr} is the frame pointer of the @var{count}
2573 frame, or the frame pointer of the @var{count} @minus{} 1 frame if
2574 @code{RETURN_ADDR_IN_PREVIOUS_FRAME} is defined.
2575
2576 The value of the expression must always be the correct address when
2577 @var{count} is zero, but may be @code{NULL_RTX} if there is not way to
2578 determine the return address of other frames.
2579
2580 @findex RETURN_ADDR_IN_PREVIOUS_FRAME
2581 @item RETURN_ADDR_IN_PREVIOUS_FRAME
2582 Define this if the return address of a particular stack frame is accessed
2583 from the frame pointer of the previous stack frame.
2584
2585 @findex INCOMING_RETURN_ADDR_RTX
2586 @item INCOMING_RETURN_ADDR_RTX
2587 A C expression whose value is RTL representing the location of the
2588 incoming return address at the beginning of any function, before the
2589 prologue.  This RTL is either a @code{REG}, indicating that the return
2590 value is saved in @samp{REG}, or a @code{MEM} representing a location in
2591 the stack.
2592
2593 You only need to define this macro if you want to support call frame
2594 debugging information like that provided by DWARF 2.
2595
2596 If this RTL is a @code{REG}, you should also define
2597 DWARF_FRAME_RETURN_COLUMN to @code{DWARF_FRAME_REGNUM (REGNO)}.
2598
2599 @findex INCOMING_FRAME_SP_OFFSET
2600 @item INCOMING_FRAME_SP_OFFSET
2601 A C expression whose value is an integer giving the offset, in bytes,
2602 from the value of the stack pointer register to the top of the stack
2603 frame at the beginning of any function, before the prologue.  The top of
2604 the frame is defined to be the value of the stack pointer in the
2605 previous frame, just before the call instruction.
2606
2607 You only need to define this macro if you want to support call frame
2608 debugging information like that provided by DWARF 2.
2609
2610 @findex ARG_POINTER_CFA_OFFSET
2611 @item ARG_POINTER_CFA_OFFSET (@var{fundecl})
2612 A C expression whose value is an integer giving the offset, in bytes,
2613 from the argument pointer to the canonical frame address (cfa).  The
2614 final value should coincide with that calculated by
2615 @code{INCOMING_FRAME_SP_OFFSET}.  Which is unfortunately not usable
2616 during virtual register instantiation.
2617
2618 The default value for this macro is @code{FIRST_PARM_OFFSET (fundecl)},
2619 which is correct for most machines; in general, the arguments are found
2620 immediately before the stack frame.  Note that this is not the case on
2621 some targets that save registers into the caller's frame, such as SPARC
2622 and rs6000, and so such targets need to define this macro.
2623
2624 You only need to define this macro if the default is incorrect, and you
2625 want to support call frame debugging information like that provided by
2626 DWARF 2.
2627
2628 @findex EH_RETURN_DATA_REGNO
2629 @item EH_RETURN_DATA_REGNO (@var{N})
2630 A C expression whose value is the @var{N}th register number used for
2631 data by exception handlers, or @code{INVALID_REGNUM} if fewer than
2632 @var{N} registers are usable.
2633
2634 The exception handling library routines communicate with the exception
2635 handlers via a set of agreed upon registers.  Ideally these registers
2636 should be call-clobbered; it is possible to use call-saved registers,
2637 but may negatively impact code size.  The target must support at least
2638 2 data registers, but should define 4 if there are enough free registers.
2639
2640 You must define this macro if you want to support call frame exception
2641 handling like that provided by DWARF 2.
2642
2643 @findex EH_RETURN_STACKADJ_RTX
2644 @item EH_RETURN_STACKADJ_RTX
2645 A C expression whose value is RTL representing a location in which
2646 to store a stack adjustment to be applied before function return.
2647 This is used to unwind the stack to an exception handler's call frame.
2648 It will be assigned zero on code paths that return normally.
2649
2650 Typically this is a call-clobbered hard register that is otherwise
2651 untouched by the epilogue, but could also be a stack slot.
2652
2653 You must define this macro if you want to support call frame exception
2654 handling like that provided by DWARF 2.
2655
2656 @findex EH_RETURN_HANDLER_RTX
2657 @item EH_RETURN_HANDLER_RTX
2658 A C expression whose value is RTL representing a location in which
2659 to store the address of an exception handler to which we should
2660 return.  It will not be assigned on code paths that return normally.
2661
2662 Typically this is the location in the call frame at which the normal
2663 return address is stored.  For targets that return by popping an
2664 address off the stack, this might be a memory address just below
2665 the @emph{target} call frame rather than inside the current call
2666 frame.  @code{EH_RETURN_STACKADJ_RTX} will have already been assigned,
2667 so it may be used to calculate the location of the target call frame.
2668
2669 Some targets have more complex requirements than storing to an
2670 address calculable during initial code generation.  In that case
2671 the @code{eh_return} instruction pattern should be used instead.
2672
2673 If you want to support call frame exception handling, you must
2674 define either this macro or the @code{eh_return} instruction pattern.
2675
2676 @findex ASM_PREFERRED_EH_DATA_FORMAT
2677 @item ASM_PREFERRED_EH_DATA_FORMAT(@var{CODE}, @var{GLOBAL})
2678 This macro chooses the encoding of pointers embedded in the exception
2679 handling sections.  If at all possible, this should be defined such
2680 that the exception handling section will not require dynamic relocations,
2681 and so may be read-only.
2682
2683 @var{CODE} is 0 for data, 1 for code labels, 2 for function pointers.
2684 @var{GLOBAL} is true if the symbol may be affected by dynamic relocations.
2685 The macro should return a combination of the @code{DW_EH_PE_*} defines
2686 as found in @file{dwarf2.h}.
2687
2688 If this macro is not defined, pointers will not be encoded but
2689 represented directly.
2690
2691 @findex ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX
2692 @item ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX(@var{FILE}, @var{ENCODING}, @var{SIZE}, @var{ADDR}, @var{DONE})
2693 This macro allows the target to emit whatever special magic is required
2694 to represent the encoding chosen by @code{ASM_PREFERRED_EH_DATA_FORMAT}.
2695 Generic code takes care of pc-relative and indirect encodings; this must
2696 be defined if the target uses text-relative or data-relative encodings.
2697
2698 This is a C statement that branches to @var{DONE} if the format was
2699 handled.  @var{ENCODING} is the format chosen, @var{SIZE} is the number
2700 of bytes that the format occupies, @var{ADDR} is the @code{SYMBOL_REF}
2701 to be emitted.
2702
2703 @findex SMALL_STACK
2704 @item SMALL_STACK
2705 Define this macro if the stack size for the target is very small.  This
2706 has the effect of disabling gcc's built-in @samp{alloca}, though
2707 @samp{__builtin_alloca} is not affected.
2708 @end table
2709
2710 @node Stack Checking
2711 @subsection Specifying How Stack Checking is Done
2712
2713 GCC will check that stack references are within the boundaries of
2714 the stack, if the @option{-fstack-check} is specified, in one of three ways:
2715
2716 @enumerate
2717 @item
2718 If the value of the @code{STACK_CHECK_BUILTIN} macro is nonzero, GCC
2719 will assume that you have arranged for stack checking to be done at
2720 appropriate places in the configuration files, e.g., in
2721 @code{FUNCTION_PROLOGUE}.  GCC will do not other special processing.
2722
2723 @item
2724 If @code{STACK_CHECK_BUILTIN} is zero and you defined a named pattern
2725 called @code{check_stack} in your @file{md} file, GCC will call that
2726 pattern with one argument which is the address to compare the stack
2727 value against.  You must arrange for this pattern to report an error if
2728 the stack pointer is out of range.
2729
2730 @item
2731 If neither of the above are true, GCC will generate code to periodically
2732 ``probe'' the stack pointer using the values of the macros defined below.
2733 @end enumerate
2734
2735 Normally, you will use the default values of these macros, so GCC
2736 will use the third approach.
2737
2738 @table @code
2739 @findex STACK_CHECK_BUILTIN
2740 @item STACK_CHECK_BUILTIN
2741 A nonzero value if stack checking is done by the configuration files in a
2742 machine-dependent manner.  You should define this macro if stack checking
2743 is require by the ABI of your machine or if you would like to have to stack
2744 checking in some more efficient way than GCC's portable approach.
2745 The default value of this macro is zero.
2746
2747 @findex STACK_CHECK_PROBE_INTERVAL
2748 @item STACK_CHECK_PROBE_INTERVAL
2749 An integer representing the interval at which GCC must generate stack
2750 probe instructions.  You will normally define this macro to be no larger
2751 than the size of the ``guard pages'' at the end of a stack area.  The
2752 default value of 4096 is suitable for most systems.
2753
2754 @findex STACK_CHECK_PROBE_LOAD
2755 @item STACK_CHECK_PROBE_LOAD
2756 A integer which is nonzero if GCC should perform the stack probe
2757 as a load instruction and zero if GCC should use a store instruction.
2758 The default is zero, which is the most efficient choice on most systems.
2759
2760 @findex STACK_CHECK_PROTECT
2761 @item STACK_CHECK_PROTECT
2762 The number of bytes of stack needed to recover from a stack overflow,
2763 for languages where such a recovery is supported.  The default value of
2764 75 words should be adequate for most machines.
2765
2766 @findex STACK_CHECK_MAX_FRAME_SIZE
2767 @item STACK_CHECK_MAX_FRAME_SIZE
2768 The maximum size of a stack frame, in bytes.  GCC will generate probe
2769 instructions in non-leaf functions to ensure at least this many bytes of
2770 stack are available.  If a stack frame is larger than this size, stack
2771 checking will not be reliable and GCC will issue a warning.  The
2772 default is chosen so that GCC only generates one instruction on most
2773 systems.  You should normally not change the default value of this macro.
2774
2775 @findex STACK_CHECK_FIXED_FRAME_SIZE
2776 @item STACK_CHECK_FIXED_FRAME_SIZE
2777 GCC uses this value to generate the above warning message.  It
2778 represents the amount of fixed frame used by a function, not including
2779 space for any callee-saved registers, temporaries and user variables.
2780 You need only specify an upper bound for this amount and will normally
2781 use the default of four words.
2782
2783 @findex STACK_CHECK_MAX_VAR_SIZE
2784 @item STACK_CHECK_MAX_VAR_SIZE
2785 The maximum size, in bytes, of an object that GCC will place in the
2786 fixed area of the stack frame when the user specifies
2787 @option{-fstack-check}.
2788 GCC computed the default from the values of the above macros and you will
2789 normally not need to override that default.
2790 @end table
2791
2792 @need 2000
2793 @node Frame Registers
2794 @subsection Registers That Address the Stack Frame
2795
2796 @c prevent bad page break with this line
2797 This discusses registers that address the stack frame.
2798
2799 @table @code
2800 @findex STACK_POINTER_REGNUM
2801 @item STACK_POINTER_REGNUM
2802 The register number of the stack pointer register, which must also be a
2803 fixed register according to @code{FIXED_REGISTERS}.  On most machines,
2804 the hardware determines which register this is.
2805
2806 @findex FRAME_POINTER_REGNUM
2807 @item FRAME_POINTER_REGNUM
2808 The register number of the frame pointer register, which is used to
2809 access automatic variables in the stack frame.  On some machines, the
2810 hardware determines which register this is.  On other machines, you can
2811 choose any register you wish for this purpose.
2812
2813 @findex HARD_FRAME_POINTER_REGNUM
2814 @item HARD_FRAME_POINTER_REGNUM
2815 On some machines the offset between the frame pointer and starting
2816 offset of the automatic variables is not known until after register
2817 allocation has been done (for example, because the saved registers are
2818 between these two locations).  On those machines, define
2819 @code{FRAME_POINTER_REGNUM} the number of a special, fixed register to
2820 be used internally until the offset is known, and define
2821 @code{HARD_FRAME_POINTER_REGNUM} to be the actual hard register number
2822 used for the frame pointer.
2823
2824 You should define this macro only in the very rare circumstances when it
2825 is not possible to calculate the offset between the frame pointer and
2826 the automatic variables until after register allocation has been
2827 completed.  When this macro is defined, you must also indicate in your
2828 definition of @code{ELIMINABLE_REGS} how to eliminate
2829 @code{FRAME_POINTER_REGNUM} into either @code{HARD_FRAME_POINTER_REGNUM}
2830 or @code{STACK_POINTER_REGNUM}.
2831
2832 Do not define this macro if it would be the same as
2833 @code{FRAME_POINTER_REGNUM}.
2834
2835 @findex ARG_POINTER_REGNUM
2836 @item ARG_POINTER_REGNUM
2837 The register number of the arg pointer register, which is used to access
2838 the function's argument list.  On some machines, this is the same as the
2839 frame pointer register.  On some machines, the hardware determines which
2840 register this is.  On other machines, you can choose any register you
2841 wish for this purpose.  If this is not the same register as the frame
2842 pointer register, then you must mark it as a fixed register according to
2843 @code{FIXED_REGISTERS}, or arrange to be able to eliminate it
2844 (@pxref{Elimination}).
2845
2846 @findex RETURN_ADDRESS_POINTER_REGNUM
2847 @item RETURN_ADDRESS_POINTER_REGNUM
2848 The register number of the return address pointer register, which is used to
2849 access the current function's return address from the stack.  On some
2850 machines, the return address is not at a fixed offset from the frame
2851 pointer or stack pointer or argument pointer.  This register can be defined
2852 to point to the return address on the stack, and then be converted by
2853 @code{ELIMINABLE_REGS} into either the frame pointer or stack pointer.
2854
2855 Do not define this macro unless there is no other way to get the return
2856 address from the stack.
2857
2858 @findex STATIC_CHAIN_REGNUM
2859 @findex STATIC_CHAIN_INCOMING_REGNUM
2860 @item STATIC_CHAIN_REGNUM
2861 @itemx STATIC_CHAIN_INCOMING_REGNUM
2862 Register numbers used for passing a function's static chain pointer.  If
2863 register windows are used, the register number as seen by the called
2864 function is @code{STATIC_CHAIN_INCOMING_REGNUM}, while the register
2865 number as seen by the calling function is @code{STATIC_CHAIN_REGNUM}.  If
2866 these registers are the same, @code{STATIC_CHAIN_INCOMING_REGNUM} need
2867 not be defined.
2868
2869 The static chain register need not be a fixed register.
2870
2871 If the static chain is passed in memory, these macros should not be
2872 defined; instead, the next two macros should be defined.
2873
2874 @findex STATIC_CHAIN
2875 @findex STATIC_CHAIN_INCOMING
2876 @item STATIC_CHAIN
2877 @itemx STATIC_CHAIN_INCOMING
2878 If the static chain is passed in memory, these macros provide rtx giving
2879 @code{mem} expressions that denote where they are stored.
2880 @code{STATIC_CHAIN} and @code{STATIC_CHAIN_INCOMING} give the locations
2881 as seen by the calling and called functions, respectively.  Often the former
2882 will be at an offset from the stack pointer and the latter at an offset from
2883 the frame pointer.
2884
2885 @findex stack_pointer_rtx
2886 @findex frame_pointer_rtx
2887 @findex arg_pointer_rtx
2888 The variables @code{stack_pointer_rtx}, @code{frame_pointer_rtx}, and
2889 @code{arg_pointer_rtx} will have been initialized prior to the use of these
2890 macros and should be used to refer to those items.
2891
2892 If the static chain is passed in a register, the two previous macros should
2893 be defined instead.
2894 @end table
2895
2896 @node Elimination
2897 @subsection Eliminating Frame Pointer and Arg Pointer
2898
2899 @c prevent bad page break with this line
2900 This is about eliminating the frame pointer and arg pointer.
2901
2902 @table @code
2903 @findex FRAME_POINTER_REQUIRED
2904 @item FRAME_POINTER_REQUIRED
2905 A C expression which is nonzero if a function must have and use a frame
2906 pointer.  This expression is evaluated  in the reload pass.  If its value is
2907 nonzero the function will have a frame pointer.
2908
2909 The expression can in principle examine the current function and decide
2910 according to the facts, but on most machines the constant 0 or the
2911 constant 1 suffices.  Use 0 when the machine allows code to be generated
2912 with no frame pointer, and doing so saves some time or space.  Use 1
2913 when there is no possible advantage to avoiding a frame pointer.
2914
2915 In certain cases, the compiler does not know how to produce valid code
2916 without a frame pointer.  The compiler recognizes those cases and
2917 automatically gives the function a frame pointer regardless of what
2918 @code{FRAME_POINTER_REQUIRED} says.  You don't need to worry about
2919 them.
2920
2921 In a function that does not require a frame pointer, the frame pointer
2922 register can be allocated for ordinary usage, unless you mark it as a
2923 fixed register.  See @code{FIXED_REGISTERS} for more information.
2924
2925 @findex INITIAL_FRAME_POINTER_OFFSET
2926 @findex get_frame_size
2927 @item INITIAL_FRAME_POINTER_OFFSET (@var{depth-var})
2928 A C statement to store in the variable @var{depth-var} the difference
2929 between the frame pointer and the stack pointer values immediately after
2930 the function prologue.  The value would be computed from information
2931 such as the result of @code{get_frame_size ()} and the tables of
2932 registers @code{regs_ever_live} and @code{call_used_regs}.
2933
2934 If @code{ELIMINABLE_REGS} is defined, this macro will be not be used and
2935 need not be defined.  Otherwise, it must be defined even if
2936 @code{FRAME_POINTER_REQUIRED} is defined to always be true; in that
2937 case, you may set @var{depth-var} to anything.
2938
2939 @findex ELIMINABLE_REGS
2940 @item ELIMINABLE_REGS
2941 If defined, this macro specifies a table of register pairs used to
2942 eliminate unneeded registers that point into the stack frame.  If it is not
2943 defined, the only elimination attempted by the compiler is to replace
2944 references to the frame pointer with references to the stack pointer.
2945
2946 The definition of this macro is a list of structure initializations, each
2947 of which specifies an original and replacement register.
2948
2949 On some machines, the position of the argument pointer is not known until
2950 the compilation is completed.  In such a case, a separate hard register
2951 must be used for the argument pointer.  This register can be eliminated by
2952 replacing it with either the frame pointer or the argument pointer,
2953 depending on whether or not the frame pointer has been eliminated.
2954
2955 In this case, you might specify:
2956 @example
2957 #define ELIMINABLE_REGS  \
2958 @{@{ARG_POINTER_REGNUM, STACK_POINTER_REGNUM@}, \
2959  @{ARG_POINTER_REGNUM, FRAME_POINTER_REGNUM@}, \
2960  @{FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM@}@}
2961 @end example
2962
2963 Note that the elimination of the argument pointer with the stack pointer is
2964 specified first since that is the preferred elimination.
2965
2966 @findex CAN_ELIMINATE
2967 @item CAN_ELIMINATE (@var{from-reg}, @var{to-reg})
2968 A C expression that returns non-zero if the compiler is allowed to try
2969 to replace register number @var{from-reg} with register number
2970 @var{to-reg}.  This macro need only be defined if @code{ELIMINABLE_REGS}
2971 is defined, and will usually be the constant 1, since most of the cases
2972 preventing register elimination are things that the compiler already
2973 knows about.
2974
2975 @findex INITIAL_ELIMINATION_OFFSET
2976 @item INITIAL_ELIMINATION_OFFSET (@var{from-reg}, @var{to-reg}, @var{offset-var})
2977 This macro is similar to @code{INITIAL_FRAME_POINTER_OFFSET}.  It
2978 specifies the initial difference between the specified pair of
2979 registers.  This macro must be defined if @code{ELIMINABLE_REGS} is
2980 defined.
2981
2982 @findex LONGJMP_RESTORE_FROM_STACK
2983 @item LONGJMP_RESTORE_FROM_STACK
2984 Define this macro if the @code{longjmp} function restores registers from
2985 the stack frames, rather than from those saved specifically by
2986 @code{setjmp}.  Certain quantities must not be kept in registers across
2987 a call to @code{setjmp} on such machines.
2988 @end table
2989
2990 @node Stack Arguments
2991 @subsection Passing Function Arguments on the Stack
2992 @cindex arguments on stack
2993 @cindex stack arguments
2994
2995 The macros in this section control how arguments are passed
2996 on the stack.  See the following section for other macros that
2997 control passing certain arguments in registers.
2998
2999 @table @code
3000 @findex PROMOTE_PROTOTYPES
3001 @item PROMOTE_PROTOTYPES
3002 A C expression whose value is nonzero if an argument declared in
3003 a prototype as an integral type smaller than @code{int} should
3004 actually be passed as an @code{int}.  In addition to avoiding
3005 errors in certain cases of mismatch, it also makes for better
3006 code on certain machines.  If the macro is not defined in target
3007 header files, it defaults to 0.
3008
3009 @findex PUSH_ARGS
3010 @item PUSH_ARGS
3011 A C expression. If nonzero, push insns will be used to pass
3012 outgoing arguments.
3013 If the target machine does not have a push instruction, set it to zero.
3014 That directs GCC to use an alternate strategy: to
3015 allocate the entire argument block and then store the arguments into
3016 it.  When PUSH_ARGS is nonzero, PUSH_ROUNDING must be defined too.
3017 On some machines, the definition
3018
3019 @findex PUSH_ROUNDING
3020 @item PUSH_ROUNDING (@var{npushed})
3021 A C expression that is the number of bytes actually pushed onto the
3022 stack when an instruction attempts to push @var{npushed} bytes.
3023
3024 On some machines, the definition
3025
3026 @example
3027 #define PUSH_ROUNDING(BYTES) (BYTES)
3028 @end example
3029
3030 @noindent
3031 will suffice.  But on other machines, instructions that appear
3032 to push one byte actually push two bytes in an attempt to maintain
3033 alignment.  Then the definition should be
3034
3035 @example
3036 #define PUSH_ROUNDING(BYTES) (((BYTES) + 1) & ~1)
3037 @end example
3038
3039 @findex ACCUMULATE_OUTGOING_ARGS
3040 @findex current_function_outgoing_args_size
3041 @item ACCUMULATE_OUTGOING_ARGS
3042 A C expression. If nonzero, the maximum amount of space required for outgoing arguments
3043 will be computed and placed into the variable
3044 @code{current_function_outgoing_args_size}.  No space will be pushed
3045 onto the stack for each call; instead, the function prologue should
3046 increase the stack frame size by this amount.
3047
3048 Setting both @code{PUSH_ARGS} and @code{ACCUMULATE_OUTGOING_ARGS}
3049 is not proper.
3050
3051 @findex REG_PARM_STACK_SPACE
3052 @item REG_PARM_STACK_SPACE (@var{fndecl})
3053 Define this macro if functions should assume that stack space has been
3054 allocated for arguments even when their values are passed in
3055 registers.
3056
3057 The value of this macro is the size, in bytes, of the area reserved for
3058 arguments passed in registers for the function represented by @var{fndecl},
3059 which can be zero if GCC is calling a library function.
3060
3061 This space can be allocated by the caller, or be a part of the
3062 machine-dependent stack frame: @code{OUTGOING_REG_PARM_STACK_SPACE} says
3063 which.
3064 @c above is overfull.  not sure what to do.  --mew 5feb93  did
3065 @c something, not sure if it looks good.  --mew 10feb93
3066
3067 @findex MAYBE_REG_PARM_STACK_SPACE
3068 @findex FINAL_REG_PARM_STACK_SPACE
3069 @item MAYBE_REG_PARM_STACK_SPACE
3070 @itemx FINAL_REG_PARM_STACK_SPACE (@var{const_size}, @var{var_size})
3071 Define these macros in addition to the one above if functions might
3072 allocate stack space for arguments even when their values are passed
3073 in registers.  These should be used when the stack space allocated
3074 for arguments in registers is not a simple constant independent of the
3075 function declaration.
3076
3077 The value of the first macro is the size, in bytes, of the area that
3078 we should initially assume would be reserved for arguments passed in registers.
3079
3080 The value of the second macro is the actual size, in bytes, of the area
3081 that will be reserved for arguments passed in registers.  This takes two
3082 arguments: an integer representing the number of bytes of fixed sized
3083 arguments on the stack, and a tree representing the number of bytes of
3084 variable sized arguments on the stack.
3085
3086 When these macros are defined, @code{REG_PARM_STACK_SPACE} will only be
3087 called for libcall functions, the current function, or for a function
3088 being called when it is known that such stack space must be allocated.
3089 In each case this value can be easily computed.
3090
3091 When deciding whether a called function needs such stack space, and how
3092 much space to reserve, GCC uses these two macros instead of
3093 @code{REG_PARM_STACK_SPACE}.
3094
3095 @findex OUTGOING_REG_PARM_STACK_SPACE
3096 @item OUTGOING_REG_PARM_STACK_SPACE
3097 Define this if it is the responsibility of the caller to allocate the area
3098 reserved for arguments passed in registers.
3099
3100 If @code{ACCUMULATE_OUTGOING_ARGS} is defined, this macro controls
3101 whether the space for these arguments counts in the value of
3102 @code{current_function_outgoing_args_size}.
3103
3104 @findex STACK_PARMS_IN_REG_PARM_AREA
3105 @item STACK_PARMS_IN_REG_PARM_AREA
3106 Define this macro if @code{REG_PARM_STACK_SPACE} is defined, but the
3107 stack parameters don't skip the area specified by it.
3108 @c i changed this, makes more sens and it should have taken care of the
3109 @c overfull.. not as specific, tho.  --mew 5feb93
3110
3111 Normally, when a parameter is not passed in registers, it is placed on the
3112 stack beyond the @code{REG_PARM_STACK_SPACE} area.  Defining this macro
3113 suppresses this behavior and causes the parameter to be passed on the
3114 stack in its natural location.
3115
3116 @findex RETURN_POPS_ARGS
3117 @item RETURN_POPS_ARGS (@var{fundecl}, @var{funtype}, @var{stack-size})
3118 A C expression that should indicate the number of bytes of its own
3119 arguments that a function pops on returning, or 0 if the
3120 function pops no arguments and the caller must therefore pop them all
3121 after the function returns.
3122
3123 @var{fundecl} is a C variable whose value is a tree node that describes
3124 the function in question.  Normally it is a node of type
3125 @code{FUNCTION_DECL} that describes the declaration of the function.
3126 From this you can obtain the DECL_MACHINE_ATTRIBUTES of the function.
3127
3128 @var{funtype} is a C variable whose value is a tree node that
3129 describes the function in question.  Normally it is a node of type
3130 @code{FUNCTION_TYPE} that describes the data type of the function.
3131 From this it is possible to obtain the data types of the value and
3132 arguments (if known).
3133
3134 When a call to a library function is being considered, @var{fundecl}
3135 will contain an identifier node for the library function.  Thus, if
3136 you need to distinguish among various library functions, you can do so
3137 by their names.  Note that ``library function'' in this context means
3138 a function used to perform arithmetic, whose name is known specially
3139 in the compiler and was not mentioned in the C code being compiled.
3140
3141 @var{stack-size} is the number of bytes of arguments passed on the
3142 stack.  If a variable number of bytes is passed, it is zero, and
3143 argument popping will always be the responsibility of the calling function.
3144
3145 On the Vax, all functions always pop their arguments, so the definition
3146 of this macro is @var{stack-size}.  On the 68000, using the standard
3147 calling convention, no functions pop their arguments, so the value of
3148 the macro is always 0 in this case.  But an alternative calling
3149 convention is available in which functions that take a fixed number of
3150 arguments pop them but other functions (such as @code{printf}) pop
3151 nothing (the caller pops all).  When this convention is in use,
3152 @var{funtype} is examined to determine whether a function takes a fixed
3153 number of arguments.
3154 @end table
3155
3156 @node Register Arguments
3157 @subsection Passing Arguments in Registers
3158 @cindex arguments in registers
3159 @cindex registers arguments
3160
3161 This section describes the macros which let you control how various
3162 types of arguments are passed in registers or how they are arranged in
3163 the stack.
3164
3165 @table @code
3166 @findex FUNCTION_ARG
3167 @item FUNCTION_ARG (@var{cum}, @var{mode}, @var{type}, @var{named})
3168 A C expression that controls whether a function argument is passed
3169 in a register, and which register.
3170
3171 The arguments are @var{cum}, which summarizes all the previous
3172 arguments; @var{mode}, the machine mode of the argument; @var{type},
3173 the data type of the argument as a tree node or 0 if that is not known
3174 (which happens for C support library functions); and @var{named},
3175 which is 1 for an ordinary argument and 0 for nameless arguments that
3176 correspond to @samp{@dots{}} in the called function's prototype.
3177 @var{type} can be an incomplete type if a syntax error has previously
3178 occurred.
3179
3180 The value of the expression is usually either a @code{reg} RTX for the
3181 hard register in which to pass the argument, or zero to pass the
3182 argument on the stack.
3183
3184 For machines like the Vax and 68000, where normally all arguments are
3185 pushed, zero suffices as a definition.
3186
3187 The value of the expression can also be a @code{parallel} RTX.  This is
3188 used when an argument is passed in multiple locations.  The mode of the
3189 of the @code{parallel} should be the mode of the entire argument.  The
3190 @code{parallel} holds any number of @code{expr_list} pairs; each one
3191 describes where part of the argument is passed.  In each
3192 @code{expr_list} the first operand must be a @code{reg} RTX for the hard
3193 register in which to pass this part of the argument, and the mode of the
3194 register RTX indicates how large this part of the argument is.  The
3195 second operand of the @code{expr_list} is a @code{const_int} which gives
3196 the offset in bytes into the entire argument of where this part starts.
3197 As a special exception the first @code{expr_list} in the @code{parallel}
3198 RTX may have a first operand of zero.  This indicates that the entire
3199 argument is also stored on the stack.
3200
3201 @cindex @file{stdarg.h} and register arguments
3202 The usual way to make the ISO library @file{stdarg.h} work on a machine
3203 where some arguments are usually passed in registers, is to cause
3204 nameless arguments to be passed on the stack instead.  This is done
3205 by making @code{FUNCTION_ARG} return 0 whenever @var{named} is 0.
3206
3207 @cindex @code{MUST_PASS_IN_STACK}, and @code{FUNCTION_ARG}
3208 @cindex @code{REG_PARM_STACK_SPACE}, and @code{FUNCTION_ARG}
3209 You may use the macro @code{MUST_PASS_IN_STACK (@var{mode}, @var{type})}
3210 in the definition of this macro to determine if this argument is of a
3211 type that must be passed in the stack.  If @code{REG_PARM_STACK_SPACE}
3212 is not defined and @code{FUNCTION_ARG} returns non-zero for such an
3213 argument, the compiler will abort.  If @code{REG_PARM_STACK_SPACE} is
3214 defined, the argument will be computed in the stack and then loaded into
3215 a register.
3216
3217 @findex MUST_PASS_IN_STACK
3218 @item MUST_PASS_IN_STACK (@var{mode}, @var{type})
3219 Define as a C expression that evaluates to nonzero if we do not know how
3220 to pass TYPE solely in registers.  The file @file{expr.h} defines a
3221 definition that is usually appropriate, refer to @file{expr.h} for additional
3222 documentation.
3223
3224 @findex FUNCTION_INCOMING_ARG
3225 @item FUNCTION_INCOMING_ARG (@var{cum}, @var{mode}, @var{type}, @var{named})
3226 Define this macro if the target machine has ``register windows'', so
3227 that the register in which a function sees an arguments is not
3228 necessarily the same as the one in which the caller passed the
3229 argument.
3230
3231 For such machines, @code{FUNCTION_ARG} computes the register in which
3232 the caller passes the value, and @code{FUNCTION_INCOMING_ARG} should
3233 be defined in a similar fashion to tell the function being called
3234 where the arguments will arrive.
3235
3236 If @code{FUNCTION_INCOMING_ARG} is not defined, @code{FUNCTION_ARG}
3237 serves both purposes.
3238
3239 @findex FUNCTION_ARG_PARTIAL_NREGS
3240 @item FUNCTION_ARG_PARTIAL_NREGS (@var{cum}, @var{mode}, @var{type}, @var{named})
3241 A C expression for the number of words, at the beginning of an
3242 argument, that must be put in registers.  The value must be zero for
3243 arguments that are passed entirely in registers or that are entirely
3244 pushed on the stack.
3245
3246 On some machines, certain arguments must be passed partially in
3247 registers and partially in memory.  On these machines, typically the
3248 first @var{n} words of arguments are passed in registers, and the rest
3249 on the stack.  If a multi-word argument (a @code{double} or a
3250 structure) crosses that boundary, its first few words must be passed
3251 in registers and the rest must be pushed.  This macro tells the
3252 compiler when this occurs, and how many of the words should go in
3253 registers.
3254
3255 @code{FUNCTION_ARG} for these arguments should return the first
3256 register to be used by the caller for this argument; likewise
3257 @code{FUNCTION_INCOMING_ARG}, for the called function.
3258
3259 @findex FUNCTION_ARG_PASS_BY_REFERENCE
3260 @item FUNCTION_ARG_PASS_BY_REFERENCE (@var{cum}, @var{mode}, @var{type}, @var{named})
3261 A C expression that indicates when an argument must be passed by reference.
3262 If nonzero for an argument, a copy of that argument is made in memory and a
3263 pointer to the argument is passed instead of the argument itself.
3264 The pointer is passed in whatever way is appropriate for passing a pointer
3265 to that type.
3266
3267 On machines where @code{REG_PARM_STACK_SPACE} is not defined, a suitable
3268 definition of this macro might be
3269 @smallexample
3270 #define FUNCTION_ARG_PASS_BY_REFERENCE\
3271 (CUM, MODE, TYPE, NAMED)  \
3272   MUST_PASS_IN_STACK (MODE, TYPE)
3273 @end smallexample
3274 @c this is *still* too long.  --mew 5feb93
3275
3276 @findex FUNCTION_ARG_CALLEE_COPIES
3277 @item FUNCTION_ARG_CALLEE_COPIES (@var{cum}, @var{mode}, @var{type}, @var{named})
3278 If defined, a C expression that indicates when it is the called function's
3279 responsibility to make a copy of arguments passed by invisible reference.
3280 Normally, the caller makes a copy and passes the address of the copy to the
3281 routine being called.  When FUNCTION_ARG_CALLEE_COPIES is defined and is
3282 nonzero, the caller does not make a copy.  Instead, it passes a pointer to the
3283 ``live'' value.  The called function must not modify this value.  If it can be
3284 determined that the value won't be modified, it need not make a copy;
3285 otherwise a copy must be made.
3286
3287 @findex CUMULATIVE_ARGS
3288 @item CUMULATIVE_ARGS
3289 A C type for declaring a variable that is used as the first argument of
3290 @code{FUNCTION_ARG} and other related values.  For some target machines,
3291 the type @code{int} suffices and can hold the number of bytes of
3292 argument so far.
3293
3294 There is no need to record in @code{CUMULATIVE_ARGS} anything about the
3295 arguments that have been passed on the stack.  The compiler has other
3296 variables to keep track of that.  For target machines on which all
3297 arguments are passed on the stack, there is no need to store anything in
3298 @code{CUMULATIVE_ARGS}; however, the data structure must exist and
3299 should not be empty, so use @code{int}.
3300
3301 @findex INIT_CUMULATIVE_ARGS
3302 @item INIT_CUMULATIVE_ARGS (@var{cum}, @var{fntype}, @var{libname}, @var{indirect})
3303 A C statement (sans semicolon) for initializing the variable @var{cum}
3304 for the state at the beginning of the argument list.  The variable has
3305 type @code{CUMULATIVE_ARGS}.  The value of @var{fntype} is the tree node
3306 for the data type of the function which will receive the args, or 0
3307 if the args are to a compiler support library function.  The value of
3308 @var{indirect} is nonzero when processing an indirect call, for example
3309 a call through a function pointer.  The value of @var{indirect} is zero
3310 for a call to an explicitly named function, a library function call, or when
3311 @code{INIT_CUMULATIVE_ARGS} is used to find arguments for the function
3312 being compiled.
3313
3314 When processing a call to a compiler support library function,
3315 @var{libname} identifies which one.  It is a @code{symbol_ref} rtx which
3316 contains the name of the function, as a string.  @var{libname} is 0 when
3317 an ordinary C function call is being processed.  Thus, each time this
3318 macro is called, either @var{libname} or @var{fntype} is nonzero, but
3319 never both of them at once.
3320
3321 @findex INIT_CUMULATIVE_LIBCALL_ARGS
3322 @item INIT_CUMULATIVE_LIBCALL_ARGS (@var{cum}, @var{mode}, @var{libname})
3323 Like @code{INIT_CUMULATIVE_ARGS} but only used for outgoing libcalls,
3324 it gets a @code{MODE} argument instead of @var{fntype}, that would be
3325 @code{NULL}.  @var{indirect} would always be zero, too.  If this macro
3326 is not defined, @code{INIT_CUMULATIVE_ARGS (cum, NULL_RTX, libname,
3327 0)} is used instead.
3328
3329 @findex INIT_CUMULATIVE_INCOMING_ARGS
3330 @item INIT_CUMULATIVE_INCOMING_ARGS (@var{cum}, @var{fntype}, @var{libname})
3331 Like @code{INIT_CUMULATIVE_ARGS} but overrides it for the purposes of
3332 finding the arguments for the function being compiled.  If this macro is
3333 undefined, @code{INIT_CUMULATIVE_ARGS} is used instead.
3334
3335 The value passed for @var{libname} is always 0, since library routines
3336 with special calling conventions are never compiled with GCC.  The
3337 argument @var{libname} exists for symmetry with
3338 @code{INIT_CUMULATIVE_ARGS}.
3339 @c could use "this macro" in place of @code{INIT_CUMULATIVE_ARGS}, maybe.
3340 @c --mew 5feb93   i switched the order of the sentences.  --mew 10feb93
3341
3342 @findex FUNCTION_ARG_ADVANCE
3343 @item FUNCTION_ARG_ADVANCE (@var{cum}, @var{mode}, @var{type}, @var{named})
3344 A C statement (sans semicolon) to update the summarizer variable
3345 @var{cum} to advance past an argument in the argument list.  The
3346 values @var{mode}, @var{type} and @var{named} describe that argument.
3347 Once this is done, the variable @var{cum} is suitable for analyzing
3348 the @emph{following} argument with @code{FUNCTION_ARG}, etc.
3349
3350 This macro need not do anything if the argument in question was passed
3351 on the stack.  The compiler knows how to track the amount of stack space
3352 used for arguments without any special help.
3353
3354 @findex FUNCTION_ARG_PADDING
3355 @item FUNCTION_ARG_PADDING (@var{mode}, @var{type})
3356 If defined, a C expression which determines whether, and in which direction,
3357 to pad out an argument with extra space.  The value should be of type
3358 @code{enum direction}: either @code{upward} to pad above the argument,
3359 @code{downward} to pad below, or @code{none} to inhibit padding.
3360
3361 The @emph{amount} of padding is always just enough to reach the next
3362 multiple of @code{FUNCTION_ARG_BOUNDARY}; this macro does not control
3363 it.
3364
3365 This macro has a default definition which is right for most systems.
3366 For little-endian machines, the default is to pad upward.  For
3367 big-endian machines, the default is to pad downward for an argument of
3368 constant size shorter than an @code{int}, and upward otherwise.
3369
3370 @findex PAD_VARARGS_DOWN
3371 @item PAD_VARARGS_DOWN
3372 If defined, a C expression which determines whether the default
3373 implementation of va_arg will attempt to pad down before reading the
3374 next argument, if that argument is smaller than its aligned space as
3375 controlled by @code{PARM_BOUNDARY}.  If this macro is not defined, all such
3376 arguments are padded down if @code{BYTES_BIG_ENDIAN} is true.
3377
3378 @findex FUNCTION_ARG_BOUNDARY
3379 @item FUNCTION_ARG_BOUNDARY (@var{mode}, @var{type})
3380 If defined, a C expression that gives the alignment boundary, in bits,
3381 of an argument with the specified mode and type.  If it is not defined,
3382 @code{PARM_BOUNDARY} is used for all arguments.
3383
3384 @findex FUNCTION_ARG_REGNO_P
3385 @item FUNCTION_ARG_REGNO_P (@var{regno})
3386 A C expression that is nonzero if @var{regno} is the number of a hard
3387 register in which function arguments are sometimes passed.  This does
3388 @emph{not} include implicit arguments such as the static chain and
3389 the structure-value address.  On many machines, no registers can be
3390 used for this purpose since all function arguments are pushed on the
3391 stack.
3392
3393 @findex LOAD_ARGS_REVERSED
3394 @item LOAD_ARGS_REVERSED
3395 If defined, the order in which arguments are loaded into their
3396 respective argument registers is reversed so that the last
3397 argument is loaded first.  This macro only affects arguments
3398 passed in registers.
3399
3400 @end table
3401
3402 @node Scalar Return
3403 @subsection How Scalar Function Values Are Returned
3404 @cindex return values in registers
3405 @cindex values, returned by functions
3406 @cindex scalars, returned as values
3407
3408 This section discusses the macros that control returning scalars as
3409 values---values that can fit in registers.
3410
3411 @table @code
3412 @findex TRADITIONAL_RETURN_FLOAT
3413 @item TRADITIONAL_RETURN_FLOAT
3414 Define this macro if @option{-traditional} should not cause functions
3415 declared to return @code{float} to convert the value to @code{double}.
3416
3417 @findex FUNCTION_VALUE
3418 @item FUNCTION_VALUE (@var{valtype}, @var{func})
3419 A C expression to create an RTX representing the place where a
3420 function returns a value of data type @var{valtype}.  @var{valtype} is
3421 a tree node representing a data type.  Write @code{TYPE_MODE
3422 (@var{valtype})} to get the machine mode used to represent that type.
3423 On many machines, only the mode is relevant.  (Actually, on most
3424 machines, scalar values are returned in the same place regardless of
3425 mode).
3426
3427 The value of the expression is usually a @code{reg} RTX for the hard
3428 register where the return value is stored.  The value can also be a
3429 @code{parallel} RTX, if the return value is in multiple places.  See
3430 @code{FUNCTION_ARG} for an explanation of the @code{parallel} form.
3431
3432 If @code{PROMOTE_FUNCTION_RETURN} is defined, you must apply the same
3433 promotion rules specified in @code{PROMOTE_MODE} if @var{valtype} is a
3434 scalar type.
3435
3436 If the precise function being called is known, @var{func} is a tree
3437 node (@code{FUNCTION_DECL}) for it; otherwise, @var{func} is a null
3438 pointer.  This makes it possible to use a different value-returning
3439 convention for specific functions when all their calls are
3440 known.
3441
3442 @code{FUNCTION_VALUE} is not used for return vales with aggregate data
3443 types, because these are returned in another way.  See
3444 @code{STRUCT_VALUE_REGNUM} and related macros, below.
3445
3446 @findex FUNCTION_OUTGOING_VALUE
3447 @item FUNCTION_OUTGOING_VALUE (@var{valtype}, @var{func})
3448 Define this macro if the target machine has ``register windows''
3449 so that the register in which a function returns its value is not
3450 the same as the one in which the caller sees the value.
3451
3452 For such machines, @code{FUNCTION_VALUE} computes the register in which
3453 the caller will see the value.  @code{FUNCTION_OUTGOING_VALUE} should be
3454 defined in a similar fashion to tell the function where to put the
3455 value.
3456
3457 If @code{FUNCTION_OUTGOING_VALUE} is not defined,
3458 @code{FUNCTION_VALUE} serves both purposes.
3459
3460 @code{FUNCTION_OUTGOING_VALUE} is not used for return vales with
3461 aggregate data types, because these are returned in another way.  See
3462 @code{STRUCT_VALUE_REGNUM} and related macros, below.
3463
3464 @findex LIBCALL_VALUE
3465 @item LIBCALL_VALUE (@var{mode})
3466 A C expression to create an RTX representing the place where a library
3467 function returns a value of mode @var{mode}.  If the precise function
3468 being called is known, @var{func} is a tree node
3469 (@code{FUNCTION_DECL}) for it; otherwise, @var{func} is a null
3470 pointer.  This makes it possible to use a different value-returning
3471 convention for specific functions when all their calls are
3472 known.
3473
3474 Note that ``library function'' in this context means a compiler
3475 support routine, used to perform arithmetic, whose name is known
3476 specially by the compiler and was not mentioned in the C code being
3477 compiled.
3478
3479 The definition of @code{LIBRARY_VALUE} need not be concerned aggregate
3480 data types, because none of the library functions returns such types.
3481
3482 @findex FUNCTION_VALUE_REGNO_P
3483 @item FUNCTION_VALUE_REGNO_P (@var{regno})
3484 A C expression that is nonzero if @var{regno} is the number of a hard
3485 register in which the values of called function may come back.
3486
3487 A register whose use for returning values is limited to serving as the
3488 second of a pair (for a value of type @code{double}, say) need not be
3489 recognized by this macro.  So for most machines, this definition
3490 suffices:
3491
3492 @example
3493 #define FUNCTION_VALUE_REGNO_P(N) ((N) == 0)
3494 @end example
3495
3496 If the machine has register windows, so that the caller and the called
3497 function use different registers for the return value, this macro
3498 should recognize only the caller's register numbers.
3499
3500 @findex APPLY_RESULT_SIZE
3501 @item APPLY_RESULT_SIZE
3502 Define this macro if @samp{untyped_call} and @samp{untyped_return}
3503 need more space than is implied by @code{FUNCTION_VALUE_REGNO_P} for
3504 saving and restoring an arbitrary return value.
3505 @end table
3506
3507 @node Aggregate Return
3508 @subsection How Large Values Are Returned
3509 @cindex aggregates as return values
3510 @cindex large return values
3511 @cindex returning aggregate values
3512 @cindex structure value address
3513
3514 When a function value's mode is @code{BLKmode} (and in some other
3515 cases), the value is not returned according to @code{FUNCTION_VALUE}
3516 (@pxref{Scalar Return}).  Instead, the caller passes the address of a
3517 block of memory in which the value should be stored.  This address
3518 is called the @dfn{structure value address}.
3519
3520 This section describes how to control returning structure values in
3521 memory.
3522
3523 @table @code
3524 @findex RETURN_IN_MEMORY
3525 @item RETURN_IN_MEMORY (@var{type})
3526 A C expression which can inhibit the returning of certain function
3527 values in registers, based on the type of value.  A nonzero value says
3528 to return the function value in memory, just as large structures are
3529 always returned.  Here @var{type} will be a C expression of type
3530 @code{tree}, representing the data type of the value.
3531
3532 Note that values of mode @code{BLKmode} must be explicitly handled
3533 by this macro.  Also, the option @option{-fpcc-struct-return}
3534 takes effect regardless of this macro.  On most systems, it is
3535 possible to leave the macro undefined; this causes a default
3536 definition to be used, whose value is the constant 1 for @code{BLKmode}
3537 values, and 0 otherwise.
3538
3539 Do not use this macro to indicate that structures and unions should always
3540 be returned in memory.  You should instead use @code{DEFAULT_PCC_STRUCT_RETURN}
3541 to indicate this.
3542
3543 @findex DEFAULT_PCC_STRUCT_RETURN
3544 @item DEFAULT_PCC_STRUCT_RETURN
3545 Define this macro to be 1 if all structure and union return values must be
3546 in memory.  Since this results in slower code, this should be defined
3547 only if needed for compatibility with other compilers or with an ABI.
3548 If you define this macro to be 0, then the conventions used for structure
3549 and union return values are decided by the @code{RETURN_IN_MEMORY} macro.
3550
3551 If not defined, this defaults to the value 1.
3552
3553 @findex STRUCT_VALUE_REGNUM
3554 @item STRUCT_VALUE_REGNUM
3555 If the structure value address is passed in a register, then
3556 @code{STRUCT_VALUE_REGNUM} should be the number of that register.
3557
3558 @findex STRUCT_VALUE
3559 @item STRUCT_VALUE
3560 If the structure value address is not passed in a register, define
3561 @code{STRUCT_VALUE} as an expression returning an RTX for the place
3562 where the address is passed.  If it returns 0, the address is passed as
3563 an ``invisible'' first argument.
3564
3565 @findex STRUCT_VALUE_INCOMING_REGNUM
3566 @item STRUCT_VALUE_INCOMING_REGNUM
3567 On some architectures the place where the structure value address
3568 is found by the called function is not the same place that the
3569 caller put it.  This can be due to register windows, or it could
3570 be because the function prologue moves it to a different place.
3571
3572 If the incoming location of the structure value address is in a
3573 register, define this macro as the register number.
3574
3575 @findex STRUCT_VALUE_INCOMING
3576 @item STRUCT_VALUE_INCOMING
3577 If the incoming location is not a register, then you should define
3578 @code{STRUCT_VALUE_INCOMING} as an expression for an RTX for where the
3579 called function should find the value.  If it should find the value on
3580 the stack, define this to create a @code{mem} which refers to the frame
3581 pointer.  A definition of 0 means that the address is passed as an
3582 ``invisible'' first argument.
3583
3584 @findex PCC_STATIC_STRUCT_RETURN
3585 @item PCC_STATIC_STRUCT_RETURN
3586 Define this macro if the usual system convention on the target machine
3587 for returning structures and unions is for the called function to return
3588 the address of a static variable containing the value.
3589
3590 Do not define this if the usual system convention is for the caller to
3591 pass an address to the subroutine.
3592
3593 This macro has effect in @option{-fpcc-struct-return} mode, but it does
3594 nothing when you use @option{-freg-struct-return} mode.
3595 @end table
3596
3597 @node Caller Saves
3598 @subsection Caller-Saves Register Allocation
3599
3600 If you enable it, GCC can save registers around function calls.  This
3601 makes it possible to use call-clobbered registers to hold variables that
3602 must live across calls.
3603
3604 @table @code
3605 @findex DEFAULT_CALLER_SAVES
3606 @item DEFAULT_CALLER_SAVES
3607 Define this macro if function calls on the target machine do not preserve
3608 any registers; in other words, if @code{CALL_USED_REGISTERS} has 1
3609 for all registers.  When defined, this macro enables @option{-fcaller-saves}
3610 by default for all optimization levels.  It has no effect for optimization
3611 levels 2 and higher, where @option{-fcaller-saves} is the default.
3612
3613 @findex CALLER_SAVE_PROFITABLE
3614 @item CALLER_SAVE_PROFITABLE (@var{refs}, @var{calls})
3615 A C expression to determine whether it is worthwhile to consider placing
3616 a pseudo-register in a call-clobbered hard register and saving and
3617 restoring it around each function call.  The expression should be 1 when
3618 this is worth doing, and 0 otherwise.
3619
3620 If you don't define this macro, a default is used which is good on most
3621 machines: @code{4 * @var{calls} < @var{refs}}.
3622
3623 @findex HARD_REGNO_CALLER_SAVE_MODE
3624 @item HARD_REGNO_CALLER_SAVE_MODE (@var{regno}, @var{nregs})
3625 A C expression specifying which mode is required for saving @var{nregs}
3626 of a pseudo-register in call-clobbered hard register @var{regno}.  If
3627 @var{regno} is unsuitable for caller save, @code{VOIDmode} should be
3628 returned.  For most machines this macro need not be defined since GCC
3629 will select the smallest suitable mode.
3630 @end table
3631
3632 @node Function Entry
3633 @subsection Function Entry and Exit
3634 @cindex function entry and exit
3635 @cindex prologue
3636 @cindex epilogue
3637
3638 This section describes the macros that output function entry
3639 (@dfn{prologue}) and exit (@dfn{epilogue}) code.
3640
3641 @table @code
3642 @findex FUNCTION_PROLOGUE
3643 @item FUNCTION_PROLOGUE (@var{file}, @var{size})
3644 A C compound statement that outputs the assembler code for entry to a
3645 function.  The prologue is responsible for setting up the stack frame,
3646 initializing the frame pointer register, saving registers that must be
3647 saved, and allocating @var{size} additional bytes of storage for the
3648 local variables.  @var{size} is an integer.  @var{file} is a stdio
3649 stream to which the assembler code should be output.
3650
3651 The label for the beginning of the function need not be output by this
3652 macro.  That has already been done when the macro is run.
3653
3654 @findex regs_ever_live
3655 To determine which registers to save, the macro can refer to the array
3656 @code{regs_ever_live}: element @var{r} is nonzero if hard register
3657 @var{r} is used anywhere within the function.  This implies the function
3658 prologue should save register @var{r}, provided it is not one of the
3659 call-used registers.  (@code{FUNCTION_EPILOGUE} must likewise use
3660 @code{regs_ever_live}.)
3661
3662 On machines that have ``register windows'', the function entry code does
3663 not save on the stack the registers that are in the windows, even if
3664 they are supposed to be preserved by function calls; instead it takes
3665 appropriate steps to ``push'' the register stack, if any non-call-used
3666 registers are used in the function.
3667
3668 @findex frame_pointer_needed
3669 On machines where functions may or may not have frame-pointers, the
3670 function entry code must vary accordingly; it must set up the frame
3671 pointer if one is wanted, and not otherwise.  To determine whether a
3672 frame pointer is in wanted, the macro can refer to the variable
3673 @code{frame_pointer_needed}.  The variable's value will be 1 at run
3674 time in a function that needs a frame pointer.  @xref{Elimination}.
3675
3676 The function entry code is responsible for allocating any stack space
3677 required for the function.  This stack space consists of the regions
3678 listed below.  In most cases, these regions are allocated in the
3679 order listed, with the last listed region closest to the top of the
3680 stack (the lowest address if @code{STACK_GROWS_DOWNWARD} is defined, and
3681 the highest address if it is not defined).  You can use a different order
3682 for a machine if doing so is more convenient or required for
3683 compatibility reasons.  Except in cases where required by standard
3684 or by a debugger, there is no reason why the stack layout used by GCC
3685 need agree with that used by other compilers for a machine.
3686
3687 @itemize @bullet
3688 @item
3689 @findex current_function_pretend_args_size
3690 A region of @code{current_function_pretend_args_size} bytes of
3691 uninitialized space just underneath the first argument arriving on the
3692 stack.  (This may not be at the very start of the allocated stack region
3693 if the calling sequence has pushed anything else since pushing the stack
3694 arguments.  But usually, on such machines, nothing else has been pushed
3695 yet, because the function prologue itself does all the pushing.)  This
3696 region is used on machines where an argument may be passed partly in
3697 registers and partly in memory, and, in some cases to support the
3698 features in @file{varargs.h} and @file{stdarg.h}.
3699
3700 @item
3701 An area of memory used to save certain registers used by the function.
3702 The size of this area, which may also include space for such things as
3703 the return address and pointers to previous stack frames, is
3704 machine-specific and usually depends on which registers have been used
3705 in the function.  Machines with register windows often do not require
3706 a save area.
3707
3708 @item
3709 A region of at least @var{size} bytes, possibly rounded up to an allocation
3710 boundary, to contain the local variables of the function.  On some machines,
3711 this region and the save area may occur in the opposite order, with the
3712 save area closer to the top of the stack.
3713
3714 @item
3715 @cindex @code{ACCUMULATE_OUTGOING_ARGS} and stack frames
3716 Optionally, when @code{ACCUMULATE_OUTGOING_ARGS} is defined, a region of
3717 @code{current_function_outgoing_args_size} bytes to be used for outgoing
3718 argument lists of the function.  @xref{Stack Arguments}.
3719 @end itemize
3720
3721 Normally, it is necessary for the macros @code{FUNCTION_PROLOGUE} and
3722 @code{FUNCTION_EPILOGUE} to treat leaf functions specially.  The C
3723 variable @code{current_function_is_leaf} is nonzero for such a function.
3724
3725 @findex EXIT_IGNORE_STACK
3726 @item EXIT_IGNORE_STACK
3727 Define this macro as a C expression that is nonzero if the return
3728 instruction or the function epilogue ignores the value of the stack
3729 pointer; in other words, if it is safe to delete an instruction to
3730 adjust the stack pointer before a return from the function.
3731
3732 Note that this macro's value is relevant only for functions for which
3733 frame pointers are maintained.  It is never safe to delete a final
3734 stack adjustment in a function that has no frame pointer, and the
3735 compiler knows this regardless of @code{EXIT_IGNORE_STACK}.
3736
3737 @findex EPILOGUE_USES
3738 @item EPILOGUE_USES (@var{regno})
3739 Define this macro as a C expression that is nonzero for registers that are
3740 used by the epilogue or the @samp{return} pattern.  The stack and frame
3741 pointer registers are already be assumed to be used as needed.
3742
3743 @findex FUNCTION_EPILOGUE
3744 @item FUNCTION_EPILOGUE (@var{file}, @var{size})
3745 A C compound statement that outputs the assembler code for exit from a
3746 function.  The epilogue is responsible for restoring the saved
3747 registers and stack pointer to their values when the function was
3748 called, and returning control to the caller.  This macro takes the
3749 same arguments as the macro @code{FUNCTION_PROLOGUE}, and the
3750 registers to restore are determined from @code{regs_ever_live} and
3751 @code{CALL_USED_REGISTERS} in the same way.
3752
3753 On some machines, there is a single instruction that does all the work
3754 of returning from the function.  On these machines, give that
3755 instruction the name @samp{return} and do not define the macro
3756 @code{FUNCTION_EPILOGUE} at all.
3757
3758 Do not define a pattern named @samp{return} if you want the
3759 @code{FUNCTION_EPILOGUE} to be used.  If you want the target switches
3760 to control whether return instructions or epilogues are used, define a
3761 @samp{return} pattern with a validity condition that tests the target
3762 switches appropriately.  If the @samp{return} pattern's validity
3763 condition is false, epilogues will be used.
3764
3765 On machines where functions may or may not have frame-pointers, the
3766 function exit code must vary accordingly.  Sometimes the code for these
3767 two cases is completely different.  To determine whether a frame pointer
3768 is wanted, the macro can refer to the variable
3769 @code{frame_pointer_needed}.  The variable's value will be 1 when compiling
3770 a function that needs a frame pointer.
3771
3772 Normally, @code{FUNCTION_PROLOGUE} and @code{FUNCTION_EPILOGUE} must
3773 treat leaf functions specially.  The C variable @code{current_function_is_leaf}
3774 is nonzero for such a function.  @xref{Leaf Functions}.
3775
3776 On some machines, some functions pop their arguments on exit while
3777 others leave that for the caller to do.  For example, the 68020 when
3778 given @option{-mrtd} pops arguments in functions that take a fixed
3779 number of arguments.
3780
3781 @findex current_function_pops_args
3782 Your definition of the macro @code{RETURN_POPS_ARGS} decides which
3783 functions pop their own arguments.  @code{FUNCTION_EPILOGUE} needs to
3784 know what was decided.  The variable that is called
3785 @code{current_function_pops_args} is the number of bytes of its
3786 arguments that a function should pop.  @xref{Scalar Return}.
3787 @c what is the "its arguments" in the above sentence referring to, pray
3788 @c tell?  --mew 5feb93
3789
3790 @findex DELAY_SLOTS_FOR_EPILOGUE
3791 @item DELAY_SLOTS_FOR_EPILOGUE
3792 Define this macro if the function epilogue contains delay slots to which
3793 instructions from the rest of the function can be ``moved''.  The
3794 definition should be a C expression whose value is an integer
3795 representing the number of delay slots there.
3796
3797 @findex ELIGIBLE_FOR_EPILOGUE_DELAY
3798 @item ELIGIBLE_FOR_EPILOGUE_DELAY (@var{insn}, @var{n})
3799 A C expression that returns 1 if @var{insn} can be placed in delay
3800 slot number @var{n} of the epilogue.
3801
3802 The argument @var{n} is an integer which identifies the delay slot now
3803 being considered (since different slots may have different rules of
3804 eligibility).  It is never negative and is always less than the number
3805 of epilogue delay slots (what @code{DELAY_SLOTS_FOR_EPILOGUE} returns).
3806 If you reject a particular insn for a given delay slot, in principle, it
3807 may be reconsidered for a subsequent delay slot.  Also, other insns may
3808 (at least in principle) be considered for the so far unfilled delay
3809 slot.
3810
3811 @findex current_function_epilogue_delay_list
3812 @findex final_scan_insn
3813 The insns accepted to fill the epilogue delay slots are put in an RTL
3814 list made with @code{insn_list} objects, stored in the variable
3815 @code{current_function_epilogue_delay_list}.  The insn for the first
3816 delay slot comes first in the list.  Your definition of the macro
3817 @code{FUNCTION_EPILOGUE} should fill the delay slots by outputting the
3818 insns in this list, usually by calling @code{final_scan_insn}.
3819
3820 You need not define this macro if you did not define
3821 @code{DELAY_SLOTS_FOR_EPILOGUE}.
3822
3823 @findex ASM_OUTPUT_MI_THUNK
3824 @item ASM_OUTPUT_MI_THUNK (@var{file}, @var{thunk_fndecl}, @var{delta}, @var{function})
3825 A C compound statement that outputs the assembler code for a thunk
3826 function, used to implement C++ virtual function calls with multiple
3827 inheritance.  The thunk acts as a wrapper around a virtual function,
3828 adjusting the implicit object parameter before handing control off to
3829 the real function.
3830
3831 First, emit code to add the integer @var{delta} to the location that
3832 contains the incoming first argument.  Assume that this argument
3833 contains a pointer, and is the one used to pass the @code{this} pointer
3834 in C++.  This is the incoming argument @emph{before} the function prologue,
3835 e.g. @samp{%o0} on a sparc.  The addition must preserve the values of
3836 all other incoming arguments.
3837
3838 After the addition, emit code to jump to @var{function}, which is a
3839 @code{FUNCTION_DECL}.  This is a direct pure jump, not a call, and does
3840 not touch the return address.  Hence returning from @var{FUNCTION} will
3841 return to whoever called the current @samp{thunk}.
3842
3843 The effect must be as if @var{function} had been called directly with
3844 the adjusted first argument.  This macro is responsible for emitting all
3845 of the code for a thunk function; @code{FUNCTION_PROLOGUE} and
3846 @code{FUNCTION_EPILOGUE} are not invoked.
3847
3848 The @var{thunk_fndecl} is redundant.  (@var{delta} and @var{function}
3849 have already been extracted from it.)  It might possibly be useful on
3850 some targets, but probably not.
3851
3852 If you do not define this macro, the target-independent code in the C++
3853 front end will generate a less efficient heavyweight thunk that calls
3854 @var{function} instead of jumping to it.  The generic approach does
3855 not support varargs.
3856 @end table
3857
3858 @node Profiling
3859 @subsection Generating Code for Profiling
3860 @cindex profiling, code generation
3861
3862 These macros will help you generate code for profiling.
3863
3864 @table @code
3865 @findex FUNCTION_PROFILER
3866 @item FUNCTION_PROFILER (@var{file}, @var{labelno})
3867 A C statement or compound statement to output to @var{file} some
3868 assembler code to call the profiling subroutine @code{mcount}.
3869
3870 @findex mcount
3871 The details of how @code{mcount} expects to be called are determined by
3872 your operating system environment, not by GCC.  To figure them out,
3873 compile a small program for profiling using the system's installed C
3874 compiler and look at the assembler code that results.
3875
3876 Older implementations of @code{mcount} expect the address of a counter
3877 variable to be loaded into some register.  The name of this variable is
3878 @samp{LP} followed by the number @var{labelno}, so you would generate
3879 the name using @samp{LP%d} in a @code{fprintf}.
3880
3881 @findex PROFILE_HOOK
3882 @item PROFILE_HOOK
3883 A C statement or compound statement to output to @var{file} some assembly
3884 code to call the profiling subroutine @code{mcount} even the target does
3885 not support profiling.
3886
3887 @findex NO_PROFILE_COUNTERS
3888 @item NO_PROFILE_COUNTERS
3889 Define this macro if the @code{mcount} subroutine on your system does
3890 not need a counter variable allocated for each function.  This is true
3891 for almost all modern implementations.  If you define this macro, you
3892 must not use the @var{labelno} argument to @code{FUNCTION_PROFILER}.
3893
3894 @findex PROFILE_BEFORE_PROLOGUE
3895 @item PROFILE_BEFORE_PROLOGUE
3896 Define this macro if the code for function profiling should come before
3897 the function prologue.  Normally, the profiling code comes after.
3898
3899 @findex FUNCTION_BLOCK_PROFILER
3900 @vindex profile_block_flag
3901 @item FUNCTION_BLOCK_PROFILER (@var{file}, @var{labelno})
3902 A C statement or compound statement to output to @var{file} some
3903 assembler code to initialize basic-block profiling for the current
3904 object module.  The global compile flag @code{profile_block_flag}
3905 distinguishes two profile modes.
3906
3907 @table @code
3908 @findex __bb_init_func
3909 @item profile_block_flag != 2
3910 Output code to call the subroutine @code{__bb_init_func} once per
3911 object module, passing it as its sole argument the address of a block
3912 allocated in the object module.
3913
3914 The name of the block is a local symbol made with this statement:
3915
3916 @smallexample
3917 ASM_GENERATE_INTERNAL_LABEL (@var{buffer}, "LPBX", 0);
3918 @end smallexample
3919
3920 Of course, since you are writing the definition of
3921 @code{ASM_GENERATE_INTERNAL_LABEL} as well as that of this macro, you
3922 can take a short cut in the definition of this macro and use the name
3923 that you know will result.
3924
3925 The first word of this block is a flag which will be nonzero if the
3926 object module has already been initialized.  So test this word first,
3927 and do not call @code{__bb_init_func} if the flag is
3928 nonzero.  BLOCK_OR_LABEL contains a unique number which may be used to
3929 generate a label as a branch destination when @code{__bb_init_func}
3930 will not be called.
3931
3932 Described in assembler language, the code to be output looks like:
3933
3934 @example
3935   cmp (LPBX0),0
3936   bne local_label
3937   parameter1 <- LPBX0
3938   call __bb_init_func
3939 local_label:
3940 @end example
3941
3942 @findex __bb_init_trace_func
3943 @item profile_block_flag == 2
3944 Output code to call the subroutine @code{__bb_init_trace_func}
3945 and pass two parameters to it.  The first parameter is the same as
3946 for @code{__bb_init_func}.  The second parameter is the number of the
3947 first basic block of the function as given by BLOCK_OR_LABEL.  Note
3948 that @code{__bb_init_trace_func} has to be called, even if the object
3949 module has been initialized already.
3950
3951 Described in assembler language, the code to be output looks like:
3952 @example
3953 parameter1 <- LPBX0
3954 parameter2 <- BLOCK_OR_LABEL
3955 call __bb_init_trace_func
3956 @end example
3957 @end table
3958
3959 @findex BLOCK_PROFILER
3960 @vindex profile_block_flag
3961 @item BLOCK_PROFILER (@var{file}, @var{blockno})
3962 A C statement or compound statement to output to @var{file} some
3963 assembler code to increment the count associated with the basic
3964 block number @var{blockno}.  The global compile flag
3965 @code{profile_block_flag} distinguishes two profile modes.
3966
3967 @table @code
3968 @item profile_block_flag != 2
3969 Output code to increment the counter directly.  Basic blocks are
3970 numbered separately from zero within each compilation.  The count
3971 associated with block number @var{blockno} is at index
3972 @var{blockno} in a vector of words; the name of this array is a local
3973 symbol made with this statement:
3974
3975 @smallexample
3976 ASM_GENERATE_INTERNAL_LABEL (@var{buffer}, "LPBX", 2);
3977 @end smallexample
3978
3979 @c This paragraph is the same as one a few paragraphs up.
3980 @c That is not an error.
3981 Of course, since you are writing the definition of
3982 @code{ASM_GENERATE_INTERNAL_LABEL} as well as that of this macro, you
3983 can take a short cut in the definition of this macro and use the name
3984 that you know will result.
3985
3986 Described in assembler language, the code to be output looks like:
3987
3988 @smallexample
3989 inc (LPBX2+4*BLOCKNO)
3990 @end smallexample
3991
3992 @vindex __bb
3993 @findex __bb_trace_func
3994 @item profile_block_flag == 2
3995 Output code to initialize the global structure @code{__bb} and
3996 call the function @code{__bb_trace_func}, which will increment the
3997 counter.
3998
3999 @code{__bb} consists of two words.  In the first word, the current
4000 basic block number, as given by BLOCKNO, has to be stored.  In
4001 the second word, the address of a block allocated in the object
4002 module has to be stored.  The address is given by the label created
4003 with this statement:
4004
4005 @smallexample
4006 ASM_GENERATE_INTERNAL_LABEL (@var{buffer}, "LPBX", 0);
4007 @end smallexample
4008
4009 Described in assembler language, the code to be output looks like:
4010 @example
4011 move BLOCKNO -> (__bb)
4012 move LPBX0 -> (__bb+4)
4013 call __bb_trace_func
4014 @end example
4015 @end table
4016
4017 @findex FUNCTION_BLOCK_PROFILER_EXIT
4018 @findex __bb_trace_ret
4019 @vindex profile_block_flag
4020 @item FUNCTION_BLOCK_PROFILER_EXIT (@var{file})
4021 A C statement or compound statement to output to @var{file}
4022 assembler code to call function @code{__bb_trace_ret}.  The
4023 assembler code should only be output
4024 if the global compile flag @code{profile_block_flag} == 2.  This
4025 macro has to be used at every place where code for returning from
4026 a function is generated (e.g. @code{FUNCTION_EPILOGUE}).  Although
4027 you have to write the definition of @code{FUNCTION_EPILOGUE}
4028 as well, you have to define this macro to tell the compiler, that
4029 the proper call to @code{__bb_trace_ret} is produced.
4030
4031 @findex MACHINE_STATE_SAVE
4032 @findex __bb_init_trace_func
4033 @findex __bb_trace_func
4034 @findex __bb_trace_ret
4035 @item MACHINE_STATE_SAVE (@var{id})
4036 A C statement or compound statement to save all registers, which may
4037 be clobbered by a function call, including condition codes.  The
4038 @code{asm} statement will be mostly likely needed to handle this
4039 task.  Local labels in the assembler code can be concatenated with the
4040 string @var{id}, to obtain a unique label name.
4041
4042 Registers or condition codes clobbered by @code{FUNCTION_PROLOGUE} or
4043 @code{FUNCTION_EPILOGUE} must be saved in the macros
4044 @code{FUNCTION_BLOCK_PROFILER}, @code{FUNCTION_BLOCK_PROFILER_EXIT} and
4045 @code{BLOCK_PROFILER} prior calling @code{__bb_init_trace_func},
4046 @code{__bb_trace_ret} and @code{__bb_trace_func} respectively.
4047
4048 @findex MACHINE_STATE_RESTORE
4049 @findex __bb_init_trace_func
4050 @findex __bb_trace_func
4051 @findex __bb_trace_ret
4052 @item MACHINE_STATE_RESTORE (@var{id})
4053 A C statement or compound statement to restore all registers, including
4054 condition codes, saved by @code{MACHINE_STATE_SAVE}.
4055
4056 Registers or condition codes clobbered by @code{FUNCTION_PROLOGUE} or
4057 @code{FUNCTION_EPILOGUE} must be restored in the macros
4058 @code{FUNCTION_BLOCK_PROFILER}, @code{FUNCTION_BLOCK_PROFILER_EXIT} and
4059 @code{BLOCK_PROFILER} after calling @code{__bb_init_trace_func},
4060 @code{__bb_trace_ret} and @code{__bb_trace_func} respectively.
4061
4062 @findex BLOCK_PROFILER_CODE
4063 @item BLOCK_PROFILER_CODE
4064 A C function or functions which are needed in the library to
4065 support block profiling.
4066
4067 @findex TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER
4068 @item TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER
4069 On some targets, it is impossible to use profiling when the frame
4070 pointer has been omitted.  For example, on x86 GNU/Linux systems,
4071 the @code{mcount} routine provided by the GNU C Library finds the
4072 address of the routine that called the routine that called @code{mcount}
4073 by looking in the immediate caller's stack frame.  If the immediate
4074 caller has no frame pointer, this lookup will fail.
4075
4076 By default, GCC assumes that the target does allow profiling when the
4077 frame pointer is omitted.  This macro should be defined to a C
4078 expression that evaluates to @code{false} if the target does not allow
4079 profiling when the frame pointer is omitted.
4080
4081 @end table
4082
4083 @node Inlining
4084 @subsection Permitting inlining of functions with attributes
4085 @cindex inlining
4086
4087 By default if a function has a target specific attribute attached to it,
4088 it will not be inlined.  This behaviour can be overridden if the target
4089 defines the @samp{FUNCTION_ATTRIBUTE_INLINABLE_P} macro.  This macro
4090 takes one argument, a @samp{DECL} describing the function.  It should
4091 return non-zero if the function can be inlined, otherwise it should
4092 return 0.
4093
4094 @node Tail Calling
4095 @subsection Permitting tail calls to functions
4096 @cindex tail calls
4097 @cindex sibling calls
4098
4099 @table @code
4100 @findex FUNCTION_OK_FOR_SIBCALL
4101 @item FUNCTION_OK_FOR_SIBCALL (@var{decl})
4102 A C expression that evaluates to true if it is ok to perform a sibling
4103 call to @var{decl}.
4104
4105 It is not uncommon for limitations of calling conventions to prevent
4106 tail calls to functions outside the current unit of translation, or
4107 during PIC compilation.  Use this macro to enforce these restrictions,
4108 as the @code{sibcall} md pattern can not fail, or fall over to a
4109 ``normal'' call.
4110 @end table
4111
4112 @node Varargs
4113 @section Implementing the Varargs Macros
4114 @cindex varargs implementation
4115
4116 GCC comes with an implementation of @file{varargs.h} and
4117 @file{stdarg.h} that work without change on machines that pass arguments
4118 on the stack.  Other machines require their own implementations of
4119 varargs, and the two machine independent header files must have
4120 conditionals to include it.
4121
4122 ISO @file{stdarg.h} differs from traditional @file{varargs.h} mainly in
4123 the calling convention for @code{va_start}.  The traditional
4124 implementation takes just one argument, which is the variable in which
4125 to store the argument pointer.  The ISO implementation of
4126 @code{va_start} takes an additional second argument.  The user is
4127 supposed to write the last named argument of the function here.
4128
4129 However, @code{va_start} should not use this argument.  The way to find
4130 the end of the named arguments is with the built-in functions described
4131 below.
4132
4133 @table @code
4134 @findex __builtin_saveregs
4135 @item __builtin_saveregs ()
4136 Use this built-in function to save the argument registers in memory so
4137 that the varargs mechanism can access them.  Both ISO and traditional
4138 versions of @code{va_start} must use @code{__builtin_saveregs}, unless
4139 you use @code{SETUP_INCOMING_VARARGS} (see below) instead.
4140
4141 On some machines, @code{__builtin_saveregs} is open-coded under the
4142 control of the macro @code{EXPAND_BUILTIN_SAVEREGS}.  On other machines,
4143 it calls a routine written in assembler language, found in
4144 @file{libgcc2.c}.
4145
4146 Code generated for the call to @code{__builtin_saveregs} appears at the
4147 beginning of the function, as opposed to where the call to
4148 @code{__builtin_saveregs} is written, regardless of what the code is.
4149 This is because the registers must be saved before the function starts
4150 to use them for its own purposes.
4151 @c i rewrote the first sentence above to fix an overfull hbox. --mew
4152 @c 10feb93
4153
4154 @findex __builtin_args_info
4155 @item __builtin_args_info (@var{category})
4156 Use this built-in function to find the first anonymous arguments in
4157 registers.
4158
4159 In general, a machine may have several categories of registers used for
4160 arguments, each for a particular category of data types.  (For example,
4161 on some machines, floating-point registers are used for floating-point
4162 arguments while other arguments are passed in the general registers.)
4163 To make non-varargs functions use the proper calling convention, you
4164 have defined the @code{CUMULATIVE_ARGS} data type to record how many
4165 registers in each category have been used so far
4166
4167 @code{__builtin_args_info} accesses the same data structure of type
4168 @code{CUMULATIVE_ARGS} after the ordinary argument layout is finished
4169 with it, with @var{category} specifying which word to access.  Thus, the
4170 value indicates the first unused register in a given category.
4171
4172 Normally, you would use @code{__builtin_args_info} in the implementation
4173 of @code{va_start}, accessing each category just once and storing the
4174 value in the @code{va_list} object.  This is because @code{va_list} will
4175 have to update the values, and there is no way to alter the
4176 values accessed by @code{__builtin_args_info}.
4177
4178 @findex __builtin_next_arg
4179 @item __builtin_next_arg (@var{lastarg})
4180 This is the equivalent of @code{__builtin_args_info}, for stack
4181 arguments.  It returns the address of the first anonymous stack
4182 argument, as type @code{void *}. If @code{ARGS_GROW_DOWNWARD}, it
4183 returns the address of the location above the first anonymous stack
4184 argument.  Use it in @code{va_start} to initialize the pointer for
4185 fetching arguments from the stack.  Also use it in @code{va_start} to
4186 verify that the second parameter @var{lastarg} is the last named argument
4187 of the current function.
4188
4189 @findex __builtin_classify_type
4190 @item __builtin_classify_type (@var{object})
4191 Since each machine has its own conventions for which data types are
4192 passed in which kind of register, your implementation of @code{va_arg}
4193 has to embody these conventions.  The easiest way to categorize the
4194 specified data type is to use @code{__builtin_classify_type} together
4195 with @code{sizeof} and @code{__alignof__}.
4196
4197 @code{__builtin_classify_type} ignores the value of @var{object},
4198 considering only its data type.  It returns an integer describing what
4199 kind of type that is---integer, floating, pointer, structure, and so on.
4200
4201 The file @file{typeclass.h} defines an enumeration that you can use to
4202 interpret the values of @code{__builtin_classify_type}.
4203 @end table
4204
4205 These machine description macros help implement varargs:
4206
4207 @table @code
4208 @findex EXPAND_BUILTIN_SAVEREGS
4209 @item EXPAND_BUILTIN_SAVEREGS ()
4210 If defined, is a C expression that produces the machine-specific code
4211 for a call to @code{__builtin_saveregs}.  This code will be moved to the
4212 very beginning of the function, before any parameter access are made.
4213 The return value of this function should be an RTX that contains the
4214 value to use as the return of @code{__builtin_saveregs}.
4215
4216 @findex SETUP_INCOMING_VARARGS
4217 @item SETUP_INCOMING_VARARGS (@var{args_so_far}, @var{mode}, @var{type}, @var{pretend_args_size}, @var{second_time})
4218 This macro offers an alternative to using @code{__builtin_saveregs} and
4219 defining the macro @code{EXPAND_BUILTIN_SAVEREGS}.  Use it to store the
4220 anonymous register arguments into the stack so that all the arguments
4221 appear to have been passed consecutively on the stack.  Once this is
4222 done, you can use the standard implementation of varargs that works for
4223 machines that pass all their arguments on the stack.
4224
4225 The argument @var{args_so_far} is the @code{CUMULATIVE_ARGS} data
4226 structure, containing the values that are obtained after processing the
4227 named arguments.  The arguments @var{mode} and @var{type} describe the
4228 last named argument---its machine mode and its data type as a tree node.
4229
4230 The macro implementation should do two things: first, push onto the
4231 stack all the argument registers @emph{not} used for the named
4232 arguments, and second, store the size of the data thus pushed into the
4233 @code{int}-valued variable whose name is supplied as the argument
4234 @var{pretend_args_size}.  The value that you store here will serve as
4235 additional offset for setting up the stack frame.
4236
4237 Because you must generate code to push the anonymous arguments at
4238 compile time without knowing their data types,
4239 @code{SETUP_INCOMING_VARARGS} is only useful on machines that have just
4240 a single category of argument register and use it uniformly for all data
4241 types.
4242
4243 If the argument @var{second_time} is nonzero, it means that the
4244 arguments of the function are being analyzed for the second time.  This
4245 happens for an inline function, which is not actually compiled until the
4246 end of the source file.  The macro @code{SETUP_INCOMING_VARARGS} should
4247 not generate any instructions in this case.
4248
4249 @findex STRICT_ARGUMENT_NAMING
4250 @item STRICT_ARGUMENT_NAMING
4251 Define this macro to be a nonzero value if the location where a function
4252 argument is passed depends on whether or not it is a named argument.
4253
4254 This macro controls how the @var{named} argument to @code{FUNCTION_ARG}
4255 is set for varargs and stdarg functions.  If this macro returns a
4256 nonzero value, the @var{named} argument is always true for named
4257 arguments, and false for unnamed arguments.  If it returns a value of
4258 zero, but @code{SETUP_INCOMING_VARARGS} is defined, then all arguments
4259 are treated as named.  Otherwise, all named arguments except the last
4260 are treated as named.
4261
4262 You need not define this macro if it always returns zero.
4263
4264 @findex PRETEND_OUTGOING_VARARGS_NAMED
4265 @item PRETEND_OUTGOING_VARARGS_NAMED
4266 If you need to conditionally change ABIs so that one works with
4267 @code{SETUP_INCOMING_VARARGS}, but the other works like neither
4268 @code{SETUP_INCOMING_VARARGS} nor @code{STRICT_ARGUMENT_NAMING} was
4269 defined, then define this macro to return nonzero if
4270 @code{SETUP_INCOMING_VARARGS} is used, zero otherwise.
4271 Otherwise, you should not define this macro.
4272 @end table
4273
4274 @node Trampolines
4275 @section Trampolines for Nested Functions
4276 @cindex trampolines for nested functions
4277 @cindex nested functions, trampolines for
4278
4279 A @dfn{trampoline} is a small piece of code that is created at run time
4280 when the address of a nested function is taken.  It normally resides on
4281 the stack, in the stack frame of the containing function.  These macros
4282 tell GCC how to generate code to allocate and initialize a
4283 trampoline.
4284
4285 The instructions in the trampoline must do two things: load a constant
4286 address into the static chain register, and jump to the real address of
4287 the nested function.  On CISC machines such as the m68k, this requires
4288 two instructions, a move immediate and a jump.  Then the two addresses
4289 exist in the trampoline as word-long immediate operands.  On RISC
4290 machines, it is often necessary to load each address into a register in
4291 two parts.  Then pieces of each address form separate immediate
4292 operands.
4293
4294 The code generated to initialize the trampoline must store the variable
4295 parts---the static chain value and the function address---into the
4296 immediate operands of the instructions.  On a CISC machine, this is
4297 simply a matter of copying each address to a memory reference at the
4298 proper offset from the start of the trampoline.  On a RISC machine, it
4299 may be necessary to take out pieces of the address and store them
4300 separately.
4301
4302 @table @code
4303 @findex TRAMPOLINE_TEMPLATE
4304 @item TRAMPOLINE_TEMPLATE (@var{file})
4305 A C statement to output, on the stream @var{file}, assembler code for a
4306 block of data that contains the constant parts of a trampoline.  This
4307 code should not include a label---the label is taken care of
4308 automatically.
4309
4310 If you do not define this macro, it means no template is needed
4311 for the target.  Do not define this macro on systems where the block move
4312 code to copy the trampoline into place would be larger than the code
4313 to generate it on the spot.
4314
4315 @findex TRAMPOLINE_SECTION
4316 @item TRAMPOLINE_SECTION
4317 The name of a subroutine to switch to the section in which the
4318 trampoline template is to be placed (@pxref{Sections}).  The default is
4319 a value of @samp{readonly_data_section}, which places the trampoline in
4320 the section containing read-only data.
4321
4322 @findex TRAMPOLINE_SIZE
4323 @item TRAMPOLINE_SIZE
4324 A C expression for the size in bytes of the trampoline, as an integer.
4325
4326 @findex TRAMPOLINE_ALIGNMENT
4327 @item TRAMPOLINE_ALIGNMENT
4328 Alignment required for trampolines, in bits.
4329
4330 If you don't define this macro, the value of @code{BIGGEST_ALIGNMENT}
4331 is used for aligning trampolines.
4332
4333 @findex INITIALIZE_TRAMPOLINE
4334 @item INITIALIZE_TRAMPOLINE (@var{addr}, @var{fnaddr}, @var{static_chain})
4335 A C statement to initialize the variable parts of a trampoline.
4336 @var{addr} is an RTX for the address of the trampoline; @var{fnaddr} is
4337 an RTX for the address of the nested function; @var{static_chain} is an
4338 RTX for the static chain value that should be passed to the function
4339 when it is called.
4340
4341 @findex TRAMPOLINE_ADJUST_ADDRESS
4342 @item TRAMPOLINE_ADJUST_ADDRESS (@var{addr})
4343 A C statement that should perform any machine-specific adjustment in
4344 the address of the trampoline.  Its argument contains the address that
4345 was passed to @code{INITIALIZE_TRAMPOLINE}.  In case the address to be
4346 used for a function call should be different from the address in which
4347 the template was stored, the different address should be assigned to
4348 @var{addr}.  If this macro is not defined, @var{addr} will be used for
4349 function calls.
4350
4351 @findex ALLOCATE_TRAMPOLINE
4352 @item ALLOCATE_TRAMPOLINE (@var{fp})
4353 A C expression to allocate run-time space for a trampoline.  The
4354 expression value should be an RTX representing a memory reference to the
4355 space for the trampoline.
4356
4357 @cindex @code{FUNCTION_EPILOGUE} and trampolines
4358 @cindex @code{FUNCTION_PROLOGUE} and trampolines
4359 If this macro is not defined, by default the trampoline is allocated as
4360 a stack slot.  This default is right for most machines.  The exceptions
4361 are machines where it is impossible to execute instructions in the stack
4362 area.  On such machines, you may have to implement a separate stack,
4363 using this macro in conjunction with @code{FUNCTION_PROLOGUE} and
4364 @code{FUNCTION_EPILOGUE}.
4365
4366 @var{fp} points to a data structure, a @code{struct function}, which
4367 describes the compilation status of the immediate containing function of
4368 the function which the trampoline is for.  Normally (when
4369 @code{ALLOCATE_TRAMPOLINE} is not defined), the stack slot for the
4370 trampoline is in the stack frame of this containing function.  Other
4371 allocation strategies probably must do something analogous with this
4372 information.
4373 @end table
4374
4375 Implementing trampolines is difficult on many machines because they have
4376 separate instruction and data caches.  Writing into a stack location
4377 fails to clear the memory in the instruction cache, so when the program
4378 jumps to that location, it executes the old contents.
4379
4380 Here are two possible solutions.  One is to clear the relevant parts of
4381 the instruction cache whenever a trampoline is set up.  The other is to
4382 make all trampolines identical, by having them jump to a standard
4383 subroutine.  The former technique makes trampoline execution faster; the
4384 latter makes initialization faster.
4385
4386 To clear the instruction cache when a trampoline is initialized, define
4387 the following macros which describe the shape of the cache.
4388
4389 @table @code
4390 @findex INSN_CACHE_SIZE
4391 @item INSN_CACHE_SIZE
4392 The total size in bytes of the cache.
4393
4394 @findex INSN_CACHE_LINE_WIDTH
4395 @item INSN_CACHE_LINE_WIDTH
4396 The length in bytes of each cache line.  The cache is divided into cache
4397 lines which are disjoint slots, each holding a contiguous chunk of data
4398 fetched from memory.  Each time data is brought into the cache, an
4399 entire line is read at once.  The data loaded into a cache line is
4400 always aligned on a boundary equal to the line size.
4401
4402 @findex INSN_CACHE_DEPTH
4403 @item INSN_CACHE_DEPTH
4404 The number of alternative cache lines that can hold any particular memory
4405 location.
4406 @end table
4407
4408 Alternatively, if the machine has system calls or instructions to clear
4409 the instruction cache directly, you can define the following macro.
4410
4411 @table @code
4412 @findex CLEAR_INSN_CACHE
4413 @item CLEAR_INSN_CACHE (@var{BEG}, @var{END})
4414 If defined, expands to a C expression clearing the @emph{instruction
4415 cache} in the specified interval.  If it is not defined, and the macro
4416 INSN_CACHE_SIZE is defined, some generic code is generated to clear the
4417 cache.  The definition of this macro would typically be a series of
4418 @code{asm} statements.  Both @var{BEG} and @var{END} are both pointer
4419 expressions.
4420 @end table
4421
4422 To use a standard subroutine, define the following macro.  In addition,
4423 you must make sure that the instructions in a trampoline fill an entire
4424 cache line with identical instructions, or else ensure that the
4425 beginning of the trampoline code is always aligned at the same point in
4426 its cache line.  Look in @file{m68k.h} as a guide.
4427
4428 @table @code
4429 @findex TRANSFER_FROM_TRAMPOLINE
4430 @item TRANSFER_FROM_TRAMPOLINE
4431 Define this macro if trampolines need a special subroutine to do their
4432 work.  The macro should expand to a series of @code{asm} statements
4433 which will be compiled with GCC.  They go in a library function named
4434 @code{__transfer_from_trampoline}.
4435
4436 If you need to avoid executing the ordinary prologue code of a compiled
4437 C function when you jump to the subroutine, you can do so by placing a
4438 special label of your own in the assembler code.  Use one @code{asm}
4439 statement to generate an assembler label, and another to make the label
4440 global.  Then trampolines can use that label to jump directly to your
4441 special assembler code.
4442 @end table
4443
4444 @node Library Calls
4445 @section Implicit Calls to Library Routines
4446 @cindex library subroutine names
4447 @cindex @file{libgcc.a}
4448
4449 @c prevent bad page break with this line
4450 Here is an explanation of implicit calls to library routines.
4451
4452 @table @code
4453 @findex MULSI3_LIBCALL
4454 @item MULSI3_LIBCALL
4455 A C string constant giving the name of the function to call for
4456 multiplication of one signed full-word by another.  If you do not
4457 define this macro, the default name is used, which is @code{__mulsi3},
4458 a function defined in @file{libgcc.a}.
4459
4460 @findex DIVSI3_LIBCALL
4461 @item DIVSI3_LIBCALL
4462 A C string constant giving the name of the function to call for
4463 division of one signed full-word by another.  If you do not define
4464 this macro, the default name is used, which is @code{__divsi3}, a
4465 function defined in @file{libgcc.a}.
4466
4467 @findex UDIVSI3_LIBCALL
4468 @item UDIVSI3_LIBCALL
4469 A C string constant giving the name of the function to call for
4470 division of one unsigned full-word by another.  If you do not define
4471 this macro, the default name is used, which is @code{__udivsi3}, a
4472 function defined in @file{libgcc.a}.
4473
4474 @findex MODSI3_LIBCALL
4475 @item MODSI3_LIBCALL
4476 A C string constant giving the name of the function to call for the
4477 remainder in division of one signed full-word by another.  If you do
4478 not define this macro, the default name is used, which is
4479 @code{__modsi3}, a function defined in @file{libgcc.a}.
4480
4481 @findex UMODSI3_LIBCALL
4482 @item UMODSI3_LIBCALL
4483 A C string constant giving the name of the function to call for the
4484 remainder in division of one unsigned full-word by another.  If you do
4485 not define this macro, the default name is used, which is
4486 @code{__umodsi3}, a function defined in @file{libgcc.a}.
4487
4488 @findex MULDI3_LIBCALL
4489 @item MULDI3_LIBCALL
4490 A C string constant giving the name of the function to call for
4491 multiplication of one signed double-word by another.  If you do not
4492 define this macro, the default name is used, which is @code{__muldi3},
4493 a function defined in @file{libgcc.a}.
4494
4495 @findex DIVDI3_LIBCALL
4496 @item DIVDI3_LIBCALL
4497 A C string constant giving the name of the function to call for
4498 division of one signed double-word by another.  If you do not define
4499 this macro, the default name is used, which is @code{__divdi3}, a
4500 function defined in @file{libgcc.a}.
4501
4502 @findex UDIVDI3_LIBCALL
4503 @item UDIVDI3_LIBCALL
4504 A C string constant giving the name of the function to call for
4505 division of one unsigned full-word by another.  If you do not define
4506 this macro, the default name is used, which is @code{__udivdi3}, a
4507 function defined in @file{libgcc.a}.
4508
4509 @findex MODDI3_LIBCALL
4510 @item MODDI3_LIBCALL
4511 A C string constant giving the name of the function to call for the
4512 remainder in division of one signed double-word by another.  If you do
4513 not define this macro, the default name is used, which is
4514 @code{__moddi3}, a function defined in @file{libgcc.a}.
4515
4516 @findex UMODDI3_LIBCALL
4517 @item UMODDI3_LIBCALL
4518 A C string constant giving the name of the function to call for the
4519 remainder in division of one unsigned full-word by another.  If you do
4520 not define this macro, the default name is used, which is
4521 @code{__umoddi3}, a function defined in @file{libgcc.a}.
4522
4523 @findex INIT_TARGET_OPTABS
4524 @item INIT_TARGET_OPTABS
4525 Define this macro as a C statement that declares additional library
4526 routines renames existing ones. @code{init_optabs} calls this macro after
4527 initializing all the normal library routines.
4528
4529 @findex FLOAT_LIB_COMPARE_RETURNS_BOOL (@var{mode}, @var{comparison})
4530 @item FLOAT_LIB_COMPARE_RETURNS_BOOL
4531 Define this macro as a C statement that returns nonzero if a call to
4532 the floating point comparison library function will return a boolean
4533 value that indicates the result of the comparison.  It should return
4534 zero if one of gcc's own libgcc functions is called.
4535
4536 Most ports don't need to define this macro.
4537
4538 @findex TARGET_EDOM
4539 @cindex @code{EDOM}, implicit usage
4540 @item TARGET_EDOM
4541 The value of @code{EDOM} on the target machine, as a C integer constant
4542 expression.  If you don't define this macro, GCC does not attempt to
4543 deposit the value of @code{EDOM} into @code{errno} directly.  Look in
4544 @file{/usr/include/errno.h} to find the value of @code{EDOM} on your
4545 system.
4546
4547 If you do not define @code{TARGET_EDOM}, then compiled code reports
4548 domain errors by calling the library function and letting it report the
4549 error.  If mathematical functions on your system use @code{matherr} when
4550 there is an error, then you should leave @code{TARGET_EDOM} undefined so
4551 that @code{matherr} is used normally.
4552
4553 @findex GEN_ERRNO_RTX
4554 @cindex @code{errno}, implicit usage
4555 @item GEN_ERRNO_RTX
4556 Define this macro as a C expression to create an rtl expression that
4557 refers to the global ``variable'' @code{errno}.  (On certain systems,
4558 @code{errno} may not actually be a variable.)  If you don't define this
4559 macro, a reasonable default is used.
4560
4561 @findex TARGET_MEM_FUNCTIONS
4562 @cindex @code{bcopy}, implicit usage
4563 @cindex @code{memcpy}, implicit usage
4564 @cindex @code{memmove}, implicit usage
4565 @cindex @code{bzero}, implicit usage
4566 @cindex @code{memset}, implicit usage
4567 @item TARGET_MEM_FUNCTIONS
4568 Define this macro if GCC should generate calls to the ISO C
4569 (and System V) library functions @code{memcpy}, @code{memmove} and
4570 @code{memset} rather than the BSD functions @code{bcopy} and @code{bzero}.
4571
4572 @findex LIBGCC_NEEDS_DOUBLE
4573 @item LIBGCC_NEEDS_DOUBLE
4574 Define this macro if @code{float} arguments cannot be passed to library
4575 routines (so they must be converted to @code{double}).  This macro
4576 affects both how library calls are generated and how the library
4577 routines in @file{libgcc.a} accept their arguments.  It is useful on
4578 machines where floating and fixed point arguments are passed
4579 differently, such as the i860.
4580
4581 @findex NEXT_OBJC_RUNTIME
4582 @item NEXT_OBJC_RUNTIME
4583 Define this macro to generate code for Objective-C message sending using
4584 the calling convention of the NeXT system.  This calling convention
4585 involves passing the object, the selector and the method arguments all
4586 at once to the method-lookup library function.
4587
4588 The default calling convention passes just the object and the selector
4589 to the lookup function, which returns a pointer to the method.
4590 @end table
4591
4592 @node Addressing Modes
4593 @section Addressing Modes
4594 @cindex addressing modes
4595
4596 @c prevent bad page break with this line
4597 This is about addressing modes.
4598
4599 @table @code
4600 @findex HAVE_PRE_INCREMENT
4601 @findex HAVE_PRE_DECREMENT
4602 @findex HAVE_POST_INCREMENT
4603 @findex HAVE_POST_DECREMENT
4604 @item HAVE_PRE_INCREMENT
4605 @itemx HAVE_PRE_DECREMENT
4606 @itemx HAVE_POST_INCREMENT
4607 @itemx HAVE_POST_DECREMENT
4608 A C expression that is non-zero if the machine supports pre-increment,
4609 pre-decrement, post-increment, or post-decrement addressing respectively.
4610
4611 @findex HAVE_POST_MODIFY_DISP
4612 @findex HAVE_PRE_MODIFY_DISP
4613 @item HAVE_PRE_MODIFY_DISP
4614 @itemx HAVE_POST_MODIFY_DISP
4615 A C expression that is non-zero if the machine supports pre- or
4616 post-address side-effect generation involving constants other than
4617 the size of the memory operand.
4618
4619 @findex HAVE_POST_MODIFY_REG
4620 @findex HAVE_PRE_MODIFY_REG
4621 @item HAVE_PRE_MODIFY_REG
4622 @itemx HAVE_POST_MODIFY_REG
4623 A C expression that is non-zero if the machine supports pre- or
4624 post-address side-effect generation involving a register displacement.
4625
4626 @findex CONSTANT_ADDRESS_P
4627 @item CONSTANT_ADDRESS_P (@var{x})
4628 A C expression that is 1 if the RTX @var{x} is a constant which
4629 is a valid address.  On most machines, this can be defined as
4630 @code{CONSTANT_P (@var{x})}, but a few machines are more restrictive
4631 in which constant addresses are supported.
4632
4633 @findex CONSTANT_P
4634 @code{CONSTANT_P} accepts integer-values expressions whose values are
4635 not explicitly known, such as @code{symbol_ref}, @code{label_ref}, and
4636 @code{high} expressions and @code{const} arithmetic expressions, in
4637 addition to @code{const_int} and @code{const_double} expressions.
4638
4639 @findex MAX_REGS_PER_ADDRESS
4640 @item MAX_REGS_PER_ADDRESS
4641 A number, the maximum number of registers that can appear in a valid
4642 memory address.  Note that it is up to you to specify a value equal to
4643 the maximum number that @code{GO_IF_LEGITIMATE_ADDRESS} would ever
4644 accept.
4645
4646 @findex GO_IF_LEGITIMATE_ADDRESS
4647 @item GO_IF_LEGITIMATE_ADDRESS (@var{mode}, @var{x}, @var{label})
4648 A C compound statement with a conditional @code{goto @var{label};}
4649 executed if @var{x} (an RTX) is a legitimate memory address on the
4650 target machine for a memory operand of mode @var{mode}.
4651
4652 It usually pays to define several simpler macros to serve as
4653 subroutines for this one.  Otherwise it may be too complicated to
4654 understand.
4655
4656 This macro must exist in two variants: a strict variant and a
4657 non-strict one.  The strict variant is used in the reload pass.  It
4658 must be defined so that any pseudo-register that has not been
4659 allocated a hard register is considered a memory reference.  In
4660 contexts where some kind of register is required, a pseudo-register
4661 with no hard register must be rejected.
4662
4663 The non-strict variant is used in other passes.  It must be defined to
4664 accept all pseudo-registers in every context where some kind of
4665 register is required.
4666
4667 @findex REG_OK_STRICT
4668 Compiler source files that want to use the strict variant of this
4669 macro define the macro @code{REG_OK_STRICT}.  You should use an
4670 @code{#ifdef REG_OK_STRICT} conditional to define the strict variant
4671 in that case and the non-strict variant otherwise.
4672
4673 Subroutines to check for acceptable registers for various purposes (one
4674 for base registers, one for index registers, and so on) are typically
4675 among the subroutines used to define @code{GO_IF_LEGITIMATE_ADDRESS}.
4676 Then only these subroutine macros need have two variants; the higher
4677 levels of macros may be the same whether strict or not.
4678
4679 Normally, constant addresses which are the sum of a @code{symbol_ref}
4680 and an integer are stored inside a @code{const} RTX to mark them as
4681 constant.  Therefore, there is no need to recognize such sums
4682 specifically as legitimate addresses.  Normally you would simply
4683 recognize any @code{const} as legitimate.
4684
4685 Usually @code{PRINT_OPERAND_ADDRESS} is not prepared to handle constant
4686 sums that are not marked with  @code{const}.  It assumes that a naked
4687 @code{plus} indicates indexing.  If so, then you @emph{must} reject such
4688 naked constant sums as illegitimate addresses, so that none of them will
4689 be given to @code{PRINT_OPERAND_ADDRESS}.
4690
4691 @cindex @code{ENCODE_SECTION_INFO} and address validation
4692 On some machines, whether a symbolic address is legitimate depends on
4693 the section that the address refers to.  On these machines, define the
4694 macro @code{ENCODE_SECTION_INFO} to store the information into the
4695 @code{symbol_ref}, and then check for it here.  When you see a
4696 @code{const}, you will have to look inside it to find the
4697 @code{symbol_ref} in order to determine the section.  @xref{Assembler
4698 Format}.
4699
4700 @findex saveable_obstack
4701 The best way to modify the name string is by adding text to the
4702 beginning, with suitable punctuation to prevent any ambiguity.  Allocate
4703 the new name in @code{saveable_obstack}.  You will have to modify
4704 @code{ASM_OUTPUT_LABELREF} to remove and decode the added text and
4705 output the name accordingly, and define @code{STRIP_NAME_ENCODING} to
4706 access the original name string.
4707
4708 You can check the information stored here into the @code{symbol_ref} in
4709 the definitions of the macros @code{GO_IF_LEGITIMATE_ADDRESS} and
4710 @code{PRINT_OPERAND_ADDRESS}.
4711
4712 @findex REG_OK_FOR_BASE_P
4713 @item REG_OK_FOR_BASE_P (@var{x})
4714 A C expression that is nonzero if @var{x} (assumed to be a @code{reg}
4715 RTX) is valid for use as a base register.  For hard registers, it
4716 should always accept those which the hardware permits and reject the
4717 others.  Whether the macro accepts or rejects pseudo registers must be
4718 controlled by @code{REG_OK_STRICT} as described above.  This usually
4719 requires two variant definitions, of which @code{REG_OK_STRICT}
4720 controls the one actually used.
4721
4722 @findex REG_MODE_OK_FOR_BASE_P
4723 @item REG_MODE_OK_FOR_BASE_P (@var{x}, @var{mode})
4724 A C expression that is just like @code{REG_OK_FOR_BASE_P}, except that
4725 that expression may examine the mode of the memory reference in
4726 @var{mode}.  You should define this macro if the mode of the memory
4727 reference affects whether a register may be used as a base register.  If
4728 you define this macro, the compiler will use it instead of
4729 @code{REG_OK_FOR_BASE_P}.
4730
4731 @findex REG_OK_FOR_INDEX_P
4732 @item REG_OK_FOR_INDEX_P (@var{x})
4733 A C expression that is nonzero if @var{x} (assumed to be a @code{reg}
4734 RTX) is valid for use as an index register.
4735
4736 The difference between an index register and a base register is that
4737 the index register may be scaled.  If an address involves the sum of
4738 two registers, neither one of them scaled, then either one may be
4739 labeled the ``base'' and the other the ``index''; but whichever
4740 labeling is used must fit the machine's constraints of which registers
4741 may serve in each capacity.  The compiler will try both labelings,
4742 looking for one that is valid, and will reload one or both registers
4743 only if neither labeling works.
4744
4745 @findex FIND_BASE_TERM
4746 @item FIND_BASE_TERM (@var{x})
4747 A C expression to determine the base term of address @var{x}.
4748 This macro is used in only one place: `find_base_term' in alias.c.
4749
4750 It is always safe for this macro to not be defined.  It exists so
4751 that alias analysis can understand machine-dependent addresses.
4752
4753 The typical use of this macro is to handle addresses containing
4754 a label_ref or symbol_ref within an UNSPEC.
4755
4756 @findex LEGITIMIZE_ADDRESS
4757 @item LEGITIMIZE_ADDRESS (@var{x}, @var{oldx}, @var{mode}, @var{win})
4758 A C compound statement that attempts to replace @var{x} with a valid
4759 memory address for an operand of mode @var{mode}.  @var{win} will be a
4760 C statement label elsewhere in the code; the macro definition may use
4761
4762 @example
4763 GO_IF_LEGITIMATE_ADDRESS (@var{mode}, @var{x}, @var{win});
4764 @end example
4765
4766 @noindent
4767 to avoid further processing if the address has become legitimate.
4768
4769 @findex break_out_memory_refs
4770 @var{x} will always be the result of a call to @code{break_out_memory_refs},
4771 and @var{oldx} will be the operand that was given to that function to produce
4772 @var{x}.
4773
4774 The code generated by this macro should not alter the substructure of
4775 @var{x}.  If it transforms @var{x} into a more legitimate form, it
4776 should assign @var{x} (which will always be a C variable) a new value.
4777
4778 It is not necessary for this macro to come up with a legitimate
4779 address.  The compiler has standard ways of doing so in all cases.  In
4780 fact, it is safe for this macro to do nothing.  But often a
4781 machine-dependent strategy can generate better code.
4782
4783 @findex LEGITIMIZE_RELOAD_ADDRESS
4784 @item LEGITIMIZE_RELOAD_ADDRESS (@var{x}, @var{mode}, @var{opnum}, @var{type}, @var{ind_levels}, @var{win})
4785 A C compound statement that attempts to replace @var{x}, which is an address
4786 that needs reloading, with a valid memory address for an operand of mode
4787 @var{mode}.  @var{win} will be a C statement label elsewhere in the code.
4788 It is not necessary to define this macro, but it might be useful for
4789 performance reasons.
4790
4791 For example, on the i386, it is sometimes possible to use a single
4792 reload register instead of two by reloading a sum of two pseudo
4793 registers into a register.  On the other hand, for number of RISC
4794 processors offsets are limited so that often an intermediate address
4795 needs to be generated in order to address a stack slot.  By defining
4796 LEGITIMIZE_RELOAD_ADDRESS appropriately, the intermediate addresses
4797 generated for adjacent some stack slots can be made identical, and thus
4798 be shared.
4799
4800 @emph{Note}: This macro should be used with caution.  It is necessary
4801 to know something of how reload works in order to effectively use this,
4802 and it is quite easy to produce macros that build in too much knowledge
4803 of reload internals.
4804
4805 @emph{Note}: This macro must be able to reload an address created by a
4806 previous invocation of this macro.  If it fails to handle such addresses
4807 then the compiler may generate incorrect code or abort.
4808
4809 @findex push_reload
4810 The macro definition should use @code{push_reload} to indicate parts that
4811 need reloading; @var{opnum}, @var{type} and @var{ind_levels} are usually
4812 suitable to be passed unaltered to @code{push_reload}.
4813
4814 The code generated by this macro must not alter the substructure of
4815 @var{x}.  If it transforms @var{x} into a more legitimate form, it
4816 should assign @var{x} (which will always be a C variable) a new value.
4817 This also applies to parts that you change indirectly by calling
4818 @code{push_reload}.
4819
4820 @findex strict_memory_address_p
4821 The macro definition may use @code{strict_memory_address_p} to test if
4822 the address has become legitimate.
4823
4824 @findex copy_rtx
4825 If you want to change only a part of @var{x}, one standard way of doing
4826 this is to use @code{copy_rtx}.  Note, however, that is unshares only a
4827 single level of rtl.  Thus, if the part to be changed is not at the
4828 top level, you'll need to replace first the top level.
4829 It is not necessary for this macro to come up with a legitimate
4830 address;  but often a machine-dependent strategy can generate better code.
4831
4832 @findex GO_IF_MODE_DEPENDENT_ADDRESS
4833 @item GO_IF_MODE_DEPENDENT_ADDRESS (@var{addr}, @var{label})
4834 A C statement or compound statement with a conditional @code{goto
4835 @var{label};} executed if memory address @var{x} (an RTX) can have
4836 different meanings depending on the machine mode of the memory
4837 reference it is used for or if the address is valid for some modes
4838 but not others.
4839
4840 Autoincrement and autodecrement addresses typically have mode-dependent
4841 effects because the amount of the increment or decrement is the size
4842 of the operand being addressed.  Some machines have other mode-dependent
4843 addresses.  Many RISC machines have no mode-dependent addresses.
4844
4845 You may assume that @var{addr} is a valid address for the machine.
4846
4847 @findex LEGITIMATE_CONSTANT_P
4848 @item LEGITIMATE_CONSTANT_P (@var{x})
4849 A C expression that is nonzero if @var{x} is a legitimate constant for
4850 an immediate operand on the target machine.  You can assume that
4851 @var{x} satisfies @code{CONSTANT_P}, so you need not check this.  In fact,
4852 @samp{1} is a suitable definition for this macro on machines where
4853 anything @code{CONSTANT_P} is valid.
4854 @end table
4855
4856 @node Condition Code
4857 @section Condition Code Status
4858 @cindex condition code status
4859
4860 @c prevent bad page break with this line
4861 This describes the condition code status.
4862
4863 @findex cc_status
4864 The file @file{conditions.h} defines a variable @code{cc_status} to
4865 describe how the condition code was computed (in case the interpretation of
4866 the condition code depends on the instruction that it was set by).  This
4867 variable contains the RTL expressions on which the condition code is
4868 currently based, and several standard flags.
4869
4870 Sometimes additional machine-specific flags must be defined in the machine
4871 description header file.  It can also add additional machine-specific
4872 information by defining @code{CC_STATUS_MDEP}.
4873
4874 @table @code
4875 @findex CC_STATUS_MDEP
4876 @item CC_STATUS_MDEP
4877 C code for a data type which is used for declaring the @code{mdep}
4878 component of @code{cc_status}.  It defaults to @code{int}.
4879
4880 This macro is not used on machines that do not use @code{cc0}.
4881
4882 @findex CC_STATUS_MDEP_INIT
4883 @item CC_STATUS_MDEP_INIT
4884 A C expression to initialize the @code{mdep} field to ``empty''.
4885 The default definition does nothing, since most machines don't use
4886 the field anyway.  If you want to use the field, you should probably
4887 define this macro to initialize it.
4888
4889 This macro is not used on machines that do not use @code{cc0}.
4890
4891 @findex NOTICE_UPDATE_CC
4892 @item NOTICE_UPDATE_CC (@var{exp}, @var{insn})
4893 A C compound statement to set the components of @code{cc_status}
4894 appropriately for an insn @var{insn} whose body is @var{exp}.  It is
4895 this macro's responsibility to recognize insns that set the condition
4896 code as a byproduct of other activity as well as those that explicitly
4897 set @code{(cc0)}.
4898
4899 This macro is not used on machines that do not use @code{cc0}.
4900
4901 If there are insns that do not set the condition code but do alter
4902 other machine registers, this macro must check to see whether they
4903 invalidate the expressions that the condition code is recorded as
4904 reflecting.  For example, on the 68000, insns that store in address
4905 registers do not set the condition code, which means that usually
4906 @code{NOTICE_UPDATE_CC} can leave @code{cc_status} unaltered for such
4907 insns.  But suppose that the previous insn set the condition code
4908 based on location @samp{a4@@(102)} and the current insn stores a new
4909 value in @samp{a4}.  Although the condition code is not changed by
4910 this, it will no longer be true that it reflects the contents of
4911 @samp{a4@@(102)}.  Therefore, @code{NOTICE_UPDATE_CC} must alter
4912 @code{cc_status} in this case to say that nothing is known about the
4913 condition code value.
4914
4915 The definition of @code{NOTICE_UPDATE_CC} must be prepared to deal
4916 with the results of peephole optimization: insns whose patterns are
4917 @code{parallel} RTXs containing various @code{reg}, @code{mem} or
4918 constants which are just the operands.  The RTL structure of these
4919 insns is not sufficient to indicate what the insns actually do.  What
4920 @code{NOTICE_UPDATE_CC} should do when it sees one is just to run
4921 @code{CC_STATUS_INIT}.
4922
4923 A possible definition of @code{NOTICE_UPDATE_CC} is to call a function
4924 that looks at an attribute (@pxref{Insn Attributes}) named, for example,
4925 @samp{cc}.  This avoids having detailed information about patterns in
4926 two places, the @file{md} file and in @code{NOTICE_UPDATE_CC}.
4927
4928 @findex EXTRA_CC_MODES
4929 @item EXTRA_CC_MODES
4930 A list of additional modes for condition code values in registers
4931 (@pxref{Jump Patterns}).  This macro should expand to a sequence of
4932 calls of the macro @code{CC} separated by white space.  @code{CC} takes
4933 two arguments.  The first is the enumeration name of the mode, which
4934 should begin with @samp{CC} and end with @samp{mode}.  The second is a C
4935 string giving the printable name of the mode; it should be the same as
4936 the first argument, but with the trailing @samp{mode} removed.
4937
4938 You should only define this macro if additional modes are required.
4939
4940 A sample definition of @code{EXTRA_CC_MODES} is:
4941 @smallexample
4942 #define EXTRA_CC_MODES            \
4943     CC(CC_NOOVmode, "CC_NOOV")    \
4944     CC(CCFPmode, "CCFP")          \
4945     CC(CCFPEmode, "CCFPE")
4946 @end smallexample
4947
4948 @findex SELECT_CC_MODE
4949 @item SELECT_CC_MODE (@var{op}, @var{x}, @var{y})
4950 Returns a mode from class @code{MODE_CC} to be used when comparison
4951 operation code @var{op} is applied to rtx @var{x} and @var{y}.  For
4952 example, on the Sparc, @code{SELECT_CC_MODE} is defined as (see
4953 @pxref{Jump Patterns} for a description of the reason for this
4954 definition)
4955
4956 @smallexample
4957 #define SELECT_CC_MODE(OP,X,Y) \
4958   (GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT          \
4959    ? ((OP == EQ || OP == NE) ? CCFPmode : CCFPEmode)    \
4960    : ((GET_CODE (X) == PLUS || GET_CODE (X) == MINUS    \
4961        || GET_CODE (X) == NEG) \
4962       ? CC_NOOVmode : CCmode))
4963 @end smallexample
4964
4965 You need not define this macro if @code{EXTRA_CC_MODES} is not defined.
4966
4967 @findex CANONICALIZE_COMPARISON
4968 @item CANONICALIZE_COMPARISON (@var{code}, @var{op0}, @var{op1})
4969 On some machines not all possible comparisons are defined, but you can
4970 convert an invalid comparison into a valid one.  For example, the Alpha
4971 does not have a @code{GT} comparison, but you can use an @code{LT}
4972 comparison instead and swap the order of the operands.
4973
4974 On such machines, define this macro to be a C statement to do any
4975 required conversions.  @var{code} is the initial comparison code
4976 and @var{op0} and @var{op1} are the left and right operands of the
4977 comparison, respectively.  You should modify @var{code}, @var{op0}, and
4978 @var{op1} as required.
4979
4980 GCC will not assume that the comparison resulting from this macro is
4981 valid but will see if the resulting insn matches a pattern in the
4982 @file{md} file.
4983
4984 You need not define this macro if it would never change the comparison
4985 code or operands.
4986
4987 @findex REVERSIBLE_CC_MODE
4988 @item REVERSIBLE_CC_MODE (@var{mode})
4989 A C expression whose value is one if it is always safe to reverse a
4990 comparison whose mode is @var{mode}.  If @code{SELECT_CC_MODE}
4991 can ever return @var{mode} for a floating-point inequality comparison,
4992 then @code{REVERSIBLE_CC_MODE (@var{mode})} must be zero.
4993
4994 You need not define this macro if it would always returns zero or if the
4995 floating-point format is anything other than @code{IEEE_FLOAT_FORMAT}.
4996 For example, here is the definition used on the Sparc, where floating-point
4997 inequality comparisons are always given @code{CCFPEmode}:
4998
4999 @smallexample
5000 #define REVERSIBLE_CC_MODE(MODE)  ((MODE) != CCFPEmode)
5001 @end smallexample
5002
5003 @findex REVERSE_CONDITION (@var{code}, @var{mode})
5004 A C expression whose value is reversed condition code of the @var{code} for
5005 comparison done in CC_MODE @var{mode}.  The macro is used only in case
5006 @code{REVERSIBLE_CC_MODE (@var{mode})} is nonzero.  Define this macro in case
5007 machine has some non-standard way how to reverse certain conditionals.  For
5008 instance in case all floating point conditions are non-trapping, compiler may
5009 freely convert unordered compares to ordered one.  Then definition may look
5010 like:
5011
5012 @smallexample
5013 #define REVERSE_CONDITION(CODE, MODE) \
5014    ((MODE) != CCFPmode ? reverse_condition (CODE) \
5015     : reverse_condition_maybe_unordered (CODE))
5016 @end smallexample
5017
5018 @findex REVERSE_CONDEXEC_PREDICATES_P
5019 @item REVERSE_CONDEXEC_PREDICATES_P (@var{code1}, @var{code2})
5020 A C expression that returns true if the conditional execution predicate
5021 @var{code1} is the inverse of @var{code2} and vice versa.  Define this to
5022 return 0 if the target has conditional execution predicates that cannot be
5023 reversed safely.  If no expansion is specified, this macro is defined as
5024 follows:
5025
5026 @smallexample
5027 #define REVERSE_CONDEXEC_PREDICATES_P (x, y) ((x) == reverse_condition (y))
5028 @end smallexample
5029
5030 @end table
5031
5032 @node Costs
5033 @section Describing Relative Costs of Operations
5034 @cindex costs of instructions
5035 @cindex relative costs
5036 @cindex speed of instructions
5037
5038 These macros let you describe the relative speed of various operations
5039 on the target machine.
5040
5041 @table @code
5042 @findex CONST_COSTS
5043 @item CONST_COSTS (@var{x}, @var{code}, @var{outer_code})
5044 A part of a C @code{switch} statement that describes the relative costs
5045 of constant RTL expressions.  It must contain @code{case} labels for
5046 expression codes @code{const_int}, @code{const}, @code{symbol_ref},
5047 @code{label_ref} and @code{const_double}.  Each case must ultimately
5048 reach a @code{return} statement to return the relative cost of the use
5049 of that kind of constant value in an expression.  The cost may depend on
5050 the precise value of the constant, which is available for examination in
5051 @var{x}, and the rtx code of the expression in which it is contained,
5052 found in @var{outer_code}.
5053
5054 @var{code} is the expression code---redundant, since it can be
5055 obtained with @code{GET_CODE (@var{x})}.
5056
5057 @findex RTX_COSTS
5058 @findex COSTS_N_INSNS
5059 @item RTX_COSTS (@var{x}, @var{code}, @var{outer_code})
5060 Like @code{CONST_COSTS} but applies to nonconstant RTL expressions.
5061 This can be used, for example, to indicate how costly a multiply
5062 instruction is.  In writing this macro, you can use the construct
5063 @code{COSTS_N_INSNS (@var{n})} to specify a cost equal to @var{n} fast
5064 instructions.  @var{outer_code} is the code of the expression in which
5065 @var{x} is contained.
5066
5067 This macro is optional; do not define it if the default cost assumptions
5068 are adequate for the target machine.
5069
5070 @findex DEFAULT_RTX_COSTS
5071 @item DEFAULT_RTX_COSTS (@var{x}, @var{code}, @var{outer_code})
5072 This macro, if defined, is called for any case not handled by the
5073 @code{RTX_COSTS} or @code{CONST_COSTS} macros.  This eliminates the need
5074 to put case labels into the macro, but the code, or any functions it
5075 calls, must assume that the RTL in @var{x} could be of any type that has
5076 not already been handled.  The arguments are the same as for
5077 @code{RTX_COSTS}, and the macro should execute a return statement giving
5078 the cost of any RTL expressions that it can handle.  The default cost
5079 calculation is used for any RTL for which this macro does not return a
5080 value.
5081
5082 This macro is optional; do not define it if the default cost assumptions
5083 are adequate for the target machine.
5084
5085 @findex ADDRESS_COST
5086 @item ADDRESS_COST (@var{address})
5087 An expression giving the cost of an addressing mode that contains
5088 @var{address}.  If not defined, the cost is computed from
5089 the @var{address} expression and the @code{CONST_COSTS} values.
5090
5091 For most CISC machines, the default cost is a good approximation of the
5092 true cost of the addressing mode.  However, on RISC machines, all
5093 instructions normally have the same length and execution time.  Hence
5094 all addresses will have equal costs.
5095
5096 In cases where more than one form of an address is known, the form with
5097 the lowest cost will be used.  If multiple forms have the same, lowest,
5098 cost, the one that is the most complex will be used.
5099
5100 For example, suppose an address that is equal to the sum of a register
5101 and a constant is used twice in the same basic block.  When this macro
5102 is not defined, the address will be computed in a register and memory
5103 references will be indirect through that register.  On machines where
5104 the cost of the addressing mode containing the sum is no higher than
5105 that of a simple indirect reference, this will produce an additional
5106 instruction and possibly require an additional register.  Proper
5107 specification of this macro eliminates this overhead for such machines.
5108
5109 Similar use of this macro is made in strength reduction of loops.
5110
5111 @var{address} need not be valid as an address.  In such a case, the cost
5112 is not relevant and can be any value; invalid addresses need not be
5113 assigned a different cost.
5114
5115 On machines where an address involving more than one register is as
5116 cheap as an address computation involving only one register, defining
5117 @code{ADDRESS_COST} to reflect this can cause two registers to be live
5118 over a region of code where only one would have been if
5119 @code{ADDRESS_COST} were not defined in that manner.  This effect should
5120 be considered in the definition of this macro.  Equivalent costs should
5121 probably only be given to addresses with different numbers of registers
5122 on machines with lots of registers.
5123
5124 This macro will normally either not be defined or be defined as a
5125 constant.
5126
5127 @findex REGISTER_MOVE_COST
5128 @item REGISTER_MOVE_COST (@var{mode}, @var{from}, @var{to})
5129 A C expression for the cost of moving data of mode @var{mode} from a
5130 register in class @var{from} to one in class @var{to}.  The classes are
5131 expressed using the enumeration values such as @code{GENERAL_REGS}.  A
5132 value of 2 is the default; other values are interpreted relative to
5133 that.
5134
5135 It is not required that the cost always equal 2 when @var{from} is the
5136 same as @var{to}; on some machines it is expensive to move between
5137 registers if they are not general registers.
5138
5139 If reload sees an insn consisting of a single @code{set} between two
5140 hard registers, and if @code{REGISTER_MOVE_COST} applied to their
5141 classes returns a value of 2, reload does not check to ensure that the
5142 constraints of the insn are met.  Setting a cost of other than 2 will
5143 allow reload to verify that the constraints are met.  You should do this
5144 if the @samp{mov@var{m}} pattern's constraints do not allow such copying.
5145
5146 @findex MEMORY_MOVE_COST
5147 @item MEMORY_MOVE_COST (@var{mode}, @var{class}, @var{in})
5148 A C expression for the cost of moving data of mode @var{mode} between a
5149 register of class @var{class} and memory; @var{in} is zero if the value
5150 is to be written to memory, non-zero if it is to be read in.  This cost
5151 is relative to those in @code{REGISTER_MOVE_COST}.  If moving between
5152 registers and memory is more expensive than between two registers, you
5153 should define this macro to express the relative cost.
5154
5155 If you do not define this macro, GCC uses a default cost of 4 plus
5156 the cost of copying via a secondary reload register, if one is
5157 needed.  If your machine requires a secondary reload register to copy
5158 between memory and a register of @var{class} but the reload mechanism is
5159 more complex than copying via an intermediate, define this macro to
5160 reflect the actual cost of the move.
5161
5162 GCC defines the function @code{memory_move_secondary_cost} if
5163 secondary reloads are needed.  It computes the costs due to copying via
5164 a secondary register.  If your machine copies from memory using a
5165 secondary register in the conventional way but the default base value of
5166 4 is not correct for your machine, define this macro to add some other
5167 value to the result of that function.  The arguments to that function
5168 are the same as to this macro.
5169
5170 @findex BRANCH_COST
5171 @item BRANCH_COST
5172 A C expression for the cost of a branch instruction.  A value of 1 is
5173 the default; other values are interpreted relative to that.
5174 @end table
5175
5176 Here are additional macros which do not specify precise relative costs,
5177 but only that certain actions are more expensive than GCC would
5178 ordinarily expect.
5179
5180 @table @code
5181 @findex SLOW_BYTE_ACCESS
5182 @item SLOW_BYTE_ACCESS
5183 Define this macro as a C expression which is nonzero if accessing less
5184 than a word of memory (i.e. a @code{char} or a @code{short}) is no
5185 faster than accessing a word of memory, i.e., if such access
5186 require more than one instruction or if there is no difference in cost
5187 between byte and (aligned) word loads.
5188
5189 When this macro is not defined, the compiler will access a field by
5190 finding the smallest containing object; when it is defined, a fullword
5191 load will be used if alignment permits.  Unless bytes accesses are
5192 faster than word accesses, using word accesses is preferable since it
5193 may eliminate subsequent memory access if subsequent accesses occur to
5194 other fields in the same word of the structure, but to different bytes.
5195
5196 @findex SLOW_ZERO_EXTEND
5197 @item SLOW_ZERO_EXTEND
5198 Define this macro if zero-extension (of a @code{char} or @code{short}
5199 to an @code{int}) can be done faster if the destination is a register
5200 that is known to be zero.
5201
5202 If you define this macro, you must have instruction patterns that
5203 recognize RTL structures like this:
5204
5205 @smallexample
5206 (set (strict_low_part (subreg:QI (reg:SI @dots{}) 0)) @dots{})
5207 @end smallexample
5208
5209 @noindent
5210 and likewise for @code{HImode}.
5211
5212 @findex SLOW_UNALIGNED_ACCESS
5213 @item SLOW_UNALIGNED_ACCESS (@var{mode}, @var{alignment})
5214 Define this macro to be the value 1 if memory accesses described by the
5215 @var{mode} and @var{alignment} parameters have a cost many times greater
5216 than aligned accesses, for example if they are emulated in a trap
5217 handler.
5218
5219 When this macro is non-zero, the compiler will act as if
5220 @code{STRICT_ALIGNMENT} were non-zero when generating code for block
5221 moves.  This can cause significantly more instructions to be produced.
5222 Therefore, do not set this macro non-zero if unaligned accesses only add a
5223 cycle or two to the time for a memory access.
5224
5225 If the value of this macro is always zero, it need not be defined.  If
5226 this macro is defined, it should produce a non-zero value when
5227 @code{STRICT_ALIGNMENT} is non-zero.
5228
5229 @findex DONT_REDUCE_ADDR
5230 @item DONT_REDUCE_ADDR
5231 Define this macro to inhibit strength reduction of memory addresses.
5232 (On some machines, such strength reduction seems to do harm rather
5233 than good.)
5234
5235 @findex MOVE_RATIO
5236 @item MOVE_RATIO
5237 The threshold of number of scalar memory-to-memory move insns, @emph{below}
5238 which a sequence of insns should be generated instead of a
5239 string move insn or a library call.  Increasing the value will always
5240 make code faster, but eventually incurs high cost in increased code size.
5241
5242 Note that on machines where the corresponding move insn is a
5243 @code{define_expand} that emits a sequence of insns, this macro counts
5244 the number of such sequences.
5245
5246 If you don't define this, a reasonable default is used.
5247
5248 @findex MOVE_BY_PIECES_P
5249 @item MOVE_BY_PIECES_P (@var{size}, @var{alignment})
5250 A C expression used to determine whether @code{move_by_pieces} will be used to
5251 copy a chunk of memory, or whether some other block move mechanism
5252 will be used.  Defaults to 1 if @code{move_by_pieces_ninsns} returns less
5253 than @code{MOVE_RATIO}.
5254
5255 @findex MOVE_MAX_PIECES
5256 @item MOVE_MAX_PIECES
5257 A C expression used by @code{move_by_pieces} to determine the largest unit
5258 a load or store used to copy memory is.  Defaults to @code{MOVE_MAX}.
5259
5260 @findex USE_LOAD_POST_INCREMENT
5261 @item USE_LOAD_POST_INCREMENT (@var{mode})
5262 A C expression used to determine whether a load postincrement is a good
5263 thing to use for a given mode.  Defaults to the value of
5264 @code{HAVE_POST_INCREMENT}.
5265
5266 @findex USE_LOAD_POST_DECREMENT
5267 @item USE_LOAD_POST_DECREMENT (@var{mode})
5268 A C expression used to determine whether a load postdecrement is a good
5269 thing to use for a given mode.  Defaults to the value of
5270 @code{HAVE_POST_DECREMENT}.
5271
5272 @findex USE_LOAD_PRE_INCREMENT
5273 @item USE_LOAD_PRE_INCREMENT (@var{mode})
5274 A C expression used to determine whether a load preincrement is a good
5275 thing to use for a given mode.  Defaults to the value of
5276 @code{HAVE_PRE_INCREMENT}.
5277
5278 @findex USE_LOAD_PRE_DECREMENT
5279 @item USE_LOAD_PRE_DECREMENT (@var{mode})
5280 A C expression used to determine whether a load predecrement is a good
5281 thing to use for a given mode.  Defaults to the value of
5282 @code{HAVE_PRE_DECREMENT}.
5283
5284 @findex USE_STORE_POST_INCREMENT
5285 @item USE_STORE_POST_INCREMENT (@var{mode})
5286 A C expression used to determine whether a store postincrement is a good
5287 thing to use for a given mode.  Defaults to the value of
5288 @code{HAVE_POST_INCREMENT}.
5289
5290 @findex USE_STORE_POST_DECREMENT
5291 @item USE_STORE_POST_DECREMENT (@var{mode})
5292 A C expression used to determine whether a store postdecrement is a good
5293 thing to use for a given mode.  Defaults to the value of
5294 @code{HAVE_POST_DECREMENT}.
5295
5296 @findex USE_STORE_PRE_INCREMENT
5297 @item USE_STORE_PRE_INCREMENT (@var{mode})
5298 This macro is used to determine whether a store preincrement is a good
5299 thing to use for a given mode.  Defaults to the value of
5300 @code{HAVE_PRE_INCREMENT}.
5301
5302 @findex USE_STORE_PRE_DECREMENT
5303 @item USE_STORE_PRE_DECREMENT (@var{mode})
5304 This macro is used to determine whether a store predecrement is a good
5305 thing to use for a given mode.  Defaults to the value of
5306 @code{HAVE_PRE_DECREMENT}.
5307
5308 @findex NO_FUNCTION_CSE
5309 @item NO_FUNCTION_CSE
5310 Define this macro if it is as good or better to call a constant
5311 function address than to call an address kept in a register.
5312
5313 @findex NO_RECURSIVE_FUNCTION_CSE
5314 @item NO_RECURSIVE_FUNCTION_CSE
5315 Define this macro if it is as good or better for a function to call
5316 itself with an explicit address than to call an address kept in a
5317 register.
5318
5319 @findex ADJUST_COST
5320 @item ADJUST_COST (@var{insn}, @var{link}, @var{dep_insn}, @var{cost})
5321 A C statement (sans semicolon) to update the integer variable @var{cost}
5322 based on the relationship between @var{insn} that is dependent on
5323 @var{dep_insn} through the dependence @var{link}.  The default is to
5324 make no adjustment to @var{cost}.  This can be used for example to
5325 specify to the scheduler that an output- or anti-dependence does not
5326 incur the same cost as a data-dependence.
5327
5328 @findex ADJUST_PRIORITY
5329 @item ADJUST_PRIORITY (@var{insn})
5330 A C statement (sans semicolon) to update the integer scheduling
5331 priority @code{INSN_PRIORITY(@var{insn})}.  Reduce the priority
5332 to execute the @var{insn} earlier, increase the priority to execute
5333 @var{insn} later.    Do not define this macro if you do not need to
5334 adjust the scheduling priorities of insns.
5335 @end table
5336
5337 @node Sections
5338 @section Dividing the Output into Sections (Texts, Data, @dots{})
5339 @c the above section title is WAY too long.  maybe cut the part between
5340 @c the (...)?  --mew 10feb93
5341
5342 An object file is divided into sections containing different types of
5343 data.  In the most common case, there are three sections: the @dfn{text
5344 section}, which holds instructions and read-only data; the @dfn{data
5345 section}, which holds initialized writable data; and the @dfn{bss
5346 section}, which holds uninitialized data.  Some systems have other kinds
5347 of sections.
5348
5349 The compiler must tell the assembler when to switch sections.  These
5350 macros control what commands to output to tell the assembler this.  You
5351 can also define additional sections.
5352
5353 @table @code
5354 @findex TEXT_SECTION_ASM_OP
5355 @item TEXT_SECTION_ASM_OP
5356 A C expression whose value is a string, including spacing, containing the
5357 assembler operation that should precede instructions and read-only data.
5358 Normally @code{"\t.text"} is right.
5359
5360 @findex DATA_SECTION_ASM_OP
5361 @item DATA_SECTION_ASM_OP
5362 A C expression whose value is a string, including spacing, containing the
5363 assembler operation to identify the following data as writable initialized
5364 data.  Normally @code{"\t.data"} is right.
5365
5366 @findex SHARED_SECTION_ASM_OP
5367 @item SHARED_SECTION_ASM_OP
5368 If defined, a C expression whose value is a string, including spacing,
5369 containing the assembler operation to identify the following data as
5370 shared data.  If not defined, @code{DATA_SECTION_ASM_OP} will be used.
5371
5372 @findex BSS_SECTION_ASM_OP
5373 @item BSS_SECTION_ASM_OP
5374 If defined, a C expression whose value is a string, including spacing,
5375 containing the assembler operation to identify the following data as
5376 uninitialized global data.  If not defined, and neither
5377 @code{ASM_OUTPUT_BSS} nor @code{ASM_OUTPUT_ALIGNED_BSS} are defined,
5378 uninitialized global data will be output in the data section if
5379 @option{-fno-common} is passed, otherwise @code{ASM_OUTPUT_COMMON} will be
5380 used.
5381
5382 @findex SHARED_BSS_SECTION_ASM_OP
5383 @item SHARED_BSS_SECTION_ASM_OP
5384 If defined, a C expression whose value is a string, including spacing,
5385 containing the assembler operation to identify the following data as
5386 uninitialized global shared data.  If not defined, and
5387 @code{BSS_SECTION_ASM_OP} is, the latter will be used.
5388
5389 @findex INIT_SECTION_ASM_OP
5390 @item INIT_SECTION_ASM_OP
5391 If defined, a C expression whose value is a string, including spacing,
5392 containing the assembler operation to identify the following data as
5393 initialization code.  If not defined, GCC will assume such a section does
5394 not exist.
5395
5396 @findex FINI_SECTION_ASM_OP
5397 @item FINI_SECTION_ASM_OP
5398 If defined, a C expression whose value is a string, including spacing,
5399 containing the assembler operation to identify the following data as
5400 finalization code.  If not defined, GCC will assume such a section does
5401 not exist.
5402
5403 @findex CRT_CALL_STATIC_FUNCTION
5404 @item CRT_CALL_STATIC_FUNCTION
5405 If defined, a C statement that calls the function named as the sole
5406 argument of this macro.  This is used in @file{crtstuff.c} if
5407 @code{INIT_SECTION_ASM_OP} or @code{FINI_SECTION_ASM_OP} to calls to
5408 initialization and finalization functions from the init and fini
5409 sections. By default, this macro is a simple function call.  Some
5410 ports need hand-crafted assembly code to avoid dependencies on
5411 registers initialized in the function prologue or to ensure that
5412 constant pools don't end up too far way in the text section.
5413
5414 @findex EXTRA_SECTIONS
5415 @findex in_text
5416 @findex in_data
5417 @item EXTRA_SECTIONS
5418 A list of names for sections other than the standard two, which are
5419 @code{in_text} and @code{in_data}.  You need not define this macro
5420 on a system with no other sections (that GCC needs to use).
5421
5422 @findex EXTRA_SECTION_FUNCTIONS
5423 @findex text_section
5424 @findex data_section
5425 @item EXTRA_SECTION_FUNCTIONS
5426 One or more functions to be defined in @file{varasm.c}.  These
5427 functions should do jobs analogous to those of @code{text_section} and
5428 @code{data_section}, for your additional sections.  Do not define this
5429 macro if you do not define @code{EXTRA_SECTIONS}.
5430
5431 @findex READONLY_DATA_SECTION
5432 @item READONLY_DATA_SECTION
5433 On most machines, read-only variables, constants, and jump tables are
5434 placed in the text section.  If this is not the case on your machine,
5435 this macro should be defined to be the name of a function (either
5436 @code{data_section} or a function defined in @code{EXTRA_SECTIONS}) that
5437 switches to the section to be used for read-only items.
5438
5439 If these items should be placed in the text section, this macro should
5440 not be defined.
5441
5442 @findex SELECT_SECTION
5443 @item SELECT_SECTION (@var{exp}, @var{reloc})
5444 A C statement or statements to switch to the appropriate section for
5445 output of @var{exp}.  You can assume that @var{exp} is either a
5446 @code{VAR_DECL} node or a constant of some sort.  @var{reloc}
5447 indicates whether the initial value of @var{exp} requires link-time
5448 relocations.  Select the section by calling @code{text_section} or one
5449 of the alternatives for other sections.
5450
5451 Do not define this macro if you put all read-only variables and
5452 constants in the read-only data section (usually the text section).
5453
5454 @findex SELECT_RTX_SECTION
5455 @item SELECT_RTX_SECTION (@var{mode}, @var{rtx})
5456 A C statement or statements to switch to the appropriate section for
5457 output of @var{rtx} in mode @var{mode}.  You can assume that @var{rtx}
5458 is some kind of constant in RTL.  The argument @var{mode} is redundant
5459 except in the case of a @code{const_int} rtx.  Select the section by
5460 calling @code{text_section} or one of the alternatives for other
5461 sections.
5462
5463 Do not define this macro if you put all constants in the read-only
5464 data section.
5465
5466 @findex JUMP_TABLES_IN_TEXT_SECTION
5467 @item JUMP_TABLES_IN_TEXT_SECTION
5468 Define this macro to be an expression with a non-zero value if jump
5469 tables (for @code{tablejump} insns) should be output in the text
5470 section, along with the assembler instructions.  Otherwise, the
5471 readonly data section is used.
5472
5473 This macro is irrelevant if there is no separate readonly data section.
5474
5475 @findex ENCODE_SECTION_INFO
5476 @item ENCODE_SECTION_INFO (@var{decl})
5477 Define this macro if references to a symbol must be treated differently
5478 depending on something about the variable or function named by the
5479 symbol (such as what section it is in).
5480
5481 The macro definition, if any, is executed immediately after the rtl for
5482 @var{decl} has been created and stored in @code{DECL_RTL (@var{decl})}.
5483 The value of the rtl will be a @code{mem} whose address is a
5484 @code{symbol_ref}.
5485
5486 @cindex @code{SYMBOL_REF_FLAG}, in @code{ENCODE_SECTION_INFO}
5487 The usual thing for this macro to do is to record a flag in the
5488 @code{symbol_ref} (such as @code{SYMBOL_REF_FLAG}) or to store a
5489 modified name string in the @code{symbol_ref} (if one bit is not enough
5490 information).
5491
5492 @findex STRIP_NAME_ENCODING
5493 @item STRIP_NAME_ENCODING (@var{var}, @var{sym_name})
5494 Decode @var{sym_name} and store the real name part in @var{var}, sans
5495 the characters that encode section info.  Define this macro if
5496 @code{ENCODE_SECTION_INFO} alters the symbol's name string.
5497
5498 @findex UNIQUE_SECTION_P
5499 @item UNIQUE_SECTION_P (@var{decl})
5500 A C expression which evaluates to true if @var{decl} should be placed
5501 into a unique section for some target-specific reason.  If you do not
5502 define this macro, the default is @samp{0}.  Note that the flag
5503 @option{-ffunction-sections} will also cause functions to be placed into
5504 unique sections.
5505
5506 @findex UNIQUE_SECTION
5507 @item UNIQUE_SECTION (@var{decl}, @var{reloc})
5508 A C statement to build up a unique section name, expressed as a
5509 STRING_CST node, and assign it to @samp{DECL_SECTION_NAME (@var{decl})}.
5510 @var{reloc} indicates whether the initial value of @var{exp} requires
5511 link-time relocations.  If you do not define this macro, GCC will use
5512 the symbol name prefixed by @samp{.} as the section name.  Note - this
5513 macro can now be called for uninitialised data items as well as
5514 initialised data and functions.
5515 @end table
5516
5517 @node PIC
5518 @section Position Independent Code
5519 @cindex position independent code
5520 @cindex PIC
5521
5522 This section describes macros that help implement generation of position
5523 independent code.  Simply defining these macros is not enough to
5524 generate valid PIC; you must also add support to the macros
5525 @code{GO_IF_LEGITIMATE_ADDRESS} and @code{PRINT_OPERAND_ADDRESS}, as
5526 well as @code{LEGITIMIZE_ADDRESS}.  You must modify the definition of
5527 @samp{movsi} to do something appropriate when the source operand
5528 contains a symbolic address.  You may also need to alter the handling of
5529 switch statements so that they use relative addresses.
5530 @c i rearranged the order of the macros above to try to force one of
5531 @c them to the next line, to eliminate an overfull hbox. --mew 10feb93
5532
5533 @table @code
5534 @findex PIC_OFFSET_TABLE_REGNUM
5535 @item PIC_OFFSET_TABLE_REGNUM
5536 The register number of the register used to address a table of static
5537 data addresses in memory.  In some cases this register is defined by a
5538 processor's ``application binary interface'' (ABI).  When this macro
5539 is defined, RTL is generated for this register once, as with the stack
5540 pointer and frame pointer registers.  If this macro is not defined, it
5541 is up to the machine-dependent files to allocate such a register (if
5542 necessary).
5543
5544 @findex PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
5545 @item PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
5546 Define this macro if the register defined by
5547 @code{PIC_OFFSET_TABLE_REGNUM} is clobbered by calls.  Do not define
5548 this macro if @code{PIC_OFFSET_TABLE_REGNUM} is not defined.
5549
5550 @findex FINALIZE_PIC
5551 @item FINALIZE_PIC
5552 By generating position-independent code, when two different programs (A
5553 and B) share a common library (libC.a), the text of the library can be
5554 shared whether or not the library is linked at the same address for both
5555 programs.  In some of these environments, position-independent code
5556 requires not only the use of different addressing modes, but also
5557 special code to enable the use of these addressing modes.
5558
5559 The @code{FINALIZE_PIC} macro serves as a hook to emit these special
5560 codes once the function is being compiled into assembly code, but not
5561 before.  (It is not done before, because in the case of compiling an
5562 inline function, it would lead to multiple PIC prologues being
5563 included in functions which used inline functions and were compiled to
5564 assembly language.)
5565
5566 @findex LEGITIMATE_PIC_OPERAND_P
5567 @item LEGITIMATE_PIC_OPERAND_P (@var{x})
5568 A C expression that is nonzero if @var{x} is a legitimate immediate
5569 operand on the target machine when generating position independent code.
5570 You can assume that @var{x} satisfies @code{CONSTANT_P}, so you need not
5571 check this.  You can also assume @var{flag_pic} is true, so you need not
5572 check it either.  You need not define this macro if all constants
5573 (including @code{SYMBOL_REF}) can be immediate operands when generating
5574 position independent code.
5575 @end table
5576
5577 @node Assembler Format
5578 @section Defining the Output Assembler Language
5579
5580 This section describes macros whose principal purpose is to describe how
5581 to write instructions in assembler language--rather than what the
5582 instructions do.
5583
5584 @menu
5585 * File Framework::       Structural information for the assembler file.
5586 * Data Output::          Output of constants (numbers, strings, addresses).
5587 * Uninitialized Data::   Output of uninitialized variables.
5588 * Label Output::         Output and generation of labels.
5589 * Initialization::       General principles of initialization
5590                            and termination routines.
5591 * Macros for Initialization::
5592                          Specific macros that control the handling of
5593                            initialization and termination routines.
5594 * Instruction Output::   Output of actual instructions.
5595 * Dispatch Tables::      Output of jump tables.
5596 * Exception Region Output:: Output of exception region code.
5597 * Alignment Output::     Pseudo ops for alignment and skipping data.
5598 @end menu
5599
5600 @node File Framework
5601 @subsection The Overall Framework of an Assembler File
5602 @cindex assembler format
5603 @cindex output of assembler code
5604
5605 @c prevent bad page break with this line
5606 This describes the overall framework of an assembler file.
5607
5608 @table @code
5609 @findex ASM_FILE_START
5610 @item ASM_FILE_START (@var{stream})
5611 A C expression which outputs to the stdio stream @var{stream}
5612 some appropriate text to go at the start of an assembler file.
5613
5614 Normally this macro is defined to output a line containing
5615 @samp{#NO_APP}, which is a comment that has no effect on most
5616 assemblers but tells the GNU assembler that it can save time by not
5617 checking for certain assembler constructs.
5618
5619 On systems that use SDB, it is necessary to output certain commands;
5620 see @file{attasm.h}.
5621
5622 @findex ASM_FILE_END
5623 @item ASM_FILE_END (@var{stream})
5624 A C expression which outputs to the stdio stream @var{stream}
5625 some appropriate text to go at the end of an assembler file.
5626
5627 If this macro is not defined, the default is to output nothing
5628 special at the end of the file.  Most systems don't require any
5629 definition.
5630
5631 On systems that use SDB, it is necessary to output certain commands;
5632 see @file{attasm.h}.
5633
5634 @findex ASM_COMMENT_START
5635 @item ASM_COMMENT_START
5636 A C string constant describing how to begin a comment in the target
5637 assembler language.  The compiler assumes that the comment will end at
5638 the end of the line.
5639
5640 @findex ASM_APP_ON
5641 @item ASM_APP_ON
5642 A C string constant for text to be output before each @code{asm}
5643 statement or group of consecutive ones.  Normally this is
5644 @code{"#APP"}, which is a comment that has no effect on most
5645 assemblers but tells the GNU assembler that it must check the lines
5646 that follow for all valid assembler constructs.
5647
5648 @findex ASM_APP_OFF
5649 @item ASM_APP_OFF
5650 A C string constant for text to be output after each @code{asm}
5651 statement or group of consecutive ones.  Normally this is
5652 @code{"#NO_APP"}, which tells the GNU assembler to resume making the
5653 time-saving assumptions that are valid for ordinary compiler output.
5654
5655 @findex ASM_OUTPUT_SOURCE_FILENAME
5656 @item ASM_OUTPUT_SOURCE_FILENAME (@var{stream}, @var{name})
5657 A C statement to output COFF information or DWARF debugging information
5658 which indicates that filename @var{name} is the current source file to
5659 the stdio stream @var{stream}.
5660
5661 This macro need not be defined if the standard form of output
5662 for the file format in use is appropriate.
5663
5664 @findex OUTPUT_QUOTED_STRING
5665 @item OUTPUT_QUOTED_STRING (@var{stream}, @var{string})
5666 A C statement to output the string @var{string} to the stdio stream
5667 @var{stream}.  If you do not call the function @code{output_quoted_string}
5668 in your config files, GCC will only call it to output filenames to
5669 the assembler source.  So you can use it to canonicalize the format
5670 of the filename using this macro.
5671
5672 @findex ASM_OUTPUT_SOURCE_LINE
5673 @item ASM_OUTPUT_SOURCE_LINE (@var{stream}, @var{line})
5674 A C statement to output DBX or SDB debugging information before code
5675 for line number @var{line} of the current source file to the
5676 stdio stream @var{stream}.
5677
5678 This macro need not be defined if the standard form of debugging
5679 information for the debugger in use is appropriate.
5680
5681 @findex ASM_OUTPUT_IDENT
5682 @item ASM_OUTPUT_IDENT (@var{stream}, @var{string})
5683 A C statement to output something to the assembler file to handle a
5684 @samp{#ident} directive containing the text @var{string}.  If this
5685 macro is not defined, nothing is output for a @samp{#ident} directive.
5686
5687 @findex ASM_OUTPUT_SECTION_NAME
5688 @item ASM_OUTPUT_SECTION_NAME (@var{stream}, @var{decl}, @var{name}, @var{reloc})
5689 A C statement to output something to the assembler file to switch to section
5690 @var{name} for object @var{decl} which is either a @code{FUNCTION_DECL}, a
5691 @code{VAR_DECL} or @code{NULL_TREE}.  @var{reloc}
5692 indicates whether the initial value of @var{exp} requires link-time
5693 relocations.  The string given by @var{name} will always be the
5694 canonical version stored in the global stringpool.
5695
5696 Some target formats do not support arbitrary sections.  Do not define
5697 this macro in such cases.
5698
5699 At present this macro is only used to support section attributes.
5700 When this macro is undefined, section attributes are disabled.
5701
5702 @findex OBJC_PROLOGUE
5703 @item OBJC_PROLOGUE
5704 A C statement to output any assembler statements which are required to
5705 precede any Objective-C object definitions or message sending.  The
5706 statement is executed only when compiling an Objective-C program.
5707 @end table
5708
5709 @need 2000
5710 @node Data Output
5711 @subsection Output of Data
5712
5713 @c prevent bad page break with this line
5714 This describes data output.
5715
5716 @table @code
5717 @findex ASM_OUTPUT_LONG_DOUBLE
5718 @findex ASM_OUTPUT_DOUBLE
5719 @findex ASM_OUTPUT_FLOAT
5720 @item ASM_OUTPUT_LONG_DOUBLE (@var{stream}, @var{value})
5721 @itemx ASM_OUTPUT_DOUBLE (@var{stream}, @var{value})
5722 @itemx ASM_OUTPUT_FLOAT (@var{stream}, @var{value})
5723 @itemx ASM_OUTPUT_THREE_QUARTER_FLOAT (@var{stream}, @var{value})
5724 @itemx ASM_OUTPUT_SHORT_FLOAT (@var{stream}, @var{value})
5725 @itemx ASM_OUTPUT_BYTE_FLOAT (@var{stream}, @var{value})
5726 A C statement to output to the stdio stream @var{stream} an assembler
5727 instruction to assemble a floating-point constant of @code{TFmode},
5728 @code{DFmode}, @code{SFmode}, @code{TQFmode}, @code{HFmode}, or
5729 @code{QFmode}, respectively, whose value is @var{value}.  @var{value}
5730 will be a C expression of type @code{REAL_VALUE_TYPE}.  Macros such as
5731 @code{REAL_VALUE_TO_TARGET_DOUBLE} are useful for writing these
5732 definitions.
5733
5734 @findex ASM_OUTPUT_QUADRUPLE_INT
5735 @findex ASM_OUTPUT_DOUBLE_INT
5736 @findex ASM_OUTPUT_INT
5737 @findex ASM_OUTPUT_SHORT
5738 @findex ASM_OUTPUT_CHAR
5739 @findex output_addr_const
5740 @item ASM_OUTPUT_QUADRUPLE_INT (@var{stream}, @var{exp})
5741 @itemx ASM_OUTPUT_DOUBLE_INT (@var{stream}, @var{exp})
5742 @itemx ASM_OUTPUT_INT (@var{stream}, @var{exp})
5743 @itemx ASM_OUTPUT_SHORT (@var{stream}, @var{exp})
5744 @itemx ASM_OUTPUT_CHAR (@var{stream}, @var{exp})
5745 A C statement to output to the stdio stream @var{stream} an assembler
5746 instruction to assemble an integer of 16, 8, 4, 2 or 1 bytes,
5747 respectively, whose value is @var{value}.  The argument @var{exp} will
5748 be an RTL expression which represents a constant value.  Use
5749 @samp{output_addr_const (@var{stream}, @var{exp})} to output this value
5750 as an assembler expression.
5751
5752 For sizes larger than @code{UNITS_PER_WORD}, if the action of a macro
5753 would be identical to repeatedly calling the macro corresponding to
5754 a size of @code{UNITS_PER_WORD}, once for each word, you need not define
5755 the macro.
5756
5757 @findex OUTPUT_ADDR_CONST_EXTRA
5758 @item OUTPUT_ADDR_CONST_EXTRA (@var{stream}, @var{x}, @var{fail})
5759 A C statement to recognize @var{rtx} patterns that
5760 @code{output_addr_const} can't deal with, and output assembly code to
5761 @var{stream} corresponding to the pattern @var{x}.  This may be used to
5762 allow machine-dependent @code{UNSPEC}s to appear within constants.
5763
5764 If @code{OUTPUT_ADDR_CONST_EXTRA} fails to recognize a pattern, it must
5765 @code{goto fail}, so that a standard error message is printed.  If it
5766 prints an error message itself, by calling, for example,
5767 @code{output_operand_lossage}, it may just complete normally.
5768
5769 @findex ASM_OUTPUT_BYTE
5770 @item ASM_OUTPUT_BYTE (@var{stream}, @var{value})
5771 A C statement to output to the stdio stream @var{stream} an assembler
5772 instruction to assemble a single byte containing the number @var{value}.
5773
5774 @findex ASM_BYTE_OP
5775 @item ASM_BYTE_OP
5776 A C string constant, including spacing, giving the pseudo-op to use for a
5777 sequence of single-byte constants.  If this macro is not defined, the
5778 default is @code{"\t.byte\t"}.
5779
5780 @findex UNALIGNED_SHORT_ASM_OP
5781 @findex UNALIGNED_INT_ASM_OP
5782 @findex UNALIGNED_DOUBLE_INT_ASM_OP
5783 @item UNALIGNED_SHORT_ASM_OP
5784 @itemx UNALIGNED_INT_ASM_OP
5785 @itemx UNALIGNED_DOUBLE_INT_ASM_OP
5786 A C string constant, including spacing, giving the pseudo-op to use
5787 to assemble 16-, 32-, and 64-bit integers respectively @emph{without}
5788 adding implicit padding or alignment.  These macros are required if
5789 DWARF 2 frame unwind is used.  On ELF systems, these will default
5790 to @code{.2byte}, @code{.4byte}, and @code{.8byte}.
5791
5792 @findex ASM_OUTPUT_ASCII
5793 @item ASM_OUTPUT_ASCII (@var{stream}, @var{ptr}, @var{len})
5794 A C statement to output to the stdio stream @var{stream} an assembler
5795 instruction to assemble a string constant containing the @var{len}
5796 bytes at @var{ptr}.  @var{ptr} will be a C expression of type
5797 @code{char *} and @var{len} a C expression of type @code{int}.
5798
5799 If the assembler has a @code{.ascii} pseudo-op as found in the
5800 Berkeley Unix assembler, do not define the macro
5801 @code{ASM_OUTPUT_ASCII}.
5802
5803 @findex CONSTANT_POOL_BEFORE_FUNCTION
5804 @item CONSTANT_POOL_BEFORE_FUNCTION
5805 You may define this macro as a C expression.  You should define the
5806 expression to have a non-zero value if GCC should output the constant
5807 pool for a function before the code for the function, or a zero value if
5808 GCC should output the constant pool after the function.  If you do
5809 not define this macro, the usual case, GCC will output the constant
5810 pool before the function.
5811
5812 @findex ASM_OUTPUT_POOL_PROLOGUE
5813 @item ASM_OUTPUT_POOL_PROLOGUE (@var{file}, @var{funname}, @var{fundecl}, @var{size})
5814 A C statement to output assembler commands to define the start of the
5815 constant pool for a function.  @var{funname} is a string giving
5816 the name of the function.  Should the return type of the function
5817 be required, it can be obtained via @var{fundecl}.  @var{size}
5818 is the size, in bytes, of the constant pool that will be written
5819 immediately after this call.
5820
5821 If no constant-pool prefix is required, the usual case, this macro need
5822 not be defined.
5823
5824 @findex ASM_OUTPUT_SPECIAL_POOL_ENTRY
5825 @item ASM_OUTPUT_SPECIAL_POOL_ENTRY (@var{file}, @var{x}, @var{mode}, @var{align}, @var{labelno}, @var{jumpto})
5826 A C statement (with or without semicolon) to output a constant in the
5827 constant pool, if it needs special treatment.  (This macro need not do
5828 anything for RTL expressions that can be output normally.)
5829
5830 The argument @var{file} is the standard I/O stream to output the
5831 assembler code on.  @var{x} is the RTL expression for the constant to
5832 output, and @var{mode} is the machine mode (in case @var{x} is a
5833 @samp{const_int}).  @var{align} is the required alignment for the value
5834 @var{x}; you should output an assembler directive to force this much
5835 alignment.
5836
5837 The argument @var{labelno} is a number to use in an internal label for
5838 the address of this pool entry.  The definition of this macro is
5839 responsible for outputting the label definition at the proper place.
5840 Here is how to do this:
5841
5842 @example
5843 ASM_OUTPUT_INTERNAL_LABEL (@var{file}, "LC", @var{labelno});
5844 @end example
5845
5846 When you output a pool entry specially, you should end with a
5847 @code{goto} to the label @var{jumpto}.  This will prevent the same pool
5848 entry from being output a second time in the usual manner.
5849
5850 You need not define this macro if it would do nothing.
5851
5852 @findex CONSTANT_AFTER_FUNCTION_P
5853 @item CONSTANT_AFTER_FUNCTION_P (@var{exp})
5854 Define this macro as a C expression which is nonzero if the constant
5855 @var{exp}, of type @code{tree}, should be output after the code for a
5856 function.  The compiler will normally output all constants before the
5857 function; you need not define this macro if this is OK.
5858
5859 @findex ASM_OUTPUT_POOL_EPILOGUE
5860 @item ASM_OUTPUT_POOL_EPILOGUE (@var{file} @var{funname} @var{fundecl} @var{size})
5861 A C statement to output assembler commands to at the end of the constant
5862 pool for a function.  @var{funname} is a string giving the name of the
5863 function.  Should the return type of the function be required, you can
5864 obtain it via @var{fundecl}.  @var{size} is the size, in bytes, of the
5865 constant pool that GCC wrote immediately before this call.
5866
5867 If no constant-pool epilogue is required, the usual case, you need not
5868 define this macro.
5869
5870 @findex IS_ASM_LOGICAL_LINE_SEPARATOR
5871 @item IS_ASM_LOGICAL_LINE_SEPARATOR (@var{C})
5872 Define this macro as a C expression which is nonzero if @var{C} is
5873 used as a logical line separator by the assembler.
5874
5875 If you do not define this macro, the default is that only
5876 the character @samp{;} is treated as a logical line separator.
5877
5878
5879 @findex ASM_OPEN_PAREN
5880 @findex ASM_CLOSE_PAREN
5881 @item ASM_OPEN_PAREN
5882 @itemx ASM_CLOSE_PAREN
5883 These macros are defined as C string constants, describing the syntax
5884 in the assembler for grouping arithmetic expressions.  The following
5885 definitions are correct for most assemblers:
5886
5887 @example
5888 #define ASM_OPEN_PAREN "("
5889 #define ASM_CLOSE_PAREN ")"
5890 @end example
5891 @end table
5892
5893   These macros are provided by @file{real.h} for writing the definitions
5894 of @code{ASM_OUTPUT_DOUBLE} and the like:
5895
5896 @table @code
5897 @item REAL_VALUE_TO_TARGET_SINGLE (@var{x}, @var{l})
5898 @itemx REAL_VALUE_TO_TARGET_DOUBLE (@var{x}, @var{l})
5899 @itemx REAL_VALUE_TO_TARGET_LONG_DOUBLE (@var{x}, @var{l})
5900 @findex REAL_VALUE_TO_TARGET_SINGLE
5901 @findex REAL_VALUE_TO_TARGET_DOUBLE
5902 @findex REAL_VALUE_TO_TARGET_LONG_DOUBLE
5903 These translate @var{x}, of type @code{REAL_VALUE_TYPE}, to the target's
5904 floating point representation, and store its bit pattern in the array of
5905 @code{long int} whose address is @var{l}.  The number of elements in the
5906 output array is determined by the size of the desired target floating
5907 point data type: 32 bits of it go in each @code{long int} array
5908 element.  Each array element holds 32 bits of the result, even if
5909 @code{long int} is wider than 32 bits on the host machine.
5910
5911 The array element values are designed so that you can print them out
5912 using @code{fprintf} in the order they should appear in the target
5913 machine's memory.
5914
5915 @item REAL_VALUE_TO_DECIMAL (@var{x}, @var{format}, @var{string})
5916 @findex REAL_VALUE_TO_DECIMAL
5917 This macro converts @var{x}, of type @code{REAL_VALUE_TYPE}, to a
5918 decimal number and stores it as a string into @var{string}.
5919 You must pass, as @var{string}, the address of a long enough block
5920 of space to hold the result.
5921
5922 The argument @var{format} is a @code{printf}-specification that serves
5923 as a suggestion for how to format the output string.
5924 @end table
5925
5926 @node Uninitialized Data
5927 @subsection Output of Uninitialized Variables
5928
5929 Each of the macros in this section is used to do the whole job of
5930 outputting a single uninitialized variable.
5931
5932 @table @code
5933 @findex ASM_OUTPUT_COMMON
5934 @item ASM_OUTPUT_COMMON (@var{stream}, @var{name}, @var{size}, @var{rounded})
5935 A C statement (sans semicolon) to output to the stdio stream
5936 @var{stream} the assembler definition of a common-label named
5937 @var{name} whose size is @var{size} bytes.  The variable @var{rounded}
5938 is the size rounded up to whatever alignment the caller wants.
5939
5940 Use the expression @code{assemble_name (@var{stream}, @var{name})} to
5941 output the name itself; before and after that, output the additional
5942 assembler syntax for defining the name, and a newline.
5943
5944 This macro controls how the assembler definitions of uninitialized
5945 common global variables are output.
5946
5947 @findex ASM_OUTPUT_ALIGNED_COMMON
5948 @item ASM_OUTPUT_ALIGNED_COMMON (@var{stream}, @var{name}, @var{size}, @var{alignment})
5949 Like @code{ASM_OUTPUT_COMMON} except takes the required alignment as a
5950 separate, explicit argument.  If you define this macro, it is used in
5951 place of @code{ASM_OUTPUT_COMMON}, and gives you more flexibility in
5952 handling the required alignment of the variable.  The alignment is specified
5953 as the number of bits.
5954
5955 @findex ASM_OUTPUT_ALIGNED_DECL_COMMON
5956 @item ASM_OUTPUT_ALIGNED_DECL_COMMON (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{alignment})
5957 Like @code{ASM_OUTPUT_ALIGNED_COMMON} except that @var{decl} of the
5958 variable to be output, if there is one, or @code{NULL_TREE} if there
5959 is no corresponding variable.  If you define this macro, GCC will use it
5960 in place of both @code{ASM_OUTPUT_COMMON} and
5961 @code{ASM_OUTPUT_ALIGNED_COMMON}.  Define this macro when you need to see
5962 the variable's decl in order to chose what to output.
5963
5964 @findex ASM_OUTPUT_SHARED_COMMON
5965 @item ASM_OUTPUT_SHARED_COMMON (@var{stream}, @var{name}, @var{size}, @var{rounded})
5966 If defined, it is similar to @code{ASM_OUTPUT_COMMON}, except that it
5967 is used when @var{name} is shared.  If not defined, @code{ASM_OUTPUT_COMMON}
5968 will be used.
5969
5970 @findex ASM_OUTPUT_BSS
5971 @item ASM_OUTPUT_BSS (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{rounded})
5972 A C statement (sans semicolon) to output to the stdio stream
5973 @var{stream} the assembler definition of uninitialized global @var{decl} named
5974 @var{name} whose size is @var{size} bytes.  The variable @var{rounded}
5975 is the size rounded up to whatever alignment the caller wants.
5976
5977 Try to use function @code{asm_output_bss} defined in @file{varasm.c} when
5978 defining this macro.  If unable, use the expression
5979 @code{assemble_name (@var{stream}, @var{name})} to output the name itself;
5980 before and after that, output the additional assembler syntax for defining
5981 the name, and a newline.
5982
5983 This macro controls how the assembler definitions of uninitialized global
5984 variables are output.  This macro exists to properly support languages like
5985 @code{c++} which do not have @code{common} data.  However, this macro currently
5986 is not defined for all targets.  If this macro and
5987 @code{ASM_OUTPUT_ALIGNED_BSS} are not defined then @code{ASM_OUTPUT_COMMON}
5988 or @code{ASM_OUTPUT_ALIGNED_COMMON} or
5989 @code{ASM_OUTPUT_ALIGNED_DECL_COMMON} is used.
5990
5991 @findex ASM_OUTPUT_ALIGNED_BSS
5992 @item ASM_OUTPUT_ALIGNED_BSS (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{alignment})
5993 Like @code{ASM_OUTPUT_BSS} except takes the required alignment as a
5994 separate, explicit argument.  If you define this macro, it is used in
5995 place of @code{ASM_OUTPUT_BSS}, and gives you more flexibility in
5996 handling the required alignment of the variable.  The alignment is specified
5997 as the number of bits.
5998
5999 Try to use function @code{asm_output_aligned_bss} defined in file
6000 @file{varasm.c} when defining this macro.
6001
6002 @findex ASM_OUTPUT_SHARED_BSS
6003 @item ASM_OUTPUT_SHARED_BSS (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{rounded})
6004 If defined, it is similar to @code{ASM_OUTPUT_BSS}, except that it
6005 is used when @var{name} is shared.  If not defined, @code{ASM_OUTPUT_BSS}
6006 will be used.
6007
6008 @findex ASM_OUTPUT_LOCAL
6009 @item ASM_OUTPUT_LOCAL (@var{stream}, @var{name}, @var{size}, @var{rounded})
6010 A C statement (sans semicolon) to output to the stdio stream
6011 @var{stream} the assembler definition of a local-common-label named
6012 @var{name} whose size is @var{size} bytes.  The variable @var{rounded}
6013 is the size rounded up to whatever alignment the caller wants.
6014
6015 Use the expression @code{assemble_name (@var{stream}, @var{name})} to
6016 output the name itself; before and after that, output the additional
6017 assembler syntax for defining the name, and a newline.
6018
6019 This macro controls how the assembler definitions of uninitialized
6020 static variables are output.
6021
6022 @findex ASM_OUTPUT_ALIGNED_LOCAL
6023 @item ASM_OUTPUT_ALIGNED_LOCAL (@var{stream}, @var{name}, @var{size}, @var{alignment})
6024 Like @code{ASM_OUTPUT_LOCAL} except takes the required alignment as a
6025 separate, explicit argument.  If you define this macro, it is used in
6026 place of @code{ASM_OUTPUT_LOCAL}, and gives you more flexibility in
6027 handling the required alignment of the variable.  The alignment is specified
6028 as the number of bits.
6029
6030 @findex ASM_OUTPUT_ALIGNED_DECL_LOCAL
6031 @item ASM_OUTPUT_ALIGNED_DECL_LOCAL (@var{stream}, @var{decl}, @var{name}, @var{size}, @var{alignment})
6032 Like @code{ASM_OUTPUT_ALIGNED_DECL} except that @var{decl} of the
6033 variable to be output, if there is one, or @code{NULL_TREE} if there
6034 is no corresponding variable.  If you define this macro, GCC will use it
6035 in place of both @code{ASM_OUTPUT_DECL} and
6036 @code{ASM_OUTPUT_ALIGNED_DECL}.  Define this macro when you need to see
6037 the variable's decl in order to chose what to output.
6038
6039 @findex ASM_OUTPUT_SHARED_LOCAL
6040 @item ASM_OUTPUT_SHARED_LOCAL (@var{stream}, @var{name}, @var{size}, @var{rounded})
6041 If defined, it is similar to @code{ASM_OUTPUT_LOCAL}, except that it
6042 is used when @var{name} is shared.  If not defined, @code{ASM_OUTPUT_LOCAL}
6043 will be used.
6044 @end table
6045
6046 @node Label Output
6047 @subsection Output and Generation of Labels
6048
6049 @c prevent bad page break with this line
6050 This is about outputting labels.
6051
6052 @table @code
6053 @findex ASM_OUTPUT_LABEL
6054 @findex assemble_name
6055 @item ASM_OUTPUT_LABEL (@var{stream}, @var{name})
6056 A C statement (sans semicolon) to output to the stdio stream
6057 @var{stream} the assembler definition of a label named @var{name}.
6058 Use the expression @code{assemble_name (@var{stream}, @var{name})} to
6059 output the name itself; before and after that, output the additional
6060 assembler syntax for defining the name, and a newline.
6061
6062 @findex ASM_DECLARE_FUNCTION_NAME
6063 @item ASM_DECLARE_FUNCTION_NAME (@var{stream}, @var{name}, @var{decl})
6064 A C statement (sans semicolon) to output to the stdio stream
6065 @var{stream} any text necessary for declaring the name @var{name} of a
6066 function which is being defined.  This macro is responsible for
6067 outputting the label definition (perhaps using
6068 @code{ASM_OUTPUT_LABEL}).  The argument @var{decl} is the
6069 @code{FUNCTION_DECL} tree node representing the function.
6070
6071 If this macro is not defined, then the function name is defined in the
6072 usual manner as a label (by means of @code{ASM_OUTPUT_LABEL}).
6073
6074 @findex ASM_DECLARE_FUNCTION_SIZE
6075 @item ASM_DECLARE_FUNCTION_SIZE (@var{stream}, @var{name}, @var{decl})
6076 A C statement (sans semicolon) to output to the stdio stream
6077 @var{stream} any text necessary for declaring the size of a function
6078 which is being defined.  The argument @var{name} is the name of the
6079 function.  The argument @var{decl} is the @code{FUNCTION_DECL} tree node
6080 representing the function.
6081
6082 If this macro is not defined, then the function size is not defined.
6083
6084 @findex ASM_DECLARE_OBJECT_NAME
6085 @item ASM_DECLARE_OBJECT_NAME (@var{stream}, @var{name}, @var{decl})
6086 A C statement (sans semicolon) to output to the stdio stream
6087 @var{stream} any text necessary for declaring the name @var{name} of an
6088 initialized variable which is being defined.  This macro must output the
6089 label definition (perhaps using @code{ASM_OUTPUT_LABEL}).  The argument
6090 @var{decl} is the @code{VAR_DECL} tree node representing the variable.
6091
6092 If this macro is not defined, then the variable name is defined in the
6093 usual manner as a label (by means of @code{ASM_OUTPUT_LABEL}).
6094
6095 @findex ASM_DECLARE_REGISTER_GLOBAL
6096 @item ASM_DECLARE_REGISTER_GLOBAL (@var{stream}, @var{decl}, @var{regno}, @var{name})
6097 A C statement (sans semicolon) to output to the stdio stream
6098 @var{stream} any text necessary for claiming a register @var{regno}
6099 for a global variable @var{decl} with name @var{name}.
6100
6101 If you don't define this macro, that is equivalent to defining it to do
6102 nothing.
6103
6104 @findex  ASM_FINISH_DECLARE_OBJECT
6105 @item ASM_FINISH_DECLARE_OBJECT (@var{stream}, @var{decl}, @var{toplevel}, @var{atend})
6106 A C statement (sans semicolon) to finish up declaring a variable name
6107 once the compiler has processed its initializer fully and thus has had a
6108 chance to determine the size of an array when controlled by an
6109 initializer.  This is used on systems where it's necessary to declare
6110 something about the size of the object.
6111
6112 If you don't define this macro, that is equivalent to defining it to do
6113 nothing.
6114
6115 @findex ASM_GLOBALIZE_LABEL
6116 @item ASM_GLOBALIZE_LABEL (@var{stream}, @var{name})
6117 A C statement (sans semicolon) to output to the stdio stream
6118 @var{stream} some commands that will make the label @var{name} global;
6119 that is, available for reference from other files.  Use the expression
6120 @code{assemble_name (@var{stream}, @var{name})} to output the name
6121 itself; before and after that, output the additional assembler syntax
6122 for making that name global, and a newline.
6123
6124 @findex ASM_WEAKEN_LABEL
6125 @item ASM_WEAKEN_LABEL
6126 A C statement (sans semicolon) to output to the stdio stream
6127 @var{stream} some commands that will make the label @var{name} weak;
6128 that is, available for reference from other files but only used if
6129 no other definition is available.  Use the expression
6130 @code{assemble_name (@var{stream}, @var{name})} to output the name
6131 itself; before and after that, output the additional assembler syntax
6132 for making that name weak, and a newline.
6133
6134 If you don't define this macro, GCC will not support weak
6135 symbols and you should not define the @code{SUPPORTS_WEAK} macro.
6136
6137 @findex SUPPORTS_WEAK
6138 @item SUPPORTS_WEAK
6139 A C expression which evaluates to true if the target supports weak symbols.
6140
6141 If you don't define this macro, @file{defaults.h} provides a default
6142 definition.  If @code{ASM_WEAKEN_LABEL} is defined, the default
6143 definition is @samp{1}; otherwise, it is @samp{0}.  Define this macro if
6144 you want to control weak symbol support with a compiler flag such as
6145 @option{-melf}.
6146
6147 @findex MAKE_DECL_ONE_ONLY (@var{decl})
6148 @item MAKE_DECL_ONE_ONLY
6149 A C statement (sans semicolon) to mark @var{decl} to be emitted as a
6150 public symbol such that extra copies in multiple translation units will
6151 be discarded by the linker.  Define this macro if your object file
6152 format provides support for this concept, such as the @samp{COMDAT}
6153 section flags in the Microsoft Windows PE/COFF format, and this support
6154 requires changes to @var{decl}, such as putting it in a separate section.
6155
6156 @findex SUPPORTS_ONE_ONLY
6157 @item SUPPORTS_ONE_ONLY
6158 A C expression which evaluates to true if the target supports one-only
6159 semantics.
6160
6161 If you don't define this macro, @file{varasm.c} provides a default
6162 definition.  If @code{MAKE_DECL_ONE_ONLY} is defined, the default
6163 definition is @samp{1}; otherwise, it is @samp{0}.  Define this macro if
6164 you want to control one-only symbol support with a compiler flag, or if
6165 setting the @code{DECL_ONE_ONLY} flag is enough to mark a declaration to
6166 be emitted as one-only.
6167
6168 @findex ASM_OUTPUT_EXTERNAL
6169 @item ASM_OUTPUT_EXTERNAL (@var{stream}, @var{decl}, @var{name})
6170 A C statement (sans semicolon) to output to the stdio stream
6171 @var{stream} any text necessary for declaring the name of an external
6172 symbol named @var{name} which is referenced in this compilation but
6173 not defined.  The value of @var{decl} is the tree node for the
6174 declaration.
6175
6176 This macro need not be defined if it does not need to output anything.
6177 The GNU assembler and most Unix assemblers don't require anything.
6178
6179 @findex ASM_OUTPUT_EXTERNAL_LIBCALL
6180 @item ASM_OUTPUT_EXTERNAL_LIBCALL (@var{stream}, @var{symref})
6181 A C statement (sans semicolon) to output on @var{stream} an assembler
6182 pseudo-op to declare a library function name external.  The name of the
6183 library function is given by @var{symref}, which has type @code{rtx} and
6184 is a @code{symbol_ref}.
6185
6186 This macro need not be defined if it does not need to output anything.
6187 The GNU assembler and most Unix assemblers don't require anything.
6188
6189 @findex ASM_OUTPUT_LABELREF
6190 @item ASM_OUTPUT_LABELREF (@var{stream}, @var{name})
6191 A C statement (sans semicolon) to output to the stdio stream
6192 @var{stream} a reference in assembler syntax to a label named
6193 @var{name}.  This should add @samp{_} to the front of the name, if that
6194 is customary on your operating system, as it is in most Berkeley Unix
6195 systems.  This macro is used in @code{assemble_name}.
6196
6197 @ignore @c Seems not to exist anymore.
6198 @findex ASM_OUTPUT_LABELREF_AS_INT
6199 @item ASM_OUTPUT_LABELREF_AS_INT (@var{file}, @var{label})
6200 Define this macro for systems that use the program @code{collect2}.
6201 The definition should be a C statement to output a word containing
6202 a reference to the label @var{label}.
6203 @end ignore
6204
6205 @findex ASM_OUTPUT_SYMBOL_REF
6206 @item ASM_OUTPUT_SYMBOL_REF (@var{stream}, @var{sym})
6207 A C statement (sans semicolon) to output a reference to
6208 @code{SYMBOL_REF} @var{sym}.  If not defined, @code{assemble_output}
6209 will be used to output the name of the symbol.  This macro may be used
6210 to modify the way a symbol is referenced depending on information
6211 encoded by @code{ENCODE_SECTION_INFO}.
6212
6213 @findex ASM_OUTPUT_INTERNAL_LABEL
6214 @item ASM_OUTPUT_INTERNAL_LABEL (@var{stream}, @var{prefix}, @var{num})
6215 A C statement to output to the stdio stream @var{stream} a label whose
6216 name is made from the string @var{prefix} and the number @var{num}.
6217
6218 It is absolutely essential that these labels be distinct from the labels
6219 used for user-level functions and variables.  Otherwise, certain programs
6220 will have name conflicts with internal labels.
6221
6222 It is desirable to exclude internal labels from the symbol table of the
6223 object file.  Most assemblers have a naming convention for labels that
6224 should be excluded; on many systems, the letter @samp{L} at the
6225 beginning of a label has this effect.  You should find out what
6226 convention your system uses, and follow it.
6227
6228 The usual definition of this macro is as follows:
6229
6230 @example
6231 fprintf (@var{stream}, "L%s%d:\n", @var{prefix}, @var{num})
6232 @end example
6233
6234 @findex ASM_OUTPUT_DEBUG_LABEL
6235 @item ASM_OUTPUT_DEBUG_LABEL (@var{stream}, @var{prefix}, @var{num})
6236 A C statement to output to the stdio stream @var{stream} a debug info
6237 label whose name is made from the string @var{prefix} and the number
6238 @var{num}.  This is useful for VLIW targets, where debug info labels
6239 may need to be treated differently than branch target labels.  On some
6240 systems, branch target labels must be at the beginning of instruction
6241 bundles, but debug info labels can occur in the middle of instruction
6242 bundles.
6243
6244 If this macro is not defined, then @code{ASM_OUTPUT_INTERNAL_LABEL} will be
6245 used.
6246
6247 @findex ASM_OUTPUT_ALTERNATE_LABEL_NAME
6248 @item ASM_OUTPUT_ALTERNATE_LABEL_NAME (@var{stream}, @var{string})
6249 A C statement to output to the stdio stream @var{stream} the string
6250 @var{string}.
6251
6252 The default definition of this macro is as follows:
6253
6254 @example
6255 fprintf (@var{stream}, "%s:\n", LABEL_ALTERNATE_NAME (INSN))
6256 @end example
6257
6258 @findex ASM_GENERATE_INTERNAL_LABEL
6259 @item ASM_GENERATE_INTERNAL_LABEL (@var{string}, @var{prefix}, @var{num})
6260 A C statement to store into the string @var{string} a label whose name
6261 is made from the string @var{prefix} and the number @var{num}.
6262
6263 This string, when output subsequently by @code{assemble_name}, should
6264 produce the output that @code{ASM_OUTPUT_INTERNAL_LABEL} would produce
6265 with the same @var{prefix} and @var{num}.
6266
6267 If the string begins with @samp{*}, then @code{assemble_name} will
6268 output the rest of the string unchanged.  It is often convenient for
6269 @code{ASM_GENERATE_INTERNAL_LABEL} to use @samp{*} in this way.  If the
6270 string doesn't start with @samp{*}, then @code{ASM_OUTPUT_LABELREF} gets
6271 to output the string, and may change it.  (Of course,
6272 @code{ASM_OUTPUT_LABELREF} is also part of your machine description, so
6273 you should know what it does on your machine.)
6274
6275 @findex ASM_FORMAT_PRIVATE_NAME
6276 @item ASM_FORMAT_PRIVATE_NAME (@var{outvar}, @var{name}, @var{number})
6277 A C expression to assign to @var{outvar} (which is a variable of type
6278 @code{char *}) a newly allocated string made from the string
6279 @var{name} and the number @var{number}, with some suitable punctuation
6280 added.  Use @code{alloca} to get space for the string.
6281
6282 The string will be used as an argument to @code{ASM_OUTPUT_LABELREF} to
6283 produce an assembler label for an internal static variable whose name is
6284 @var{name}.  Therefore, the string must be such as to result in valid
6285 assembler code.  The argument @var{number} is different each time this
6286 macro is executed; it prevents conflicts between similarly-named
6287 internal static variables in different scopes.
6288
6289 Ideally this string should not be a valid C identifier, to prevent any
6290 conflict with the user's own symbols.  Most assemblers allow periods
6291 or percent signs in assembler symbols; putting at least one of these
6292 between the name and the number will suffice.
6293
6294 @findex ASM_OUTPUT_DEF
6295 @item ASM_OUTPUT_DEF (@var{stream}, @var{name}, @var{value})
6296 A C statement to output to the stdio stream @var{stream} assembler code
6297 which defines (equates) the symbol @var{name} to have the value @var{value}.
6298
6299 @findex SET_ASM_OP
6300 If SET_ASM_OP is defined, a default definition is provided which is
6301 correct for most systems.
6302
6303 @findex ASM_OUTPUT_DEF_FROM_DECLS
6304 @item ASM_OUTPUT_DEF_FROM_DECLS (@var{stream}, @var{decl_of_name}, @var{decl_of_value})
6305 A C statement to output to the stdio stream @var{stream} assembler code
6306 which defines (equates) the symbol whose tree node is @var{decl_of_name}
6307 to have the value of the tree node @var{decl_of_value}.  This macro will
6308 be used in preference to @samp{ASM_OUTPUT_DEF} if it is defined and if
6309 the tree nodes are available.
6310
6311 @findex ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
6312 @item ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL (@var{stream}, @var{symbol}, @var{high}, @var{low})
6313 A C statement to output to the stdio stream @var{stream} assembler code
6314 which defines (equates) the symbol @var{symbol} to have a value equal to
6315 the difference of the two symbols @var{high} and @var{low}, i.e.
6316 @var{high} minus @var{low}.  GCC guarantees that the symbols @var{high}
6317 and @var{low} are already known by the assembler so that the difference
6318 resolves into a constant.
6319
6320 @findex SET_ASM_OP
6321 If SET_ASM_OP is defined, a default definition is provided which is
6322 correct for most systems.
6323
6324 @findex ASM_OUTPUT_WEAK_ALIAS
6325 @item ASM_OUTPUT_WEAK_ALIAS (@var{stream}, @var{name}, @var{value})
6326 A C statement to output to the stdio stream @var{stream} assembler code
6327 which defines (equates) the weak symbol @var{name} to have the value
6328 @var{value}.
6329
6330 Define this macro if the target only supports weak aliases; define
6331 ASM_OUTPUT_DEF instead if possible.
6332
6333 @findex OBJC_GEN_METHOD_LABEL
6334 @item OBJC_GEN_METHOD_LABEL (@var{buf}, @var{is_inst}, @var{class_name}, @var{cat_name}, @var{sel_name})
6335 Define this macro to override the default assembler names used for
6336 Objective-C methods.
6337
6338 The default name is a unique method number followed by the name of the
6339 class (e.g.@: @samp{_1_Foo}).  For methods in categories, the name of
6340 the category is also included in the assembler name (e.g.@:
6341 @samp{_1_Foo_Bar}).
6342
6343 These names are safe on most systems, but make debugging difficult since
6344 the method's selector is not present in the name.  Therefore, particular
6345 systems define other ways of computing names.
6346
6347 @var{buf} is an expression of type @code{char *} which gives you a
6348 buffer in which to store the name; its length is as long as
6349 @var{class_name}, @var{cat_name} and @var{sel_name} put together, plus
6350 50 characters extra.
6351
6352 The argument @var{is_inst} specifies whether the method is an instance
6353 method or a class method; @var{class_name} is the name of the class;
6354 @var{cat_name} is the name of the category (or NULL if the method is not
6355 in a category); and @var{sel_name} is the name of the selector.
6356
6357 On systems where the assembler can handle quoted names, you can use this
6358 macro to provide more human-readable names.
6359
6360 @findex ASM_DECLARE_UNRESOLVED_REFERENCE
6361 @item ASM_DECLARE_UNRESOLVED_REFERENCE (@var{stream}, @var{name})
6362 A C statement (sans semicolon) to output to the stdio stream
6363 @var{stream} commands to declare that the label @var{name} is an
6364 unresolved Objective-C class reference.  This is only needed for targets
6365 whose linkers have special support for NeXT-style runtimes.
6366 @end table
6367
6368 @node Initialization
6369 @subsection How Initialization Functions Are Handled
6370 @cindex initialization routines
6371 @cindex termination routines
6372 @cindex constructors, output of
6373 @cindex destructors, output of
6374
6375 The compiled code for certain languages includes @dfn{constructors}
6376 (also called @dfn{initialization routines})---functions to initialize
6377 data in the program when the program is started.  These functions need
6378 to be called before the program is ``started''---that is to say, before
6379 @code{main} is called.
6380
6381 Compiling some languages generates @dfn{destructors} (also called
6382 @dfn{termination routines}) that should be called when the program
6383 terminates.
6384
6385 To make the initialization and termination functions work, the compiler
6386 must output something in the assembler code to cause those functions to
6387 be called at the appropriate time.  When you port the compiler to a new
6388 system, you need to specify how to do this.
6389
6390 There are two major ways that GCC currently supports the execution of
6391 initialization and termination functions.  Each way has two variants.
6392 Much of the structure is common to all four variations.
6393
6394 @findex __CTOR_LIST__
6395 @findex __DTOR_LIST__
6396 The linker must build two lists of these functions---a list of
6397 initialization functions, called @code{__CTOR_LIST__}, and a list of
6398 termination functions, called @code{__DTOR_LIST__}.
6399
6400 Each list always begins with an ignored function pointer (which may hold
6401 0, @minus{}1, or a count of the function pointers after it, depending on
6402 the environment).  This is followed by a series of zero or more function
6403 pointers to constructors (or destructors), followed by a function
6404 pointer containing zero.
6405
6406 Depending on the operating system and its executable file format, either
6407 @file{crtstuff.c} or @file{libgcc2.c} traverses these lists at startup
6408 time and exit time.  Constructors are called in reverse order of the
6409 list; destructors in forward order.
6410
6411 The best way to handle static constructors works only for object file
6412 formats which provide arbitrarily-named sections.  A section is set
6413 aside for a list of constructors, and another for a list of destructors.
6414 Traditionally these are called @samp{.ctors} and @samp{.dtors}.  Each
6415 object file that defines an initialization function also puts a word in
6416 the constructor section to point to that function.  The linker
6417 accumulates all these words into one contiguous @samp{.ctors} section.
6418 Termination functions are handled similarly.
6419
6420 To use this method, you need appropriate definitions of the macros
6421 @code{ASM_OUTPUT_CONSTRUCTOR} and @code{ASM_OUTPUT_DESTRUCTOR}.  Usually
6422 you can get them by including @file{svr4.h}.
6423
6424 When arbitrary sections are available, there are two variants, depending
6425 upon how the code in @file{crtstuff.c} is called.  On systems that
6426 support an @dfn{init} section which is executed at program startup,
6427 parts of @file{crtstuff.c} are compiled into that section.  The
6428 program is linked by the @code{gcc} driver like this:
6429
6430 @example
6431 ld -o @var{output_file} crtbegin.o @dots{} crtend.o -lgcc
6432 @end example
6433
6434 The head of a function (@code{__do_global_ctors}) appears in the init
6435 section of @file{crtbegin.o}; the remainder of the function appears in
6436 the init section of @file{crtend.o}.  The linker will pull these two
6437 parts of the section together, making a whole function.  If any of the
6438 user's object files linked into the middle of it contribute code, then that
6439 code will be executed as part of the body of @code{__do_global_ctors}.
6440
6441 To use this variant, you must define the @code{INIT_SECTION_ASM_OP}
6442 macro properly.
6443
6444 If no init section is available, do not define
6445 @code{INIT_SECTION_ASM_OP}.  Then @code{__do_global_ctors} is built into
6446 the text section like all other functions, and resides in
6447 @file{libgcc.a}.  When GCC compiles any function called @code{main}, it
6448 inserts a procedure call to @code{__main} as the first executable code
6449 after the function prologue.  The @code{__main} function, also defined
6450 in @file{libgcc2.c}, simply calls @file{__do_global_ctors}.
6451
6452 In file formats that don't support arbitrary sections, there are again
6453 two variants.  In the simplest variant, the GNU linker (GNU @code{ld})
6454 and an `a.out' format must be used.  In this case,
6455 @code{ASM_OUTPUT_CONSTRUCTOR} is defined to produce a @code{.stabs}
6456 entry of type @samp{N_SETT}, referencing the name @code{__CTOR_LIST__},
6457 and with the address of the void function containing the initialization
6458 code as its value.  The GNU linker recognizes this as a request to add
6459 the value to a ``set''; the values are accumulated, and are eventually
6460 placed in the executable as a vector in the format described above, with
6461 a leading (ignored) count and a trailing zero element.
6462 @code{ASM_OUTPUT_DESTRUCTOR} is handled similarly.  Since no init
6463 section is available, the absence of @code{INIT_SECTION_ASM_OP} causes
6464 the compilation of @code{main} to call @code{__main} as above, starting
6465 the initialization process.
6466
6467 The last variant uses neither arbitrary sections nor the GNU linker.
6468 This is preferable when you want to do dynamic linking and when using
6469 file formats which the GNU linker does not support, such as `ECOFF'.  In
6470 this case, @code{ASM_OUTPUT_CONSTRUCTOR} does not produce an
6471 @code{N_SETT} symbol; initialization and termination functions are
6472 recognized simply by their names.  This requires an extra program in the
6473 linkage step, called @code{collect2}.  This program pretends to be the
6474 linker, for use with GCC; it does its job by running the ordinary
6475 linker, but also arranges to include the vectors of initialization and
6476 termination functions.  These functions are called via @code{__main} as
6477 described above.
6478
6479 Choosing among these configuration options has been simplified by a set
6480 of operating-system-dependent files in the @file{config} subdirectory.
6481 These files define all of the relevant parameters.  Usually it is
6482 sufficient to include one into your specific machine-dependent
6483 configuration file.  These files are:
6484
6485 @table @file
6486 @item aoutos.h
6487 For operating systems using the `a.out' format.
6488
6489 @item next.h
6490 For operating systems using the `MachO' format.
6491
6492 @item svr3.h
6493 For System V Release 3 and similar systems using `COFF' format.
6494
6495 @item svr4.h
6496 For System V Release 4 and similar systems using `ELF' format.
6497
6498 @item vms.h
6499 For the VMS operating system.
6500 @end table
6501
6502 @ifinfo
6503 The following section describes the specific macros that control and
6504 customize the handling of initialization and termination functions.
6505 @end ifinfo
6506
6507 @node Macros for Initialization
6508 @subsection Macros Controlling Initialization Routines
6509
6510 Here are the macros that control how the compiler handles initialization
6511 and termination functions:
6512
6513 @table @code
6514 @findex INIT_SECTION_ASM_OP
6515 @item INIT_SECTION_ASM_OP
6516 If defined, a C string constant, including spacing, for the assembler
6517 operation to identify the following data as initialization code.  If not
6518 defined, GCC will assume such a section does not exist.  When you are
6519 using special sections for initialization and termination functions, this
6520 macro also controls how @file{crtstuff.c} and @file{libgcc2.c} arrange to
6521 run the initialization functions.
6522
6523 @item HAS_INIT_SECTION
6524 @findex HAS_INIT_SECTION
6525 If defined, @code{main} will not call @code{__main} as described above.
6526 This macro should be defined for systems that control the contents of the
6527 init section on a symbol-by-symbol basis, such as OSF/1, and should not
6528 be defined explicitly for systems that support
6529 @code{INIT_SECTION_ASM_OP}.
6530
6531 @item LD_INIT_SWITCH
6532 @findex LD_INIT_SWITCH
6533 If defined, a C string constant for a switch that tells the linker that
6534 the following symbol is an initialization routine.
6535
6536 @item LD_FINI_SWITCH
6537 @findex LD_FINI_SWITCH
6538 If defined, a C string constant for a switch that tells the linker that
6539 the following symbol is a finalization routine.
6540
6541 @item INVOKE__main
6542 @findex INVOKE__main
6543 If defined, @code{main} will call @code{__main} despite the presence of
6544 @code{INIT_SECTION_ASM_OP}.  This macro should be defined for systems
6545 where the init section is not actually run automatically, but is still
6546 useful for collecting the lists of constructors and destructors.
6547
6548 @item SUPPORTS_INIT_PRIORITY
6549 @findex SUPPORTS_INIT_PRIORITY
6550 If nonzero, the C++ @code{init_priority} attribute is supported and the
6551 compiler should emit instructions to control the order of initialization
6552 of objects.  If zero, the compiler will issue an error message upon
6553 encountering an @code{init_priority} attribute.
6554
6555 @item ASM_OUTPUT_CONSTRUCTOR (@var{stream}, @var{name})
6556 @findex ASM_OUTPUT_CONSTRUCTOR
6557 Define this macro as a C statement to output on the stream @var{stream}
6558 the assembler code to arrange to call the function named @var{name} at
6559 initialization time.
6560
6561 Assume that @var{name} is the name of a C function generated
6562 automatically by the compiler.  This function takes no arguments.  Use
6563 the function @code{assemble_name} to output the name @var{name}; this
6564 performs any system-specific syntactic transformations such as adding an
6565 underscore.
6566
6567 If you don't define this macro, nothing special is output to arrange to
6568 call the function.  This is correct when the function will be called in
6569 some other manner---for example, by means of the @code{collect2} program,
6570 which looks through the symbol table to find these functions by their
6571 names.
6572
6573 @item ASM_OUTPUT_DESTRUCTOR (@var{stream}, @var{name})
6574 @findex ASM_OUTPUT_DESTRUCTOR
6575 This is like @code{ASM_OUTPUT_CONSTRUCTOR} but used for termination
6576 functions rather than initialization functions.
6577
6578 When @code{ASM_OUTPUT_CONSTRUCTOR} and @code{ASM_OUTPUT_DESTRUCTOR} are
6579 defined, the initialization routine generated for the generated object
6580 file will have static linkage.
6581 @end table
6582
6583 If your system uses @code{collect2} as the means of processing
6584 constructors, then that program normally uses @code{nm} to scan an
6585 object file for constructor functions to be called.  On such systems you
6586 must not define @code{ASM_OUTPUT_CONSTRUCTOR} and @code{ASM_OUTPUT_DESTRUCTOR}
6587 as the object file's initialization routine must have global scope.
6588
6589 On certain kinds of systems, you can define these macros to make
6590 @code{collect2} work faster (and, in some cases, make it work at all):
6591
6592 @table @code
6593 @findex OBJECT_FORMAT_COFF
6594 @item OBJECT_FORMAT_COFF
6595 Define this macro if the system uses COFF (Common Object File Format)
6596 object files, so that @code{collect2} can assume this format and scan
6597 object files directly for dynamic constructor/destructor functions.
6598
6599 @findex OBJECT_FORMAT_ROSE
6600 @item OBJECT_FORMAT_ROSE
6601 Define this macro if the system uses ROSE format object files, so that
6602 @code{collect2} can assume this format and scan object files directly
6603 for dynamic constructor/destructor functions.
6604
6605 These macros are effective only in a native compiler; @code{collect2} as
6606 part of a cross compiler always uses @code{nm} for the target machine.
6607
6608 @findex REAL_NM_FILE_NAME
6609 @item REAL_NM_FILE_NAME
6610 Define this macro as a C string constant containing the file name to use
6611 to execute @code{nm}.  The default is to search the path normally for
6612 @code{nm}.
6613
6614 If your system supports shared libraries and has a program to list the
6615 dynamic dependencies of a given library or executable, you can define
6616 these macros to enable support for running initialization and
6617 termination functions in shared libraries:
6618
6619 @findex LDD_SUFFIX
6620 @item LDD_SUFFIX
6621 Define this macro to a C string constant containing the name of the
6622 program which lists dynamic dependencies, like @code{"ldd"} under SunOS 4.
6623
6624 @findex PARSE_LDD_OUTPUT
6625 @item PARSE_LDD_OUTPUT (@var{PTR})
6626 Define this macro to be C code that extracts filenames from the output
6627 of the program denoted by @code{LDD_SUFFIX}.  @var{PTR} is a variable
6628 of type @code{char *} that points to the beginning of a line of output
6629 from @code{LDD_SUFFIX}.  If the line lists a dynamic dependency, the
6630 code must advance @var{PTR} to the beginning of the filename on that
6631 line.  Otherwise, it must set @var{PTR} to @code{NULL}.
6632
6633 @end table
6634
6635 @node Instruction Output
6636 @subsection Output of Assembler Instructions
6637
6638 @c prevent bad page break with this line
6639 This describes assembler instruction output.
6640
6641 @table @code
6642 @findex REGISTER_NAMES
6643 @item REGISTER_NAMES
6644 A C initializer containing the assembler's names for the machine
6645 registers, each one as a C string constant.  This is what translates
6646 register numbers in the compiler into assembler language.
6647
6648 @findex ADDITIONAL_REGISTER_NAMES
6649 @item ADDITIONAL_REGISTER_NAMES
6650 If defined, a C initializer for an array of structures containing a name
6651 and a register number.  This macro defines additional names for hard
6652 registers, thus allowing the @code{asm} option in declarations to refer
6653 to registers using alternate names.
6654
6655 @findex ASM_OUTPUT_OPCODE
6656 @item ASM_OUTPUT_OPCODE (@var{stream}, @var{ptr})
6657 Define this macro if you are using an unusual assembler that
6658 requires different names for the machine instructions.
6659
6660 The definition is a C statement or statements which output an
6661 assembler instruction opcode to the stdio stream @var{stream}.  The
6662 macro-operand @var{ptr} is a variable of type @code{char *} which
6663 points to the opcode name in its ``internal'' form---the form that is
6664 written in the machine description.  The definition should output the
6665 opcode name to @var{stream}, performing any translation you desire, and
6666 increment the variable @var{ptr} to point at the end of the opcode
6667 so that it will not be output twice.
6668
6669 In fact, your macro definition may process less than the entire opcode
6670 name, or more than the opcode name; but if you want to process text
6671 that includes @samp{%}-sequences to substitute operands, you must take
6672 care of the substitution yourself.  Just be sure to increment
6673 @var{ptr} over whatever text should not be output normally.
6674
6675 @findex recog_operand
6676 If you need to look at the operand values, they can be found as the
6677 elements of @code{recog_operand}.
6678
6679 If the macro definition does nothing, the instruction is output
6680 in the usual way.
6681
6682 @findex FINAL_PRESCAN_INSN
6683 @item FINAL_PRESCAN_INSN (@var{insn}, @var{opvec}, @var{noperands})
6684 If defined, a C statement to be executed just prior to the output of
6685 assembler code for @var{insn}, to modify the extracted operands so
6686 they will be output differently.
6687
6688 Here the argument @var{opvec} is the vector containing the operands
6689 extracted from @var{insn}, and @var{noperands} is the number of
6690 elements of the vector which contain meaningful data for this insn.
6691 The contents of this vector are what will be used to convert the insn
6692 template into assembler code, so you can change the assembler output
6693 by changing the contents of the vector.
6694
6695 This macro is useful when various assembler syntaxes share a single
6696 file of instruction patterns; by defining this macro differently, you
6697 can cause a large class of instructions to be output differently (such
6698 as with rearranged operands).  Naturally, variations in assembler
6699 syntax affecting individual insn patterns ought to be handled by
6700 writing conditional output routines in those patterns.
6701
6702 If this macro is not defined, it is equivalent to a null statement.
6703
6704 @findex FINAL_PRESCAN_LABEL
6705 @item FINAL_PRESCAN_LABEL
6706 If defined, @code{FINAL_PRESCAN_INSN} will be called on each
6707 @code{CODE_LABEL}.  In that case, @var{opvec} will be a null pointer and
6708 @var{noperands} will be zero.
6709
6710 @findex PRINT_OPERAND
6711 @item PRINT_OPERAND (@var{stream}, @var{x}, @var{code})
6712 A C compound statement to output to stdio stream @var{stream} the
6713 assembler syntax for an instruction operand @var{x}.  @var{x} is an
6714 RTL expression.
6715
6716 @var{code} is a value that can be used to specify one of several ways
6717 of printing the operand.  It is used when identical operands must be
6718 printed differently depending on the context.  @var{code} comes from
6719 the @samp{%} specification that was used to request printing of the
6720 operand.  If the specification was just @samp{%@var{digit}} then
6721 @var{code} is 0; if the specification was @samp{%@var{ltr}
6722 @var{digit}} then @var{code} is the ASCII code for @var{ltr}.
6723
6724 @findex reg_names
6725 If @var{x} is a register, this macro should print the register's name.
6726 The names can be found in an array @code{reg_names} whose type is
6727 @code{char *[]}.  @code{reg_names} is initialized from
6728 @code{REGISTER_NAMES}.
6729
6730 When the machine description has a specification @samp{%@var{punct}}
6731 (a @samp{%} followed by a punctuation character), this macro is called
6732 with a null pointer for @var{x} and the punctuation character for
6733 @var{code}.
6734
6735 @findex PRINT_OPERAND_PUNCT_VALID_P
6736 @item PRINT_OPERAND_PUNCT_VALID_P (@var{code})
6737 A C expression which evaluates to true if @var{code} is a valid
6738 punctuation character for use in the @code{PRINT_OPERAND} macro.  If
6739 @code{PRINT_OPERAND_PUNCT_VALID_P} is not defined, it means that no
6740 punctuation characters (except for the standard one, @samp{%}) are used
6741 in this way.
6742
6743 @findex PRINT_OPERAND_ADDRESS
6744 @item PRINT_OPERAND_ADDRESS (@var{stream}, @var{x})
6745 A C compound statement to output to stdio stream @var{stream} the
6746 assembler syntax for an instruction operand that is a memory reference
6747 whose address is @var{x}.  @var{x} is an RTL expression.
6748
6749 @cindex @code{ENCODE_SECTION_INFO} usage
6750 On some machines, the syntax for a symbolic address depends on the
6751 section that the address refers to.  On these machines, define the macro
6752 @code{ENCODE_SECTION_INFO} to store the information into the
6753 @code{symbol_ref}, and then check for it here.  @xref{Assembler Format}.
6754
6755 @findex DBR_OUTPUT_SEQEND
6756 @findex dbr_sequence_length
6757 @item DBR_OUTPUT_SEQEND(@var{file})
6758 A C statement, to be executed after all slot-filler instructions have
6759 been output.  If necessary, call @code{dbr_sequence_length} to
6760 determine the number of slots filled in a sequence (zero if not
6761 currently outputting a sequence), to decide how many no-ops to output,
6762 or whatever.
6763
6764 Don't define this macro if it has nothing to do, but it is helpful in
6765 reading assembly output if the extent of the delay sequence is made
6766 explicit (e.g. with white space).
6767
6768 @findex final_sequence
6769 Note that output routines for instructions with delay slots must be
6770 prepared to deal with not being output as part of a sequence (i.e.
6771 when the scheduling pass is not run, or when no slot fillers could be
6772 found.)  The variable @code{final_sequence} is null when not
6773 processing a sequence, otherwise it contains the @code{sequence} rtx
6774 being output.
6775
6776 @findex REGISTER_PREFIX
6777 @findex LOCAL_LABEL_PREFIX
6778 @findex USER_LABEL_PREFIX
6779 @findex IMMEDIATE_PREFIX
6780 @findex asm_fprintf
6781 @item REGISTER_PREFIX
6782 @itemx LOCAL_LABEL_PREFIX
6783 @itemx USER_LABEL_PREFIX
6784 @itemx IMMEDIATE_PREFIX
6785 If defined, C string expressions to be used for the @samp{%R}, @samp{%L},
6786 @samp{%U}, and @samp{%I} options of @code{asm_fprintf} (see
6787 @file{final.c}).  These are useful when a single @file{md} file must
6788 support multiple assembler formats.  In that case, the various @file{tm.h}
6789 files can define these macros differently.
6790
6791 @item ASM_FPRINTF_EXTENSIONS(@var{file}, @var{argptr}, @var{format})
6792 @findex ASM_FPRINTF_EXTENSIONS
6793 If defined this macro should expand to a series of @code{case}
6794 statements which will be parsed inside the @code{switch} statement of
6795 the @code{asm_fprintf} function.  This allows targets to define extra
6796 printf formats which may useful when generating their assembler
6797 statements.  Note that upper case letters are reserved for future
6798 generic extensions to asm_fprintf, and so are not available to target
6799 specific code.  The output file is given by the parameter @var{file}.
6800 The varargs input pointer is @var{argptr} and the rest of the format
6801 string, starting the character after the one that is being switched
6802 upon, is pointed to by @var{format}.
6803
6804 @findex ASSEMBLER_DIALECT
6805 @item ASSEMBLER_DIALECT
6806 If your target supports multiple dialects of assembler language (such as
6807 different opcodes), define this macro as a C expression that gives the
6808 numeric index of the assembler language dialect to use, with zero as the
6809 first variant.
6810
6811 If this macro is defined, you may use constructs of the form
6812 @samp{@{option0|option1|option2@dots{}@}} in the output
6813 templates of patterns (@pxref{Output Template}) or in the first argument
6814 of @code{asm_fprintf}.  This construct outputs @samp{option0},
6815 @samp{option1} or @samp{option2}, etc., if the value of
6816 @code{ASSEMBLER_DIALECT} is zero, one or two, etc.  Any special
6817 characters within these strings retain their usual meaning.
6818
6819 If you do not define this macro, the characters @samp{@{}, @samp{|} and
6820 @samp{@}} do not have any special meaning when used in templates or
6821 operands to @code{asm_fprintf}.
6822
6823 Define the macros @code{REGISTER_PREFIX}, @code{LOCAL_LABEL_PREFIX},
6824 @code{USER_LABEL_PREFIX} and @code{IMMEDIATE_PREFIX} if you can express
6825 the variations in assembler language syntax with that mechanism.  Define
6826 @code{ASSEMBLER_DIALECT} and use the @samp{@{option0|option1@}} syntax
6827 if the syntax variant are larger and involve such things as different
6828 opcodes or operand order.
6829
6830 @findex ASM_OUTPUT_REG_PUSH
6831 @item ASM_OUTPUT_REG_PUSH (@var{stream}, @var{regno})
6832 A C expression to output to @var{stream} some assembler code
6833 which will push hard register number @var{regno} onto the stack.
6834 The code need not be optimal, since this macro is used only when
6835 profiling.
6836
6837 @findex ASM_OUTPUT_REG_POP
6838 @item ASM_OUTPUT_REG_POP (@var{stream}, @var{regno})
6839 A C expression to output to @var{stream} some assembler code
6840 which will pop hard register number @var{regno} off of the stack.
6841 The code need not be optimal, since this macro is used only when
6842 profiling.
6843 @end table
6844
6845 @node Dispatch Tables
6846 @subsection Output of Dispatch Tables
6847
6848 @c prevent bad page break with this line
6849 This concerns dispatch tables.
6850
6851 @table @code
6852 @cindex dispatch table
6853 @findex ASM_OUTPUT_ADDR_DIFF_ELT
6854 @item ASM_OUTPUT_ADDR_DIFF_ELT (@var{stream}, @var{body}, @var{value}, @var{rel})
6855 A C statement to output to the stdio stream @var{stream} an assembler
6856 pseudo-instruction to generate a difference between two labels.
6857 @var{value} and @var{rel} are the numbers of two internal labels.  The
6858 definitions of these labels are output using
6859 @code{ASM_OUTPUT_INTERNAL_LABEL}, and they must be printed in the same
6860 way here.  For example,
6861
6862 @example
6863 fprintf (@var{stream}, "\t.word L%d-L%d\n",
6864          @var{value}, @var{rel})
6865 @end example
6866
6867 You must provide this macro on machines where the addresses in a
6868 dispatch table are relative to the table's own address.  If defined, GCC
6869 will also use this macro on all machines when producing PIC.
6870 @var{body} is the body of the ADDR_DIFF_VEC; it is provided so that the
6871 mode and flags can be read.
6872
6873 @findex ASM_OUTPUT_ADDR_VEC_ELT
6874 @item ASM_OUTPUT_ADDR_VEC_ELT (@var{stream}, @var{value})
6875 This macro should be provided on machines where the addresses
6876 in a dispatch table are absolute.
6877
6878 The definition should be a C statement to output to the stdio stream
6879 @var{stream} an assembler pseudo-instruction to generate a reference to
6880 a label.  @var{value} is the number of an internal label whose
6881 definition is output using @code{ASM_OUTPUT_INTERNAL_LABEL}.
6882 For example,
6883
6884 @example
6885 fprintf (@var{stream}, "\t.word L%d\n", @var{value})
6886 @end example
6887
6888 @findex ASM_OUTPUT_CASE_LABEL
6889 @item ASM_OUTPUT_CASE_LABEL (@var{stream}, @var{prefix}, @var{num}, @var{table})
6890 Define this if the label before a jump-table needs to be output
6891 specially.  The first three arguments are the same as for
6892 @code{ASM_OUTPUT_INTERNAL_LABEL}; the fourth argument is the
6893 jump-table which follows (a @code{jump_insn} containing an
6894 @code{addr_vec} or @code{addr_diff_vec}).
6895
6896 This feature is used on system V to output a @code{swbeg} statement
6897 for the table.
6898
6899 If this macro is not defined, these labels are output with
6900 @code{ASM_OUTPUT_INTERNAL_LABEL}.
6901
6902 @findex ASM_OUTPUT_CASE_END
6903 @item ASM_OUTPUT_CASE_END (@var{stream}, @var{num}, @var{table})
6904 Define this if something special must be output at the end of a
6905 jump-table.  The definition should be a C statement to be executed
6906 after the assembler code for the table is written.  It should write
6907 the appropriate code to stdio stream @var{stream}.  The argument
6908 @var{table} is the jump-table insn, and @var{num} is the label-number
6909 of the preceding label.
6910
6911 If this macro is not defined, nothing special is output at the end of
6912 the jump-table.
6913 @end table
6914
6915 @node Exception Region Output
6916 @subsection Assembler Commands for Exception Regions
6917
6918 @c prevent bad page break with this line
6919
6920 This describes commands marking the start and the end of an exception
6921 region.
6922
6923 @table @code
6924 @findex ASM_OUTPUT_EH_REGION_BEG
6925 @item ASM_OUTPUT_EH_REGION_BEG ()
6926 A C expression to output text to mark the start of an exception region.
6927
6928 This macro need not be defined on most platforms.
6929
6930 @findex ASM_OUTPUT_EH_REGION_END
6931 @item ASM_OUTPUT_EH_REGION_END ()
6932 A C expression to output text to mark the end of an exception region.
6933
6934 This macro need not be defined on most platforms.
6935
6936 @findex EXCEPTION_SECTION
6937 @item EXCEPTION_SECTION ()
6938 A C expression to switch to the section in which the main
6939 exception table is to be placed (@pxref{Sections}).  The default is a
6940 section named @code{.gcc_except_table} on machines that support named
6941 sections via @code{ASM_OUTPUT_SECTION_NAME}, otherwise if @option{-fpic}
6942 or @option{-fPIC} is in effect, the @code{data_section}, otherwise the
6943 @code{readonly_data_section}.
6944
6945 @findex EH_FRAME_SECTION_ASM_OP
6946 @item EH_FRAME_SECTION_ASM_OP
6947 If defined, a C string constant, including spacing, for the assembler
6948 operation to switch to the section for exception handling frame unwind
6949 information.  If not defined, GCC will provide a default definition if the
6950 target supports named sections.  @file{crtstuff.c} uses this macro to
6951 switch to the appropriate section.
6952
6953 You should define this symbol if your target supports DWARF 2 frame
6954 unwind information and the default definition does not work.
6955
6956 @findex OMIT_EH_TABLE
6957 @item OMIT_EH_TABLE ()
6958 A C expression that is nonzero if the normal exception table output
6959 should be omitted.
6960
6961 This macro need not be defined on most platforms.
6962
6963 @findex EH_TABLE_LOOKUP
6964 @item EH_TABLE_LOOKUP ()
6965 Alternate runtime support for looking up an exception at runtime and
6966 finding the associated handler, if the default method won't work.
6967
6968 This macro need not be defined on most platforms.
6969
6970 @findex DOESNT_NEED_UNWINDER
6971 @item DOESNT_NEED_UNWINDER
6972 A C expression that decides whether or not the current function needs to
6973 have a function unwinder generated for it.  See the file @code{except.c}
6974 for details on when to define this, and how.
6975
6976 @findex MASK_RETURN_ADDR
6977 @item MASK_RETURN_ADDR
6978 An rtx used to mask the return address found via RETURN_ADDR_RTX, so
6979 that it does not contain any extraneous set bits in it.
6980
6981 @findex DWARF2_UNWIND_INFO
6982 @item DWARF2_UNWIND_INFO
6983 Define this macro to 0 if your target supports DWARF 2 frame unwind
6984 information, but it does not yet work with exception handling.
6985 Otherwise, if your target supports this information (if it defines
6986 @samp{INCOMING_RETURN_ADDR_RTX} and either @samp{UNALIGNED_INT_ASM_OP}
6987 or @samp{OBJECT_FORMAT_ELF}), GCC will provide a default definition of
6988 1.
6989
6990 If this macro is defined to 1, the DWARF 2 unwinder will be the default
6991 exception handling mechanism; otherwise, setjmp/longjmp will be used by
6992 default.
6993
6994 If this macro is defined to anything, the DWARF 2 unwinder will be used
6995 instead of inline unwinders and __unwind_function in the non-setjmp case.
6996
6997 @findex DWARF_CIE_DATA_ALIGNMENT
6998 @item DWARF_CIE_DATA_ALIGNMENT
6999 This macro need only be defined if the target might save registers in the
7000 function prologue at an offset to the stack pointer that is not aligned to
7001 @code{UNITS_PER_WORD}.  The definition should be the negative minimum
7002 alignment if @code{STACK_GROWS_DOWNWARD} is defined, and the positive
7003 minimum alignment otherwise.  @xref{SDB and DWARF}.  Only applicable if
7004 the target supports DWARF 2 frame unwind information.
7005
7006 @end table
7007
7008 @node Alignment Output
7009 @subsection Assembler Commands for Alignment
7010
7011 @c prevent bad page break with this line
7012 This describes commands for alignment.
7013
7014 @table @code
7015 @findex LABEL_ALIGN_AFTER_BARRIER
7016 @item LABEL_ALIGN_AFTER_BARRIER (@var{label})
7017 The alignment (log base 2) to put in front of @var{label}, which follows
7018 a BARRIER.
7019
7020 This macro need not be defined if you don't want any special alignment
7021 to be done at such a time.  Most machine descriptions do not currently
7022 define the macro.
7023
7024 Unless it's necessary to inspect the @var{label} parameter, it is better
7025 to set the variable @var{align_jumps} in the target's
7026 @code{OVERRIDE_OPTIONS}.  Otherwise, you should try to honour the user's
7027 selection in @var{align_jumps} in a @code{LABEL_ALIGN_AFTER_BARRIER}
7028 implementation.
7029
7030 @findex LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
7031 @item LABEL_ALIGN_AFTER_BARRIER_MAX_SKIP
7032 The maximum number of bytes to skip when applying
7033 @code{LABEL_ALIGN_AFTER_BARRIER}.  This works only if
7034 @code{ASM_OUTPUT_MAX_SKIP_ALIGN} is defined.
7035
7036 @findex LOOP_ALIGN
7037 @item LOOP_ALIGN (@var{label})
7038 The alignment (log base 2) to put in front of @var{label}, which follows
7039 a NOTE_INSN_LOOP_BEG note.
7040
7041 This macro need not be defined if you don't want any special alignment
7042 to be done at such a time.  Most machine descriptions do not currently
7043 define the macro.
7044
7045 Unless it's necessary to inspect the @var{label} parameter, it is better
7046 to set the variable @var{align_loops} in the target's
7047 @code{OVERRIDE_OPTIONS}.  Otherwise, you should try to honour the user's
7048 selection in @var{align_loops} in a @code{LOOP_ALIGN} implementation.
7049
7050 @findex LOOP_ALIGN_MAX_SKIP
7051 @item LOOP_ALIGN_MAX_SKIP
7052 The maximum number of bytes to skip when applying @code{LOOP_ALIGN}.
7053 This works only if @code{ASM_OUTPUT_MAX_SKIP_ALIGN} is defined.
7054
7055 @findex LABEL_ALIGN
7056 @item LABEL_ALIGN (@var{label})
7057 The alignment (log base 2) to put in front of @var{label}.
7058 If LABEL_ALIGN_AFTER_BARRIER / LOOP_ALIGN specify a different alignment,
7059 the maximum of the specified values is used.
7060
7061 Unless it's necessary to inspect the @var{label} parameter, it is better
7062 to set the variable @var{align_labels} in the target's
7063 @code{OVERRIDE_OPTIONS}.  Otherwise, you should try to honour the user's
7064 selection in @var{align_labels} in a @code{LABEL_ALIGN} implementation.
7065
7066 @findex LABEL_ALIGN_MAX_SKIP
7067 @item LABEL_ALIGN_MAX_SKIP
7068 The maximum number of bytes to skip when applying @code{LABEL_ALIGN}.
7069 This works only if @code{ASM_OUTPUT_MAX_SKIP_ALIGN} is defined.
7070
7071 @findex ASM_OUTPUT_SKIP
7072 @item ASM_OUTPUT_SKIP (@var{stream}, @var{nbytes})
7073 A C statement to output to the stdio stream @var{stream} an assembler
7074 instruction to advance the location counter by @var{nbytes} bytes.
7075 Those bytes should be zero when loaded.  @var{nbytes} will be a C
7076 expression of type @code{int}.
7077
7078 @findex ASM_NO_SKIP_IN_TEXT
7079 @item ASM_NO_SKIP_IN_TEXT
7080 Define this macro if @code{ASM_OUTPUT_SKIP} should not be used in the
7081 text section because it fails to put zeros in the bytes that are skipped.
7082 This is true on many Unix systems, where the pseudo--op to skip bytes
7083 produces no-op instructions rather than zeros when used in the text
7084 section.
7085
7086 @findex ASM_OUTPUT_ALIGN
7087 @item ASM_OUTPUT_ALIGN (@var{stream}, @var{power})
7088 A C statement to output to the stdio stream @var{stream} an assembler
7089 command to advance the location counter to a multiple of 2 to the
7090 @var{power} bytes.  @var{power} will be a C expression of type @code{int}.
7091
7092 @findex ASM_OUTPUT_MAX_SKIP_ALIGN
7093 @item ASM_OUTPUT_MAX_SKIP_ALIGN (@var{stream}, @var{power}, @var{max_skip})
7094 A C statement to output to the stdio stream @var{stream} an assembler
7095 command to advance the location counter to a multiple of 2 to the
7096 @var{power} bytes, but only if @var{max_skip} or fewer bytes are needed to
7097 satisfy the alignment request.  @var{power} and @var{max_skip} will be
7098 a C expression of type @code{int}.
7099 @end table
7100
7101 @need 3000
7102 @node Debugging Info
7103 @section Controlling Debugging Information Format
7104
7105 @c prevent bad page break with this line
7106 This describes how to specify debugging information.
7107
7108 @menu
7109 * All Debuggers::      Macros that affect all debugging formats uniformly.
7110 * DBX Options::        Macros enabling specific options in DBX format.
7111 * DBX Hooks::          Hook macros for varying DBX format.
7112 * File Names and DBX:: Macros controlling output of file names in DBX format.
7113 * SDB and DWARF::      Macros for SDB (COFF) and DWARF formats.
7114 @end menu
7115
7116 @node All Debuggers
7117 @subsection Macros Affecting All Debugging Formats
7118
7119 @c prevent bad page break with this line
7120 These macros affect all debugging formats.
7121
7122 @table @code
7123 @findex DBX_REGISTER_NUMBER
7124 @item DBX_REGISTER_NUMBER (@var{regno})
7125 A C expression that returns the DBX register number for the compiler
7126 register number @var{regno}.  In simple cases, the value of this
7127 expression may be @var{regno} itself.  But sometimes there are some
7128 registers that the compiler knows about and DBX does not, or vice
7129 versa.  In such cases, some register may need to have one number in
7130 the compiler and another for DBX.
7131
7132 If two registers have consecutive numbers inside GCC, and they can be
7133 used as a pair to hold a multiword value, then they @emph{must} have
7134 consecutive numbers after renumbering with @code{DBX_REGISTER_NUMBER}.
7135 Otherwise, debuggers will be unable to access such a pair, because they
7136 expect register pairs to be consecutive in their own numbering scheme.
7137
7138 If you find yourself defining @code{DBX_REGISTER_NUMBER} in way that
7139 does not preserve register pairs, then what you must do instead is
7140 redefine the actual register numbering scheme.
7141
7142 @findex DEBUGGER_AUTO_OFFSET
7143 @item DEBUGGER_AUTO_OFFSET (@var{x})
7144 A C expression that returns the integer offset value for an automatic
7145 variable having address @var{x} (an RTL expression).  The default
7146 computation assumes that @var{x} is based on the frame-pointer and
7147 gives the offset from the frame-pointer.  This is required for targets
7148 that produce debugging output for DBX or COFF-style debugging output
7149 for SDB and allow the frame-pointer to be eliminated when the
7150 @option{-g} options is used.
7151
7152 @findex DEBUGGER_ARG_OFFSET
7153 @item DEBUGGER_ARG_OFFSET (@var{offset}, @var{x})
7154 A C expression that returns the integer offset value for an argument
7155 having address @var{x} (an RTL expression).  The nominal offset is
7156 @var{offset}.
7157
7158 @findex PREFERRED_DEBUGGING_TYPE
7159 @item PREFERRED_DEBUGGING_TYPE
7160 A C expression that returns the type of debugging output GCC should
7161 produce when the user specifies just @option{-g}.  Define
7162 this if you have arranged for GCC to support more than one format of
7163 debugging output.  Currently, the allowable values are @code{DBX_DEBUG},
7164 @code{SDB_DEBUG}, @code{DWARF_DEBUG}, @code{DWARF2_DEBUG}, and
7165 @code{XCOFF_DEBUG}.
7166
7167 When the user specifies @option{-ggdb}, GCC normally also uses the
7168 value of this macro to select the debugging output format, but with two
7169 exceptions.  If @code{DWARF2_DEBUGGING_INFO} is defined and
7170 @code{LINKER_DOES_NOT_WORK_WITH_DWARF2} is not defined, GCC uses the
7171 value @code{DWARF2_DEBUG}.  Otherwise, if @code{DBX_DEBUGGING_INFO} is
7172 defined, GCC uses @code{DBX_DEBUG}.
7173
7174 The value of this macro only affects the default debugging output; the
7175 user can always get a specific type of output by using @option{-gstabs},
7176 @option{-gcoff}, @option{-gdwarf-1}, @option{-gdwarf-2}, or @option{-gxcoff}.
7177 @end table
7178
7179 @node DBX Options
7180 @subsection Specific Options for DBX Output
7181
7182 @c prevent bad page break with this line
7183 These are specific options for DBX output.
7184
7185 @table @code
7186 @findex DBX_DEBUGGING_INFO
7187 @item DBX_DEBUGGING_INFO
7188 Define this macro if GCC should produce debugging output for DBX
7189 in response to the @option{-g} option.
7190
7191 @findex XCOFF_DEBUGGING_INFO
7192 @item XCOFF_DEBUGGING_INFO
7193 Define this macro if GCC should produce XCOFF format debugging output
7194 in response to the @option{-g} option.  This is a variant of DBX format.
7195
7196 @findex DEFAULT_GDB_EXTENSIONS
7197 @item DEFAULT_GDB_EXTENSIONS
7198 Define this macro to control whether GCC should by default generate
7199 GDB's extended version of DBX debugging information (assuming DBX-format
7200 debugging information is enabled at all).  If you don't define the
7201 macro, the default is 1: always generate the extended information
7202 if there is any occasion to.
7203
7204 @findex DEBUG_SYMS_TEXT
7205 @item DEBUG_SYMS_TEXT
7206 Define this macro if all @code{.stabs} commands should be output while
7207 in the text section.
7208
7209 @findex ASM_STABS_OP
7210 @item ASM_STABS_OP
7211 A C string constant, including spacing, naming the assembler pseudo op to
7212 use instead of @code{"\t.stabs\t"} to define an ordinary debugging symbol.
7213 If you don't define this macro, @code{"\t.stabs\t"} is used.  This macro
7214 applies only to DBX debugging information format.
7215
7216 @findex ASM_STABD_OP
7217 @item ASM_STABD_OP
7218 A C string constant, including spacing, naming the assembler pseudo op to
7219 use instead of @code{"\t.stabd\t"} to define a debugging symbol whose
7220 value is the current location.  If you don't define this macro,
7221 @code{"\t.stabd\t"} is used.  This macro applies only to DBX debugging
7222 information format.
7223
7224 @findex ASM_STABN_OP
7225 @item ASM_STABN_OP
7226 A C string constant, including spacing, naming the assembler pseudo op to
7227 use instead of @code{"\t.stabn\t"} to define a debugging symbol with no
7228 name.  If you don't define this macro, @code{"\t.stabn\t"} is used.  This
7229 macro applies only to DBX debugging information format.
7230
7231 @findex DBX_NO_XREFS
7232 @item DBX_NO_XREFS
7233 Define this macro if DBX on your system does not support the construct
7234 @samp{xs@var{tagname}}.  On some systems, this construct is used to
7235 describe a forward reference to a structure named @var{tagname}.
7236 On other systems, this construct is not supported at all.
7237
7238 @findex DBX_CONTIN_LENGTH
7239 @item DBX_CONTIN_LENGTH
7240 A symbol name in DBX-format debugging information is normally
7241 continued (split into two separate @code{.stabs} directives) when it
7242 exceeds a certain length (by default, 80 characters).  On some
7243 operating systems, DBX requires this splitting; on others, splitting
7244 must not be done.  You can inhibit splitting by defining this macro
7245 with the value zero.  You can override the default splitting-length by
7246 defining this macro as an expression for the length you desire.
7247
7248 @findex DBX_CONTIN_CHAR
7249 @item DBX_CONTIN_CHAR
7250 Normally continuation is indicated by adding a @samp{\} character to
7251 the end of a @code{.stabs} string when a continuation follows.  To use
7252 a different character instead, define this macro as a character
7253 constant for the character you want to use.  Do not define this macro
7254 if backslash is correct for your system.
7255
7256 @findex DBX_STATIC_STAB_DATA_SECTION
7257 @item DBX_STATIC_STAB_DATA_SECTION
7258 Define this macro if it is necessary to go to the data section before
7259 outputting the @samp{.stabs} pseudo-op for a non-global static
7260 variable.
7261
7262 @findex DBX_TYPE_DECL_STABS_CODE
7263 @item DBX_TYPE_DECL_STABS_CODE
7264 The value to use in the ``code'' field of the @code{.stabs} directive
7265 for a typedef.  The default is @code{N_LSYM}.
7266
7267 @findex DBX_STATIC_CONST_VAR_CODE
7268 @item DBX_STATIC_CONST_VAR_CODE
7269 The value to use in the ``code'' field of the @code{.stabs} directive
7270 for a static variable located in the text section.  DBX format does not
7271 provide any ``right'' way to do this.  The default is @code{N_FUN}.
7272
7273 @findex DBX_REGPARM_STABS_CODE
7274 @item DBX_REGPARM_STABS_CODE
7275 The value to use in the ``code'' field of the @code{.stabs} directive
7276 for a parameter passed in registers.  DBX format does not provide any
7277 ``right'' way to do this.  The default is @code{N_RSYM}.
7278
7279 @findex DBX_REGPARM_STABS_LETTER
7280 @item DBX_REGPARM_STABS_LETTER
7281 The letter to use in DBX symbol data to identify a symbol as a parameter
7282 passed in registers.  DBX format does not customarily provide any way to
7283 do this.  The default is @code{'P'}.
7284
7285 @findex DBX_MEMPARM_STABS_LETTER
7286 @item DBX_MEMPARM_STABS_LETTER
7287 The letter to use in DBX symbol data to identify a symbol as a stack
7288 parameter.  The default is @code{'p'}.
7289
7290 @findex DBX_FUNCTION_FIRST
7291 @item DBX_FUNCTION_FIRST
7292 Define this macro if the DBX information for a function and its
7293 arguments should precede the assembler code for the function.  Normally,
7294 in DBX format, the debugging information entirely follows the assembler
7295 code.
7296
7297 @findex DBX_LBRAC_FIRST
7298 @item DBX_LBRAC_FIRST
7299 Define this macro if the @code{N_LBRAC} symbol for a block should
7300 precede the debugging information for variables and functions defined in
7301 that block.  Normally, in DBX format, the @code{N_LBRAC} symbol comes
7302 first.
7303
7304 @findex DBX_BLOCKS_FUNCTION_RELATIVE
7305 @item DBX_BLOCKS_FUNCTION_RELATIVE
7306 Define this macro if the value of a symbol describing the scope of a
7307 block (@code{N_LBRAC} or @code{N_RBRAC}) should be relative to the start
7308 of the enclosing function.  Normally, GCC uses an absolute address.
7309
7310 @findex DBX_USE_BINCL
7311 @item DBX_USE_BINCL
7312 Define this macro if GCC should generate @code{N_BINCL} and
7313 @code{N_EINCL} stabs for included header files, as on Sun systems.  This
7314 macro also directs GCC to output a type number as a pair of a file
7315 number and a type number within the file.  Normally, GCC does not
7316 generate @code{N_BINCL} or @code{N_EINCL} stabs, and it outputs a single
7317 number for a type number.
7318 @end table
7319
7320 @node DBX Hooks
7321 @subsection Open-Ended Hooks for DBX Format
7322
7323 @c prevent bad page break with this line
7324 These are hooks for DBX format.
7325
7326 @table @code
7327 @findex DBX_OUTPUT_LBRAC
7328 @item DBX_OUTPUT_LBRAC (@var{stream}, @var{name})
7329 Define this macro to say how to output to @var{stream} the debugging
7330 information for the start of a scope level for variable names.  The
7331 argument @var{name} is the name of an assembler symbol (for use with
7332 @code{assemble_name}) whose value is the address where the scope begins.
7333
7334 @findex DBX_OUTPUT_RBRAC
7335 @item DBX_OUTPUT_RBRAC (@var{stream}, @var{name})
7336 Like @code{DBX_OUTPUT_LBRAC}, but for the end of a scope level.
7337
7338 @findex DBX_OUTPUT_ENUM
7339 @item DBX_OUTPUT_ENUM (@var{stream}, @var{type})
7340 Define this macro if the target machine requires special handling to
7341 output an enumeration type.  The definition should be a C statement
7342 (sans semicolon) to output the appropriate information to @var{stream}
7343 for the type @var{type}.
7344
7345 @findex DBX_OUTPUT_FUNCTION_END
7346 @item DBX_OUTPUT_FUNCTION_END (@var{stream}, @var{function})
7347 Define this macro if the target machine requires special output at the
7348 end of the debugging information for a function.  The definition should
7349 be a C statement (sans semicolon) to output the appropriate information
7350 to @var{stream}.  @var{function} is the @code{FUNCTION_DECL} node for
7351 the function.
7352
7353 @findex DBX_OUTPUT_STANDARD_TYPES
7354 @item DBX_OUTPUT_STANDARD_TYPES (@var{syms})
7355 Define this macro if you need to control the order of output of the
7356 standard data types at the beginning of compilation.  The argument
7357 @var{syms} is a @code{tree} which is a chain of all the predefined
7358 global symbols, including names of data types.
7359
7360 Normally, DBX output starts with definitions of the types for integers
7361 and characters, followed by all the other predefined types of the
7362 particular language in no particular order.
7363
7364 On some machines, it is necessary to output different particular types
7365 first.  To do this, define @code{DBX_OUTPUT_STANDARD_TYPES} to output
7366 those symbols in the necessary order.  Any predefined types that you
7367 don't explicitly output will be output afterward in no particular order.
7368
7369 Be careful not to define this macro so that it works only for C.  There
7370 are no global variables to access most of the built-in types, because
7371 another language may have another set of types.  The way to output a
7372 particular type is to look through @var{syms} to see if you can find it.
7373 Here is an example:
7374
7375 @smallexample
7376 @{
7377   tree decl;
7378   for (decl = syms; decl; decl = TREE_CHAIN (decl))
7379     if (!strcmp (IDENTIFIER_POINTER (DECL_NAME (decl)),
7380                  "long int"))
7381       dbxout_symbol (decl);
7382   @dots{}
7383 @}
7384 @end smallexample
7385
7386 @noindent
7387 This does nothing if the expected type does not exist.
7388
7389 See the function @code{init_decl_processing} in @file{c-decl.c} to find
7390 the names to use for all the built-in C types.
7391
7392 Here is another way of finding a particular type:
7393
7394 @c this is still overfull.  --mew 10feb93
7395 @smallexample
7396 @{
7397   tree decl;
7398   for (decl = syms; decl; decl = TREE_CHAIN (decl))
7399     if (TREE_CODE (decl) == TYPE_DECL
7400         && (TREE_CODE (TREE_TYPE (decl))
7401             == INTEGER_CST)
7402         && TYPE_PRECISION (TREE_TYPE (decl)) == 16
7403         && TYPE_UNSIGNED (TREE_TYPE (decl)))
7404 @group
7405       /* @r{This must be @code{unsigned short}.}  */
7406       dbxout_symbol (decl);
7407   @dots{}
7408 @}
7409 @end group
7410 @end smallexample
7411
7412 @findex NO_DBX_FUNCTION_END
7413 @item NO_DBX_FUNCTION_END
7414 Some stabs encapsulation formats (in particular ECOFF), cannot handle the
7415 @code{.stabs "",N_FUN,,0,0,Lscope-function-1} gdb dbx extension construct.
7416 On those machines, define this macro to turn this feature off without
7417 disturbing the rest of the gdb extensions.
7418
7419 @end table
7420
7421 @node File Names and DBX
7422 @subsection File Names in DBX Format
7423
7424 @c prevent bad page break with this line
7425 This describes file names in DBX format.
7426
7427 @table @code
7428 @findex DBX_WORKING_DIRECTORY
7429 @item DBX_WORKING_DIRECTORY
7430 Define this if DBX wants to have the current directory recorded in each
7431 object file.
7432
7433 Note that the working directory is always recorded if GDB extensions are
7434 enabled.
7435
7436 @findex DBX_OUTPUT_MAIN_SOURCE_FILENAME
7437 @item DBX_OUTPUT_MAIN_SOURCE_FILENAME (@var{stream}, @var{name})
7438 A C statement to output DBX debugging information to the stdio stream
7439 @var{stream} which indicates that file @var{name} is the main source
7440 file---the file specified as the input file for compilation.
7441 This macro is called only once, at the beginning of compilation.
7442
7443 This macro need not be defined if the standard form of output
7444 for DBX debugging information is appropriate.
7445
7446 @findex DBX_OUTPUT_MAIN_SOURCE_DIRECTORY
7447 @item DBX_OUTPUT_MAIN_SOURCE_DIRECTORY (@var{stream}, @var{name})
7448 A C statement to output DBX debugging information to the stdio stream
7449 @var{stream} which indicates that the current directory during
7450 compilation is named @var{name}.
7451
7452 This macro need not be defined if the standard form of output
7453 for DBX debugging information is appropriate.
7454
7455 @findex DBX_OUTPUT_MAIN_SOURCE_FILE_END
7456 @item DBX_OUTPUT_MAIN_SOURCE_FILE_END (@var{stream}, @var{name})
7457 A C statement to output DBX debugging information at the end of
7458 compilation of the main source file @var{name}.
7459
7460 If you don't define this macro, nothing special is output at the end
7461 of compilation, which is correct for most machines.
7462
7463 @findex DBX_OUTPUT_SOURCE_FILENAME
7464 @item DBX_OUTPUT_SOURCE_FILENAME (@var{stream}, @var{name})
7465 A C statement to output DBX debugging information to the stdio stream
7466 @var{stream} which indicates that file @var{name} is the current source
7467 file.  This output is generated each time input shifts to a different
7468 source file as a result of @samp{#include}, the end of an included file,
7469 or a @samp{#line} command.
7470
7471 This macro need not be defined if the standard form of output
7472 for DBX debugging information is appropriate.
7473 @end table
7474
7475 @need 2000
7476 @node SDB and DWARF
7477 @subsection Macros for SDB and DWARF Output
7478
7479 @c prevent bad page break with this line
7480 Here are macros for SDB and DWARF output.
7481
7482 @table @code
7483 @findex SDB_DEBUGGING_INFO
7484 @item SDB_DEBUGGING_INFO
7485 Define this macro if GCC should produce COFF-style debugging output
7486 for SDB in response to the @option{-g} option.
7487
7488 @findex DWARF_DEBUGGING_INFO
7489 @item DWARF_DEBUGGING_INFO
7490 Define this macro if GCC should produce dwarf format debugging output
7491 in response to the @option{-g} option.
7492
7493 @findex DWARF2_DEBUGGING_INFO
7494 @item DWARF2_DEBUGGING_INFO
7495 Define this macro if GCC should produce dwarf version 2 format
7496 debugging output in response to the @option{-g} option.
7497
7498 To support optional call frame debugging information, you must also
7499 define @code{INCOMING_RETURN_ADDR_RTX} and either set
7500 @code{RTX_FRAME_RELATED_P} on the prologue insns if you use RTL for the
7501 prologue, or call @code{dwarf2out_def_cfa} and @code{dwarf2out_reg_save}
7502 as appropriate from @code{FUNCTION_PROLOGUE} if you don't.
7503
7504 @findex DWARF2_FRAME_INFO
7505 @item DWARF2_FRAME_INFO
7506 Define this macro to a nonzero value if GCC should always output
7507 Dwarf 2 frame information.  If @code{DWARF2_UNWIND_INFO}
7508 (@pxref{Exception Region Output} is nonzero, GCC will output this
7509 information not matter how you define @code{DWARF2_FRAME_INFO}.
7510
7511 @findex LINKER_DOES_NOT_WORK_WITH_DWARF2
7512 @item LINKER_DOES_NOT_WORK_WITH_DWARF2
7513 Define this macro if the linker does not work with Dwarf version 2.
7514 Normally, if the user specifies only @option{-ggdb} GCC will use Dwarf
7515 version 2 if available; this macro disables this.  See the description
7516 of the @code{PREFERRED_DEBUGGING_TYPE} macro for more details.
7517
7518 @findex DWARF2_GENERATE_TEXT_SECTION_LABEL
7519 @item DWARF2_GENERATE_TEXT_SECTION_LABEL
7520 By default, the Dwarf 2 debugging information generator will generate a
7521 label to mark the beginning of the text section.  If it is better simply
7522 to use the name of the text section itself, rather than an explicit label,
7523 to indicate the beginning of the text section, define this macro to zero.
7524
7525 @findex DWARF2_ASM_LINE_DEBUG_INFO
7526 @item DWARF2_ASM_LINE_DEBUG_INFO
7527 Define this macro to be a nonzero value if the assembler can generate Dwarf 2
7528 line debug info sections.  This will result in much more compact line number
7529 tables, and hence is desirable if it works.
7530
7531 @findex PUT_SDB_@dots{}
7532 @item PUT_SDB_@dots{}
7533 Define these macros to override the assembler syntax for the special
7534 SDB assembler directives.  See @file{sdbout.c} for a list of these
7535 macros and their arguments.  If the standard syntax is used, you need
7536 not define them yourself.
7537
7538 @findex SDB_DELIM
7539 @item SDB_DELIM
7540 Some assemblers do not support a semicolon as a delimiter, even between
7541 SDB assembler directives.  In that case, define this macro to be the
7542 delimiter to use (usually @samp{\n}).  It is not necessary to define
7543 a new set of @code{PUT_SDB_@var{op}} macros if this is the only change
7544 required.
7545
7546 @findex SDB_GENERATE_FAKE
7547 @item SDB_GENERATE_FAKE
7548 Define this macro to override the usual method of constructing a dummy
7549 name for anonymous structure and union types.  See @file{sdbout.c} for
7550 more information.
7551
7552 @findex SDB_ALLOW_UNKNOWN_REFERENCES
7553 @item SDB_ALLOW_UNKNOWN_REFERENCES
7554 Define this macro to allow references to unknown structure,
7555 union, or enumeration tags to be emitted.  Standard COFF does not
7556 allow handling of unknown references, MIPS ECOFF has support for
7557 it.
7558
7559 @findex SDB_ALLOW_FORWARD_REFERENCES
7560 @item SDB_ALLOW_FORWARD_REFERENCES
7561 Define this macro to allow references to structure, union, or
7562 enumeration tags that have not yet been seen to be handled.  Some
7563 assemblers choke if forward tags are used, while some require it.
7564 @end table
7565
7566 @node Cross-compilation
7567 @section Cross Compilation and Floating Point
7568 @cindex cross compilation and floating point
7569 @cindex floating point and cross compilation
7570
7571 While all modern machines use 2's complement representation for integers,
7572 there are a variety of representations for floating point numbers.  This
7573 means that in a cross-compiler the representation of floating point numbers
7574 in the compiled program may be different from that used in the machine
7575 doing the compilation.
7576
7577 @findex atof
7578 Because different representation systems may offer different amounts of
7579 range and precision, the cross compiler cannot safely use the host
7580 machine's floating point arithmetic.  Therefore, floating point constants
7581 must be represented in the target machine's format.  This means that the
7582 cross compiler cannot use @code{atof} to parse a floating point constant;
7583 it must have its own special routine to use instead.  Also, constant
7584 folding must emulate the target machine's arithmetic (or must not be done
7585 at all).
7586
7587 The macros in the following table should be defined only if you are cross
7588 compiling between different floating point formats.
7589
7590 Otherwise, don't define them.  Then default definitions will be set up which
7591 use @code{double} as the data type, @code{==} to test for equality, etc.
7592
7593 You don't need to worry about how many times you use an operand of any
7594 of these macros.  The compiler never uses operands which have side effects.
7595
7596 @table @code
7597 @findex REAL_VALUE_TYPE
7598 @item REAL_VALUE_TYPE
7599 A macro for the C data type to be used to hold a floating point value
7600 in the target machine's format.  Typically this would be a
7601 @code{struct} containing an array of @code{int}.
7602
7603 @findex REAL_VALUES_EQUAL
7604 @item REAL_VALUES_EQUAL (@var{x}, @var{y})
7605 A macro for a C expression which compares for equality the two values,
7606 @var{x} and @var{y}, both of type @code{REAL_VALUE_TYPE}.
7607
7608 @findex REAL_VALUES_LESS
7609 @item REAL_VALUES_LESS (@var{x}, @var{y})
7610 A macro for a C expression which tests whether @var{x} is less than
7611 @var{y}, both values being of type @code{REAL_VALUE_TYPE} and
7612 interpreted as floating point numbers in the target machine's
7613 representation.
7614
7615 @findex REAL_VALUE_LDEXP
7616 @findex ldexp
7617 @item REAL_VALUE_LDEXP (@var{x}, @var{scale})
7618 A macro for a C expression which performs the standard library
7619 function @code{ldexp}, but using the target machine's floating point
7620 representation.  Both @var{x} and the value of the expression have
7621 type @code{REAL_VALUE_TYPE}.  The second argument, @var{scale}, is an
7622 integer.
7623
7624 @findex REAL_VALUE_FIX
7625 @item REAL_VALUE_FIX (@var{x})
7626 A macro whose definition is a C expression to convert the target-machine
7627 floating point value @var{x} to a signed integer.  @var{x} has type
7628 @code{REAL_VALUE_TYPE}.
7629
7630 @findex REAL_VALUE_UNSIGNED_FIX
7631 @item REAL_VALUE_UNSIGNED_FIX (@var{x})
7632 A macro whose definition is a C expression to convert the target-machine
7633 floating point value @var{x} to an unsigned integer.  @var{x} has type
7634 @code{REAL_VALUE_TYPE}.
7635
7636 @findex REAL_VALUE_RNDZINT
7637 @item REAL_VALUE_RNDZINT (@var{x})
7638 A macro whose definition is a C expression to round the target-machine
7639 floating point value @var{x} towards zero to an integer value (but still
7640 as a floating point number).  @var{x} has type @code{REAL_VALUE_TYPE},
7641 and so does the value.
7642
7643 @findex REAL_VALUE_UNSIGNED_RNDZINT
7644 @item REAL_VALUE_UNSIGNED_RNDZINT (@var{x})
7645 A macro whose definition is a C expression to round the target-machine
7646 floating point value @var{x} towards zero to an unsigned integer value
7647 (but still represented as a floating point number).  @var{x} has type
7648 @code{REAL_VALUE_TYPE}, and so does the value.
7649
7650 @findex REAL_VALUE_ATOF
7651 @item REAL_VALUE_ATOF (@var{string}, @var{mode})
7652 A macro for a C expression which converts @var{string}, an expression of
7653 type @code{char *}, into a floating point number in the target machine's
7654 representation for mode @var{mode}.  The value has type
7655 @code{REAL_VALUE_TYPE}.
7656
7657 @findex REAL_INFINITY
7658 @item REAL_INFINITY
7659 Define this macro if infinity is a possible floating point value, and
7660 therefore division by 0 is legitimate.
7661
7662 @findex REAL_VALUE_ISINF
7663 @findex isinf
7664 @item REAL_VALUE_ISINF (@var{x})
7665 A macro for a C expression which determines whether @var{x}, a floating
7666 point value, is infinity.  The value has type @code{int}.
7667 By default, this is defined to call @code{isinf}.
7668
7669 @findex REAL_VALUE_ISNAN
7670 @findex isnan
7671 @item REAL_VALUE_ISNAN (@var{x})
7672 A macro for a C expression which determines whether @var{x}, a floating
7673 point value, is a ``nan'' (not-a-number).  The value has type
7674 @code{int}.  By default, this is defined to call @code{isnan}.
7675 @end table
7676
7677 @cindex constant folding and floating point
7678 Define the following additional macros if you want to make floating
7679 point constant folding work while cross compiling.  If you don't
7680 define them, cross compilation is still possible, but constant folding
7681 will not happen for floating point values.
7682
7683 @table @code
7684 @findex REAL_ARITHMETIC
7685 @item REAL_ARITHMETIC (@var{output}, @var{code}, @var{x}, @var{y})
7686 A macro for a C statement which calculates an arithmetic operation of
7687 the two floating point values @var{x} and @var{y}, both of type
7688 @code{REAL_VALUE_TYPE} in the target machine's representation, to
7689 produce a result of the same type and representation which is stored
7690 in @var{output} (which will be a variable).
7691
7692 The operation to be performed is specified by @var{code}, a tree code
7693 which will always be one of the following: @code{PLUS_EXPR},
7694 @code{MINUS_EXPR}, @code{MULT_EXPR}, @code{RDIV_EXPR},
7695 @code{MAX_EXPR}, @code{MIN_EXPR}.
7696
7697 @cindex overflow while constant folding
7698 The expansion of this macro is responsible for checking for overflow.
7699 If overflow happens, the macro expansion should execute the statement
7700 @code{return 0;}, which indicates the inability to perform the
7701 arithmetic operation requested.
7702
7703 @findex REAL_VALUE_NEGATE
7704 @item REAL_VALUE_NEGATE (@var{x})
7705 A macro for a C expression which returns the negative of the floating
7706 point value @var{x}.  Both @var{x} and the value of the expression
7707 have type @code{REAL_VALUE_TYPE} and are in the target machine's
7708 floating point representation.
7709
7710 There is no way for this macro to report overflow, since overflow
7711 can't happen in the negation operation.
7712
7713 @findex REAL_VALUE_TRUNCATE
7714 @item REAL_VALUE_TRUNCATE (@var{mode}, @var{x})
7715 A macro for a C expression which converts the floating point value
7716 @var{x} to mode @var{mode}.
7717
7718 Both @var{x} and the value of the expression are in the target machine's
7719 floating point representation and have type @code{REAL_VALUE_TYPE}.
7720 However, the value should have an appropriate bit pattern to be output
7721 properly as a floating constant whose precision accords with mode
7722 @var{mode}.
7723
7724 There is no way for this macro to report overflow.
7725
7726 @findex REAL_VALUE_TO_INT
7727 @item REAL_VALUE_TO_INT (@var{low}, @var{high}, @var{x})
7728 A macro for a C expression which converts a floating point value
7729 @var{x} into a double-precision integer which is then stored into
7730 @var{low} and @var{high}, two variables of type @var{int}.
7731
7732 @item REAL_VALUE_FROM_INT (@var{x}, @var{low}, @var{high}, @var{mode})
7733 @findex REAL_VALUE_FROM_INT
7734 A macro for a C expression which converts a double-precision integer
7735 found in @var{low} and @var{high}, two variables of type @var{int},
7736 into a floating point value which is then stored into @var{x}.
7737 The value is in the target machine's representation for mode @var{mode}
7738 and has the type @code{REAL_VALUE_TYPE}.
7739 @end table
7740
7741 @node Mode Switching
7742 @section Mode Switching Instructions
7743 @cindex mode switching
7744 The following macros control mode switching optimizations:
7745
7746 @table @code
7747 @findex OPTIMIZE_MODE_SWITCHING
7748 @item OPTIMIZE_MODE_SWITCHING (@var{entity})
7749 Define this macro if the port needs extra instructions inserted for mode
7750 switching in an optimizing compilation.
7751
7752 For an example, the SH4 can perform both single and double precision
7753 floating point operations, but to perform a single precision operation,
7754 the FPSCR PR bit has to be cleared, while for a double precision
7755 operation, this bit has to be set.  Changing the PR bit requires a general
7756 purpose register as a scratch register, hence these FPSCR sets have to
7757 be inserted before reload, i.e. you can't put this into instruction emitting
7758 or MACHINE_DEPENDENT_REORG.
7759
7760 You can have multiple entities that are mode-switched, and select at run time
7761 which entities actually need it.  @code{OPTIMIZE_MODE_SWITCHING} should
7762 return non-zero for any @var{entity} that that needs mode-switching.
7763 If you define this macro, you also have to define
7764 @code{NUM_MODES_FOR_MODE_SWITCHING}, @code{MODE_NEEDED},
7765 @code{MODE_PRIORITY_TO_MODE} and @code{EMIT_MODE_SET}.
7766 @code{NORMAL_MODE} is optional.
7767
7768 @findex NUM_MODES_FOR_MODE_SWITCHING
7769 @item NUM_MODES_FOR_MODE_SWITCHING
7770 If you define @code{OPTIMIZE_MODE_SWITCHING}, you have to define this as
7771 initializer for an array of integers.  Each initializer element
7772 N refers to an entity that needs mode switching, and specifies the number
7773 of different modes that might need to be set for this entity.
7774 The position of the initializer in the initializer - starting counting at
7775 zero - determines the integer that is used to refer to the mode-switched
7776 entity in question.
7777 In macros that take mode arguments / yield a mode result, modes are
7778 represented as numbers 0 @dots{} N @minus{} 1.  N is used to specify that no mode
7779 switch is needed / supplied.
7780
7781 @findex MODE_NEEDED
7782 @item MODE_NEEDED (@var{entity}, @var{insn})
7783 @var{entity} is an integer specifying a mode-switched entity.  If
7784 @code{OPTIMIZE_MODE_SWITCHING} is defined, you must define this macro to
7785 return an integer value not larger than the corresponding element in
7786 NUM_MODES_FOR_MODE_SWITCHING, to denote the mode that @var{entity} must
7787 be switched into prior to the execution of INSN.
7788
7789 @findex NORMAL_MODE
7790 @item NORMAL_MODE (@var{entity})
7791 If this macro is defined, it is evaluated for every @var{entity} that needs
7792 mode switching.  It should evaluate to an integer, which is a mode that
7793 @var{entity} is assumed to be switched to at function entry and exit.
7794
7795 @findex MODE_PRIORITY_TO_MODE
7796 @item MODE_PRIORITY_TO_MODE (@var{entity}, @var{n})
7797 This macro specifies the order in which modes for ENTITY are processed.
7798 0 is the highest priority, NUM_MODES_FOR_MODE_SWITCHING[ENTITY] - 1 the
7799 lowest.  The value of the macro should be an integer designating a mode
7800 for ENTITY.  For any fixed @var{entity}, @code{mode_priority_to_mode}
7801 (@var{entity}, @var{n}) shall be a bijection in 0 @dots{}
7802 @code{num_modes_for_mode_switching}[@var{entity}] @minus{} 1 .
7803
7804 @findex EMIT_MODE_SET
7805 @item EMIT_MODE_SET (@var{entity}, @var{mode}, @var{hard_regs_live})
7806 Generate one or more insns to set @var{entity} to @var{mode}.
7807 @var{hard_reg_live} is the set of hard registers live at the point where
7808 the insn(s) are to be inserted.
7809 @end table
7810
7811 @node Misc
7812 @section Miscellaneous Parameters
7813 @cindex parameters, miscellaneous
7814
7815 @c prevent bad page break with this line
7816 Here are several miscellaneous parameters.
7817
7818 @table @code
7819 @item PREDICATE_CODES
7820 @findex PREDICATE_CODES
7821 Define this if you have defined special-purpose predicates in the file
7822 @file{@var{machine}.c}.  This macro is called within an initializer of an
7823 array of structures.  The first field in the structure is the name of a
7824 predicate and the second field is an array of rtl codes.  For each
7825 predicate, list all rtl codes that can be in expressions matched by the
7826 predicate.  The list should have a trailing comma.  Here is an example
7827 of two entries in the list for a typical RISC machine:
7828
7829 @smallexample
7830 #define PREDICATE_CODES \
7831   @{"gen_reg_rtx_operand", @{SUBREG, REG@}@},  \
7832   @{"reg_or_short_cint_operand", @{SUBREG, REG, CONST_INT@}@},
7833 @end smallexample
7834
7835 Defining this macro does not affect the generated code (however,
7836 incorrect definitions that omit an rtl code that may be matched by the
7837 predicate can cause the compiler to malfunction).  Instead, it allows
7838 the table built by @file{genrecog} to be more compact and efficient,
7839 thus speeding up the compiler.  The most important predicates to include
7840 in the list specified by this macro are those used in the most insn
7841 patterns.
7842
7843 For each predicate function named in @var{PREDICATE_CODES}, a
7844 declaration will be generated in @file{insn-codes.h}.
7845
7846 @item SPECIAL_MODE_PREDICATES
7847 @findex SPECIAL_MODE_PREDICATES
7848 Define this if you have special predicates that know special things
7849 about modes.  Genrecog will warn about certain forms of
7850 @code{match_operand} without a mode; if the operand predicate is
7851 listed in @code{SPECIAL_MODE_PREDICATES}, the warning will be
7852 suppressed.
7853
7854 Here is an example from the IA-32 port (@code{ext_register_operand}
7855 specially checks for @code{HImode} or @code{SImode} in preparation
7856 for a byte extraction from @code{%ah} etc.).
7857
7858 @smallexample
7859 #define SPECIAL_MODE_PREDICATES \
7860   "ext_register_operand",
7861 @end smallexample
7862
7863 @findex CASE_VECTOR_MODE
7864 @item CASE_VECTOR_MODE
7865 An alias for a machine mode name.  This is the machine mode that
7866 elements of a jump-table should have.
7867
7868 @findex CASE_VECTOR_SHORTEN_MODE
7869 @item CASE_VECTOR_SHORTEN_MODE (@var{min_offset}, @var{max_offset}, @var{body})
7870 Optional: return the preferred mode for an @code{addr_diff_vec}
7871 when the minimum and maximum offset are known.  If you define this,
7872 it enables extra code in branch shortening to deal with @code{addr_diff_vec}.
7873 To make this work, you also have to define INSN_ALIGN and
7874 make the alignment for @code{addr_diff_vec} explicit.
7875 The @var{body} argument is provided so that the offset_unsigned and scale
7876 flags can be updated.
7877
7878 @findex CASE_VECTOR_PC_RELATIVE
7879 @item CASE_VECTOR_PC_RELATIVE
7880 Define this macro to be a C expression to indicate when jump-tables
7881 should contain relative addresses.  If jump-tables never contain
7882 relative addresses, then you need not define this macro.
7883
7884 @findex CASE_DROPS_THROUGH
7885 @item CASE_DROPS_THROUGH
7886 Define this if control falls through a @code{case} insn when the index
7887 value is out of range.  This means the specified default-label is
7888 actually ignored by the @code{case} insn proper.
7889
7890 @findex CASE_VALUES_THRESHOLD
7891 @item CASE_VALUES_THRESHOLD
7892 Define this to be the smallest number of different values for which it
7893 is best to use a jump-table instead of a tree of conditional branches.
7894 The default is four for machines with a @code{casesi} instruction and
7895 five otherwise.  This is best for most machines.
7896
7897 @findex WORD_REGISTER_OPERATIONS
7898 @item WORD_REGISTER_OPERATIONS
7899 Define this macro if operations between registers with integral mode
7900 smaller than a word are always performed on the entire register.
7901 Most RISC machines have this property and most CISC machines do not.
7902
7903 @findex LOAD_EXTEND_OP
7904 @item LOAD_EXTEND_OP (@var{mode})
7905 Define this macro to be a C expression indicating when insns that read
7906 memory in @var{mode}, an integral mode narrower than a word, set the
7907 bits outside of @var{mode} to be either the sign-extension or the
7908 zero-extension of the data read.  Return @code{SIGN_EXTEND} for values
7909 of @var{mode} for which the
7910 insn sign-extends, @code{ZERO_EXTEND} for which it zero-extends, and
7911 @code{NIL} for other modes.
7912
7913 This macro is not called with @var{mode} non-integral or with a width
7914 greater than or equal to @code{BITS_PER_WORD}, so you may return any
7915 value in this case.  Do not define this macro if it would always return
7916 @code{NIL}.  On machines where this macro is defined, you will normally
7917 define it as the constant @code{SIGN_EXTEND} or @code{ZERO_EXTEND}.
7918
7919 @findex SHORT_IMMEDIATES_SIGN_EXTEND
7920 @item SHORT_IMMEDIATES_SIGN_EXTEND
7921 Define this macro if loading short immediate values into registers sign
7922 extends.
7923
7924 @findex IMPLICIT_FIX_EXPR
7925 @item IMPLICIT_FIX_EXPR
7926 An alias for a tree code that should be used by default for conversion
7927 of floating point values to fixed point.  Normally,
7928 @code{FIX_ROUND_EXPR} is used.
7929
7930 @findex FIXUNS_TRUNC_LIKE_FIX_TRUNC
7931 @item FIXUNS_TRUNC_LIKE_FIX_TRUNC
7932 Define this macro if the same instructions that convert a floating
7933 point number to a signed fixed point number also convert validly to an
7934 unsigned one.
7935
7936 @findex EASY_DIV_EXPR
7937 @item EASY_DIV_EXPR
7938 An alias for a tree code that is the easiest kind of division to
7939 compile code for in the general case.  It may be
7940 @code{TRUNC_DIV_EXPR}, @code{FLOOR_DIV_EXPR}, @code{CEIL_DIV_EXPR} or
7941 @code{ROUND_DIV_EXPR}.  These four division operators differ in how
7942 they round the result to an integer.  @code{EASY_DIV_EXPR} is used
7943 when it is permissible to use any of those kinds of division and the
7944 choice should be made on the basis of efficiency.
7945
7946 @findex MOVE_MAX
7947 @item MOVE_MAX
7948 The maximum number of bytes that a single instruction can move quickly
7949 between memory and registers or between two memory locations.
7950
7951 @findex MAX_MOVE_MAX
7952 @item MAX_MOVE_MAX
7953 The maximum number of bytes that a single instruction can move quickly
7954 between memory and registers or between two memory locations.  If this
7955 is undefined, the default is @code{MOVE_MAX}.  Otherwise, it is the
7956 constant value that is the largest value that @code{MOVE_MAX} can have
7957 at run-time.
7958
7959 @findex SHIFT_COUNT_TRUNCATED
7960 @item SHIFT_COUNT_TRUNCATED
7961 A C expression that is nonzero if on this machine the number of bits
7962 actually used for the count of a shift operation is equal to the number
7963 of bits needed to represent the size of the object being shifted.  When
7964 this macro is non-zero, the compiler will assume that it is safe to omit
7965 a sign-extend, zero-extend, and certain bitwise `and' instructions that
7966 truncates the count of a shift operation.  On machines that have
7967 instructions that act on bit-fields at variable positions, which may
7968 include `bit test' instructions, a nonzero @code{SHIFT_COUNT_TRUNCATED}
7969 also enables deletion of truncations of the values that serve as
7970 arguments to bit-field instructions.
7971
7972 If both types of instructions truncate the count (for shifts) and
7973 position (for bit-field operations), or if no variable-position bit-field
7974 instructions exist, you should define this macro.
7975
7976 However, on some machines, such as the 80386 and the 680x0, truncation
7977 only applies to shift operations and not the (real or pretended)
7978 bit-field operations.  Define @code{SHIFT_COUNT_TRUNCATED} to be zero on
7979 such machines.  Instead, add patterns to the @file{md} file that include
7980 the implied truncation of the shift instructions.
7981
7982 You need not define this macro if it would always have the value of zero.
7983
7984 @findex TRULY_NOOP_TRUNCATION
7985 @item TRULY_NOOP_TRUNCATION (@var{outprec}, @var{inprec})
7986 A C expression which is nonzero if on this machine it is safe to
7987 ``convert'' an integer of @var{inprec} bits to one of @var{outprec}
7988 bits (where @var{outprec} is smaller than @var{inprec}) by merely
7989 operating on it as if it had only @var{outprec} bits.
7990
7991 On many machines, this expression can be 1.
7992
7993 @c rearranged this, removed the phrase "it is reported that".  this was
7994 @c to fix an overfull hbox.  --mew 10feb93
7995 When @code{TRULY_NOOP_TRUNCATION} returns 1 for a pair of sizes for
7996 modes for which @code{MODES_TIEABLE_P} is 0, suboptimal code can result.
7997 If this is the case, making @code{TRULY_NOOP_TRUNCATION} return 0 in
7998 such cases may improve things.
7999
8000 @findex STORE_FLAG_VALUE
8001 @item STORE_FLAG_VALUE
8002 A C expression describing the value returned by a comparison operator
8003 with an integral mode and stored by a store-flag instruction
8004 (@samp{s@var{cond}}) when the condition is true.  This description must
8005 apply to @emph{all} the @samp{s@var{cond}} patterns and all the
8006 comparison operators whose results have a @code{MODE_INT} mode.
8007
8008 A value of 1 or @minus{}1 means that the instruction implementing the
8009 comparison operator returns exactly 1 or @minus{}1 when the comparison is true
8010 and 0 when the comparison is false.  Otherwise, the value indicates
8011 which bits of the result are guaranteed to be 1 when the comparison is
8012 true.  This value is interpreted in the mode of the comparison
8013 operation, which is given by the mode of the first operand in the
8014 @samp{s@var{cond}} pattern.  Either the low bit or the sign bit of
8015 @code{STORE_FLAG_VALUE} be on.  Presently, only those bits are used by
8016 the compiler.
8017
8018 If @code{STORE_FLAG_VALUE} is neither 1 or @minus{}1, the compiler will
8019 generate code that depends only on the specified bits.  It can also
8020 replace comparison operators with equivalent operations if they cause
8021 the required bits to be set, even if the remaining bits are undefined.
8022 For example, on a machine whose comparison operators return an
8023 @code{SImode} value and where @code{STORE_FLAG_VALUE} is defined as
8024 @samp{0x80000000}, saying that just the sign bit is relevant, the
8025 expression
8026
8027 @smallexample
8028 (ne:SI (and:SI @var{x} (const_int @var{power-of-2})) (const_int 0))
8029 @end smallexample
8030
8031 @noindent
8032 can be converted to
8033
8034 @smallexample
8035 (ashift:SI @var{x} (const_int @var{n}))
8036 @end smallexample
8037
8038 @noindent
8039 where @var{n} is the appropriate shift count to move the bit being
8040 tested into the sign bit.
8041
8042 There is no way to describe a machine that always sets the low-order bit
8043 for a true value, but does not guarantee the value of any other bits,
8044 but we do not know of any machine that has such an instruction.  If you
8045 are trying to port GCC to such a machine, include an instruction to
8046 perform a logical-and of the result with 1 in the pattern for the
8047 comparison operators and let us know
8048 @ifset USING
8049 (@pxref{Bug Reporting,,How to Report Bugs}).
8050 @end ifset
8051 @ifclear USING
8052 (@pxref{Bug Reporting,,How to Report Bugs,gcc.info,Using GCC}).
8053 @end ifclear
8054
8055 Often, a machine will have multiple instructions that obtain a value
8056 from a comparison (or the condition codes).  Here are rules to guide the
8057 choice of value for @code{STORE_FLAG_VALUE}, and hence the instructions
8058 to be used:
8059
8060 @itemize @bullet
8061 @item
8062 Use the shortest sequence that yields a valid definition for
8063 @code{STORE_FLAG_VALUE}.  It is more efficient for the compiler to
8064 ``normalize'' the value (convert it to, e.g., 1 or 0) than for the
8065 comparison operators to do so because there may be opportunities to
8066 combine the normalization with other operations.
8067
8068 @item
8069 For equal-length sequences, use a value of 1 or @minus{}1, with @minus{}1 being
8070 slightly preferred on machines with expensive jumps and 1 preferred on
8071 other machines.
8072
8073 @item
8074 As a second choice, choose a value of @samp{0x80000001} if instructions
8075 exist that set both the sign and low-order bits but do not define the
8076 others.
8077
8078 @item
8079 Otherwise, use a value of @samp{0x80000000}.
8080 @end itemize
8081
8082 Many machines can produce both the value chosen for
8083 @code{STORE_FLAG_VALUE} and its negation in the same number of
8084 instructions.  On those machines, you should also define a pattern for
8085 those cases, e.g., one matching
8086
8087 @smallexample
8088 (set @var{A} (neg:@var{m} (ne:@var{m} @var{B} @var{C})))
8089 @end smallexample
8090
8091 Some machines can also perform @code{and} or @code{plus} operations on
8092 condition code values with less instructions than the corresponding
8093 @samp{s@var{cond}} insn followed by @code{and} or @code{plus}.  On those
8094 machines, define the appropriate patterns.  Use the names @code{incscc}
8095 and @code{decscc}, respectively, for the patterns which perform
8096 @code{plus} or @code{minus} operations on condition code values.  See
8097 @file{rs6000.md} for some examples.  The GNU Superoptizer can be used to
8098 find such instruction sequences on other machines.
8099
8100 You need not define @code{STORE_FLAG_VALUE} if the machine has no store-flag
8101 instructions.
8102
8103 @findex FLOAT_STORE_FLAG_VALUE
8104 @item FLOAT_STORE_FLAG_VALUE (@var{mode})
8105 A C expression that gives a non-zero @code{REAL_VALUE_TYPE} value that is
8106 returned when comparison operators with floating-point results are true.
8107 Define this macro on machine that have comparison operations that return
8108 floating-point values.  If there are no such operations, do not define
8109 this macro.
8110
8111 @findex Pmode
8112 @item Pmode
8113 An alias for the machine mode for pointers.  On most machines, define
8114 this to be the integer mode corresponding to the width of a hardware
8115 pointer; @code{SImode} on 32-bit machine or @code{DImode} on 64-bit machines.
8116 On some machines you must define this to be one of the partial integer
8117 modes, such as @code{PSImode}.
8118
8119 The width of @code{Pmode} must be at least as large as the value of
8120 @code{POINTER_SIZE}.  If it is not equal, you must define the macro
8121 @code{POINTERS_EXTEND_UNSIGNED} to specify how pointers are extended
8122 to @code{Pmode}.
8123
8124 @findex FUNCTION_MODE
8125 @item FUNCTION_MODE
8126 An alias for the machine mode used for memory references to functions
8127 being called, in @code{call} RTL expressions.  On most machines this
8128 should be @code{QImode}.
8129
8130 @findex INTEGRATE_THRESHOLD
8131 @item INTEGRATE_THRESHOLD (@var{decl})
8132 A C expression for the maximum number of instructions above which the
8133 function @var{decl} should not be inlined.  @var{decl} is a
8134 @code{FUNCTION_DECL} node.
8135
8136 The default definition of this macro is 64 plus 8 times the number of
8137 arguments that the function accepts.  Some people think a larger
8138 threshold should be used on RISC machines.
8139
8140 @findex STDC_0_IN_SYSTEM_HEADERS
8141 @item STDC_0_IN_SYSTEM_HEADERS
8142 In normal operation, the preprocessor expands @code{__STDC__} to the
8143 constant 1, to signify that GCC conforms to ISO Standard C@.  On some
8144 hosts, like Solaris, the system compiler uses a different convention,
8145 where @code{__STDC__} is normally 0, but is 1 if the user specifies
8146 strict conformance to the C Standard.
8147
8148 Defining @code{STDC_0_IN_SYSTEM_HEADERS} makes GNU CPP follows the host
8149 convention when processing system header files, but when processing user
8150 files @code{__STDC__} will always expand to 1.
8151
8152 @findex SCCS_DIRECTIVE
8153 @item SCCS_DIRECTIVE
8154 Define this if the preprocessor should ignore @code{#sccs} directives
8155 and print no error message.
8156
8157 @findex NO_IMPLICIT_EXTERN_C
8158 @item NO_IMPLICIT_EXTERN_C
8159 Define this macro if the system header files support C++ as well as C.
8160 This macro inhibits the usual method of using system header files in
8161 C++, which is to pretend that the file's contents are enclosed in
8162 @samp{extern "C" @{@dots{}@}}.
8163
8164 @findex HANDLE_PRAGMA
8165 @item HANDLE_PRAGMA (@var{getc}, @var{ungetc}, @var{name})
8166 This macro is no longer supported.  You must use
8167 @code{REGISTER_TARGET_PRAGMAS} instead.
8168
8169 @findex REGISTER_TARGET_PRAGMAS
8170 @findex #pragma
8171 @findex pragma
8172 @item REGISTER_TARGET_PRAGMAS (@var{pfile})
8173 Define this macro if you want to implement any target-specific pragmas.
8174 If defined, it is a C expression which makes a series of calls to the
8175 @code{cpp_register_pragma} and/or @code{cpp_register_pragma_space}
8176 functions.  The @var{pfile} argument is the first argument to supply to
8177 these functions.  The macro may also do setup required for the pragmas.
8178
8179 The primary reason to define this macro is to provide compatibility with
8180 other compilers for the same target.  In general, we discourage
8181 definition of target-specific pragmas for GCC.
8182
8183 If the pragma can be implemented by attributes then the macro
8184 @samp{INSERT_ATTRIBUTES} might be a useful one to define as well.
8185
8186 Preprocessor macros that appear on pragma lines are not expanded.  All
8187 @samp{#pragma} directives that do not match any registered pragma are
8188 silently ignored, unless the user specifies @option{-Wunknown-pragmas}.
8189
8190 @deftypefun void cpp_register_pragma (cpp_reader *@var{pfile}, const char *@var{space}, const char *@var{name}, void (*@var{callback}) (cpp_reader *))
8191
8192 Each call to @code{cpp_register_pragma} establishes one pragma.  The
8193 @var{callback} routine will be called when the preprocessor encounters a
8194 pragma of the form
8195
8196 @smallexample
8197 #pragma [@var{space}] @var{name} @dots{}
8198 @end smallexample
8199
8200 @var{space} must have been the subject of a previous call to
8201 @code{cpp_register_pragma_space}, or else be a null pointer.  The
8202 callback routine receives @var{pfile} as its first argument, but must
8203 not use it for anything (this may change in the future).  It may read
8204 any text after the @var{name} by making calls to @code{c_lex}.  Text
8205 which is not read by the callback will be silently ignored.
8206
8207 Note that both @var{space} and @var{name} are case sensitive.
8208
8209 For an example use of this routine, see @file{c4x.h} and the callback
8210 routines defined in @file{c4x.c}.
8211
8212 Note that the use of @code{c_lex} is specific to the C and C++
8213 compilers.  It will not work in the Java or Fortran compilers, or any
8214 other language compilers for that matter.  Thus if @code{c_lex} is going
8215 to be called from target-specific code, it must only be done so when
8216 building the C and C++ compilers.  This can be done by defining the
8217 variables @code{c_target_objs} and @code{cxx_target_objs} in the
8218 target entry in the @code{config.gcc} file.  These variables should name
8219 the target-specific, language-specific object file which contains the
8220 code that uses @code{c_lex}.  Note it will also be necessary to add a
8221 rule to the makefile fragment pointed to by @code{tmake_file} that shows
8222 how to build this object file.
8223 @end deftypefun
8224
8225 @deftypefun void cpp_register_pragma_space (cpp_reader *@var{pfile}, const char *@var{space})
8226 This routine establishes a namespace for pragmas, which will be
8227 registered by subsequent calls to @code{cpp_register_pragma}.  For
8228 example, pragmas defined by the C standard are in the @samp{STDC}
8229 namespace, and pragmas specific to GCC are in the @samp{GCC} namespace.
8230
8231 For an example use of this routine in a target header, see @file{v850.h}.
8232 @end deftypefun
8233
8234 @findex HANDLE_SYSV_PRAGMA
8235 @findex #pragma
8236 @findex pragma
8237 @item HANDLE_SYSV_PRAGMA
8238 Define this macro (to a value of 1) if you want the System V style
8239 pragmas @samp{#pragma pack(<n>)} and @samp{#pragma weak <name>
8240 [=<value>]} to be supported by gcc.
8241
8242 The pack pragma specifies the maximum alignment (in bytes) of fields
8243 within a structure, in much the same way as the @samp{__aligned__} and
8244 @samp{__packed__} @code{__attribute__}s do.  A pack value of zero resets
8245 the behaviour to the default.
8246
8247 The weak pragma only works if @code{SUPPORTS_WEAK} and
8248 @code{ASM_WEAKEN_LABEL} are defined.  If enabled it allows the creation
8249 of specifically named weak labels, optionally with a value.
8250
8251 @findex HANDLE_PRAGMA_PACK_PUSH_POP
8252 @findex #pragma
8253 @findex pragma
8254 @item HANDLE_PRAGMA_PACK_PUSH_POP
8255 Define this macro (to a value of 1) if you want to support the Win32
8256 style pragmas @samp{#pragma pack(push,<n>)} and @samp{#pragma
8257 pack(pop)}.  The pack(push,<n>) pragma specifies the maximum alignment
8258 (in bytes) of fields within a structure, in much the same way as the
8259 @samp{__aligned__} and @samp{__packed__} @code{__attribute__}s do.  A
8260 pack value of zero resets the behaviour to the default.  Successive
8261 invocations of this pragma cause the previous values to be stacked, so
8262 that invocations of @samp{#pragma pack(pop)} will return to the previous
8263 value.
8264 @end table
8265
8266 @deftypefn {Target Hook} int TARGET_VALID_DECL_ATTRIBUTE (tree @var{decl}, tree @var{attributes}, tree @var{identifier}, tree @var{args})
8267 If defined, this target hook is a function which returns nonzero if @var{identifier} with
8268 arguments @var{args} is a valid machine specific attribute for @var{decl}.
8269 The attributes in @var{attributes} have previously been assigned to @var{decl}.
8270 @end deftypefn
8271
8272 @deftypefn {Target Hook} int TARGET_VALID_TYPE_ATTRIBUTE (tree @var{type}, tree @var{attributes}, tree @var{identifier}, tree @var{args})
8273 If defined, this target hook is a function which returns nonzero if @var{identifier} with
8274 arguments @var{args} is a valid machine specific attribute for @var{type}.
8275 The attributes in @var{attributes} have previously been assigned to @var{type}.
8276 @end deftypefn
8277
8278 @table @code
8279 @findex COMP_TYPE_ATTRIBUTES
8280 @item COMP_TYPE_ATTRIBUTES (@var{type1}, @var{type2})
8281 If defined, a C expression whose value is zero if the attributes on
8282 @var{type1} and @var{type2} are incompatible, one if they are compatible,
8283 and two if they are nearly compatible (which causes a warning to be
8284 generated).
8285
8286 @findex SET_DEFAULT_TYPE_ATTRIBUTES
8287 @item SET_DEFAULT_TYPE_ATTRIBUTES (@var{type})
8288 If defined, a C statement that assigns default attributes to
8289 newly defined @var{type}.
8290 @end table
8291
8292 @deftypefn {Target Hook} tree TARGET_MERGE_TYPE_ATTRIBUTES (tree @var{type1}, tree @var{type2})
8293 Define this target hook if the merging of type attributes needs special
8294 handling.  If defined, the result is a list of the combined
8295 @code{TYPE_ATTRIBUTES} of @var{type1} and @var{type2}.  It is assumed
8296 that @code{comptypes} has already been called and returned 1.  This
8297 function may call @code{merge_attributes} to handle machine-independent
8298 merging.
8299 @end deftypefn
8300
8301 @deftypefn {Target Hook} tree TARGET_MERGE_DECL_ATTRIBUTES (tree @var{olddecl}, tree @var{newdecl})
8302 Define this target hook if the merging of decl attributes needs special
8303 handling.  If defined, the result is a list of the combined
8304 @code{DECL_MACHINE_ATTRIBUTES} of @var{olddecl} and @var{newdecl}.
8305 @var{newdecl} is a duplicate declaration of @var{olddecl}.  Examples of
8306 when this is needed are when one attribute overrides another, or when an
8307 attribute is nullified by a subsequent definition.  This function may
8308 call @code{merge_attributes} to handle machine-independent merging.
8309
8310 @findex TARGET_DLLIMPORT_DECL_ATTRIBUTES
8311 If the only target-specific handling you require is @samp{dllimport} for
8312 Windows targets, you should define the macro
8313 @code{TARGET_DLLIMPORT_DECL_ATTRIBUTES}.  This links in a function
8314 called @code{merge_dllimport_decl_attributes} which can then be defined
8315 as the expansion of @code{TARGET_MERGE_DECL_ATTRIBUTES}.  This is done
8316 in @file{i386/cygwin.h} and @file{i386/i386.c}, for example.
8317 @end deftypefn
8318
8319 @table @code
8320 @findex INSERT_ATTRIBUTES
8321 @item INSERT_ATTRIBUTES (@var{node}, @var{attr_ptr}, @var{prefix_ptr})
8322 Define this macro if you want to be able to add attributes to a decl
8323 when it is being created.  This is normally useful for back ends which
8324 wish to implement a pragma by using the attributes which correspond to
8325 the pragma's effect.  The @var{node} argument is the decl which is being
8326 created.  The @var{attr_ptr} argument is a pointer to the attribute list
8327 for this decl.  The @var{prefix_ptr} is a pointer to the list of
8328 attributes that have appeared after the specifiers and modifiers of the
8329 declaration, but before the declaration proper.
8330
8331 @findex SET_DEFAULT_DECL_ATTRIBUTES
8332 @item SET_DEFAULT_DECL_ATTRIBUTES (@var{decl}, @var{attributes})
8333 If defined, a C statement that assigns default attributes to
8334 newly defined @var{decl}.
8335
8336 @findex DOLLARS_IN_IDENTIFIERS
8337 @item DOLLARS_IN_IDENTIFIERS
8338 Define this macro to control use of the character @samp{$} in identifier
8339 names.  0 means @samp{$} is not allowed by default; 1 means it is allowed.
8340 1 is the default; there is no need to define this macro in that case.
8341 This macro controls the compiler proper; it does not affect the preprocessor.
8342
8343 @findex NO_DOLLAR_IN_LABEL
8344 @item NO_DOLLAR_IN_LABEL
8345 Define this macro if the assembler does not accept the character
8346 @samp{$} in label names.  By default constructors and destructors in
8347 G++ have @samp{$} in the identifiers.  If this macro is defined,
8348 @samp{.} is used instead.
8349
8350 @findex NO_DOT_IN_LABEL
8351 @item NO_DOT_IN_LABEL
8352 Define this macro if the assembler does not accept the character
8353 @samp{.} in label names.  By default constructors and destructors in G++
8354 have names that use @samp{.}.  If this macro is defined, these names
8355 are rewritten to avoid @samp{.}.
8356
8357 @findex DEFAULT_MAIN_RETURN
8358 @item DEFAULT_MAIN_RETURN
8359 Define this macro if the target system expects every program's @code{main}
8360 function to return a standard ``success'' value by default (if no other
8361 value is explicitly returned).
8362
8363 The definition should be a C statement (sans semicolon) to generate the
8364 appropriate rtl instructions.  It is used only when compiling the end of
8365 @code{main}.
8366
8367 @item NEED_ATEXIT
8368 @findex NEED_ATEXIT
8369 Define this if the target system lacks the function @code{atexit}
8370 from the ISO C standard.  If this macro is defined, a default definition
8371 will be provided to support C++.  If @code{ON_EXIT} is not defined,
8372 a default @code{exit} function will also be provided.
8373
8374 @item ON_EXIT
8375 @findex ON_EXIT
8376 Define this macro if the target has another way to implement atexit
8377 functionality without replacing @code{exit}.  For instance, SunOS 4 has
8378 a similar @code{on_exit} library function.
8379
8380 The definition should be a functional macro which can be used just like
8381 the @code{atexit} function.
8382
8383 @item EXIT_BODY
8384 @findex EXIT_BODY
8385 Define this if your @code{exit} function needs to do something
8386 besides calling an external function @code{_cleanup} before
8387 terminating with @code{_exit}.  The @code{EXIT_BODY} macro is
8388 only needed if @code{NEED_ATEXIT} is defined and @code{ON_EXIT} is not
8389 defined.
8390
8391 @findex INSN_SETS_ARE_DELAYED
8392 @item INSN_SETS_ARE_DELAYED (@var{insn})
8393 Define this macro as a C expression that is nonzero if it is safe for the
8394 delay slot scheduler to place instructions in the delay slot of @var{insn},
8395 even if they appear to use a resource set or clobbered in @var{insn}.
8396 @var{insn} is always a @code{jump_insn} or an @code{insn}; GCC knows that
8397 every @code{call_insn} has this behavior.  On machines where some @code{insn}
8398 or @code{jump_insn} is really a function call and hence has this behavior,
8399 you should define this macro.
8400
8401 You need not define this macro if it would always return zero.
8402
8403 @findex INSN_REFERENCES_ARE_DELAYED
8404 @item INSN_REFERENCES_ARE_DELAYED (@var{insn})
8405 Define this macro as a C expression that is nonzero if it is safe for the
8406 delay slot scheduler to place instructions in the delay slot of @var{insn},
8407 even if they appear to set or clobber a resource referenced in @var{insn}.
8408 @var{insn} is always a @code{jump_insn} or an @code{insn}.  On machines where
8409 some @code{insn} or @code{jump_insn} is really a function call and its operands
8410 are registers whose use is actually in the subroutine it calls, you should
8411 define this macro.  Doing so allows the delay slot scheduler to move
8412 instructions which copy arguments into the argument registers into the delay
8413 slot of @var{insn}.
8414
8415 You need not define this macro if it would always return zero.
8416
8417 @findex MACHINE_DEPENDENT_REORG
8418 @item MACHINE_DEPENDENT_REORG (@var{insn})
8419 In rare cases, correct code generation requires extra machine
8420 dependent processing between the second jump optimization pass and
8421 delayed branch scheduling.  On those machines, define this macro as a C
8422 statement to act on the code starting at @var{insn}.
8423
8424 @findex MULTIPLE_SYMBOL_SPACES
8425 @item MULTIPLE_SYMBOL_SPACES
8426 Define this macro if in some cases global symbols from one translation
8427 unit may not be bound to undefined symbols in another translation unit
8428 without user intervention.  For instance, under Microsoft Windows
8429 symbols must be explicitly imported from shared libraries (DLLs).
8430
8431 @findex MD_ASM_CLOBBERS
8432 @item MD_ASM_CLOBBERS
8433 A C statement that adds to @var{CLOBBERS} @code{STRING_CST} trees for
8434 any hard regs the port wishes to automatically clobber for all asms.
8435
8436 @findex ISSUE_RATE
8437 @item ISSUE_RATE
8438 A C expression that returns how many instructions can be issued at the
8439 same time if the machine is a superscalar machine.
8440
8441 @findex MD_SCHED_INIT
8442 @item MD_SCHED_INIT (@var{file}, @var{verbose}, @var{max_ready})
8443 A C statement which is executed by the scheduler at the
8444 beginning of each block of instructions that are to be scheduled.
8445 @var{file} is either a null pointer, or a stdio stream to write any
8446 debug output to.  @var{verbose} is the verbose level provided by
8447 @option{-fsched-verbose-@var{n}}.  @var{max_ready} is the maximum number
8448 of insns in the current scheduling region that can be live at the same
8449 time.  This can be used to allocate scratch space if it is needed.
8450
8451 @findex MD_SCHED_FINISH
8452 @item MD_SCHED_FINISH (@var{file}, @var{verbose})
8453 A C statement which is executed by the scheduler at the end of each block
8454 of instructions that are to be scheduled.  It can be used to perform
8455 cleanup of any actions done by the other scheduling macros.
8456 @var{file} is either a null pointer, or a stdio stream to write any
8457 debug output to.  @var{verbose} is the verbose level provided by
8458 @option{-fsched-verbose-@var{n}}.
8459
8460 @findex MD_SCHED_REORDER
8461 @item MD_SCHED_REORDER (@var{file}, @var{verbose}, @var{ready}, @var{n_ready}, @var{clock}, @var{can_issue_more})
8462 A C statement which is executed by the scheduler after it
8463 has scheduled the ready list to allow the machine description to reorder
8464 it (for example to combine two small instructions together on
8465 @samp{VLIW} machines).  @var{file} is either a null pointer, or a stdio
8466 stream to write any debug output to.  @var{verbose} is the verbose level
8467 provided by @option{-fsched-verbose-@var{n}}.  @var{ready} is a pointer to
8468 the ready list of instructions that are ready to be scheduled.
8469 @var{n_ready} is the number of elements in the ready list.  The
8470 scheduler reads the ready list in reverse order, starting with
8471 @var{ready}[@var{n_ready}-1] and going to @var{ready}[0].  @var{clock}
8472 is the timer tick of the scheduler.  @var{can_issue_more} is an output
8473 parameter that is set to the number of insns that can issue this clock;
8474 normally this is just @code{issue_rate}.  See also @samp{MD_SCHED_REORDER2}.
8475
8476 @findex MD_SCHED_REORDER2
8477 @item MD_SCHED_REORDER2 (@var{file}, @var{verbose}, @var{ready}, @var{n_ready}, @var{clock}, @var{can_issue_more})
8478 Like @samp{MD_SCHED_REORDER}, but called at a different time.  While the
8479 @samp{MD_SCHED_REORDER} macro is called whenever the scheduler starts a
8480 new cycle, this macro is used immediately after @samp{MD_SCHED_VARIABLE_ISSUE}
8481 is called; it can reorder the ready list and set @var{can_issue_more} to
8482 determine whether there are more insns to be scheduled in the same cycle.
8483 Defining this macro can be useful if there are frequent situations where
8484 scheduling one insn causes other insns to become ready in the same cycle,
8485 these other insns can then be taken into account properly.
8486
8487 @findex MD_SCHED_VARIABLE_ISSUE
8488 @item MD_SCHED_VARIABLE_ISSUE (@var{file}, @var{verbose}, @var{insn}, @var{more})
8489 A C statement which is executed by the scheduler after it
8490 has scheduled an insn from the ready list.  @var{file} is either a null
8491 pointer, or a stdio stream to write any debug output to.  @var{verbose}
8492 is the verbose level provided by @option{-fsched-verbose-@var{n}}.
8493 @var{insn} is the instruction that was scheduled.  @var{more} is the
8494 number of instructions that can be issued in the current cycle.  The
8495 @samp{MD_SCHED_VARIABLE_ISSUE} macro is responsible for updating the
8496 value of @var{more} (typically by @samp{@var{more}--}).
8497
8498 @findex MAX_INTEGER_COMPUTATION_MODE
8499 @item MAX_INTEGER_COMPUTATION_MODE
8500 Define this to the largest integer machine mode which can be used for
8501 operations other than load, store and copy operations.
8502
8503 You need only define this macro if the target holds values larger than
8504 @code{word_mode} in general purpose registers.  Most targets should not define
8505 this macro.
8506
8507 @findex MATH_LIBRARY
8508 @item MATH_LIBRARY
8509 Define this macro as a C string constant for the linker argument to link
8510 in the system math library, or @samp{""} if the target does not have a
8511 separate math library.
8512
8513 You need only define this macro if the default of @samp{"-lm"} is wrong.
8514
8515 @findex LIBRARY_PATH_ENV
8516 @item LIBRARY_PATH_ENV
8517 Define this macro as a C string constant for the environment variable that
8518 specifies where the linker should look for libraries.
8519
8520 You need only define this macro if the default of @samp{"LIBRARY_PATH"}
8521 is wrong.
8522
8523 @findex TARGET_HAS_F_SETLKW
8524 @item TARGET_HAS_F_SETLKW
8525 Define this macro if the target supports file locking with fcntl / F_SETLKW.
8526 Note that this functionality is part of POSIX.
8527 Defining @code{TARGET_HAS_F_SETLKW} will enable the test coverage code
8528 to use file locking when exiting a program, which avoids race conditions
8529 if the program has forked.
8530
8531 @findex MAX_CONDITIONAL_EXECUTE
8532 @item MAX_CONDITIONAL_EXECUTE
8533
8534 A C expression for the maximum number of instructions to execute via
8535 conditional execution instructions instead of a branch.  A value of
8536 @code{BRANCH_COST}+1 is the default if the machine does not use cc0, and
8537 1 if it does use cc0.
8538
8539 @findex IFCVT_MODIFY_TESTS
8540 @item IFCVT_MODIFY_TESTS
8541 A C expression to modify the tests in @code{TRUE_EXPR}, and
8542 @code{FALSE_EXPR} for use in converting insns in @code{TEST_BB},
8543 @code{THEN_BB}, @code{ELSE_BB}, and @code{JOIN_BB} basic blocks to
8544 conditional execution.  Set either @code{TRUE_EXPR} or @code{FALSE_EXPR}
8545 to a null pointer if the tests cannot be converted.
8546
8547 @findex IFCVT_MODIFY_INSN
8548 @item IFCVT_MODIFY_INSN
8549 A C expression to modify the @code{PATTERN} of an @code{INSN} that is to
8550 be converted to conditional execution format.
8551
8552 @findex IFCVT_MODIFY_FINAL
8553 @item IFCVT_MODIFY_FINAL
8554 A C expression to perform any final machine dependent modifications in
8555 converting code to conditional execution in the basic blocks
8556 @code{TEST_BB}, @code{THEN_BB}, @code{ELSE_BB}, and @code{JOIN_BB}.
8557
8558 @findex IFCVT_MODIFY_CANCEL
8559 @item IFCVT_MODIFY_CANCEL
8560 A C expression to cancel any machine dependent modifications in
8561 converting code to conditional execution in the basic blocks
8562 @code{TEST_BB}, @code{THEN_BB}, @code{ELSE_BB}, and @code{JOIN_BB}.
8563
8564 @findex MD_INIT_BUILTINS
8565 @item MD_INIT_BUILTINS
8566 Define this macro if you have any machine-specific built-in functions that
8567 need to be defined.  It should be a C expression that performs the
8568 necessary setup.
8569
8570 Machine specific built-in functions can be useful to expand special machine
8571 instructions that would otherwise not normally be generated because
8572 they have no equivalent in the source language (for example, SIMD vector
8573 instructions or prefetch instructions).
8574
8575 To create a built-in function, call the function @code{builtin_function}
8576 which is defined by the language front end.  You can use any type nodes set
8577 up by @code{build_common_tree_nodes} and @code{build_common_tree_nodes_2};
8578 only language front ends that use these two functions will use
8579 @samp{MD_INIT_BUILTINS}.
8580
8581 @findex MD_EXPAND_BUILTIN
8582 @item MD_EXPAND_BUILTIN(@var{exp}, @var{target}, @var{subtarget}, @var{mode}, @var{ignore})
8583
8584 Expand a call to a machine specific built-in function that was set up by
8585 @samp{MD_INIT_BUILTINS}.  @var{exp} is the expression for the function call;
8586 the result should go to @var{target} if that is convenient, and have mode
8587 @var{mode} if that is convenient.  @var{subtarget} may be used as the target
8588 for computing one of @var{exp}'s operands. @var{ignore} is nonzero if the value
8589 is to be ignored.
8590 This macro should return the result of the call to the built-in function.
8591
8592 @end table