]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/defaults.h
expr.c (convert_move): If the target has an explicit converter, use it.
[thirdparty/gcc.git] / gcc / defaults.h
CommitLineData
eff01bb6 1/* Definitions of various defaults for tm.h macros.
23a5b65a 2 Copyright (C) 1992-2014 Free Software Foundation, Inc.
b33c316c 3 Contributed by Ron Guilmette (rfg@monkeys.com)
c53a8ab6 4
1322177d 5This file is part of GCC.
c53a8ab6 6
1322177d
LB
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9dcd6f09 9Software Foundation; either version 3, or (at your option) any later
1322177d 10version.
c53a8ab6 11
1322177d
LB
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
c53a8ab6 16
748086b7
JJ
17Under Section 7 of GPL version 3, you are granted additional
18permissions described in the GCC Runtime Library Exception, version
193.1, as published by the Free Software Foundation.
20
21You should have received a copy of the GNU General Public License and
22a copy of the GCC Runtime Library Exception along with this program;
23see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
9dcd6f09 24<http://www.gnu.org/licenses/>. */
c53a8ab6 25
d8ea8f28
ZW
26#ifndef GCC_DEFAULTS_H
27#define GCC_DEFAULTS_H
28
ded49a7f
RH
29/* How to start an assembler comment. */
30#ifndef ASM_COMMENT_START
31#define ASM_COMMENT_START ";#"
32#endif
33
4977bab6
ZW
34/* Store in OUTPUT a string (made with alloca) containing an
35 assembler-name for a local static variable or function named NAME.
7b73db04
CH
36 LABELNO is an integer which is different for each call. */
37
4977bab6
ZW
38#ifndef ASM_PN_FORMAT
39# ifndef NO_DOT_IN_LABEL
40# define ASM_PN_FORMAT "%s.%lu"
41# else
42# ifndef NO_DOLLAR_IN_LABEL
43# define ASM_PN_FORMAT "%s$%lu"
44# else
45# define ASM_PN_FORMAT "__%s_%lu"
46# endif
47# endif
48#endif /* ! ASM_PN_FORMAT */
49
7b73db04 50#ifndef ASM_FORMAT_PRIVATE_NAME
4977bab6
ZW
51# define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \
52 do { const char *const name_ = (NAME); \
28dab132
BI
53 char *const output_ = (OUTPUT) = \
54 (char *) alloca (strlen (name_) + 32); \
4977bab6 55 sprintf (output_, ASM_PN_FORMAT, name_, (unsigned long)(LABELNO)); \
7b73db04
CH
56 } while (0)
57#endif
58
e0a21ab9 59/* Choose a reasonable default for ASM_OUTPUT_ASCII. */
c53a8ab6
RS
60
61#ifndef ASM_OUTPUT_ASCII
62#define ASM_OUTPUT_ASCII(MYFILE, MYSTRING, MYLENGTH) \
63 do { \
64 FILE *_hide_asm_out_file = (MYFILE); \
47ee9bcb 65 const unsigned char *_hide_p = (const unsigned char *) (MYSTRING); \
c53a8ab6
RS
66 int _hide_thissize = (MYLENGTH); \
67 { \
68 FILE *asm_out_file = _hide_asm_out_file; \
47ee9bcb 69 const unsigned char *p = _hide_p; \
c53a8ab6
RS
70 int thissize = _hide_thissize; \
71 int i; \
72 fprintf (asm_out_file, "\t.ascii \""); \
73 \
74 for (i = 0; i < thissize; i++) \
75 { \
b3694847 76 int c = p[i]; \
c53a8ab6
RS
77 if (c == '\"' || c == '\\') \
78 putc ('\\', asm_out_file); \
c3284718 79 if (ISPRINT (c)) \
c53a8ab6
RS
80 putc (c, asm_out_file); \
81 else \
82 { \
83 fprintf (asm_out_file, "\\%o", c); \
84 /* After an octal-escape, if a digit follows, \
85 terminate one string constant and start another. \
8aeea6e6 86 The VAX assembler fails to stop reading the escape \
c53a8ab6
RS
87 after three digits, so this is the only way we \
88 can get it to parse the data properly. */ \
c3284718 89 if (i < thissize - 1 && ISDIGIT (p[i + 1])) \
c53a8ab6
RS
90 fprintf (asm_out_file, "\"\n\t.ascii \""); \
91 } \
92 } \
93 fprintf (asm_out_file, "\"\n"); \
94 } \
95 } \
96 while (0)
97#endif
d0d4af87 98
650f773a
JW
99/* This is how we tell the assembler to equate two values. */
100#ifdef SET_ASM_OP
101#ifndef ASM_OUTPUT_DEF
102#define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
e8638df0 103 do { fprintf ((FILE), "%s", SET_ASM_OP); \
650f773a
JW
104 assemble_name (FILE, LABEL1); \
105 fprintf (FILE, ","); \
106 assemble_name (FILE, LABEL2); \
107 fprintf (FILE, "\n"); \
108 } while (0)
109#endif
110#endif
daefd78b 111
ba885ec5
NS
112#ifndef IFUNC_ASM_TYPE
113#define IFUNC_ASM_TYPE "gnu_indirect_function"
114#endif
115
f1c26cad
RO
116#ifndef TLS_COMMON_ASM_OP
117#define TLS_COMMON_ASM_OP ".tls_common"
118#endif
119
a13e882c
JJ
120#if defined (HAVE_AS_TLS) && !defined (ASM_OUTPUT_TLS_COMMON)
121#define ASM_OUTPUT_TLS_COMMON(FILE, DECL, NAME, SIZE) \
122 do \
123 { \
f1c26cad 124 fprintf ((FILE), "\t%s\t", TLS_COMMON_ASM_OP); \
a13e882c
JJ
125 assemble_name ((FILE), (NAME)); \
126 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
127 (SIZE), DECL_ALIGN (DECL) / BITS_PER_UNIT); \
128 } \
129 while (0)
130#endif
131
083b6717
JDA
132/* Decide whether to defer emitting the assembler output for an equate
133 of two values. The default is to not defer output. */
134#ifndef TARGET_DEFERRED_OUTPUT_DEFS
135#define TARGET_DEFERRED_OUTPUT_DEFS(DECL,TARGET) false
136#endif
137
4ad5e05d 138/* This is how to output the definition of a user-level label named
135a687e 139 NAME, such as the label on variable NAME. */
4ad5e05d
KG
140
141#ifndef ASM_OUTPUT_LABEL
142#define ASM_OUTPUT_LABEL(FILE,NAME) \
5e3929ed
DA
143 do { \
144 assemble_name ((FILE), (NAME)); \
145 fputs (":\n", (FILE)); \
146 } while (0)
4ad5e05d
KG
147#endif
148
135a687e
KT
149/* This is how to output the definition of a user-level label named
150 NAME, such as the label on a function. */
151
152#ifndef ASM_OUTPUT_FUNCTION_LABEL
153#define ASM_OUTPUT_FUNCTION_LABEL(FILE, NAME, DECL) \
154 ASM_OUTPUT_LABEL ((FILE), (NAME))
155#endif
156
57829bc4
MM
157/* Output the definition of a compiler-generated label named NAME. */
158#ifndef ASM_OUTPUT_INTERNAL_LABEL
159#define ASM_OUTPUT_INTERNAL_LABEL(FILE,NAME) \
160 do { \
161 assemble_name_raw ((FILE), (NAME)); \
162 fputs (":\n", (FILE)); \
163 } while (0)
164#endif
165
81d77cda
RK
166/* This is how to output a reference to a user-level label named NAME. */
167
168#ifndef ASM_OUTPUT_LABELREF
5e3929ed
DA
169#define ASM_OUTPUT_LABELREF(FILE,NAME) \
170 do { \
171 fputs (user_label_prefix, (FILE)); \
172 fputs ((NAME), (FILE)); \
173 } while (0);
81d77cda
RK
174#endif
175
8215347e
JW
176/* Allow target to print debug info labels specially. This is useful for
177 VLIW targets, since debug info labels should go into the middle of
178 instruction bundles instead of breaking them. */
179
180#ifndef ASM_OUTPUT_DEBUG_LABEL
181#define ASM_OUTPUT_DEBUG_LABEL(FILE, PREFIX, NUM) \
4977bab6 182 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM)
8215347e
JW
183#endif
184
3aa8ab7b 185/* This is how we tell the assembler that a symbol is weak. */
20c93f7c
RO
186#ifndef ASM_OUTPUT_WEAK_ALIAS
187#if defined (ASM_WEAKEN_LABEL) && defined (ASM_OUTPUT_DEF)
3aa8ab7b
L
188#define ASM_OUTPUT_WEAK_ALIAS(STREAM, NAME, VALUE) \
189 do \
190 { \
191 ASM_WEAKEN_LABEL (STREAM, NAME); \
192 if (VALUE) \
193 ASM_OUTPUT_DEF (STREAM, NAME, VALUE); \
194 } \
195 while (0)
a0203ca7
AO
196#endif
197#endif
198
199/* This is how we tell the assembler that a symbol is a weak alias to
200 another symbol that doesn't require the other symbol to be defined.
201 Uses of the former will turn into weak uses of the latter, i.e.,
202 uses that, in case the latter is undefined, will not cause errors,
203 and will add it to the symbol table as weak undefined. However, if
204 the latter is referenced directly, a strong reference prevails. */
205#ifndef ASM_OUTPUT_WEAKREF
206#if defined HAVE_GAS_WEAKREF
ff2d10c1 207#define ASM_OUTPUT_WEAKREF(FILE, DECL, NAME, VALUE) \
a0203ca7
AO
208 do \
209 { \
210 fprintf ((FILE), "\t.weakref\t"); \
211 assemble_name ((FILE), (NAME)); \
212 fprintf ((FILE), ","); \
213 assemble_name ((FILE), (VALUE)); \
214 fprintf ((FILE), "\n"); \
215 } \
216 while (0)
3aa8ab7b 217#endif
20c93f7c 218#endif
3aa8ab7b 219
2be2ac70
ZW
220/* How to emit a .type directive. */
221#ifndef ASM_OUTPUT_TYPE_DIRECTIVE
222#if defined TYPE_ASM_OP && defined TYPE_OPERAND_FMT
223#define ASM_OUTPUT_TYPE_DIRECTIVE(STREAM, NAME, TYPE) \
224 do \
225 { \
226 fputs (TYPE_ASM_OP, STREAM); \
227 assemble_name (STREAM, NAME); \
228 fputs (", ", STREAM); \
229 fprintf (STREAM, TYPE_OPERAND_FMT, TYPE); \
230 putc ('\n', STREAM); \
231 } \
232 while (0)
233#endif
234#endif
235
236/* How to emit a .size directive. */
237#ifndef ASM_OUTPUT_SIZE_DIRECTIVE
238#ifdef SIZE_ASM_OP
239#define ASM_OUTPUT_SIZE_DIRECTIVE(STREAM, NAME, SIZE) \
240 do \
241 { \
242 HOST_WIDE_INT size_ = (SIZE); \
243 fputs (SIZE_ASM_OP, STREAM); \
244 assemble_name (STREAM, NAME); \
90ff44cf 245 fprintf (STREAM, ", " HOST_WIDE_INT_PRINT_DEC "\n", size_); \
2be2ac70
ZW
246 } \
247 while (0)
248
99086d59 249#define ASM_OUTPUT_MEASURED_SIZE(STREAM, NAME) \
2be2ac70
ZW
250 do \
251 { \
252 fputs (SIZE_ASM_OP, STREAM); \
99086d59
ZW
253 assemble_name (STREAM, NAME); \
254 fputs (", .-", STREAM); \
255 assemble_name (STREAM, NAME); \
2be2ac70
ZW
256 putc ('\n', STREAM); \
257 } \
258 while (0)
259
260#endif
261#endif
262
74b90fe2
JDA
263/* This determines whether or not we support weak symbols. SUPPORTS_WEAK
264 must be a preprocessor constant. */
daefd78b 265#ifndef SUPPORTS_WEAK
79c4e63f 266#if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
daefd78b
JM
267#define SUPPORTS_WEAK 1
268#else
269#define SUPPORTS_WEAK 0
270#endif
271#endif
a6ab3aad 272
74b90fe2
JDA
273/* This determines whether or not we support weak symbols during target
274 code generation. TARGET_SUPPORTS_WEAK can be any valid C expression. */
275#ifndef TARGET_SUPPORTS_WEAK
276#define TARGET_SUPPORTS_WEAK (SUPPORTS_WEAK)
277#endif
278
ed5ef2e4
CC
279/* This determines whether or not we support the discriminator
280 attribute in the .loc directive. */
281#ifndef SUPPORTS_DISCRIMINATOR
282#ifdef HAVE_GAS_DISCRIMINATOR
283#define SUPPORTS_DISCRIMINATOR 1
284#else
285#define SUPPORTS_DISCRIMINATOR 0
286#endif
287#endif
288
1ca894a0
MM
289/* This determines whether or not we support link-once semantics. */
290#ifndef SUPPORTS_ONE_ONLY
291#ifdef MAKE_DECL_ONE_ONLY
292#define SUPPORTS_ONE_ONLY 1
293#else
294#define SUPPORTS_ONE_ONLY 0
295#endif
296#endif
297
0524c91d
MA
298/* This determines whether weak symbols must be left out of a static
299 archive's table of contents. Defining this macro to be nonzero has
300 the consequence that certain symbols will not be made weak that
301 otherwise would be. The C++ ABI requires this macro to be zero;
8c27b7d4 302 see the documentation. */
0524c91d
MA
303#ifndef TARGET_WEAK_NOT_IN_ARCHIVE_TOC
304#define TARGET_WEAK_NOT_IN_ARCHIVE_TOC 0
4746cf84
MA
305#endif
306
ea4b7848 307/* This determines whether or not we need linkonce unwind information. */
4746cf84
MA
308#ifndef TARGET_USES_WEAK_UNWIND_INFO
309#define TARGET_USES_WEAK_UNWIND_INFO 0
310#endif
311
d48fd218
ZW
312/* By default, there is no prefix on user-defined symbols. */
313#ifndef USER_LABEL_PREFIX
314#define USER_LABEL_PREFIX ""
315#endif
316
8f08ea1e 317/* If the target supports weak symbols, define TARGET_ATTRIBUTE_WEAK to
f676971a 318 provide a weak attribute. Else define it to nothing.
8f08ea1e 319
d02af173 320 This would normally belong in ansidecl.h, but SUPPORTS_WEAK is
8f08ea1e
L
321 not available at that time.
322
323 Note, this is only for use by target files which we know are to be
324 compiled by GCC. */
325#ifndef TARGET_ATTRIBUTE_WEAK
326# if SUPPORTS_WEAK
327# define TARGET_ATTRIBUTE_WEAK __attribute__ ((weak))
328# else
329# define TARGET_ATTRIBUTE_WEAK
330# endif
331#endif
332
15072eb1
ZW
333/* By default we can assume that all global symbols are in one namespace,
334 across all shared libraries. */
335#ifndef MULTIPLE_SYMBOL_SPACES
336# define MULTIPLE_SYMBOL_SPACES 0
337#endif
4746cf84 338
ea4f1fce
JO
339/* If the target supports init_priority C++ attribute, give
340 SUPPORTS_INIT_PRIORITY a nonzero value. */
341#ifndef SUPPORTS_INIT_PRIORITY
342#define SUPPORTS_INIT_PRIORITY 1
343#endif /* SUPPORTS_INIT_PRIORITY */
344
a6ab3aad
JM
345/* If we have a definition of INCOMING_RETURN_ADDR_RTX, assume that
346 the rest of the DWARF 2 frame unwind support is also provided. */
f0a0390e 347#if !defined (DWARF2_UNWIND_INFO) && defined (INCOMING_RETURN_ADDR_RTX)
0021b564 348#define DWARF2_UNWIND_INFO 1
a6ab3aad 349#endif
b366352b 350
2cc07db4
RH
351/* If we have named sections, and we're using crtstuff to run ctors,
352 use them for registering eh frame information. */
bc2a8f08 353#if defined (TARGET_ASM_NAMED_SECTION) && DWARF2_UNWIND_INFO \
c3284718 354 && !defined (EH_FRAME_IN_DATA_SECTION)
7c262518
RH
355#ifndef EH_FRAME_SECTION_NAME
356#define EH_FRAME_SECTION_NAME ".eh_frame"
357#endif
31cf0144
JM
358#endif
359
1a35e62d
MM
360/* On many systems, different EH table encodings are used under
361 difference circumstances. Some will require runtime relocations;
362 some will not. For those that do not require runtime relocations,
363 we would like to make the table read-only. However, since the
364 read-only tables may need to be combined with read-write tables
365 that do require runtime relocation, it is not safe to make the
366 tables read-only unless the linker will merge read-only and
367 read-write sections into a single read-write section. If your
368 linker does not have this ability, but your system is such that no
369 encoding used with non-PIC code will ever require a runtime
370 relocation, then you can define EH_TABLES_CAN_BE_READ_ONLY to 1 in
371 your target configuration file. */
372#ifndef EH_TABLES_CAN_BE_READ_ONLY
373#ifdef HAVE_LD_RO_RW_SECTION_MIXING
374#define EH_TABLES_CAN_BE_READ_ONLY 1
375#else
376#define EH_TABLES_CAN_BE_READ_ONLY 0
377#endif
378#endif
379
6351543d
AG
380/* If we have named section and we support weak symbols, then use the
381 .jcr section for recording java classes which need to be registered
382 at program start-up time. */
383#if defined (TARGET_ASM_NAMED_SECTION) && SUPPORTS_WEAK
384#ifndef JCR_SECTION_NAME
385#define JCR_SECTION_NAME ".jcr"
386#endif
387#endif
388
adb35797 389/* This decision to use a .jcr section can be overridden by defining
e50e6b88
DS
390 USE_JCR_SECTION to 0 in target file. This is necessary if target
391 can define JCR_SECTION_NAME but does not have crtstuff or
392 linker support for .jcr section. */
393#ifndef TARGET_USE_JCR_SECTION
394#ifdef JCR_SECTION_NAME
395#define TARGET_USE_JCR_SECTION 1
396#else
397#define TARGET_USE_JCR_SECTION 0
398#endif
399#endif
400
c478efd1
GDR
401/* Number of hardware registers that go into the DWARF-2 unwind info.
402 If not defined, equals FIRST_PSEUDO_REGISTER */
403
404#ifndef DWARF_FRAME_REGISTERS
405#define DWARF_FRAME_REGISTERS FIRST_PSEUDO_REGISTER
406#endif
d8ea8f28 407
db42e39d
RH
408/* Offsets recorded in opcodes are a multiple of this alignment factor. */
409#ifndef DWARF_CIE_DATA_ALIGNMENT
410#ifdef STACK_GROWS_DOWNWARD
411#define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
412#else
413#define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
414#endif
415#endif
416
417/* The DWARF 2 CFA column which tracks the return address. Normally this
418 is the column for PC, or the first column after all of the hard
419 registers. */
420#ifndef DWARF_FRAME_RETURN_COLUMN
421#ifdef PC_REGNUM
422#define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
423#else
424#define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
425#endif
426#endif
427
4617e3b5
KG
428/* How to renumber registers for dbx and gdb. If not defined, assume
429 no renumbering is necessary. */
430
431#ifndef DBX_REGISTER_NUMBER
432#define DBX_REGISTER_NUMBER(REGNO) (REGNO)
433#endif
434
db42e39d
RH
435/* The mapping from gcc register number to DWARF 2 CFA column number.
436 By default, we just provide columns for all registers. */
437#ifndef DWARF_FRAME_REGNUM
438#define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
439#endif
440
441/* Map register numbers held in the call frame info that gcc has
442 collected using DWARF_FRAME_REGNUM to those that should be output in
443 .debug_frame and .eh_frame. */
444#ifndef DWARF2_FRAME_REG_OUT
445#define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
446#endif
447
948d330e
RH
448/* The size of addresses as they appear in the Dwarf 2 data.
449 Some architectures use word addresses to refer to code locations,
450 but Dwarf 2 info always uses byte addresses. On such machines,
451 Dwarf 2 addresses need to be larger than the architecture's
452 pointers. */
453#ifndef DWARF2_ADDR_SIZE
454#define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
455#endif
456
457/* The size in bytes of a DWARF field indicating an offset or length
458 relative to a debug info section, specified to be 4 bytes in the
459 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
460 as PTR_SIZE. */
461#ifndef DWARF_OFFSET_SIZE
462#define DWARF_OFFSET_SIZE 4
463#endif
464
465/* The size in bytes of a DWARF 4 type signature. */
466#ifndef DWARF_TYPE_SIGNATURE_SIZE
467#define DWARF_TYPE_SIGNATURE_SIZE 8
468#endif
469
d8ea8f28
ZW
470/* Default sizes for base C types. If the sizes are different for
471 your target, you should override these values by defining the
472 appropriate symbols in your tm.h file. */
473
807e902e
KZ
474#if BITS_PER_UNIT == 8
475#define LOG2_BITS_PER_UNIT 3
476#elif BITS_PER_UNIT == 16
477#define LOG2_BITS_PER_UNIT 4
478#else
479#error Unknown BITS_PER_UNIT
480#endif
481
e81dd381
KG
482#ifndef BITS_PER_WORD
483#define BITS_PER_WORD (BITS_PER_UNIT * UNITS_PER_WORD)
484#endif
485
d8ea8f28
ZW
486#ifndef CHAR_TYPE_SIZE
487#define CHAR_TYPE_SIZE BITS_PER_UNIT
488#endif
489
609688f3
JM
490#ifndef BOOL_TYPE_SIZE
491/* `bool' has size and alignment `1', on almost all platforms. */
492#define BOOL_TYPE_SIZE CHAR_TYPE_SIZE
493#endif
494
d8ea8f28
ZW
495#ifndef SHORT_TYPE_SIZE
496#define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
497#endif
498
499#ifndef INT_TYPE_SIZE
500#define INT_TYPE_SIZE BITS_PER_WORD
501#endif
502
503#ifndef LONG_TYPE_SIZE
504#define LONG_TYPE_SIZE BITS_PER_WORD
505#endif
506
507#ifndef LONG_LONG_TYPE_SIZE
508#define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
509#endif
510
511#ifndef WCHAR_TYPE_SIZE
512#define WCHAR_TYPE_SIZE INT_TYPE_SIZE
513#endif
514
d8ea8f28
ZW
515#ifndef FLOAT_TYPE_SIZE
516#define FLOAT_TYPE_SIZE BITS_PER_WORD
517#endif
518
519#ifndef DOUBLE_TYPE_SIZE
520#define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
521#endif
522
523#ifndef LONG_DOUBLE_TYPE_SIZE
524#define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
525#endif
526
9a8ce21f
JG
527#ifndef DECIMAL32_TYPE_SIZE
528#define DECIMAL32_TYPE_SIZE 32
b8698a0f 529#endif
9a8ce21f 530
b8698a0f 531#ifndef DECIMAL64_TYPE_SIZE
9a8ce21f 532#define DECIMAL64_TYPE_SIZE 64
b8698a0f 533#endif
9a8ce21f
JG
534
535#ifndef DECIMAL128_TYPE_SIZE
536#define DECIMAL128_TYPE_SIZE 128
537#endif
538
325217ed
CF
539#ifndef SHORT_FRACT_TYPE_SIZE
540#define SHORT_FRACT_TYPE_SIZE BITS_PER_UNIT
541#endif
542
543#ifndef FRACT_TYPE_SIZE
544#define FRACT_TYPE_SIZE (BITS_PER_UNIT * 2)
545#endif
546
547#ifndef LONG_FRACT_TYPE_SIZE
548#define LONG_FRACT_TYPE_SIZE (BITS_PER_UNIT * 4)
549#endif
550
551#ifndef LONG_LONG_FRACT_TYPE_SIZE
552#define LONG_LONG_FRACT_TYPE_SIZE (BITS_PER_UNIT * 8)
553#endif
554
555#ifndef SHORT_ACCUM_TYPE_SIZE
556#define SHORT_ACCUM_TYPE_SIZE (SHORT_FRACT_TYPE_SIZE * 2)
557#endif
558
559#ifndef ACCUM_TYPE_SIZE
560#define ACCUM_TYPE_SIZE (FRACT_TYPE_SIZE * 2)
561#endif
562
563#ifndef LONG_ACCUM_TYPE_SIZE
564#define LONG_ACCUM_TYPE_SIZE (LONG_FRACT_TYPE_SIZE * 2)
565#endif
566
567#ifndef LONG_LONG_ACCUM_TYPE_SIZE
568#define LONG_LONG_ACCUM_TYPE_SIZE (LONG_LONG_FRACT_TYPE_SIZE * 2)
569#endif
570
1ffc7157
FXC
571/* We let tm.h override the types used here, to handle trivial differences
572 such as the choice of unsigned int or long unsigned int for size_t.
573 When machines start needing nontrivial differences in the size type,
574 it would be best to do something here to figure out automatically
575 from other information what type to use. */
576
577#ifndef SIZE_TYPE
578#define SIZE_TYPE "long unsigned int"
579#endif
580
18dae016
TG
581#ifndef SIZETYPE
582#define SIZETYPE SIZE_TYPE
583#endif
584
1ffc7157
FXC
585#ifndef PID_TYPE
586#define PID_TYPE "int"
587#endif
588
589/* If GCC knows the exact uint_least16_t and uint_least32_t types from
590 <stdint.h>, use them for char16_t and char32_t. Otherwise, use
591 these guesses; getting the wrong type of a given width will not
592 affect C++ name mangling because in C++ these are distinct types
593 not typedefs. */
594
595#ifdef UINT_LEAST16_TYPE
596#define CHAR16_TYPE UINT_LEAST16_TYPE
597#else
598#define CHAR16_TYPE "short unsigned int"
599#endif
600
601#ifdef UINT_LEAST32_TYPE
602#define CHAR32_TYPE UINT_LEAST32_TYPE
603#else
604#define CHAR32_TYPE "unsigned int"
605#endif
606
607#ifndef WCHAR_TYPE
608#define WCHAR_TYPE "int"
609#endif
610
611/* WCHAR_TYPE gets overridden by -fshort-wchar. */
612#define MODIFIED_WCHAR_TYPE \
613 (flag_short_wchar ? "short unsigned int" : WCHAR_TYPE)
614
615#ifndef PTRDIFF_TYPE
616#define PTRDIFF_TYPE "long int"
617#endif
618
619#ifndef WINT_TYPE
620#define WINT_TYPE "unsigned int"
621#endif
622
623#ifndef INTMAX_TYPE
624#define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
625 ? "int" \
626 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
627 ? "long int" \
628 : "long long int"))
629#endif
630
631#ifndef UINTMAX_TYPE
632#define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
633 ? "unsigned int" \
634 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
635 ? "long unsigned int" \
636 : "long long unsigned int"))
637#endif
638
639
640/* There are no default definitions of these <stdint.h> types. */
641
642#ifndef SIG_ATOMIC_TYPE
643#define SIG_ATOMIC_TYPE ((const char *) NULL)
644#endif
645
646#ifndef INT8_TYPE
647#define INT8_TYPE ((const char *) NULL)
648#endif
649
650#ifndef INT16_TYPE
651#define INT16_TYPE ((const char *) NULL)
652#endif
653
654#ifndef INT32_TYPE
655#define INT32_TYPE ((const char *) NULL)
656#endif
657
658#ifndef INT64_TYPE
659#define INT64_TYPE ((const char *) NULL)
660#endif
661
662#ifndef UINT8_TYPE
663#define UINT8_TYPE ((const char *) NULL)
664#endif
665
666#ifndef UINT16_TYPE
667#define UINT16_TYPE ((const char *) NULL)
668#endif
669
670#ifndef UINT32_TYPE
671#define UINT32_TYPE ((const char *) NULL)
672#endif
673
674#ifndef UINT64_TYPE
675#define UINT64_TYPE ((const char *) NULL)
676#endif
677
678#ifndef INT_LEAST8_TYPE
679#define INT_LEAST8_TYPE ((const char *) NULL)
680#endif
681
682#ifndef INT_LEAST16_TYPE
683#define INT_LEAST16_TYPE ((const char *) NULL)
684#endif
685
686#ifndef INT_LEAST32_TYPE
687#define INT_LEAST32_TYPE ((const char *) NULL)
688#endif
689
690#ifndef INT_LEAST64_TYPE
691#define INT_LEAST64_TYPE ((const char *) NULL)
692#endif
693
694#ifndef UINT_LEAST8_TYPE
695#define UINT_LEAST8_TYPE ((const char *) NULL)
696#endif
697
698#ifndef UINT_LEAST16_TYPE
699#define UINT_LEAST16_TYPE ((const char *) NULL)
700#endif
701
702#ifndef UINT_LEAST32_TYPE
703#define UINT_LEAST32_TYPE ((const char *) NULL)
704#endif
705
706#ifndef UINT_LEAST64_TYPE
707#define UINT_LEAST64_TYPE ((const char *) NULL)
708#endif
709
710#ifndef INT_FAST8_TYPE
711#define INT_FAST8_TYPE ((const char *) NULL)
712#endif
713
714#ifndef INT_FAST16_TYPE
715#define INT_FAST16_TYPE ((const char *) NULL)
716#endif
717
718#ifndef INT_FAST32_TYPE
719#define INT_FAST32_TYPE ((const char *) NULL)
720#endif
721
722#ifndef INT_FAST64_TYPE
723#define INT_FAST64_TYPE ((const char *) NULL)
724#endif
725
726#ifndef UINT_FAST8_TYPE
727#define UINT_FAST8_TYPE ((const char *) NULL)
728#endif
729
730#ifndef UINT_FAST16_TYPE
731#define UINT_FAST16_TYPE ((const char *) NULL)
732#endif
733
734#ifndef UINT_FAST32_TYPE
735#define UINT_FAST32_TYPE ((const char *) NULL)
736#endif
737
738#ifndef UINT_FAST64_TYPE
739#define UINT_FAST64_TYPE ((const char *) NULL)
740#endif
741
742#ifndef INTPTR_TYPE
743#define INTPTR_TYPE ((const char *) NULL)
744#endif
745
746#ifndef UINTPTR_TYPE
747#define UINTPTR_TYPE ((const char *) NULL)
748#endif
749
2465bf76
KG
750/* Width in bits of a pointer. Mind the value of the macro `Pmode'. */
751#ifndef POINTER_SIZE
752#define POINTER_SIZE BITS_PER_WORD
753#endif
754
848e0190
JH
755#ifndef PIC_OFFSET_TABLE_REGNUM
756#define PIC_OFFSET_TABLE_REGNUM INVALID_REGNUM
757#endif
758
f8fe0a4a
JM
759#ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
760#define PIC_OFFSET_TABLE_REG_CALL_CLOBBERED 0
761#endif
762
b2ca3702
MM
763#ifndef TARGET_DLLIMPORT_DECL_ATTRIBUTES
764#define TARGET_DLLIMPORT_DECL_ATTRIBUTES 0
765#endif
766
63c5b495 767#ifndef TARGET_DECLSPEC
b2ca3702 768#if TARGET_DLLIMPORT_DECL_ATTRIBUTES
63c5b495
MM
769/* If the target supports the "dllimport" attribute, users are
770 probably used to the "__declspec" syntax. */
771#define TARGET_DECLSPEC 1
772#else
773#define TARGET_DECLSPEC 0
774#endif
775#endif
776
a9374841
MM
777/* By default, the preprocessor should be invoked the same way in C++
778 as in C. */
779#ifndef CPLUSPLUS_CPP_SPEC
780#ifdef CPP_SPEC
781#define CPLUSPLUS_CPP_SPEC CPP_SPEC
782#endif
783#endif
784
bf501a65
RH
785#ifndef ACCUMULATE_OUTGOING_ARGS
786#define ACCUMULATE_OUTGOING_ARGS 0
787#endif
788
fea3ca91
IS
789/* By default, use the GNU runtime for Objective C. */
790#ifndef NEXT_OBJC_RUNTIME
791#define NEXT_OBJC_RUNTIME 0
792#endif
793
bf501a65
RH
794/* Supply a default definition for PUSH_ARGS. */
795#ifndef PUSH_ARGS
796#ifdef PUSH_ROUNDING
797#define PUSH_ARGS !ACCUMULATE_OUTGOING_ARGS
798#else
799#define PUSH_ARGS 0
800#endif
801#endif
802
9d6bef95
JM
803/* Decide whether a function's arguments should be processed
804 from first to last or from last to first.
805
806 They should if the stack and args grow in opposite directions, but
807 only if we have push insns. */
808
809#ifdef PUSH_ROUNDING
810
811#ifndef PUSH_ARGS_REVERSED
812#if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
813#define PUSH_ARGS_REVERSED PUSH_ARGS
814#endif
815#endif
816
817#endif
818
819#ifndef PUSH_ARGS_REVERSED
820#define PUSH_ARGS_REVERSED 0
821#endif
822
95331614
OH
823/* Default value for the alignment (in bits) a C conformant malloc has to
824 provide. This default is intended to be safe and always correct. */
825#ifndef MALLOC_ABI_ALIGNMENT
826#define MALLOC_ABI_ALIGNMENT BITS_PER_WORD
827#endif
828
31cdd499
ZW
829/* If PREFERRED_STACK_BOUNDARY is not defined, set it to STACK_BOUNDARY.
830 STACK_BOUNDARY is required. */
831#ifndef PREFERRED_STACK_BOUNDARY
832#define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY
833#endif
834
2e3f842f
L
835/* Set INCOMING_STACK_BOUNDARY to PREFERRED_STACK_BOUNDARY if it is not
836 defined. */
837#ifndef INCOMING_STACK_BOUNDARY
838#define INCOMING_STACK_BOUNDARY PREFERRED_STACK_BOUNDARY
839#endif
840
467cecf3
JB
841#ifndef TARGET_DEFAULT_PACK_STRUCT
842#define TARGET_DEFAULT_PACK_STRUCT 0
843#endif
844
a6f5e048
RH
845/* By default, the vtable entries are void pointers, the so the alignment
846 is the same as pointer alignment. The value of this macro specifies
847 the alignment of the vtable entry in bits. It should be defined only
4b7e68e7 848 when special alignment is necessary. */
a6f5e048
RH
849#ifndef TARGET_VTABLE_ENTRY_ALIGN
850#define TARGET_VTABLE_ENTRY_ALIGN POINTER_SIZE
851#endif
852
853/* There are a few non-descriptor entries in the vtable at offsets below
854 zero. If these entries must be padded (say, to preserve the alignment
855 specified by TARGET_VTABLE_ENTRY_ALIGN), set this to the number of
856 words in each data entry. */
857#ifndef TARGET_VTABLE_DATA_ENTRY_DISTANCE
858#define TARGET_VTABLE_DATA_ENTRY_DISTANCE 1
859#endif
860
4a77e08c
DS
861/* Decide whether it is safe to use a local alias for a virtual function
862 when constructing thunks. */
863#ifndef TARGET_USE_LOCAL_THUNK_ALIAS_P
864#ifdef ASM_OUTPUT_DEF
865#define TARGET_USE_LOCAL_THUNK_ALIAS_P(DECL) 1
866#else
867#define TARGET_USE_LOCAL_THUNK_ALIAS_P(DECL) 0
868#endif
869#endif
870
2a1ee410
RH
871/* Select a format to encode pointers in exception handling data. We
872 prefer those that result in fewer dynamic relocations. Assume no
873 special support here and encode direct references. */
874#ifndef ASM_PREFERRED_EH_DATA_FORMAT
875#define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL) DW_EH_PE_absptr
876#endif
877
f3c55c97
AO
878/* By default, the C++ compiler will use the lowest bit of the pointer
879 to function to indicate a pointer-to-member-function points to a
880 virtual member function. However, if FUNCTION_BOUNDARY indicates
881 function addresses aren't always even, the lowest bit of the delta
882 field will be used. */
883#ifndef TARGET_PTRMEMFUNC_VBIT_LOCATION
884#define TARGET_PTRMEMFUNC_VBIT_LOCATION \
885 (FUNCTION_BOUNDARY >= 2 * BITS_PER_UNIT \
886 ? ptrmemfunc_vbit_in_pfn : ptrmemfunc_vbit_in_delta)
887#endif
888
5f0e9ea2
GK
889#ifndef DEFAULT_GDB_EXTENSIONS
890#define DEFAULT_GDB_EXTENSIONS 1
891#endif
892
893/* If more than one debugging type is supported, you must define
f8ca7e49 894 PREFERRED_DEBUGGING_TYPE to choose the default. */
5f0e9ea2 895
f8ca7e49
ZW
896#if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) \
897 + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO) \
898 + defined (VMS_DEBUGGING_INFO))
5f0e9ea2 899#ifndef PREFERRED_DEBUGGING_TYPE
f8ca7e49 900#error You must define PREFERRED_DEBUGGING_TYPE
5f0e9ea2 901#endif /* no PREFERRED_DEBUGGING_TYPE */
f8ca7e49
ZW
902
903/* If only one debugging format is supported, define PREFERRED_DEBUGGING_TYPE
904 here so other code needn't care. */
905#elif defined DBX_DEBUGGING_INFO
5f0e9ea2 906#define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
f8ca7e49
ZW
907
908#elif defined SDB_DEBUGGING_INFO
5f0e9ea2 909#define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
f8ca7e49
ZW
910
911#elif defined DWARF2_DEBUGGING_INFO
5f0e9ea2 912#define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
f8ca7e49
ZW
913
914#elif defined VMS_DEBUGGING_INFO
7a0c8d71 915#define PREFERRED_DEBUGGING_TYPE VMS_AND_DWARF2_DEBUG
f8ca7e49
ZW
916
917#elif defined XCOFF_DEBUGGING_INFO
5f0e9ea2 918#define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
5f0e9ea2 919
f8ca7e49
ZW
920#else
921/* No debugging format is supported by this target. */
5f0e9ea2
GK
922#define PREFERRED_DEBUGGING_TYPE NO_DEBUG
923#endif
924
3fcaac1d
RS
925#ifndef LARGEST_EXPONENT_IS_NORMAL
926#define LARGEST_EXPONENT_IS_NORMAL(SIZE) 0
927#endif
928
929#ifndef ROUND_TOWARDS_ZERO
930#define ROUND_TOWARDS_ZERO 0
931#endif
932
c15c90bb
ZW
933#ifndef FLOAT_LIB_COMPARE_RETURNS_BOOL
934#define FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE, COMPARISON) false
935#endif
936
6cb38cd4 937/* True if the targets integer-comparison functions return { 0, 1, 2
b3f8d95d
MM
938 } to indicate { <, ==, > }. False if { -1, 0, 1 } is used
939 instead. The libgcc routines are biased. */
940#ifndef TARGET_LIB_INT_CMP_BIASED
941#define TARGET_LIB_INT_CMP_BIASED (true)
942#endif
943
2d295af5
ZW
944/* If FLOAT_WORDS_BIG_ENDIAN is not defined in the header files,
945 then the word-endianness is the same as for integers. */
efdc7e19
RH
946#ifndef FLOAT_WORDS_BIG_ENDIAN
947#define FLOAT_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN
948#endif
949
c0a6a1ef
BS
950#ifndef REG_WORDS_BIG_ENDIAN
951#define REG_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN
952#endif
953
8ce94e44
JM
954#ifdef TARGET_FLT_EVAL_METHOD
955#define TARGET_FLT_EVAL_METHOD_NON_DEFAULT 1
956#else
d57a4b98 957#define TARGET_FLT_EVAL_METHOD 0
8ce94e44 958#define TARGET_FLT_EVAL_METHOD_NON_DEFAULT 0
d57a4b98
RH
959#endif
960
9a8ce21f
JG
961#ifndef TARGET_DEC_EVAL_METHOD
962#define TARGET_DEC_EVAL_METHOD 2
963#endif
964
750054a2
CT
965#ifndef HAS_LONG_COND_BRANCH
966#define HAS_LONG_COND_BRANCH 0
967#endif
968
969#ifndef HAS_LONG_UNCOND_BRANCH
970#define HAS_LONG_UNCOND_BRANCH 0
971#endif
972
4bafaa6f 973/* Determine whether __cxa_atexit, rather than atexit, is used to
4b7e68e7 974 register C++ destructors for local statics and global objects. */
4bafaa6f
L
975#ifndef DEFAULT_USE_CXA_ATEXIT
976#define DEFAULT_USE_CXA_ATEXIT 0
977#endif
978
f38840db
ZW
979#if GCC_VERSION >= 3000 && defined IN_GCC
980/* These old constraint macros shouldn't appear anywhere in a
981 configuration using MD constraint definitions. */
97488870
R
982#endif
983
4bd5abca
SM
984/* Determin whether the target runtime library is Bionic */
985#ifndef TARGET_HAS_BIONIC
986#define TARGET_HAS_BIONIC 0
987#endif
988
7dba8395 989/* Indicate that CLZ and CTZ are undefined at zero. */
f676971a 990#ifndef CLZ_DEFINED_VALUE_AT_ZERO
7dba8395
RH
991#define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) 0
992#endif
f676971a 993#ifndef CTZ_DEFINED_VALUE_AT_ZERO
7dba8395
RH
994#define CTZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) 0
995#endif
996
06f31100
RS
997/* Provide a default value for STORE_FLAG_VALUE. */
998#ifndef STORE_FLAG_VALUE
999#define STORE_FLAG_VALUE 1
1000#endif
1001
436bcda1
GK
1002/* This macro is used to determine what the largest unit size that
1003 move_by_pieces can use is. */
1004
1005/* MOVE_MAX_PIECES is the number of bytes at a time which we can
1006 move efficiently, as opposed to MOVE_MAX which is the maximum
1007 number of bytes we can move with a single instruction. */
1008
1009#ifndef MOVE_MAX_PIECES
1010#define MOVE_MAX_PIECES MOVE_MAX
1011#endif
1012
bcbaaba1
RS
1013#ifndef MAX_MOVE_MAX
1014#define MAX_MOVE_MAX MOVE_MAX
1015#endif
1016
1017#ifndef MIN_UNITS_PER_WORD
1018#define MIN_UNITS_PER_WORD UNITS_PER_WORD
1019#endif
1020
d1465187
RS
1021#ifndef MAX_BITS_PER_WORD
1022#define MAX_BITS_PER_WORD BITS_PER_WORD
1023#endif
1024
a594a19c
GK
1025#ifndef STACK_POINTER_OFFSET
1026#define STACK_POINTER_OFFSET 0
1027#endif
1028
cca8fb0e
KH
1029#ifndef LOCAL_REGNO
1030#define LOCAL_REGNO(REGNO) 0
1031#endif
1032
ed15c598
KC
1033#ifndef HONOR_REG_ALLOC_ORDER
1034#define HONOR_REG_ALLOC_ORDER 0
1035#endif
1036
9d05bbce
KH
1037/* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
1038 the stack pointer does not matter. The value is tested only in
1039 functions that have frame pointers. */
1040#ifndef EXIT_IGNORE_STACK
1041#define EXIT_IGNORE_STACK 0
1042#endif
1043
0ede749d
KH
1044/* Assume that case vectors are not pc-relative. */
1045#ifndef CASE_VECTOR_PC_RELATIVE
1046#define CASE_VECTOR_PC_RELATIVE 0
1047#endif
1048
6de9cd9a
DN
1049/* Assume that trampolines need function alignment. */
1050#ifndef TRAMPOLINE_ALIGNMENT
1051#define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
1052#endif
1053
d220de0e
KH
1054/* Register mappings for target machines without register windows. */
1055#ifndef INCOMING_REGNO
1056#define INCOMING_REGNO(N) (N)
1057#endif
1058
1059#ifndef OUTGOING_REGNO
1060#define OUTGOING_REGNO(N) (N)
1061#endif
1062
bee07d3f
KH
1063#ifndef SHIFT_COUNT_TRUNCATED
1064#define SHIFT_COUNT_TRUNCATED 0
1065#endif
1066
2e4e72b1
ZW
1067#ifndef LEGITIMATE_PIC_OPERAND_P
1068#define LEGITIMATE_PIC_OPERAND_P(X) 1
1069#endif
1070
a4edaf83
AK
1071#ifndef TARGET_MEM_CONSTRAINT
1072#define TARGET_MEM_CONSTRAINT 'm'
1073#endif
1074
1f8551b2
KH
1075#ifndef REVERSIBLE_CC_MODE
1076#define REVERSIBLE_CC_MODE(MODE) 0
1077#endif
1078
07e15286
DE
1079/* Biggest alignment supported by the object file format of this machine. */
1080#ifndef MAX_OFILE_ALIGNMENT
1081#define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1082#endif
1083
f62c8a5c
JJ
1084#ifndef FRAME_GROWS_DOWNWARD
1085#define FRAME_GROWS_DOWNWARD 0
1086#endif
1087
30e6f306
RH
1088/* On most machines, the CFA coincides with the first incoming parm. */
1089#ifndef ARG_POINTER_CFA_OFFSET
d17c29c3
PB
1090#define ARG_POINTER_CFA_OFFSET(FNDECL) \
1091 (FIRST_PARM_OFFSET (FNDECL) + crtl->args.pretend_args_size)
30e6f306
RH
1092#endif
1093
35d177a2
AO
1094/* On most machines, we use the CFA as DW_AT_frame_base. */
1095#ifndef CFA_FRAME_BASE_OFFSET
1096#define CFA_FRAME_BASE_OFFSET(FNDECL) 0
1097#endif
1098
30e6f306
RH
1099/* The offset from the incoming value of %sp to the top of the stack frame
1100 for the current function. */
1101#ifndef INCOMING_FRAME_SP_OFFSET
1102#define INCOMING_FRAME_SP_OFFSET 0
1103#endif
1104
8521c414
JM
1105#ifndef HARD_REGNO_NREGS_HAS_PADDING
1106#define HARD_REGNO_NREGS_HAS_PADDING(REGNO, MODE) 0
1107#define HARD_REGNO_NREGS_WITH_PADDING(REGNO, MODE) -1
1108#endif
1109
ac294f0b 1110#ifndef OUTGOING_REG_PARM_STACK_SPACE
81464b2c 1111#define OUTGOING_REG_PARM_STACK_SPACE(FNTYPE) 0
ac294f0b
KT
1112#endif
1113
2e3f842f
L
1114/* MAX_STACK_ALIGNMENT is the maximum stack alignment guaranteed by
1115 the backend. MAX_SUPPORTED_STACK_ALIGNMENT is the maximum best
1116 effort stack alignment supported by the backend. If the backend
1117 supports stack alignment, MAX_SUPPORTED_STACK_ALIGNMENT and
1118 MAX_STACK_ALIGNMENT are the same. Otherwise, the incoming stack
1119 boundary will limit the maximum guaranteed stack alignment. */
1120#ifdef MAX_STACK_ALIGNMENT
1121#define MAX_SUPPORTED_STACK_ALIGNMENT MAX_STACK_ALIGNMENT
1122#else
1123#define MAX_STACK_ALIGNMENT STACK_BOUNDARY
1124#define MAX_SUPPORTED_STACK_ALIGNMENT PREFERRED_STACK_BOUNDARY
1125#endif
1126
1127#define SUPPORTS_STACK_ALIGNMENT (MAX_STACK_ALIGNMENT > STACK_BOUNDARY)
1128
76fe54f0
L
1129#ifndef LOCAL_ALIGNMENT
1130#define LOCAL_ALIGNMENT(TYPE, ALIGNMENT) ALIGNMENT
1131#endif
1132
1133#ifndef STACK_SLOT_ALIGNMENT
1134#define STACK_SLOT_ALIGNMENT(TYPE,MODE,ALIGN) \
1135 ((TYPE) ? LOCAL_ALIGNMENT ((TYPE), (ALIGN)) : (ALIGN))
1136#endif
1137
9bfaf89d
JJ
1138#ifndef LOCAL_DECL_ALIGNMENT
1139#define LOCAL_DECL_ALIGNMENT(DECL) \
1140 LOCAL_ALIGNMENT (TREE_TYPE (DECL), DECL_ALIGN (DECL))
1141#endif
1142
ae58e548
JJ
1143#ifndef MINIMUM_ALIGNMENT
1144#define MINIMUM_ALIGNMENT(EXP,MODE,ALIGN) (ALIGN)
1145#endif
1146
6e4f1168
L
1147/* Alignment value for attribute ((aligned)). */
1148#ifndef ATTRIBUTE_ALIGNED_VALUE
1149#define ATTRIBUTE_ALIGNED_VALUE BIGGEST_ALIGNMENT
1150#endif
1151
08e931f3
RS
1152#ifndef SLOW_UNALIGNED_ACCESS
1153#define SLOW_UNALIGNED_ACCESS(MODE, ALIGN) STRICT_ALIGNMENT
1154#endif
1155
4003023f
NC
1156/* For most ports anything that evaluates to a constant symbolic
1157 or integer value is acceptable as a constant address. */
1158#ifndef CONSTANT_ADDRESS_P
1159#define CONSTANT_ADDRESS_P(X) (CONSTANT_P (X) && GET_CODE (X) != CONST_DOUBLE)
1160#endif
1161
1c314335
L
1162#ifndef MAX_FIXED_MODE_SIZE
1163#define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (DImode)
1164#endif
1165
5498f011
JM
1166/* Nonzero if structures and unions should be returned in memory.
1167
1168 This should only be defined if compatibility with another compiler or
1169 with an ABI is needed, because it results in slower code. */
1170
1171#ifndef DEFAULT_PCC_STRUCT_RETURN
1172#define DEFAULT_PCC_STRUCT_RETURN 1
1173#endif
77ec4307
SB
1174
1175#ifdef GCC_INSN_FLAGS_H
1176/* Dependent default target macro definitions
1177
1178 This section of defaults.h defines target macros that depend on generated
1179 headers. This is a bit awkward: We want to put all default definitions
1180 for target macros in defaults.h, but some of the defaults depend on the
1181 HAVE_* flags defines of insn-flags.h. But insn-flags.h is not always
1182 included by files that do include defaults.h.
1183
1184 Fortunately, the default macro definitions that depend on the HAVE_*
1185 macros are also the ones that will only be used inside GCC itself, i.e.
1186 not in the gen* programs or in target objects like libgcc.
1187
1188 Obviously, it would be best to keep this section of defaults.h as small
1189 as possible, by converting the macros defined below to target hooks or
1190 functions.
1191*/
1192
77ec4307
SB
1193/* The default branch cost is 1. */
1194#ifndef BRANCH_COST
1195#define BRANCH_COST(speed_p, predictable_p) 1
1196#endif
1197
1198/* If a memory-to-memory move would take MOVE_RATIO or more simple
1199 move-instruction sequences, we will do a movmem or libcall instead. */
1200
1201#ifndef MOVE_RATIO
1202#if defined (HAVE_movmemqi) || defined (HAVE_movmemhi) || defined (HAVE_movmemsi) || defined (HAVE_movmemdi) || defined (HAVE_movmemti)
1203#define MOVE_RATIO(speed) 2
1204#else
1205/* If we are optimizing for space (-Os), cut down the default move ratio. */
1206#define MOVE_RATIO(speed) ((speed) ? 15 : 3)
1207#endif
1208#endif
1209
1210/* If a clear memory operation would take CLEAR_RATIO or more simple
1211 move-instruction sequences, we will do a setmem or libcall instead. */
1212
1213#ifndef CLEAR_RATIO
1214#if defined (HAVE_setmemqi) || defined (HAVE_setmemhi) || defined (HAVE_setmemsi) || defined (HAVE_setmemdi) || defined (HAVE_setmemti)
1215#define CLEAR_RATIO(speed) 2
1216#else
1217/* If we are optimizing for space, cut down the default clear ratio. */
1218#define CLEAR_RATIO(speed) ((speed) ? 15 :3)
1219#endif
1220#endif
1221
1222/* If a memory set (to value other than zero) operation would take
1223 SET_RATIO or more simple move-instruction sequences, we will do a movmem
1224 or libcall instead. */
1225#ifndef SET_RATIO
c3284718 1226#define SET_RATIO(speed) MOVE_RATIO (speed)
77ec4307
SB
1227#endif
1228
1229/* Supply a default definition for FUNCTION_ARG_PADDING:
1230 usually pad upward, but pad short args downward on
1231 big-endian machines. */
1232
1233#define DEFAULT_FUNCTION_ARG_PADDING(MODE, TYPE) \
1234 (! BYTES_BIG_ENDIAN \
1235 ? upward \
1236 : (((MODE) == BLKmode \
1237 ? ((TYPE) && TREE_CODE (TYPE_SIZE (TYPE)) == INTEGER_CST \
1238 && int_size_in_bytes (TYPE) < (PARM_BOUNDARY / BITS_PER_UNIT)) \
1239 : GET_MODE_BITSIZE (MODE) < PARM_BOUNDARY) \
1240 ? downward : upward))
1241
1242#ifndef FUNCTION_ARG_PADDING
1243#define FUNCTION_ARG_PADDING(MODE, TYPE) \
1244 DEFAULT_FUNCTION_ARG_PADDING ((MODE), (TYPE))
1245#endif
1246
77ec4307
SB
1247/* Supply a default definition of STACK_SAVEAREA_MODE for emit_stack_save.
1248 Normally move_insn, so Pmode stack pointer. */
1249
1250#ifndef STACK_SAVEAREA_MODE
1251#define STACK_SAVEAREA_MODE(LEVEL) Pmode
1252#endif
1253
1254/* Supply a default definition of STACK_SIZE_MODE for
1255 allocate_dynamic_stack_space. Normally PLUS/MINUS, so word_mode. */
1256
1257#ifndef STACK_SIZE_MODE
1258#define STACK_SIZE_MODE word_mode
1259#endif
1260
1261/* Provide default values for the macros controlling stack checking. */
1262
1263/* The default is neither full builtin stack checking... */
1264#ifndef STACK_CHECK_BUILTIN
1265#define STACK_CHECK_BUILTIN 0
1266#endif
1267
1268/* ...nor static builtin stack checking. */
1269#ifndef STACK_CHECK_STATIC_BUILTIN
1270#define STACK_CHECK_STATIC_BUILTIN 0
1271#endif
1272
1273/* The default interval is one page (4096 bytes). */
1274#ifndef STACK_CHECK_PROBE_INTERVAL_EXP
1275#define STACK_CHECK_PROBE_INTERVAL_EXP 12
1276#endif
1277
1278/* The default is not to move the stack pointer. */
1279#ifndef STACK_CHECK_MOVING_SP
1280#define STACK_CHECK_MOVING_SP 0
1281#endif
1282
1283/* This is a kludge to try to capture the discrepancy between the old
1284 mechanism (generic stack checking) and the new mechanism (static
1285 builtin stack checking). STACK_CHECK_PROTECT needs to be bumped
1286 for the latter because part of the protection area is effectively
1287 included in STACK_CHECK_MAX_FRAME_SIZE for the former. */
1288#ifdef STACK_CHECK_PROTECT
1289#define STACK_OLD_CHECK_PROTECT STACK_CHECK_PROTECT
1290#else
677f3fa8
JM
1291#define STACK_OLD_CHECK_PROTECT \
1292 (targetm_common.except_unwind_info (&global_options) == UI_SJLJ \
1293 ? 75 * UNITS_PER_WORD \
d5fabb58 1294 : 8 * 1024)
77ec4307
SB
1295#endif
1296
1297/* Minimum amount of stack required to recover from an anticipated stack
1298 overflow detection. The default value conveys an estimate of the amount
1299 of stack required to propagate an exception. */
1300#ifndef STACK_CHECK_PROTECT
677f3fa8
JM
1301#define STACK_CHECK_PROTECT \
1302 (targetm_common.except_unwind_info (&global_options) == UI_SJLJ \
1303 ? 75 * UNITS_PER_WORD \
d5fabb58 1304 : 12 * 1024)
77ec4307
SB
1305#endif
1306
1307/* Make the maximum frame size be the largest we can and still only need
1308 one probe per function. */
1309#ifndef STACK_CHECK_MAX_FRAME_SIZE
1310#define STACK_CHECK_MAX_FRAME_SIZE \
1311 ((1 << STACK_CHECK_PROBE_INTERVAL_EXP) - UNITS_PER_WORD)
1312#endif
1313
1314/* This is arbitrary, but should be large enough everywhere. */
1315#ifndef STACK_CHECK_FIXED_FRAME_SIZE
1316#define STACK_CHECK_FIXED_FRAME_SIZE (4 * UNITS_PER_WORD)
1317#endif
1318
1319/* Provide a reasonable default for the maximum size of an object to
1320 allocate in the fixed frame. We may need to be able to make this
1321 controllable by the user at some point. */
1322#ifndef STACK_CHECK_MAX_VAR_SIZE
1323#define STACK_CHECK_MAX_VAR_SIZE (STACK_CHECK_MAX_FRAME_SIZE / 100)
1324#endif
1325
7894073c
SE
1326/* By default, the C++ compiler will use function addresses in the
1327 vtable entries. Setting this nonzero tells the compiler to use
1328 function descriptors instead. The value of this macro says how
1329 many words wide the descriptor is (normally 2). It is assumed
1330 that the address of a function descriptor may be treated as a
1331 pointer to a function. */
1332#ifndef TARGET_VTABLE_USES_DESCRIPTORS
1333#define TARGET_VTABLE_USES_DESCRIPTORS 0
1334#endif
1335
3bd36029
RS
1336#ifndef SWITCHABLE_TARGET
1337#define SWITCHABLE_TARGET 0
1338#endif
1339
807e902e
KZ
1340/* If the target supports integers that are wider than two
1341 HOST_WIDE_INTs on the host compiler, then the target should define
1342 TARGET_SUPPORTS_WIDE_INT and make the appropriate fixups.
1343 Otherwise the compiler really is not robust. */
1344#ifndef TARGET_SUPPORTS_WIDE_INT
1345#define TARGET_SUPPORTS_WIDE_INT 0
1346#endif
1347
77ec4307
SB
1348#endif /* GCC_INSN_FLAGS_H */
1349
88657302 1350#endif /* ! GCC_DEFAULTS_H */