1 /* Definitions of various defaults for tm.h macros.
2 Copyright (C) 1992, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
5 Contributed by Ron Guilmette (rfg@monkeys.com)
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 3, or (at your option) any later
14 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15 WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 Under Section 7 of GPL version 3, you are granted additional
20 permissions described in the GCC Runtime Library Exception, version
21 3.1, as published by the Free Software Foundation.
23 You should have received a copy of the GNU General Public License and
24 a copy of the GCC Runtime Library Exception along with this program;
25 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
26 <http://www.gnu.org/licenses/>. */
28 #ifndef GCC_DEFAULTS_H
29 #define GCC_DEFAULTS_H
31 /* How to start an assembler comment. */
32 #ifndef ASM_COMMENT_START
33 #define ASM_COMMENT_START ";#"
36 /* Store in OUTPUT a string (made with alloca) containing an
37 assembler-name for a local static variable or function named NAME.
38 LABELNO is an integer which is different for each call. */
41 # ifndef NO_DOT_IN_LABEL
42 # define ASM_PN_FORMAT "%s.%lu"
44 # ifndef NO_DOLLAR_IN_LABEL
45 # define ASM_PN_FORMAT "%s$%lu"
47 # define ASM_PN_FORMAT "__%s_%lu"
50 #endif /* ! ASM_PN_FORMAT */
52 #ifndef ASM_FORMAT_PRIVATE_NAME
53 # define ASM_FORMAT_PRIVATE_NAME(OUTPUT, NAME, LABELNO) \
54 do { const char *const name_ = (NAME); \
55 char *const output_ = (OUTPUT) = \
56 (char *) alloca (strlen (name_) + 32); \
57 sprintf (output_, ASM_PN_FORMAT, name_, (unsigned long)(LABELNO)); \
61 /* Choose a reasonable default for ASM_OUTPUT_ASCII. */
63 #ifndef ASM_OUTPUT_ASCII
64 #define ASM_OUTPUT_ASCII(MYFILE, MYSTRING, MYLENGTH) \
66 FILE *_hide_asm_out_file = (MYFILE); \
67 const unsigned char *_hide_p = (const unsigned char *) (MYSTRING); \
68 int _hide_thissize = (MYLENGTH); \
70 FILE *asm_out_file = _hide_asm_out_file; \
71 const unsigned char *p = _hide_p; \
72 int thissize = _hide_thissize; \
74 fprintf (asm_out_file, "\t.ascii \""); \
76 for (i = 0; i < thissize; i++) \
79 if (c == '\"' || c == '\\') \
80 putc ('\\', asm_out_file); \
82 putc (c, asm_out_file); \
85 fprintf (asm_out_file, "\\%o", c); \
86 /* After an octal-escape, if a digit follows, \
87 terminate one string constant and start another. \
88 The VAX assembler fails to stop reading the escape \
89 after three digits, so this is the only way we \
90 can get it to parse the data properly. */ \
91 if (i < thissize - 1 && ISDIGIT(p[i + 1])) \
92 fprintf (asm_out_file, "\"\n\t.ascii \""); \
95 fprintf (asm_out_file, "\"\n"); \
101 /* This is how we tell the assembler to equate two values. */
103 #ifndef ASM_OUTPUT_DEF
104 #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
105 do { fprintf ((FILE), "%s", SET_ASM_OP); \
106 assemble_name (FILE, LABEL1); \
107 fprintf (FILE, ","); \
108 assemble_name (FILE, LABEL2); \
109 fprintf (FILE, "\n"); \
114 #ifndef IFUNC_ASM_TYPE
115 #define IFUNC_ASM_TYPE "gnu_indirect_function"
118 #ifndef TLS_COMMON_ASM_OP
119 #define TLS_COMMON_ASM_OP ".tls_common"
122 #if defined (HAVE_AS_TLS) && !defined (ASM_OUTPUT_TLS_COMMON)
123 #define ASM_OUTPUT_TLS_COMMON(FILE, DECL, NAME, SIZE) \
126 fprintf ((FILE), "\t%s\t", TLS_COMMON_ASM_OP); \
127 assemble_name ((FILE), (NAME)); \
128 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", \
129 (SIZE), DECL_ALIGN (DECL) / BITS_PER_UNIT); \
134 /* Decide whether to defer emitting the assembler output for an equate
135 of two values. The default is to not defer output. */
136 #ifndef TARGET_DEFERRED_OUTPUT_DEFS
137 #define TARGET_DEFERRED_OUTPUT_DEFS(DECL,TARGET) false
140 /* This is how to output the definition of a user-level label named
141 NAME, such as the label on variable NAME. */
143 #ifndef ASM_OUTPUT_LABEL
144 #define ASM_OUTPUT_LABEL(FILE,NAME) \
146 assemble_name ((FILE), (NAME)); \
147 fputs (":\n", (FILE)); \
151 /* This is how to output the definition of a user-level label named
152 NAME, such as the label on a function. */
154 #ifndef ASM_OUTPUT_FUNCTION_LABEL
155 #define ASM_OUTPUT_FUNCTION_LABEL(FILE, NAME, DECL) \
156 ASM_OUTPUT_LABEL ((FILE), (NAME))
159 /* Output the definition of a compiler-generated label named NAME. */
160 #ifndef ASM_OUTPUT_INTERNAL_LABEL
161 #define ASM_OUTPUT_INTERNAL_LABEL(FILE,NAME) \
163 assemble_name_raw ((FILE), (NAME)); \
164 fputs (":\n", (FILE)); \
168 /* This is how to output a reference to a user-level label named NAME. */
170 #ifndef ASM_OUTPUT_LABELREF
171 #define ASM_OUTPUT_LABELREF(FILE,NAME) \
173 fputs (user_label_prefix, (FILE)); \
174 fputs ((NAME), (FILE)); \
178 /* Allow target to print debug info labels specially. This is useful for
179 VLIW targets, since debug info labels should go into the middle of
180 instruction bundles instead of breaking them. */
182 #ifndef ASM_OUTPUT_DEBUG_LABEL
183 #define ASM_OUTPUT_DEBUG_LABEL(FILE, PREFIX, NUM) \
184 (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM)
187 /* This is how we tell the assembler that a symbol is weak. */
188 #ifndef ASM_OUTPUT_WEAK_ALIAS
189 #if defined (ASM_WEAKEN_LABEL) && defined (ASM_OUTPUT_DEF)
190 #define ASM_OUTPUT_WEAK_ALIAS(STREAM, NAME, VALUE) \
193 ASM_WEAKEN_LABEL (STREAM, NAME); \
195 ASM_OUTPUT_DEF (STREAM, NAME, VALUE); \
201 /* This is how we tell the assembler that a symbol is a weak alias to
202 another symbol that doesn't require the other symbol to be defined.
203 Uses of the former will turn into weak uses of the latter, i.e.,
204 uses that, in case the latter is undefined, will not cause errors,
205 and will add it to the symbol table as weak undefined. However, if
206 the latter is referenced directly, a strong reference prevails. */
207 #ifndef ASM_OUTPUT_WEAKREF
208 #if defined HAVE_GAS_WEAKREF
209 #define ASM_OUTPUT_WEAKREF(FILE, DECL, NAME, VALUE) \
212 fprintf ((FILE), "\t.weakref\t"); \
213 assemble_name ((FILE), (NAME)); \
214 fprintf ((FILE), ","); \
215 assemble_name ((FILE), (VALUE)); \
216 fprintf ((FILE), "\n"); \
222 /* How to emit a .type directive. */
223 #ifndef ASM_OUTPUT_TYPE_DIRECTIVE
224 #if defined TYPE_ASM_OP && defined TYPE_OPERAND_FMT
225 #define ASM_OUTPUT_TYPE_DIRECTIVE(STREAM, NAME, TYPE) \
228 fputs (TYPE_ASM_OP, STREAM); \
229 assemble_name (STREAM, NAME); \
230 fputs (", ", STREAM); \
231 fprintf (STREAM, TYPE_OPERAND_FMT, TYPE); \
232 putc ('\n', STREAM); \
238 /* How to emit a .size directive. */
239 #ifndef ASM_OUTPUT_SIZE_DIRECTIVE
241 #define ASM_OUTPUT_SIZE_DIRECTIVE(STREAM, NAME, SIZE) \
244 HOST_WIDE_INT size_ = (SIZE); \
245 fputs (SIZE_ASM_OP, STREAM); \
246 assemble_name (STREAM, NAME); \
247 fprintf (STREAM, ", " HOST_WIDE_INT_PRINT_DEC "\n", size_); \
251 #define ASM_OUTPUT_MEASURED_SIZE(STREAM, NAME) \
254 fputs (SIZE_ASM_OP, STREAM); \
255 assemble_name (STREAM, NAME); \
256 fputs (", .-", STREAM); \
257 assemble_name (STREAM, NAME); \
258 putc ('\n', STREAM); \
265 /* This determines whether or not we support weak symbols. SUPPORTS_WEAK
266 must be a preprocessor constant. */
267 #ifndef SUPPORTS_WEAK
268 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
269 #define SUPPORTS_WEAK 1
271 #define SUPPORTS_WEAK 0
275 /* This determines whether or not we support weak symbols during target
276 code generation. TARGET_SUPPORTS_WEAK can be any valid C expression. */
277 #ifndef TARGET_SUPPORTS_WEAK
278 #define TARGET_SUPPORTS_WEAK (SUPPORTS_WEAK)
281 /* This determines whether or not we support the discriminator
282 attribute in the .loc directive. */
283 #ifndef SUPPORTS_DISCRIMINATOR
284 #ifdef HAVE_GAS_DISCRIMINATOR
285 #define SUPPORTS_DISCRIMINATOR 1
287 #define SUPPORTS_DISCRIMINATOR 0
291 /* This determines whether or not we support link-once semantics. */
292 #ifndef SUPPORTS_ONE_ONLY
293 #ifdef MAKE_DECL_ONE_ONLY
294 #define SUPPORTS_ONE_ONLY 1
296 #define SUPPORTS_ONE_ONLY 0
300 /* This determines whether weak symbols must be left out of a static
301 archive's table of contents. Defining this macro to be nonzero has
302 the consequence that certain symbols will not be made weak that
303 otherwise would be. The C++ ABI requires this macro to be zero;
304 see the documentation. */
305 #ifndef TARGET_WEAK_NOT_IN_ARCHIVE_TOC
306 #define TARGET_WEAK_NOT_IN_ARCHIVE_TOC 0
309 /* This determines whether or not we need linkonce unwind information. */
310 #ifndef TARGET_USES_WEAK_UNWIND_INFO
311 #define TARGET_USES_WEAK_UNWIND_INFO 0
314 /* By default, there is no prefix on user-defined symbols. */
315 #ifndef USER_LABEL_PREFIX
316 #define USER_LABEL_PREFIX ""
319 /* If the target supports weak symbols, define TARGET_ATTRIBUTE_WEAK to
320 provide a weak attribute. Else define it to nothing.
322 This would normally belong in ansidecl.h, but SUPPORTS_WEAK is
323 not available at that time.
325 Note, this is only for use by target files which we know are to be
327 #ifndef TARGET_ATTRIBUTE_WEAK
329 # define TARGET_ATTRIBUTE_WEAK __attribute__ ((weak))
331 # define TARGET_ATTRIBUTE_WEAK
335 /* Determines whether we may use common symbols to represent one-only
336 semantics (a.k.a. "vague linkage"). */
337 #ifndef USE_COMMON_FOR_ONE_ONLY
338 # define USE_COMMON_FOR_ONE_ONLY 1
341 /* By default we can assume that all global symbols are in one namespace,
342 across all shared libraries. */
343 #ifndef MULTIPLE_SYMBOL_SPACES
344 # define MULTIPLE_SYMBOL_SPACES 0
347 /* If the target supports init_priority C++ attribute, give
348 SUPPORTS_INIT_PRIORITY a nonzero value. */
349 #ifndef SUPPORTS_INIT_PRIORITY
350 #define SUPPORTS_INIT_PRIORITY 1
351 #endif /* SUPPORTS_INIT_PRIORITY */
353 /* If duplicate library search directories can be removed from a
354 linker command without changing the linker's semantics, give this
356 #ifndef LINK_ELIMINATE_DUPLICATE_LDIRECTORIES
357 #define LINK_ELIMINATE_DUPLICATE_LDIRECTORIES 0
358 #endif /* LINK_ELIMINATE_DUPLICATE_LDIRECTORIES */
360 /* If we have a definition of INCOMING_RETURN_ADDR_RTX, assume that
361 the rest of the DWARF 2 frame unwind support is also provided. */
362 #if !defined (DWARF2_UNWIND_INFO) && defined (INCOMING_RETURN_ADDR_RTX)
363 #define DWARF2_UNWIND_INFO 1
366 /* If we have named sections, and we're using crtstuff to run ctors,
367 use them for registering eh frame information. */
368 #if defined (TARGET_ASM_NAMED_SECTION) && DWARF2_UNWIND_INFO \
369 && !defined(EH_FRAME_IN_DATA_SECTION)
370 #ifndef EH_FRAME_SECTION_NAME
371 #define EH_FRAME_SECTION_NAME ".eh_frame"
375 /* On many systems, different EH table encodings are used under
376 difference circumstances. Some will require runtime relocations;
377 some will not. For those that do not require runtime relocations,
378 we would like to make the table read-only. However, since the
379 read-only tables may need to be combined with read-write tables
380 that do require runtime relocation, it is not safe to make the
381 tables read-only unless the linker will merge read-only and
382 read-write sections into a single read-write section. If your
383 linker does not have this ability, but your system is such that no
384 encoding used with non-PIC code will ever require a runtime
385 relocation, then you can define EH_TABLES_CAN_BE_READ_ONLY to 1 in
386 your target configuration file. */
387 #ifndef EH_TABLES_CAN_BE_READ_ONLY
388 #ifdef HAVE_LD_RO_RW_SECTION_MIXING
389 #define EH_TABLES_CAN_BE_READ_ONLY 1
391 #define EH_TABLES_CAN_BE_READ_ONLY 0
395 /* If we have named section and we support weak symbols, then use the
396 .jcr section for recording java classes which need to be registered
397 at program start-up time. */
398 #if defined (TARGET_ASM_NAMED_SECTION) && SUPPORTS_WEAK
399 #ifndef JCR_SECTION_NAME
400 #define JCR_SECTION_NAME ".jcr"
404 /* This decision to use a .jcr section can be overridden by defining
405 USE_JCR_SECTION to 0 in target file. This is necessary if target
406 can define JCR_SECTION_NAME but does not have crtstuff or
407 linker support for .jcr section. */
408 #ifndef TARGET_USE_JCR_SECTION
409 #ifdef JCR_SECTION_NAME
410 #define TARGET_USE_JCR_SECTION 1
412 #define TARGET_USE_JCR_SECTION 0
416 /* Number of hardware registers that go into the DWARF-2 unwind info.
417 If not defined, equals FIRST_PSEUDO_REGISTER */
419 #ifndef DWARF_FRAME_REGISTERS
420 #define DWARF_FRAME_REGISTERS FIRST_PSEUDO_REGISTER
423 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
424 #ifndef DWARF_CIE_DATA_ALIGNMENT
425 #ifdef STACK_GROWS_DOWNWARD
426 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
428 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
432 /* The DWARF 2 CFA column which tracks the return address. Normally this
433 is the column for PC, or the first column after all of the hard
435 #ifndef DWARF_FRAME_RETURN_COLUMN
437 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
439 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
443 /* How to renumber registers for dbx and gdb. If not defined, assume
444 no renumbering is necessary. */
446 #ifndef DBX_REGISTER_NUMBER
447 #define DBX_REGISTER_NUMBER(REGNO) (REGNO)
450 /* The mapping from gcc register number to DWARF 2 CFA column number.
451 By default, we just provide columns for all registers. */
452 #ifndef DWARF_FRAME_REGNUM
453 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
456 /* Map register numbers held in the call frame info that gcc has
457 collected using DWARF_FRAME_REGNUM to those that should be output in
458 .debug_frame and .eh_frame. */
459 #ifndef DWARF2_FRAME_REG_OUT
460 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
463 /* The size of addresses as they appear in the Dwarf 2 data.
464 Some architectures use word addresses to refer to code locations,
465 but Dwarf 2 info always uses byte addresses. On such machines,
466 Dwarf 2 addresses need to be larger than the architecture's
468 #ifndef DWARF2_ADDR_SIZE
469 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
472 /* The size in bytes of a DWARF field indicating an offset or length
473 relative to a debug info section, specified to be 4 bytes in the
474 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
476 #ifndef DWARF_OFFSET_SIZE
477 #define DWARF_OFFSET_SIZE 4
480 /* The size in bytes of a DWARF 4 type signature. */
481 #ifndef DWARF_TYPE_SIGNATURE_SIZE
482 #define DWARF_TYPE_SIGNATURE_SIZE 8
485 /* Default sizes for base C types. If the sizes are different for
486 your target, you should override these values by defining the
487 appropriate symbols in your tm.h file. */
489 #ifndef BITS_PER_UNIT
490 #define BITS_PER_UNIT 8
493 #ifndef BITS_PER_WORD
494 #define BITS_PER_WORD (BITS_PER_UNIT * UNITS_PER_WORD)
497 #ifndef CHAR_TYPE_SIZE
498 #define CHAR_TYPE_SIZE BITS_PER_UNIT
501 #ifndef BOOL_TYPE_SIZE
502 /* `bool' has size and alignment `1', on almost all platforms. */
503 #define BOOL_TYPE_SIZE CHAR_TYPE_SIZE
506 #ifndef SHORT_TYPE_SIZE
507 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
510 #ifndef INT_TYPE_SIZE
511 #define INT_TYPE_SIZE BITS_PER_WORD
514 #ifndef LONG_TYPE_SIZE
515 #define LONG_TYPE_SIZE BITS_PER_WORD
518 #ifndef LONG_LONG_TYPE_SIZE
519 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
522 #ifndef WCHAR_TYPE_SIZE
523 #define WCHAR_TYPE_SIZE INT_TYPE_SIZE
526 #ifndef FLOAT_TYPE_SIZE
527 #define FLOAT_TYPE_SIZE BITS_PER_WORD
530 #ifndef DOUBLE_TYPE_SIZE
531 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
534 #ifndef LONG_DOUBLE_TYPE_SIZE
535 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
538 #ifndef DECIMAL32_TYPE_SIZE
539 #define DECIMAL32_TYPE_SIZE 32
542 #ifndef DECIMAL64_TYPE_SIZE
543 #define DECIMAL64_TYPE_SIZE 64
546 #ifndef DECIMAL128_TYPE_SIZE
547 #define DECIMAL128_TYPE_SIZE 128
550 #ifndef SHORT_FRACT_TYPE_SIZE
551 #define SHORT_FRACT_TYPE_SIZE BITS_PER_UNIT
554 #ifndef FRACT_TYPE_SIZE
555 #define FRACT_TYPE_SIZE (BITS_PER_UNIT * 2)
558 #ifndef LONG_FRACT_TYPE_SIZE
559 #define LONG_FRACT_TYPE_SIZE (BITS_PER_UNIT * 4)
562 #ifndef LONG_LONG_FRACT_TYPE_SIZE
563 #define LONG_LONG_FRACT_TYPE_SIZE (BITS_PER_UNIT * 8)
566 #ifndef SHORT_ACCUM_TYPE_SIZE
567 #define SHORT_ACCUM_TYPE_SIZE (SHORT_FRACT_TYPE_SIZE * 2)
570 #ifndef ACCUM_TYPE_SIZE
571 #define ACCUM_TYPE_SIZE (FRACT_TYPE_SIZE * 2)
574 #ifndef LONG_ACCUM_TYPE_SIZE
575 #define LONG_ACCUM_TYPE_SIZE (LONG_FRACT_TYPE_SIZE * 2)
578 #ifndef LONG_LONG_ACCUM_TYPE_SIZE
579 #define LONG_LONG_ACCUM_TYPE_SIZE (LONG_LONG_FRACT_TYPE_SIZE * 2)
582 /* We let tm.h override the types used here, to handle trivial differences
583 such as the choice of unsigned int or long unsigned int for size_t.
584 When machines start needing nontrivial differences in the size type,
585 it would be best to do something here to figure out automatically
586 from other information what type to use. */
589 #define SIZE_TYPE "long unsigned int"
593 #define PID_TYPE "int"
596 /* If GCC knows the exact uint_least16_t and uint_least32_t types from
597 <stdint.h>, use them for char16_t and char32_t. Otherwise, use
598 these guesses; getting the wrong type of a given width will not
599 affect C++ name mangling because in C++ these are distinct types
602 #ifdef UINT_LEAST16_TYPE
603 #define CHAR16_TYPE UINT_LEAST16_TYPE
605 #define CHAR16_TYPE "short unsigned int"
608 #ifdef UINT_LEAST32_TYPE
609 #define CHAR32_TYPE UINT_LEAST32_TYPE
611 #define CHAR32_TYPE "unsigned int"
615 #define WCHAR_TYPE "int"
618 /* WCHAR_TYPE gets overridden by -fshort-wchar. */
619 #define MODIFIED_WCHAR_TYPE \
620 (flag_short_wchar ? "short unsigned int" : WCHAR_TYPE)
623 #define PTRDIFF_TYPE "long int"
627 #define WINT_TYPE "unsigned int"
631 #define INTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
633 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
639 #define UINTMAX_TYPE ((INT_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
641 : ((LONG_TYPE_SIZE == LONG_LONG_TYPE_SIZE) \
642 ? "long unsigned int" \
643 : "long long unsigned int"))
647 /* There are no default definitions of these <stdint.h> types. */
649 #ifndef SIG_ATOMIC_TYPE
650 #define SIG_ATOMIC_TYPE ((const char *) NULL)
654 #define INT8_TYPE ((const char *) NULL)
658 #define INT16_TYPE ((const char *) NULL)
662 #define INT32_TYPE ((const char *) NULL)
666 #define INT64_TYPE ((const char *) NULL)
670 #define UINT8_TYPE ((const char *) NULL)
674 #define UINT16_TYPE ((const char *) NULL)
678 #define UINT32_TYPE ((const char *) NULL)
682 #define UINT64_TYPE ((const char *) NULL)
685 #ifndef INT_LEAST8_TYPE
686 #define INT_LEAST8_TYPE ((const char *) NULL)
689 #ifndef INT_LEAST16_TYPE
690 #define INT_LEAST16_TYPE ((const char *) NULL)
693 #ifndef INT_LEAST32_TYPE
694 #define INT_LEAST32_TYPE ((const char *) NULL)
697 #ifndef INT_LEAST64_TYPE
698 #define INT_LEAST64_TYPE ((const char *) NULL)
701 #ifndef UINT_LEAST8_TYPE
702 #define UINT_LEAST8_TYPE ((const char *) NULL)
705 #ifndef UINT_LEAST16_TYPE
706 #define UINT_LEAST16_TYPE ((const char *) NULL)
709 #ifndef UINT_LEAST32_TYPE
710 #define UINT_LEAST32_TYPE ((const char *) NULL)
713 #ifndef UINT_LEAST64_TYPE
714 #define UINT_LEAST64_TYPE ((const char *) NULL)
717 #ifndef INT_FAST8_TYPE
718 #define INT_FAST8_TYPE ((const char *) NULL)
721 #ifndef INT_FAST16_TYPE
722 #define INT_FAST16_TYPE ((const char *) NULL)
725 #ifndef INT_FAST32_TYPE
726 #define INT_FAST32_TYPE ((const char *) NULL)
729 #ifndef INT_FAST64_TYPE
730 #define INT_FAST64_TYPE ((const char *) NULL)
733 #ifndef UINT_FAST8_TYPE
734 #define UINT_FAST8_TYPE ((const char *) NULL)
737 #ifndef UINT_FAST16_TYPE
738 #define UINT_FAST16_TYPE ((const char *) NULL)
741 #ifndef UINT_FAST32_TYPE
742 #define UINT_FAST32_TYPE ((const char *) NULL)
745 #ifndef UINT_FAST64_TYPE
746 #define UINT_FAST64_TYPE ((const char *) NULL)
750 #define INTPTR_TYPE ((const char *) NULL)
754 #define UINTPTR_TYPE ((const char *) NULL)
757 /* Width in bits of a pointer. Mind the value of the macro `Pmode'. */
759 #define POINTER_SIZE BITS_PER_WORD
762 #ifndef PIC_OFFSET_TABLE_REGNUM
763 #define PIC_OFFSET_TABLE_REGNUM INVALID_REGNUM
766 #ifndef PIC_OFFSET_TABLE_REG_CALL_CLOBBERED
767 #define PIC_OFFSET_TABLE_REG_CALL_CLOBBERED 0
770 #ifndef TARGET_DLLIMPORT_DECL_ATTRIBUTES
771 #define TARGET_DLLIMPORT_DECL_ATTRIBUTES 0
774 #ifndef TARGET_DECLSPEC
775 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
776 /* If the target supports the "dllimport" attribute, users are
777 probably used to the "__declspec" syntax. */
778 #define TARGET_DECLSPEC 1
780 #define TARGET_DECLSPEC 0
784 /* By default, the preprocessor should be invoked the same way in C++
786 #ifndef CPLUSPLUS_CPP_SPEC
788 #define CPLUSPLUS_CPP_SPEC CPP_SPEC
792 #ifndef ACCUMULATE_OUTGOING_ARGS
793 #define ACCUMULATE_OUTGOING_ARGS 0
796 /* By default, use the GNU runtime for Objective C. */
797 #ifndef NEXT_OBJC_RUNTIME
798 #define NEXT_OBJC_RUNTIME 0
801 /* Supply a default definition for PUSH_ARGS. */
804 #define PUSH_ARGS !ACCUMULATE_OUTGOING_ARGS
810 /* Decide whether a function's arguments should be processed
811 from first to last or from last to first.
813 They should if the stack and args grow in opposite directions, but
814 only if we have push insns. */
818 #ifndef PUSH_ARGS_REVERSED
819 #if defined (STACK_GROWS_DOWNWARD) != defined (ARGS_GROW_DOWNWARD)
820 #define PUSH_ARGS_REVERSED PUSH_ARGS
826 #ifndef PUSH_ARGS_REVERSED
827 #define PUSH_ARGS_REVERSED 0
830 /* Default value for the alignment (in bits) a C conformant malloc has to
831 provide. This default is intended to be safe and always correct. */
832 #ifndef MALLOC_ABI_ALIGNMENT
833 #define MALLOC_ABI_ALIGNMENT BITS_PER_WORD
836 /* If PREFERRED_STACK_BOUNDARY is not defined, set it to STACK_BOUNDARY.
837 STACK_BOUNDARY is required. */
838 #ifndef PREFERRED_STACK_BOUNDARY
839 #define PREFERRED_STACK_BOUNDARY STACK_BOUNDARY
842 /* Set INCOMING_STACK_BOUNDARY to PREFERRED_STACK_BOUNDARY if it is not
844 #ifndef INCOMING_STACK_BOUNDARY
845 #define INCOMING_STACK_BOUNDARY PREFERRED_STACK_BOUNDARY
848 #ifndef TARGET_DEFAULT_PACK_STRUCT
849 #define TARGET_DEFAULT_PACK_STRUCT 0
852 /* By default, the vtable entries are void pointers, the so the alignment
853 is the same as pointer alignment. The value of this macro specifies
854 the alignment of the vtable entry in bits. It should be defined only
855 when special alignment is necessary. */
856 #ifndef TARGET_VTABLE_ENTRY_ALIGN
857 #define TARGET_VTABLE_ENTRY_ALIGN POINTER_SIZE
860 /* There are a few non-descriptor entries in the vtable at offsets below
861 zero. If these entries must be padded (say, to preserve the alignment
862 specified by TARGET_VTABLE_ENTRY_ALIGN), set this to the number of
863 words in each data entry. */
864 #ifndef TARGET_VTABLE_DATA_ENTRY_DISTANCE
865 #define TARGET_VTABLE_DATA_ENTRY_DISTANCE 1
868 /* Decide whether it is safe to use a local alias for a virtual function
869 when constructing thunks. */
870 #ifndef TARGET_USE_LOCAL_THUNK_ALIAS_P
871 #ifdef ASM_OUTPUT_DEF
872 #define TARGET_USE_LOCAL_THUNK_ALIAS_P(DECL) 1
874 #define TARGET_USE_LOCAL_THUNK_ALIAS_P(DECL) 0
878 /* Select a format to encode pointers in exception handling data. We
879 prefer those that result in fewer dynamic relocations. Assume no
880 special support here and encode direct references. */
881 #ifndef ASM_PREFERRED_EH_DATA_FORMAT
882 #define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL) DW_EH_PE_absptr
885 /* By default, the C++ compiler will use the lowest bit of the pointer
886 to function to indicate a pointer-to-member-function points to a
887 virtual member function. However, if FUNCTION_BOUNDARY indicates
888 function addresses aren't always even, the lowest bit of the delta
889 field will be used. */
890 #ifndef TARGET_PTRMEMFUNC_VBIT_LOCATION
891 #define TARGET_PTRMEMFUNC_VBIT_LOCATION \
892 (FUNCTION_BOUNDARY >= 2 * BITS_PER_UNIT \
893 ? ptrmemfunc_vbit_in_pfn : ptrmemfunc_vbit_in_delta)
896 #ifndef DEFAULT_GDB_EXTENSIONS
897 #define DEFAULT_GDB_EXTENSIONS 1
900 /* If more than one debugging type is supported, you must define
901 PREFERRED_DEBUGGING_TYPE to choose the default. */
903 #if 1 < (defined (DBX_DEBUGGING_INFO) + defined (SDB_DEBUGGING_INFO) \
904 + defined (DWARF2_DEBUGGING_INFO) + defined (XCOFF_DEBUGGING_INFO) \
905 + defined (VMS_DEBUGGING_INFO))
906 #ifndef PREFERRED_DEBUGGING_TYPE
907 #error You must define PREFERRED_DEBUGGING_TYPE
908 #endif /* no PREFERRED_DEBUGGING_TYPE */
910 /* If only one debugging format is supported, define PREFERRED_DEBUGGING_TYPE
911 here so other code needn't care. */
912 #elif defined DBX_DEBUGGING_INFO
913 #define PREFERRED_DEBUGGING_TYPE DBX_DEBUG
915 #elif defined SDB_DEBUGGING_INFO
916 #define PREFERRED_DEBUGGING_TYPE SDB_DEBUG
918 #elif defined DWARF2_DEBUGGING_INFO
919 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
921 #elif defined VMS_DEBUGGING_INFO
922 #define PREFERRED_DEBUGGING_TYPE VMS_AND_DWARF2_DEBUG
924 #elif defined XCOFF_DEBUGGING_INFO
925 #define PREFERRED_DEBUGGING_TYPE XCOFF_DEBUG
928 /* No debugging format is supported by this target. */
929 #define PREFERRED_DEBUGGING_TYPE NO_DEBUG
932 #ifndef LARGEST_EXPONENT_IS_NORMAL
933 #define LARGEST_EXPONENT_IS_NORMAL(SIZE) 0
936 #ifndef ROUND_TOWARDS_ZERO
937 #define ROUND_TOWARDS_ZERO 0
940 #ifndef FLOAT_LIB_COMPARE_RETURNS_BOOL
941 #define FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE, COMPARISON) false
944 /* True if the targets integer-comparison functions return { 0, 1, 2
945 } to indicate { <, ==, > }. False if { -1, 0, 1 } is used
946 instead. The libgcc routines are biased. */
947 #ifndef TARGET_LIB_INT_CMP_BIASED
948 #define TARGET_LIB_INT_CMP_BIASED (true)
951 /* If FLOAT_WORDS_BIG_ENDIAN is not defined in the header files,
952 then the word-endianness is the same as for integers. */
953 #ifndef FLOAT_WORDS_BIG_ENDIAN
954 #define FLOAT_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN
957 #ifndef REG_WORDS_BIG_ENDIAN
958 #define REG_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN
961 #ifdef TARGET_FLT_EVAL_METHOD
962 #define TARGET_FLT_EVAL_METHOD_NON_DEFAULT 1
964 #define TARGET_FLT_EVAL_METHOD 0
965 #define TARGET_FLT_EVAL_METHOD_NON_DEFAULT 0
968 #ifndef TARGET_DEC_EVAL_METHOD
969 #define TARGET_DEC_EVAL_METHOD 2
972 #ifndef HAS_LONG_COND_BRANCH
973 #define HAS_LONG_COND_BRANCH 0
976 #ifndef HAS_LONG_UNCOND_BRANCH
977 #define HAS_LONG_UNCOND_BRANCH 0
980 /* Determine whether __cxa_atexit, rather than atexit, is used to
981 register C++ destructors for local statics and global objects. */
982 #ifndef DEFAULT_USE_CXA_ATEXIT
983 #define DEFAULT_USE_CXA_ATEXIT 0
986 /* If none of these macros are defined, the port must use the new
987 technique of defining constraints in the machine description.
988 tm_p.h will define those macros that machine-independent code
990 #if !defined CONSTRAINT_LEN \
991 && !defined REG_CLASS_FROM_LETTER \
992 && !defined REG_CLASS_FROM_CONSTRAINT \
993 && !defined CONST_OK_FOR_LETTER_P \
994 && !defined CONST_OK_FOR_CONSTRAINT_P \
995 && !defined CONST_DOUBLE_OK_FOR_LETTER_P \
996 && !defined CONST_DOUBLE_OK_FOR_CONSTRAINT_P \
997 && !defined EXTRA_CONSTRAINT \
998 && !defined EXTRA_CONSTRAINT_STR \
999 && !defined EXTRA_MEMORY_CONSTRAINT \
1000 && !defined EXTRA_ADDRESS_CONSTRAINT
1002 #define USE_MD_CONSTRAINTS
1004 #if GCC_VERSION >= 3000 && defined IN_GCC
1005 /* These old constraint macros shouldn't appear anywhere in a
1006 configuration using MD constraint definitions. */
1007 #pragma GCC poison REG_CLASS_FROM_LETTER CONST_OK_FOR_LETTER_P \
1008 CONST_DOUBLE_OK_FOR_LETTER_P EXTRA_CONSTRAINT
1011 #else /* old constraint mechanism in use */
1013 /* Determine whether extra constraint letter should be handled
1014 via address reload (like 'o'). */
1015 #ifndef EXTRA_MEMORY_CONSTRAINT
1016 #define EXTRA_MEMORY_CONSTRAINT(C,STR) 0
1019 /* Determine whether extra constraint letter should be handled
1020 as an address (like 'p'). */
1021 #ifndef EXTRA_ADDRESS_CONSTRAINT
1022 #define EXTRA_ADDRESS_CONSTRAINT(C,STR) 0
1025 /* When a port defines CONSTRAINT_LEN, it should use DEFAULT_CONSTRAINT_LEN
1026 for all the characters that it does not want to change, so things like the
1027 'length' of a digit in a matching constraint is an implementation detail,
1028 and not part of the interface. */
1029 #define DEFAULT_CONSTRAINT_LEN(C,STR) 1
1031 #ifndef CONSTRAINT_LEN
1032 #define CONSTRAINT_LEN(C,STR) DEFAULT_CONSTRAINT_LEN (C, STR)
1035 #if defined (CONST_OK_FOR_LETTER_P) && ! defined (CONST_OK_FOR_CONSTRAINT_P)
1036 #define CONST_OK_FOR_CONSTRAINT_P(VAL,C,STR) CONST_OK_FOR_LETTER_P (VAL, C)
1039 #if defined (CONST_DOUBLE_OK_FOR_LETTER_P) && ! defined (CONST_DOUBLE_OK_FOR_CONSTRAINT_P)
1040 #define CONST_DOUBLE_OK_FOR_CONSTRAINT_P(OP,C,STR) \
1041 CONST_DOUBLE_OK_FOR_LETTER_P (OP, C)
1044 #ifndef REG_CLASS_FROM_CONSTRAINT
1045 #define REG_CLASS_FROM_CONSTRAINT(C,STR) REG_CLASS_FROM_LETTER (C)
1048 #if defined (EXTRA_CONSTRAINT) && ! defined (EXTRA_CONSTRAINT_STR)
1049 #define EXTRA_CONSTRAINT_STR(OP, C,STR) EXTRA_CONSTRAINT (OP, C)
1052 #endif /* old constraint mechanism in use */
1054 /* Determine whether the entire c99 runtime
1055 is present in the runtime library. */
1056 #ifndef TARGET_C99_FUNCTIONS
1057 #define TARGET_C99_FUNCTIONS 0
1060 /* Determine whether the target runtime library has
1061 a sincos implementation following the GNU extension. */
1062 #ifndef TARGET_HAS_SINCOS
1063 #define TARGET_HAS_SINCOS 0
1066 /* Indicate that CLZ and CTZ are undefined at zero. */
1067 #ifndef CLZ_DEFINED_VALUE_AT_ZERO
1068 #define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) 0
1070 #ifndef CTZ_DEFINED_VALUE_AT_ZERO
1071 #define CTZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) 0
1074 /* Provide a default value for STORE_FLAG_VALUE. */
1075 #ifndef STORE_FLAG_VALUE
1076 #define STORE_FLAG_VALUE 1
1079 /* This macro is used to determine what the largest unit size that
1080 move_by_pieces can use is. */
1082 /* MOVE_MAX_PIECES is the number of bytes at a time which we can
1083 move efficiently, as opposed to MOVE_MAX which is the maximum
1084 number of bytes we can move with a single instruction. */
1086 #ifndef MOVE_MAX_PIECES
1087 #define MOVE_MAX_PIECES MOVE_MAX
1090 #ifndef MAX_MOVE_MAX
1091 #define MAX_MOVE_MAX MOVE_MAX
1094 #ifndef MIN_UNITS_PER_WORD
1095 #define MIN_UNITS_PER_WORD UNITS_PER_WORD
1098 #ifndef MAX_BITS_PER_WORD
1099 #define MAX_BITS_PER_WORD BITS_PER_WORD
1102 #ifndef STACK_POINTER_OFFSET
1103 #define STACK_POINTER_OFFSET 0
1107 #define LOCAL_REGNO(REGNO) 0
1110 /* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
1111 the stack pointer does not matter. The value is tested only in
1112 functions that have frame pointers. */
1113 #ifndef EXIT_IGNORE_STACK
1114 #define EXIT_IGNORE_STACK 0
1117 /* Assume that case vectors are not pc-relative. */
1118 #ifndef CASE_VECTOR_PC_RELATIVE
1119 #define CASE_VECTOR_PC_RELATIVE 0
1122 /* Assume that trampolines need function alignment. */
1123 #ifndef TRAMPOLINE_ALIGNMENT
1124 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
1127 /* Register mappings for target machines without register windows. */
1128 #ifndef INCOMING_REGNO
1129 #define INCOMING_REGNO(N) (N)
1132 #ifndef OUTGOING_REGNO
1133 #define OUTGOING_REGNO(N) (N)
1136 #ifndef SHIFT_COUNT_TRUNCATED
1137 #define SHIFT_COUNT_TRUNCATED 0
1140 #ifndef LEGITIMATE_PIC_OPERAND_P
1141 #define LEGITIMATE_PIC_OPERAND_P(X) 1
1144 #ifndef TARGET_MEM_CONSTRAINT
1145 #define TARGET_MEM_CONSTRAINT 'm'
1148 #ifndef REVERSIBLE_CC_MODE
1149 #define REVERSIBLE_CC_MODE(MODE) 0
1152 /* Biggest alignment supported by the object file format of this machine. */
1153 #ifndef MAX_OFILE_ALIGNMENT
1154 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1157 #ifndef FRAME_GROWS_DOWNWARD
1158 #define FRAME_GROWS_DOWNWARD 0
1161 /* On most machines, the CFA coincides with the first incoming parm. */
1162 #ifndef ARG_POINTER_CFA_OFFSET
1163 #define ARG_POINTER_CFA_OFFSET(FNDECL) \
1164 (FIRST_PARM_OFFSET (FNDECL) + crtl->args.pretend_args_size)
1167 /* On most machines, we use the CFA as DW_AT_frame_base. */
1168 #ifndef CFA_FRAME_BASE_OFFSET
1169 #define CFA_FRAME_BASE_OFFSET(FNDECL) 0
1172 /* The offset from the incoming value of %sp to the top of the stack frame
1173 for the current function. */
1174 #ifndef INCOMING_FRAME_SP_OFFSET
1175 #define INCOMING_FRAME_SP_OFFSET 0
1178 #ifndef HARD_REGNO_NREGS_HAS_PADDING
1179 #define HARD_REGNO_NREGS_HAS_PADDING(REGNO, MODE) 0
1180 #define HARD_REGNO_NREGS_WITH_PADDING(REGNO, MODE) -1
1183 #ifndef OUTGOING_REG_PARM_STACK_SPACE
1184 #define OUTGOING_REG_PARM_STACK_SPACE(FNTYPE) 0
1187 /* MAX_STACK_ALIGNMENT is the maximum stack alignment guaranteed by
1188 the backend. MAX_SUPPORTED_STACK_ALIGNMENT is the maximum best
1189 effort stack alignment supported by the backend. If the backend
1190 supports stack alignment, MAX_SUPPORTED_STACK_ALIGNMENT and
1191 MAX_STACK_ALIGNMENT are the same. Otherwise, the incoming stack
1192 boundary will limit the maximum guaranteed stack alignment. */
1193 #ifdef MAX_STACK_ALIGNMENT
1194 #define MAX_SUPPORTED_STACK_ALIGNMENT MAX_STACK_ALIGNMENT
1196 #define MAX_STACK_ALIGNMENT STACK_BOUNDARY
1197 #define MAX_SUPPORTED_STACK_ALIGNMENT PREFERRED_STACK_BOUNDARY
1200 #define SUPPORTS_STACK_ALIGNMENT (MAX_STACK_ALIGNMENT > STACK_BOUNDARY)
1202 #ifndef LOCAL_ALIGNMENT
1203 #define LOCAL_ALIGNMENT(TYPE, ALIGNMENT) ALIGNMENT
1206 #ifndef STACK_SLOT_ALIGNMENT
1207 #define STACK_SLOT_ALIGNMENT(TYPE,MODE,ALIGN) \
1208 ((TYPE) ? LOCAL_ALIGNMENT ((TYPE), (ALIGN)) : (ALIGN))
1211 #ifndef LOCAL_DECL_ALIGNMENT
1212 #define LOCAL_DECL_ALIGNMENT(DECL) \
1213 LOCAL_ALIGNMENT (TREE_TYPE (DECL), DECL_ALIGN (DECL))
1216 #ifndef MINIMUM_ALIGNMENT
1217 #define MINIMUM_ALIGNMENT(EXP,MODE,ALIGN) (ALIGN)
1220 /* Alignment value for attribute ((aligned)). */
1221 #ifndef ATTRIBUTE_ALIGNED_VALUE
1222 #define ATTRIBUTE_ALIGNED_VALUE BIGGEST_ALIGNMENT
1225 /* Many ports have no mode-dependent addresses (except possibly autoincrement
1226 and autodecrement addresses, which are handled by target-independent code
1228 #ifndef GO_IF_MODE_DEPENDENT_ADDRESS
1229 #define GO_IF_MODE_DEPENDENT_ADDRESS(X, WIN)
1232 /* For most ports anything that evaluates to a constant symbolic
1233 or integer value is acceptable as a constant address. */
1234 #ifndef CONSTANT_ADDRESS_P
1235 #define CONSTANT_ADDRESS_P(X) (CONSTANT_P (X) && GET_CODE (X) != CONST_DOUBLE)
1238 #ifndef MAX_FIXED_MODE_SIZE
1239 #define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (DImode)
1242 /* Nonzero if structures and unions should be returned in memory.
1244 This should only be defined if compatibility with another compiler or
1245 with an ABI is needed, because it results in slower code. */
1247 #ifndef DEFAULT_PCC_STRUCT_RETURN
1248 #define DEFAULT_PCC_STRUCT_RETURN 1
1251 #ifdef GCC_INSN_FLAGS_H
1252 /* Dependent default target macro definitions
1254 This section of defaults.h defines target macros that depend on generated
1255 headers. This is a bit awkward: We want to put all default definitions
1256 for target macros in defaults.h, but some of the defaults depend on the
1257 HAVE_* flags defines of insn-flags.h. But insn-flags.h is not always
1258 included by files that do include defaults.h.
1260 Fortunately, the default macro definitions that depend on the HAVE_*
1261 macros are also the ones that will only be used inside GCC itself, i.e.
1262 not in the gen* programs or in target objects like libgcc.
1264 Obviously, it would be best to keep this section of defaults.h as small
1265 as possible, by converting the macros defined below to target hooks or
1269 /* The default branch cost is 1. */
1271 #define BRANCH_COST(speed_p, predictable_p) 1
1274 /* If a memory-to-memory move would take MOVE_RATIO or more simple
1275 move-instruction sequences, we will do a movmem or libcall instead. */
1278 #if defined (HAVE_movmemqi) || defined (HAVE_movmemhi) || defined (HAVE_movmemsi) || defined (HAVE_movmemdi) || defined (HAVE_movmemti)
1279 #define MOVE_RATIO(speed) 2
1281 /* If we are optimizing for space (-Os), cut down the default move ratio. */
1282 #define MOVE_RATIO(speed) ((speed) ? 15 : 3)
1286 /* If a clear memory operation would take CLEAR_RATIO or more simple
1287 move-instruction sequences, we will do a setmem or libcall instead. */
1290 #if defined (HAVE_setmemqi) || defined (HAVE_setmemhi) || defined (HAVE_setmemsi) || defined (HAVE_setmemdi) || defined (HAVE_setmemti)
1291 #define CLEAR_RATIO(speed) 2
1293 /* If we are optimizing for space, cut down the default clear ratio. */
1294 #define CLEAR_RATIO(speed) ((speed) ? 15 :3)
1298 /* If a memory set (to value other than zero) operation would take
1299 SET_RATIO or more simple move-instruction sequences, we will do a movmem
1300 or libcall instead. */
1302 #define SET_RATIO(speed) MOVE_RATIO(speed)
1305 /* Supply a default definition for FUNCTION_ARG_PADDING:
1306 usually pad upward, but pad short args downward on
1307 big-endian machines. */
1309 #define DEFAULT_FUNCTION_ARG_PADDING(MODE, TYPE) \
1310 (! BYTES_BIG_ENDIAN \
1312 : (((MODE) == BLKmode \
1313 ? ((TYPE) && TREE_CODE (TYPE_SIZE (TYPE)) == INTEGER_CST \
1314 && int_size_in_bytes (TYPE) < (PARM_BOUNDARY / BITS_PER_UNIT)) \
1315 : GET_MODE_BITSIZE (MODE) < PARM_BOUNDARY) \
1316 ? downward : upward))
1318 #ifndef FUNCTION_ARG_PADDING
1319 #define FUNCTION_ARG_PADDING(MODE, TYPE) \
1320 DEFAULT_FUNCTION_ARG_PADDING ((MODE), (TYPE))
1323 /* Supply a default definition of STACK_SAVEAREA_MODE for emit_stack_save.
1324 Normally move_insn, so Pmode stack pointer. */
1326 #ifndef STACK_SAVEAREA_MODE
1327 #define STACK_SAVEAREA_MODE(LEVEL) Pmode
1330 /* Supply a default definition of STACK_SIZE_MODE for
1331 allocate_dynamic_stack_space. Normally PLUS/MINUS, so word_mode. */
1333 #ifndef STACK_SIZE_MODE
1334 #define STACK_SIZE_MODE word_mode
1337 /* Provide default values for the macros controlling stack checking. */
1339 /* The default is neither full builtin stack checking... */
1340 #ifndef STACK_CHECK_BUILTIN
1341 #define STACK_CHECK_BUILTIN 0
1344 /* ...nor static builtin stack checking. */
1345 #ifndef STACK_CHECK_STATIC_BUILTIN
1346 #define STACK_CHECK_STATIC_BUILTIN 0
1349 /* The default interval is one page (4096 bytes). */
1350 #ifndef STACK_CHECK_PROBE_INTERVAL_EXP
1351 #define STACK_CHECK_PROBE_INTERVAL_EXP 12
1354 /* The default is not to move the stack pointer. */
1355 #ifndef STACK_CHECK_MOVING_SP
1356 #define STACK_CHECK_MOVING_SP 0
1359 /* This is a kludge to try to capture the discrepancy between the old
1360 mechanism (generic stack checking) and the new mechanism (static
1361 builtin stack checking). STACK_CHECK_PROTECT needs to be bumped
1362 for the latter because part of the protection area is effectively
1363 included in STACK_CHECK_MAX_FRAME_SIZE for the former. */
1364 #ifdef STACK_CHECK_PROTECT
1365 #define STACK_OLD_CHECK_PROTECT STACK_CHECK_PROTECT
1367 #define STACK_OLD_CHECK_PROTECT \
1368 (targetm_common.except_unwind_info (&global_options) == UI_SJLJ \
1369 ? 75 * UNITS_PER_WORD \
1373 /* Minimum amount of stack required to recover from an anticipated stack
1374 overflow detection. The default value conveys an estimate of the amount
1375 of stack required to propagate an exception. */
1376 #ifndef STACK_CHECK_PROTECT
1377 #define STACK_CHECK_PROTECT \
1378 (targetm_common.except_unwind_info (&global_options) == UI_SJLJ \
1379 ? 75 * UNITS_PER_WORD \
1383 /* Make the maximum frame size be the largest we can and still only need
1384 one probe per function. */
1385 #ifndef STACK_CHECK_MAX_FRAME_SIZE
1386 #define STACK_CHECK_MAX_FRAME_SIZE \
1387 ((1 << STACK_CHECK_PROBE_INTERVAL_EXP) - UNITS_PER_WORD)
1390 /* This is arbitrary, but should be large enough everywhere. */
1391 #ifndef STACK_CHECK_FIXED_FRAME_SIZE
1392 #define STACK_CHECK_FIXED_FRAME_SIZE (4 * UNITS_PER_WORD)
1395 /* Provide a reasonable default for the maximum size of an object to
1396 allocate in the fixed frame. We may need to be able to make this
1397 controllable by the user at some point. */
1398 #ifndef STACK_CHECK_MAX_VAR_SIZE
1399 #define STACK_CHECK_MAX_VAR_SIZE (STACK_CHECK_MAX_FRAME_SIZE / 100)
1402 /* By default, the C++ compiler will use function addresses in the
1403 vtable entries. Setting this nonzero tells the compiler to use
1404 function descriptors instead. The value of this macro says how
1405 many words wide the descriptor is (normally 2). It is assumed
1406 that the address of a function descriptor may be treated as a
1407 pointer to a function. */
1408 #ifndef TARGET_VTABLE_USES_DESCRIPTORS
1409 #define TARGET_VTABLE_USES_DESCRIPTORS 0
1412 #ifndef SWITCHABLE_TARGET
1413 #define SWITCHABLE_TARGET 0
1416 #endif /* GCC_INSN_FLAGS_H */
1418 #endif /* ! GCC_DEFAULTS_H */