1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
23 /* This file handles generation of all the assembler code
24 *except* the instructions of a function.
25 This includes declarations of variables and their initial values.
27 We also output the assembler code for constants stored in memory
28 and are responsible for combining constants with the same value. */
32 #include "coretypes.h"
39 #include "hard-reg-set.h"
47 #include "langhooks.h"
51 #include "tree-mudflap.h"
53 #include "cfglayout.h"
55 #ifdef XCOFF_DEBUGGING_INFO
56 #include "xcoffout.h" /* Needed for external data
57 declarations for e.g. AIX 4.x. */
61 #define ASM_STABS_OP "\t.stabs\t"
64 /* The (assembler) name of the first globally-visible object output. */
65 const char *first_global_object_name
;
66 const char *weak_global_object_name
;
69 struct constant_descriptor_rtx
;
70 struct rtx_constant_pool
;
72 struct varasm_status
GTY(())
74 /* If we're using a per-function constant pool, this is it. */
75 struct rtx_constant_pool
*pool
;
77 /* Number of tree-constants deferred during the expansion of this
79 unsigned int deferred_constants
;
82 #define n_deferred_constants (cfun->varasm->deferred_constants)
84 /* Number for making the label on the next
85 constant that is stored in memory. */
87 static GTY(()) int const_labelno
;
89 /* Carry information from ASM_DECLARE_OBJECT_NAME
90 to ASM_FINISH_DECLARE_OBJECT. */
92 int size_directive_output
;
94 /* The last decl for which assemble_variable was called,
95 if it did ASM_DECLARE_OBJECT_NAME.
96 If the last call to assemble_variable didn't do that,
99 tree last_assemble_variable_decl
;
101 /* The following global variable indicates if the section label for the
102 "cold" section of code has been output yet to the assembler. The
103 label is useful when running gdb. This is part of the optimization that
104 partitions hot and cold basic blocks into separate sections of the .o
107 static bool unlikely_section_label_printed
= false;
109 /* The following global variable indicates the label name to be put at
110 the start of the first cold section within each function, when
111 partitioning basic blocks into hot and cold sections. */
113 static char *unlikely_section_label
= NULL
;
115 /* The following global variable indicates the section name to be used
116 for the current cold section, when partitioning hot and cold basic
117 blocks into separate sections. */
119 static char *unlikely_text_section_name
= NULL
;
121 /* We give all constants their own alias set. Perhaps redundant with
122 MEM_READONLY_P, but pre-dates it. */
124 static HOST_WIDE_INT const_alias_set
;
126 static const char *strip_reg_name (const char *);
127 static int contains_pointers_p (tree
);
128 #ifdef ASM_OUTPUT_EXTERNAL
129 static bool incorporeal_function_p (tree
);
131 static void decode_addr_const (tree
, struct addr_const
*);
132 static hashval_t
const_desc_hash (const void *);
133 static int const_desc_eq (const void *, const void *);
134 static hashval_t
const_hash_1 (const tree
);
135 static int compare_constant (const tree
, const tree
);
136 static tree
copy_constant (tree
);
137 static void output_constant_def_contents (rtx
);
138 static void output_addressed_constants (tree
);
139 static unsigned HOST_WIDE_INT
array_size_for_constructor (tree
);
140 static unsigned min_align (unsigned, unsigned);
141 static void output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int);
142 static void globalize_decl (tree
);
143 static void maybe_assemble_visibility (tree
);
144 static int in_named_entry_eq (const void *, const void *);
145 static hashval_t
in_named_entry_hash (const void *);
146 #ifdef BSS_SECTION_ASM_OP
147 #ifdef ASM_OUTPUT_BSS
148 static void asm_output_bss (FILE *, tree
, const char *,
149 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
);
151 #ifdef ASM_OUTPUT_ALIGNED_BSS
152 static void asm_output_aligned_bss (FILE *, tree
, const char *,
153 unsigned HOST_WIDE_INT
, int)
156 #endif /* BSS_SECTION_ASM_OP */
157 static bool asm_emit_uninitialised (tree
, const char*,
158 unsigned HOST_WIDE_INT
,
159 unsigned HOST_WIDE_INT
);
160 static void mark_weak (tree
);
162 enum in_section
{ no_section
, in_text
, in_unlikely_executed_text
, in_data
,
164 #ifdef BSS_SECTION_ASM_OP
167 #ifdef CTORS_SECTION_ASM_OP
170 #ifdef DTORS_SECTION_ASM_OP
173 #ifdef READONLY_DATA_SECTION_ASM_OP
176 #ifdef EXTRA_SECTIONS
180 static GTY(()) enum in_section in_section
= no_section
;
182 /* Return a nonzero value if DECL has a section attribute. */
183 #ifndef IN_NAMED_SECTION
184 #define IN_NAMED_SECTION(DECL) \
185 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
186 && DECL_SECTION_NAME (DECL) != NULL_TREE)
189 /* Text of section name when in_section == in_named. */
190 static GTY(()) const char *in_named_name
;
192 /* Hash table of flags that have been used for a particular named section. */
194 struct in_named_entry
GTY(())
201 static GTY((param_is (struct in_named_entry
))) htab_t in_named_htab
;
203 /* Define functions like text_section for any extra sections. */
204 #ifdef EXTRA_SECTION_FUNCTIONS
205 EXTRA_SECTION_FUNCTIONS
208 /* Tell assembler to switch to text section. */
213 if (in_section
!= in_text
)
215 in_section
= in_text
;
216 fprintf (asm_out_file
, "%s\n", TEXT_SECTION_ASM_OP
);
220 /* Tell assembler to switch to unlikely-to-be-executed text section. */
223 unlikely_text_section (void)
228 if (! unlikely_text_section_name
)
230 if (DECL_SECTION_NAME (current_function_decl
)
231 && (strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME
232 (current_function_decl
)),
233 HOT_TEXT_SECTION_NAME
) != 0)
234 && (strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME
235 (current_function_decl
)),
236 UNLIKELY_EXECUTED_TEXT_SECTION_NAME
) != 0))
238 name
= TREE_STRING_POINTER (DECL_SECTION_NAME
239 (current_function_decl
));
241 unlikely_text_section_name
= xmalloc ((len
+ 10) * sizeof (char));
242 strcpy (unlikely_text_section_name
, name
);
243 strcat (unlikely_text_section_name
, "_unlikely");
247 len
= strlen (UNLIKELY_EXECUTED_TEXT_SECTION_NAME
);
248 unlikely_text_section_name
= xmalloc (len
+1 * sizeof (char));
249 strcpy (unlikely_text_section_name
,
250 UNLIKELY_EXECUTED_TEXT_SECTION_NAME
);
254 if ((in_section
!= in_unlikely_executed_text
)
255 && (in_section
!= in_named
256 || strcmp (in_named_name
, unlikely_text_section_name
) != 0))
258 named_section (NULL_TREE
, unlikely_text_section_name
, 0);
259 in_section
= in_unlikely_executed_text
;
261 if (!unlikely_section_label_printed
)
263 ASM_OUTPUT_LABEL (asm_out_file
, unlikely_section_label
);
264 unlikely_section_label_printed
= true;
269 /* Tell assembler to switch to data section. */
274 if (in_section
!= in_data
)
276 in_section
= in_data
;
277 fprintf (asm_out_file
, "%s\n", DATA_SECTION_ASM_OP
);
281 /* Tell assembler to switch to read-only data section. This is normally
285 readonly_data_section (void)
287 #ifdef READONLY_DATA_SECTION
288 READONLY_DATA_SECTION (); /* Note this can call data_section. */
290 #ifdef READONLY_DATA_SECTION_ASM_OP
291 if (in_section
!= in_readonly_data
)
293 in_section
= in_readonly_data
;
294 fputs (READONLY_DATA_SECTION_ASM_OP
, asm_out_file
);
295 fputc ('\n', asm_out_file
);
303 /* Determine if we're in the text section. */
306 in_text_section (void)
308 return in_section
== in_text
;
311 /* Determine if we're in the unlikely-to-be-executed text section. */
314 in_unlikely_text_section (void)
318 ret_val
= ((in_section
== in_unlikely_executed_text
)
319 || (in_section
== in_named
320 && unlikely_text_section_name
321 && strcmp (in_named_name
, unlikely_text_section_name
) == 0));
326 /* Determine if we're in the data section. */
329 in_data_section (void)
331 return in_section
== in_data
;
334 /* Helper routines for maintaining in_named_htab. */
337 in_named_entry_eq (const void *p1
, const void *p2
)
339 const struct in_named_entry
*old
= p1
;
340 const char *new = p2
;
342 return strcmp (old
->name
, new) == 0;
346 in_named_entry_hash (const void *p
)
348 const struct in_named_entry
*old
= p
;
349 return htab_hash_string (old
->name
);
352 /* If SECTION has been seen before as a named section, return the flags
353 that were used. Otherwise, return 0. Note, that 0 is a perfectly valid
354 set of flags for a section to have, so 0 does not mean that the section
355 has not been seen. */
358 get_named_section_flags (const char *section
)
360 struct in_named_entry
**slot
;
362 slot
= (struct in_named_entry
**)
363 htab_find_slot_with_hash (in_named_htab
, section
,
364 htab_hash_string (section
), NO_INSERT
);
366 return slot
? (*slot
)->flags
: 0;
369 /* Returns true if the section has been declared before. Sets internal
370 flag on this section in in_named_hash so subsequent calls on this
371 section will return false. */
374 named_section_first_declaration (const char *name
)
376 struct in_named_entry
**slot
;
378 slot
= (struct in_named_entry
**)
379 htab_find_slot_with_hash (in_named_htab
, name
,
380 htab_hash_string (name
), NO_INSERT
);
381 if (! (*slot
)->declared
)
383 (*slot
)->declared
= true;
393 /* Record FLAGS for SECTION. If SECTION was previously recorded with a
394 different set of flags, return false. */
397 set_named_section_flags (const char *section
, unsigned int flags
)
399 struct in_named_entry
**slot
, *entry
;
401 slot
= (struct in_named_entry
**)
402 htab_find_slot_with_hash (in_named_htab
, section
,
403 htab_hash_string (section
), INSERT
);
408 entry
= ggc_alloc (sizeof (*entry
));
410 entry
->name
= ggc_strdup (section
);
411 entry
->flags
= flags
;
412 entry
->declared
= false;
414 else if (entry
->flags
!= flags
)
420 /* Tell assembler to change to section NAME with attributes FLAGS. If
421 DECL is non-NULL, it is the VAR_DECL or FUNCTION_DECL with which
422 this section is associated. */
425 named_section_real (const char *name
, unsigned int flags
, tree decl
)
427 if (in_section
!= in_named
|| strcmp (name
, in_named_name
) != 0)
429 if (! set_named_section_flags (name
, flags
))
432 targetm
.asm_out
.named_section (name
, flags
, decl
);
434 if (flags
& SECTION_FORGET
)
435 in_section
= no_section
;
438 in_named_name
= ggc_strdup (name
);
439 in_section
= in_named
;
444 /* Tell assembler to change to section NAME for DECL.
445 If DECL is NULL, just switch to section NAME.
446 If NAME is NULL, get the name from DECL.
447 If RELOC is 1, the initializer for DECL contains relocs. */
450 named_section (tree decl
, const char *name
, int reloc
)
454 if (decl
!= NULL_TREE
&& !DECL_P (decl
))
457 name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
459 if (strcmp (name
, UNLIKELY_EXECUTED_TEXT_SECTION_NAME
) == 0
460 && !unlikely_text_section_name
)
462 unlikely_text_section_name
= xmalloc
463 (strlen (UNLIKELY_EXECUTED_TEXT_SECTION_NAME
) + 1
465 strcpy (unlikely_text_section_name
,
466 UNLIKELY_EXECUTED_TEXT_SECTION_NAME
);
469 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
471 /* Sanity check user variables for flag changes. Non-user
472 section flag changes will abort in named_section_flags.
473 However, don't complain if SECTION_OVERRIDE is set.
474 We trust that the setter knows that it is safe to ignore
475 the default flags for this decl. */
476 if (decl
&& ! set_named_section_flags (name
, flags
))
478 flags
= get_named_section_flags (name
);
479 if ((flags
& SECTION_OVERRIDE
) == 0)
480 error ("%J%D causes a section type conflict", decl
, decl
);
483 named_section_real (name
, flags
, decl
);
486 /* If required, set DECL_SECTION_NAME to a unique name. */
489 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
490 int flag_function_or_data_sections
)
492 if (DECL_SECTION_NAME (decl
) == NULL_TREE
493 && targetm
.have_named_sections
494 && (flag_function_or_data_sections
495 || DECL_ONE_ONLY (decl
)))
496 targetm
.asm_out
.unique_section (decl
, reloc
);
499 #ifdef BSS_SECTION_ASM_OP
501 /* Tell the assembler to switch to the bss section. */
506 if (in_section
!= in_bss
)
508 fprintf (asm_out_file
, "%s\n", BSS_SECTION_ASM_OP
);
513 #ifdef ASM_OUTPUT_BSS
515 /* Utility function for ASM_OUTPUT_BSS for targets to use if
516 they don't support alignments in .bss.
517 ??? It is believed that this function will work in most cases so such
518 support is localized here. */
521 asm_output_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
523 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
524 unsigned HOST_WIDE_INT rounded
)
526 targetm
.asm_out
.globalize_label (file
, name
);
528 #ifdef ASM_DECLARE_OBJECT_NAME
529 last_assemble_variable_decl
= decl
;
530 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
532 /* Standard thing is just output label for the object. */
533 ASM_OUTPUT_LABEL (file
, name
);
534 #endif /* ASM_DECLARE_OBJECT_NAME */
535 ASM_OUTPUT_SKIP (file
, rounded
? rounded
: 1);
540 #ifdef ASM_OUTPUT_ALIGNED_BSS
542 /* Utility function for targets to use in implementing
543 ASM_OUTPUT_ALIGNED_BSS.
544 ??? It is believed that this function will work in most cases so such
545 support is localized here. */
548 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
549 const char *name
, unsigned HOST_WIDE_INT size
,
553 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
554 #ifdef ASM_DECLARE_OBJECT_NAME
555 last_assemble_variable_decl
= decl
;
556 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
558 /* Standard thing is just output label for the object. */
559 ASM_OUTPUT_LABEL (file
, name
);
560 #endif /* ASM_DECLARE_OBJECT_NAME */
561 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
566 #endif /* BSS_SECTION_ASM_OP */
568 /* Switch to the section for function DECL.
570 If DECL is NULL_TREE, switch to the text section.
571 ??? It's not clear that we will ever be passed NULL_TREE, but it's
572 safer to handle it. */
575 function_section (tree decl
)
577 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
578 bool unlikely
= scan_ahead_for_unlikely_executed_note (get_insns());
580 targetm
.asm_out
.select_section (decl
, unlikely
, DECL_ALIGN (decl
));
582 if (scan_ahead_for_unlikely_executed_note (get_insns()))
583 unlikely_text_section ();
584 else if (decl
!= NULL_TREE
585 && DECL_SECTION_NAME (decl
) != NULL_TREE
)
586 named_section (decl
, (char *) 0, 0);
592 /* Switch to read-only data section associated with function DECL. */
595 default_function_rodata_section (tree decl
)
597 if (decl
!= NULL_TREE
&& DECL_SECTION_NAME (decl
))
599 const char *name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
601 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
602 if (DECL_ONE_ONLY (decl
) && strncmp (name
, ".gnu.linkonce.t.", 16) == 0)
604 size_t len
= strlen (name
) + 1;
605 char *rname
= alloca (len
);
607 memcpy (rname
, name
, len
);
609 named_section_real (rname
, SECTION_LINKONCE
, decl
);
612 /* For .text.foo we want to use .rodata.foo. */
613 else if (flag_function_sections
&& flag_data_sections
614 && strncmp (name
, ".text.", 6) == 0)
616 size_t len
= strlen (name
) + 1;
617 char *rname
= alloca (len
+ 2);
619 memcpy (rname
, ".rodata", 7);
620 memcpy (rname
+ 7, name
+ 5, len
- 5);
621 named_section_flags (rname
, 0);
626 readonly_data_section ();
629 /* Switch to read-only data section associated with function DECL
630 for targets where that section should be always the single
631 readonly data section. */
634 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED
)
636 readonly_data_section ();
639 /* Switch to section for variable DECL. RELOC is the same as the
640 argument to SELECT_SECTION. */
643 variable_section (tree decl
, int reloc
)
645 if (IN_NAMED_SECTION (decl
))
646 named_section (decl
, NULL
, reloc
);
648 targetm
.asm_out
.select_section (decl
, reloc
, DECL_ALIGN (decl
));
651 /* Tell assembler to switch to the section for string merging. */
654 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
655 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
656 unsigned int flags ATTRIBUTE_UNUSED
)
658 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
659 && TREE_CODE (decl
) == STRING_CST
660 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
662 && TREE_STRING_LENGTH (decl
) >= int_size_in_bytes (TREE_TYPE (decl
)))
664 enum machine_mode mode
;
665 unsigned int modesize
;
670 mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
671 modesize
= GET_MODE_BITSIZE (mode
);
672 if (modesize
>= 8 && modesize
<= 256
673 && (modesize
& (modesize
- 1)) == 0)
675 if (align
< modesize
)
678 str
= TREE_STRING_POINTER (decl
);
679 len
= TREE_STRING_LENGTH (decl
);
680 unit
= GET_MODE_SIZE (mode
);
682 /* Check for embedded NUL characters. */
683 for (i
= 0; i
< len
; i
+= unit
)
685 for (j
= 0; j
< unit
; j
++)
686 if (str
[i
+ j
] != '\0')
693 sprintf (name
, ".rodata.str%d.%d", modesize
/ 8,
695 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
696 if (!i
&& modesize
< align
)
698 /* A "" string with requested alignment greater than
699 character size might cause a problem:
700 if some other string required even bigger
701 alignment than "", then linker might think the
702 "" is just part of padding after some other string
703 and not put it into the hash table initially.
704 But this means "" could have smaller alignment
706 #ifdef ASM_OUTPUT_SECTION_START
707 named_section_flags (name
, flags
);
708 ASM_OUTPUT_SECTION_START (asm_out_file
);
710 readonly_data_section ();
715 named_section_flags (name
, flags
);
721 readonly_data_section ();
724 /* Tell assembler to switch to the section for constant merging. */
727 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
728 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
729 unsigned int flags ATTRIBUTE_UNUSED
)
731 unsigned int modesize
= GET_MODE_BITSIZE (mode
);
733 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
739 && (align
& (align
- 1)) == 0)
743 sprintf (name
, ".rodata.cst%d", (int) (align
/ 8));
744 flags
|= (align
/ 8) | SECTION_MERGE
;
745 named_section_flags (name
, flags
);
749 readonly_data_section ();
752 /* Given NAME, a putative register name, discard any customary prefixes. */
755 strip_reg_name (const char *name
)
757 #ifdef REGISTER_PREFIX
758 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
759 name
+= strlen (REGISTER_PREFIX
);
761 if (name
[0] == '%' || name
[0] == '#')
766 /* The user has asked for a DECL to have a particular name. Set (or
767 change) it in such a way that we don't prefix an underscore to
770 set_user_assembler_name (tree decl
, const char *name
)
772 char *starred
= alloca (strlen (name
) + 2);
774 strcpy (starred
+ 1, name
);
775 change_decl_assembler_name (decl
, get_identifier (starred
));
776 SET_DECL_RTL (decl
, NULL_RTX
);
779 /* Decode an `asm' spec for a declaration as a register name.
780 Return the register number, or -1 if nothing specified,
781 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
782 or -3 if ASMSPEC is `cc' and is not recognized,
783 or -4 if ASMSPEC is `memory' and is not recognized.
784 Accept an exact spelling or a decimal number.
785 Prefixes such as % are optional. */
788 decode_reg_name (const char *asmspec
)
790 if (asmspec
!= 0 && strlen (asmspec
) != 0)
794 /* Get rid of confusing prefixes. */
795 asmspec
= strip_reg_name (asmspec
);
797 /* Allow a decimal number as a "register name". */
798 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
799 if (! ISDIGIT (asmspec
[i
]))
801 if (asmspec
[0] != 0 && i
< 0)
804 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
810 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
812 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
815 #ifdef ADDITIONAL_REGISTER_NAMES
817 static const struct { const char *const name
; const int number
; } table
[]
818 = ADDITIONAL_REGISTER_NAMES
;
820 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
821 if (! strcmp (asmspec
, table
[i
].name
))
822 return table
[i
].number
;
824 #endif /* ADDITIONAL_REGISTER_NAMES */
826 if (!strcmp (asmspec
, "memory"))
829 if (!strcmp (asmspec
, "cc"))
838 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
839 have static storage duration. In other words, it should not be an
840 automatic variable, including PARM_DECLs.
842 There is, however, one exception: this function handles variables
843 explicitly placed in a particular register by the user.
845 This is never called for PARM_DECL nodes. */
848 make_decl_rtl (tree decl
)
850 const char *name
= 0;
854 /* Check that we are not being given an automatic variable. */
855 /* A weak alias has TREE_PUBLIC set but not the other bits. */
856 if (TREE_CODE (decl
) == PARM_DECL
857 || TREE_CODE (decl
) == RESULT_DECL
858 || (TREE_CODE (decl
) == VAR_DECL
859 && !TREE_STATIC (decl
)
860 && !TREE_PUBLIC (decl
)
861 && !DECL_EXTERNAL (decl
)
862 && !DECL_REGISTER (decl
)))
864 /* And that we were not given a type or a label. */
865 else if (TREE_CODE (decl
) == TYPE_DECL
866 || TREE_CODE (decl
) == LABEL_DECL
)
869 /* For a duplicate declaration, we can be called twice on the
870 same DECL node. Don't discard the RTL already made. */
871 if (DECL_RTL_SET_P (decl
))
873 /* If the old RTL had the wrong mode, fix the mode. */
874 if (GET_MODE (DECL_RTL (decl
)) != DECL_MODE (decl
))
875 SET_DECL_RTL (decl
, adjust_address_nv (DECL_RTL (decl
),
876 DECL_MODE (decl
), 0));
878 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
881 /* ??? Another way to do this would be to maintain a hashed
882 table of such critters. Instead of adding stuff to a DECL
883 to give certain attributes to it, we could use an external
884 hash map from DECL to set of attributes. */
886 /* Let the target reassign the RTL if it wants.
887 This is necessary, for example, when one machine specific
888 decl attribute overrides another. */
889 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
891 /* Make this function static known to the mudflap runtime. */
892 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
893 mudflap_enqueue_decl (decl
);
898 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
900 reg_number
= decode_reg_name (name
);
902 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
904 /* First detect errors in declaring global registers. */
905 if (reg_number
== -1)
906 error ("%Jregister name not specified for %qD", decl
, decl
);
907 else if (reg_number
< 0)
908 error ("%Jinvalid register name for %qD", decl
, decl
);
909 else if (TYPE_MODE (TREE_TYPE (decl
)) == BLKmode
)
910 error ("%Jdata type of %qD isn%'t suitable for a register",
912 else if (! HARD_REGNO_MODE_OK (reg_number
, TYPE_MODE (TREE_TYPE (decl
))))
913 error ("%Jregister specified for %qD isn%'t suitable for data type",
915 /* Now handle properly declared static register variables. */
920 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
922 DECL_INITIAL (decl
) = 0;
923 error ("global register variable has initial value");
925 if (TREE_THIS_VOLATILE (decl
))
926 warning ("volatile register variables don%'t "
927 "work as you might wish");
929 /* If the user specified one of the eliminables registers here,
930 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
931 confused with that register and be eliminated. This usage is
932 somewhat suspect... */
934 SET_DECL_RTL (decl
, gen_rtx_raw_REG (DECL_MODE (decl
), reg_number
));
935 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
936 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
938 if (TREE_STATIC (decl
))
940 /* Make this register global, so not usable for anything
942 #ifdef ASM_DECLARE_REGISTER_GLOBAL
943 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
945 nregs
= hard_regno_nregs
[reg_number
][DECL_MODE (decl
)];
947 globalize_reg (reg_number
+ --nregs
);
950 /* As a register variable, it has no section. */
955 /* Now handle ordinary static variables and functions (in memory).
956 Also handle vars declared register invalidly. */
958 if (name
[0] == '*' && (reg_number
>= 0 || reg_number
== -3))
959 error ("%Jregister name given for non-register variable %qD", decl
, decl
);
961 /* Specifying a section attribute on a variable forces it into a
962 non-.bss section, and thus it cannot be common. */
963 if (TREE_CODE (decl
) == VAR_DECL
964 && DECL_SECTION_NAME (decl
) != NULL_TREE
965 && DECL_INITIAL (decl
) == NULL_TREE
966 && DECL_COMMON (decl
))
967 DECL_COMMON (decl
) = 0;
969 /* Variables can't be both common and weak. */
970 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_WEAK (decl
))
971 DECL_COMMON (decl
) = 0;
973 x
= gen_rtx_SYMBOL_REF (Pmode
, name
);
974 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
975 SYMBOL_REF_DECL (x
) = decl
;
977 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
978 if (TREE_CODE (decl
) != FUNCTION_DECL
)
979 set_mem_attributes (x
, decl
, 1);
980 SET_DECL_RTL (decl
, x
);
982 /* Optionally set flags or add text to the name to record information
983 such as that it is a function name.
984 If the name is changed, the macro ASM_OUTPUT_LABELREF
985 will have to know how to strip this information. */
986 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
988 /* Make this function static known to the mudflap runtime. */
989 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
990 mudflap_enqueue_decl (decl
);
993 /* Make the rtl for variable VAR be volatile.
994 Use this only for static variables. */
997 make_var_volatile (tree var
)
999 if (!MEM_P (DECL_RTL (var
)))
1002 MEM_VOLATILE_P (DECL_RTL (var
)) = 1;
1005 /* Output a string of literal assembler code
1006 for an `asm' keyword used between functions. */
1009 assemble_asm (tree string
)
1013 if (TREE_CODE (string
) == ADDR_EXPR
)
1014 string
= TREE_OPERAND (string
, 0);
1016 fprintf (asm_out_file
, "\t%s\n", TREE_STRING_POINTER (string
));
1019 /* Record an element in the table of global destructors. SYMBOL is
1020 a SYMBOL_REF of the function to be called; PRIORITY is a number
1021 between 0 and MAX_INIT_PRIORITY. */
1024 default_stabs_asm_out_destructor (rtx symbol
, int priority ATTRIBUTE_UNUSED
)
1026 /* Tell GNU LD that this is part of the static destructor set.
1027 This will work for any system that uses stabs, most usefully
1029 fprintf (asm_out_file
, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
1030 assemble_name (asm_out_file
, XSTR (symbol
, 0));
1031 fputc ('\n', asm_out_file
);
1035 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1037 const char *section
= ".dtors";
1040 /* ??? This only works reliably with the GNU linker. */
1041 if (priority
!= DEFAULT_INIT_PRIORITY
)
1043 sprintf (buf
, ".dtors.%.5u",
1044 /* Invert the numbering so the linker puts us in the proper
1045 order; constructors are run from right to left, and the
1046 linker sorts in increasing order. */
1047 MAX_INIT_PRIORITY
- priority
);
1051 named_section_flags (section
, SECTION_WRITE
);
1052 assemble_align (POINTER_SIZE
);
1053 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1056 #ifdef DTORS_SECTION_ASM_OP
1058 dtors_section (void)
1060 if (in_section
!= in_dtors
)
1062 in_section
= in_dtors
;
1063 fputs (DTORS_SECTION_ASM_OP
, asm_out_file
);
1064 fputc ('\n', asm_out_file
);
1069 default_dtor_section_asm_out_destructor (rtx symbol
,
1070 int priority ATTRIBUTE_UNUSED
)
1073 assemble_align (POINTER_SIZE
);
1074 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1078 /* Likewise for global constructors. */
1081 default_stabs_asm_out_constructor (rtx symbol
, int priority ATTRIBUTE_UNUSED
)
1083 /* Tell GNU LD that this is part of the static destructor set.
1084 This will work for any system that uses stabs, most usefully
1086 fprintf (asm_out_file
, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
1087 assemble_name (asm_out_file
, XSTR (symbol
, 0));
1088 fputc ('\n', asm_out_file
);
1092 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1094 const char *section
= ".ctors";
1097 /* ??? This only works reliably with the GNU linker. */
1098 if (priority
!= DEFAULT_INIT_PRIORITY
)
1100 sprintf (buf
, ".ctors.%.5u",
1101 /* Invert the numbering so the linker puts us in the proper
1102 order; constructors are run from right to left, and the
1103 linker sorts in increasing order. */
1104 MAX_INIT_PRIORITY
- priority
);
1108 named_section_flags (section
, SECTION_WRITE
);
1109 assemble_align (POINTER_SIZE
);
1110 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1113 #ifdef CTORS_SECTION_ASM_OP
1115 ctors_section (void)
1117 if (in_section
!= in_ctors
)
1119 in_section
= in_ctors
;
1120 fputs (CTORS_SECTION_ASM_OP
, asm_out_file
);
1121 fputc ('\n', asm_out_file
);
1126 default_ctor_section_asm_out_constructor (rtx symbol
,
1127 int priority ATTRIBUTE_UNUSED
)
1130 assemble_align (POINTER_SIZE
);
1131 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1135 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1136 a nonzero value if the constant pool should be output before the
1137 start of the function, or a zero value if the pool should output
1138 after the end of the function. The default is to put it before the
1141 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1142 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1145 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1146 to be output to assembler.
1147 Set first_global_object_name and weak_global_object_name as appropriate. */
1150 notice_global_symbol (tree decl
)
1152 const char **type
= &first_global_object_name
;
1154 if (first_global_object_name
1155 || !TREE_PUBLIC (decl
) || DECL_EXTERNAL (decl
)
1156 || !DECL_NAME (decl
)
1157 || (TREE_CODE (decl
) != FUNCTION_DECL
1158 && (TREE_CODE (decl
) != VAR_DECL
1159 || (DECL_COMMON (decl
)
1160 && (DECL_INITIAL (decl
) == 0
1161 || DECL_INITIAL (decl
) == error_mark_node
))))
1162 || !MEM_P (DECL_RTL (decl
)))
1165 /* We win when global object is found, but it is useful to know about weak
1166 symbol as well so we can produce nicer unique names. */
1167 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
))
1168 type
= &weak_global_object_name
;
1174 rtx decl_rtl
= DECL_RTL (decl
);
1176 p
= targetm
.strip_name_encoding (XSTR (XEXP (decl_rtl
, 0), 0));
1183 /* Output assembler code for the constant pool of a function and associated
1184 with defining the name of the function. DECL describes the function.
1185 NAME is the function's name. For the constant pool, we use the current
1186 constant pool data. */
1189 assemble_start_function (tree decl
, const char *fnname
)
1193 if (unlikely_text_section_name
)
1194 free (unlikely_text_section_name
);
1196 unlikely_section_label_printed
= false;
1197 unlikely_text_section_name
= NULL
;
1199 unlikely_section_label
= reconcat (unlikely_section_label
,
1200 fnname
, ".unlikely_section", NULL
);
1202 /* The following code does not need preprocessing in the assembler. */
1206 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1207 output_constant_pool (fnname
, decl
);
1209 /* Make sure the cold text (code) section is properly aligned. This
1210 is necessary here in the case where the function has both hot and
1211 cold sections, because we don't want to re-set the alignment when the
1212 section switch happens mid-function. We don't need to set the hot
1213 section alignment here, because code further down in this function
1214 sets the alignment for whichever section comes first, and if there
1215 is a hot section it is guaranteed to be first. */
1217 if (flag_reorder_blocks_and_partition
)
1219 unlikely_text_section ();
1220 assemble_align (FUNCTION_BOUNDARY
);
1223 resolve_unique_section (decl
, 0, flag_function_sections
);
1224 function_section (decl
);
1226 /* Tell assembler to move to target machine's alignment for functions. */
1227 align
= floor_log2 (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
1228 if (align
< force_align_functions_log
)
1229 align
= force_align_functions_log
;
1232 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1235 /* Handle a user-specified function alignment.
1236 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1237 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1238 if (align_functions_log
> align
1239 && cfun
->function_frequency
!= FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
)
1241 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1242 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1243 align_functions_log
, align_functions
- 1);
1245 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
1249 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1250 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1253 (*debug_hooks
->begin_function
) (decl
);
1255 /* Make function name accessible from other files, if appropriate. */
1257 if (TREE_PUBLIC (decl
))
1259 notice_global_symbol (decl
);
1261 globalize_decl (decl
);
1263 maybe_assemble_visibility (decl
);
1266 if (DECL_PRESERVE_P (decl
))
1267 targetm
.asm_out
.mark_decl_preserved (fnname
);
1269 /* Do any machine/system dependent processing of the function name. */
1270 #ifdef ASM_DECLARE_FUNCTION_NAME
1271 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1273 /* Standard thing is just output label for the function. */
1274 ASM_OUTPUT_LABEL (asm_out_file
, fnname
);
1275 #endif /* ASM_DECLARE_FUNCTION_NAME */
1277 if (in_unlikely_text_section ()
1278 && !unlikely_section_label_printed
)
1280 ASM_OUTPUT_LABEL (asm_out_file
, unlikely_section_label
);
1281 unlikely_section_label_printed
= true;
1285 /* Output assembler code associated with defining the size of the
1286 function. DECL describes the function. NAME is the function's name. */
1289 assemble_end_function (tree decl
, const char *fnname
)
1291 #ifdef ASM_DECLARE_FUNCTION_SIZE
1292 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1294 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1296 output_constant_pool (fnname
, decl
);
1297 function_section (decl
); /* need to switch back */
1301 /* Assemble code to leave SIZE bytes of zeros. */
1304 assemble_zeros (unsigned HOST_WIDE_INT size
)
1306 /* Do no output if -fsyntax-only. */
1307 if (flag_syntax_only
)
1310 #ifdef ASM_NO_SKIP_IN_TEXT
1311 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1312 so we must output 0s explicitly in the text section. */
1313 if ((ASM_NO_SKIP_IN_TEXT
&& in_text_section ())
1314 || (ASM_NO_SKIP_IN_TEXT
&& in_unlikely_text_section ()))
1316 unsigned HOST_WIDE_INT i
;
1317 for (i
= 0; i
< size
; i
++)
1318 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
1323 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1326 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1329 assemble_align (int align
)
1331 if (align
> BITS_PER_UNIT
)
1333 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1337 /* Assemble a string constant with the specified C string as contents. */
1340 assemble_string (const char *p
, int size
)
1345 /* If the string is very long, split it up. */
1349 int thissize
= size
- pos
;
1350 if (thissize
> maximum
)
1353 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1361 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1362 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1363 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1365 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1366 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1367 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1369 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1370 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1374 #if defined ASM_OUTPUT_ALIGNED_BSS
1375 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1376 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1378 #if defined ASM_OUTPUT_BSS
1379 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1380 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1386 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1387 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1388 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1390 #if defined ASM_OUTPUT_ALIGNED_COMMON
1391 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1392 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1394 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1395 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1400 asm_emit_uninitialised (tree decl
, const char *name
,
1401 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1402 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1410 destination
= asm_dest_local
;
1412 /* ??? We should handle .bss via select_section mechanisms rather than
1413 via special target hooks. That would eliminate this special case. */
1414 if (TREE_PUBLIC (decl
))
1416 if (!DECL_COMMON (decl
))
1418 destination
= asm_dest_bss
;
1423 destination
= asm_dest_common
;
1426 if (destination
== asm_dest_bss
)
1427 globalize_decl (decl
);
1428 resolve_unique_section (decl
, 0, flag_data_sections
);
1430 if (flag_shared_data
)
1432 switch (destination
)
1434 #ifdef ASM_OUTPUT_SHARED_BSS
1436 ASM_OUTPUT_SHARED_BSS (asm_out_file
, decl
, name
, size
, rounded
);
1439 #ifdef ASM_OUTPUT_SHARED_COMMON
1440 case asm_dest_common
:
1441 ASM_OUTPUT_SHARED_COMMON (asm_out_file
, name
, size
, rounded
);
1444 #ifdef ASM_OUTPUT_SHARED_LOCAL
1445 case asm_dest_local
:
1446 ASM_OUTPUT_SHARED_LOCAL (asm_out_file
, name
, size
, rounded
);
1454 switch (destination
)
1458 ASM_EMIT_BSS (decl
, name
, size
, rounded
);
1461 case asm_dest_common
:
1462 ASM_EMIT_COMMON (decl
, name
, size
, rounded
);
1464 case asm_dest_local
:
1465 ASM_EMIT_LOCAL (decl
, name
, size
, rounded
);
1474 /* Assemble everything that is needed for a variable or function declaration.
1475 Not used for automatic variables, and not used for function definitions.
1476 Should not be called for variables of incomplete structure type.
1478 TOP_LEVEL is nonzero if this variable has file scope.
1479 AT_END is nonzero if this is the special handling, at end of compilation,
1480 to define things that have had only tentative definitions.
1481 DONT_OUTPUT_DATA if nonzero means don't actually output the
1482 initial value (that will be done by the caller). */
1485 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
1486 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
1493 if (lang_hooks
.decls
.prepare_assemble_variable
)
1494 lang_hooks
.decls
.prepare_assemble_variable (decl
);
1496 last_assemble_variable_decl
= 0;
1498 /* Normally no need to say anything here for external references,
1499 since assemble_external is called by the language-specific code
1500 when a declaration is first seen. */
1502 if (DECL_EXTERNAL (decl
))
1505 /* Output no assembler code for a function declaration.
1506 Only definitions of functions output anything. */
1508 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1511 /* Do nothing for global register variables. */
1512 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
1514 TREE_ASM_WRITTEN (decl
) = 1;
1518 /* If type was incomplete when the variable was declared,
1519 see if it is complete now. */
1521 if (DECL_SIZE (decl
) == 0)
1522 layout_decl (decl
, 0);
1524 /* Still incomplete => don't allocate it; treat the tentative defn
1525 (which is what it must have been) as an `extern' reference. */
1527 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
1529 error ("%Jstorage size of %qD isn%'t known", decl
, decl
);
1530 TREE_ASM_WRITTEN (decl
) = 1;
1534 /* The first declaration of a variable that comes through this function
1535 decides whether it is global (in C, has external linkage)
1536 or local (in C, has internal linkage). So do nothing more
1537 if this function has already run. */
1539 if (TREE_ASM_WRITTEN (decl
))
1542 /* Make sure targetm.encode_section_info is invoked before we set
1544 decl_rtl
= DECL_RTL (decl
);
1546 TREE_ASM_WRITTEN (decl
) = 1;
1548 /* Do no output if -fsyntax-only. */
1549 if (flag_syntax_only
)
1554 if (! dont_output_data
1555 && ! host_integerp (DECL_SIZE_UNIT (decl
), 1))
1557 error ("%Jsize of variable %qD is too large", decl
, decl
);
1561 name
= XSTR (XEXP (decl_rtl
, 0), 0);
1562 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1563 notice_global_symbol (decl
);
1565 /* Compute the alignment of this data. */
1567 align
= DECL_ALIGN (decl
);
1569 /* In the case for initialing an array whose length isn't specified,
1570 where we have not yet been able to do the layout,
1571 figure out the proper alignment now. */
1572 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1573 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1574 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1576 /* Some object file formats have a maximum alignment which they support.
1577 In particular, a.out format supports a maximum alignment of 4. */
1578 if (align
> MAX_OFILE_ALIGNMENT
)
1580 warning ("%Jalignment of %qD is greater than maximum object "
1581 "file alignment. Using %d", decl
, decl
,
1582 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
1583 align
= MAX_OFILE_ALIGNMENT
;
1586 /* On some machines, it is good to increase alignment sometimes. */
1587 if (! DECL_USER_ALIGN (decl
))
1589 #ifdef DATA_ALIGNMENT
1590 align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1592 #ifdef CONSTANT_ALIGNMENT
1593 if (DECL_INITIAL (decl
) != 0 && DECL_INITIAL (decl
) != error_mark_node
)
1594 align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1598 /* Reset the alignment in case we have made it tighter, so we can benefit
1599 from it in get_pointer_alignment. */
1600 DECL_ALIGN (decl
) = align
;
1601 set_mem_align (decl_rtl
, align
);
1603 if (TREE_PUBLIC (decl
))
1604 maybe_assemble_visibility (decl
);
1606 if (DECL_PRESERVE_P (decl
))
1607 targetm
.asm_out
.mark_decl_preserved (name
);
1609 /* Output any data that we will need to use the address of. */
1610 if (DECL_INITIAL (decl
) == error_mark_node
)
1611 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1612 else if (DECL_INITIAL (decl
))
1614 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1615 output_addressed_constants (DECL_INITIAL (decl
));
1617 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1619 /* Handle uninitialized definitions. */
1621 /* If the decl has been given an explicit section name, then it
1622 isn't common, and shouldn't be handled as such. */
1623 if (DECL_SECTION_NAME (decl
) || dont_output_data
)
1625 /* We don't implement common thread-local data at present. */
1626 else if (DECL_THREAD_LOCAL (decl
))
1628 if (DECL_COMMON (decl
))
1629 sorry ("thread-local COMMON data not implemented");
1631 else if (DECL_INITIAL (decl
) == 0
1632 || DECL_INITIAL (decl
) == error_mark_node
1633 || (flag_zero_initialized_in_bss
1634 /* Leave constant zeroes in .rodata so they can be shared. */
1635 && !TREE_READONLY (decl
)
1636 && initializer_zerop (DECL_INITIAL (decl
))))
1638 unsigned HOST_WIDE_INT size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
1639 unsigned HOST_WIDE_INT rounded
= size
;
1641 /* Don't allocate zero bytes of common,
1642 since that means "undefined external" in the linker. */
1646 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1647 so that each uninitialized object starts on such a boundary. */
1648 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1649 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1650 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1652 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1653 if ((unsigned HOST_WIDE_INT
) DECL_ALIGN_UNIT (decl
) > rounded
)
1654 warning ("%Jrequested alignment for %qD is greater than "
1655 "implemented alignment of %d", decl
, decl
, rounded
);
1658 /* If the target cannot output uninitialized but not common global data
1659 in .bss, then we have to use .data, so fall through. */
1660 if (asm_emit_uninitialised (decl
, name
, size
, rounded
))
1664 /* Handle initialized definitions.
1665 Also handle uninitialized global definitions if -fno-common and the
1666 target doesn't support ASM_OUTPUT_BSS. */
1668 /* First make the assembler name(s) global if appropriate. */
1669 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1670 globalize_decl (decl
);
1672 /* Switch to the appropriate section. */
1673 variable_section (decl
, reloc
);
1675 /* dbxout.c needs to know this. */
1676 if (in_text_section () || in_unlikely_text_section ())
1677 DECL_IN_TEXT_SECTION (decl
) = 1;
1679 /* Output the alignment of this data. */
1680 if (align
> BITS_PER_UNIT
)
1681 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (DECL_ALIGN_UNIT (decl
)));
1683 /* Do any machine/system dependent processing of the object. */
1684 #ifdef ASM_DECLARE_OBJECT_NAME
1685 last_assemble_variable_decl
= decl
;
1686 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1688 /* Standard thing is just output label for the object. */
1689 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1690 #endif /* ASM_DECLARE_OBJECT_NAME */
1692 if (!dont_output_data
)
1694 if (DECL_INITIAL (decl
)
1695 && DECL_INITIAL (decl
) != error_mark_node
1696 && !initializer_zerop (DECL_INITIAL (decl
)))
1697 /* Output the actual data. */
1698 output_constant (DECL_INITIAL (decl
),
1699 tree_low_cst (DECL_SIZE_UNIT (decl
), 1),
1702 /* Leave space for it. */
1703 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl
), 1));
1707 /* Return 1 if type TYPE contains any pointers. */
1710 contains_pointers_p (tree type
)
1712 switch (TREE_CODE (type
))
1715 case REFERENCE_TYPE
:
1716 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1717 so I'll play safe and return 1. */
1723 case QUAL_UNION_TYPE
:
1726 /* For a type that has fields, see if the fields have pointers. */
1727 for (fields
= TYPE_FIELDS (type
); fields
; fields
= TREE_CHAIN (fields
))
1728 if (TREE_CODE (fields
) == FIELD_DECL
1729 && contains_pointers_p (TREE_TYPE (fields
)))
1735 /* An array type contains pointers if its element type does. */
1736 return contains_pointers_p (TREE_TYPE (type
));
1743 #ifdef ASM_OUTPUT_EXTERNAL
1744 /* True if DECL is a function decl for which no out-of-line copy exists.
1745 It is assumed that DECL's assembler name has been set. */
1748 incorporeal_function_p (tree decl
)
1750 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
1754 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
1755 && DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA
)
1758 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
1759 if (strncmp (name
, "__builtin_", strlen ("__builtin_")) == 0)
1766 /* Output something to declare an external symbol to the assembler.
1767 (Most assemblers don't need this, so we normally output nothing.)
1768 Do nothing if DECL is not external. */
1771 assemble_external (tree decl ATTRIBUTE_UNUSED
)
1773 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1774 main body of this code is only rarely exercised. To provide some
1775 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1776 open. If it's not, we should not be calling this function. */
1780 #ifdef ASM_OUTPUT_EXTERNAL
1781 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
1783 rtx rtl
= DECL_RTL (decl
);
1785 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
1786 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
1787 && !incorporeal_function_p (decl
))
1789 /* Some systems do require some output. */
1790 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
1791 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
1797 /* Similar, for calling a library function FUN. */
1800 assemble_external_libcall (rtx fun
)
1802 /* Declare library function name external when first used, if nec. */
1803 if (! SYMBOL_REF_USED (fun
))
1805 SYMBOL_REF_USED (fun
) = 1;
1806 targetm
.asm_out
.external_libcall (fun
);
1810 /* Assemble a label named NAME. */
1813 assemble_label (const char *name
)
1815 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1818 /* Set the symbol_referenced flag for ID. */
1820 mark_referenced (tree id
)
1822 TREE_SYMBOL_REFERENCED (id
) = 1;
1825 /* Set the symbol_referenced flag for DECL and notify callgraph. */
1827 mark_decl_referenced (tree decl
)
1829 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1830 cgraph_mark_needed_node (cgraph_node (decl
));
1831 else if (TREE_CODE (decl
) == VAR_DECL
)
1832 cgraph_varpool_mark_needed_node (cgraph_varpool_node (decl
));
1833 /* else do nothing - we can get various sorts of CST nodes here,
1834 which do not need to be marked. */
1837 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1838 If NAME starts with a *, the rest of NAME is output verbatim.
1839 Otherwise NAME is transformed in an implementation-defined way
1840 (usually by the addition of an underscore).
1841 Many macros in the tm file are defined to call this function. */
1844 assemble_name (FILE *file
, const char *name
)
1846 const char *real_name
;
1849 real_name
= targetm
.strip_name_encoding (name
);
1851 id
= maybe_get_identifier (real_name
);
1853 mark_referenced (id
);
1856 fputs (&name
[1], file
);
1858 ASM_OUTPUT_LABELREF (file
, name
);
1861 /* Allocate SIZE bytes writable static space with a gensym name
1862 and return an RTX to refer to its address. */
1865 assemble_static_space (unsigned HOST_WIDE_INT size
)
1868 const char *namestring
;
1872 if (flag_shared_data
)
1876 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
1878 namestring
= ggc_strdup (name
);
1880 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
1881 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
1883 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1884 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
1887 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1888 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
1891 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1892 so that each uninitialized object starts on such a boundary. */
1893 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1894 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
1895 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
1896 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1897 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1898 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1905 /* Assemble the static constant template for function entry trampolines.
1906 This is done at most once per compilation.
1907 Returns an RTX for the address of the template. */
1909 static GTY(()) rtx initial_trampoline
;
1911 #ifdef TRAMPOLINE_TEMPLATE
1913 assemble_trampoline_template (void)
1920 if (initial_trampoline
)
1921 return initial_trampoline
;
1923 /* By default, put trampoline templates in read-only data section. */
1925 #ifdef TRAMPOLINE_SECTION
1926 TRAMPOLINE_SECTION ();
1928 readonly_data_section ();
1931 /* Write the assembler code to define one. */
1932 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
1935 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1938 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
1939 TRAMPOLINE_TEMPLATE (asm_out_file
);
1941 /* Record the rtl to refer to it. */
1942 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
1943 name
= ggc_strdup (label
);
1944 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
1945 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
1947 initial_trampoline
= gen_rtx_MEM (BLKmode
, symbol
);
1948 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
1950 return initial_trampoline
;
1954 /* A and B are either alignments or offsets. Return the minimum alignment
1955 that may be assumed after adding the two together. */
1957 static inline unsigned
1958 min_align (unsigned int a
, unsigned int b
)
1960 return (a
| b
) & -(a
| b
);
1963 /* Return the assembler directive for creating a given kind of integer
1964 object. SIZE is the number of bytes in the object and ALIGNED_P
1965 indicates whether it is known to be aligned. Return NULL if the
1966 assembly dialect has no such directive.
1968 The returned string should be printed at the start of a new line and
1969 be followed immediately by the object's initial value. */
1972 integer_asm_op (int size
, int aligned_p
)
1974 struct asm_int_op
*ops
;
1977 ops
= &targetm
.asm_out
.aligned_op
;
1979 ops
= &targetm
.asm_out
.unaligned_op
;
1984 return targetm
.asm_out
.byte_op
;
1998 /* Use directive OP to assemble an integer object X. Print OP at the
1999 start of the line, followed immediately by the value of X. */
2002 assemble_integer_with_op (const char *op
, rtx x
)
2004 fputs (op
, asm_out_file
);
2005 output_addr_const (asm_out_file
, x
);
2006 fputc ('\n', asm_out_file
);
2009 /* The default implementation of the asm_out.integer target hook. */
2012 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2013 unsigned int size ATTRIBUTE_UNUSED
,
2014 int aligned_p ATTRIBUTE_UNUSED
)
2016 const char *op
= integer_asm_op (size
, aligned_p
);
2017 /* Avoid GAS bugs for values > word size. */
2018 if (size
> UNITS_PER_WORD
)
2020 return op
&& (assemble_integer_with_op (op
, x
), true);
2023 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2024 the alignment of the integer in bits. Return 1 if we were able to output
2025 the constant, otherwise 0. If FORCE is nonzero, abort if we can't output
2029 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2033 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2035 /* See if the target hook can handle this kind of object. */
2036 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2039 /* If the object is a multi-byte one, try splitting it up. Split
2040 it into words it if is multi-word, otherwise split it into bytes. */
2043 enum machine_mode omode
, imode
;
2044 unsigned int subalign
;
2045 unsigned int subsize
, i
;
2047 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2048 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2049 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, MODE_INT
, 0);
2050 imode
= mode_for_size (size
* BITS_PER_UNIT
, MODE_INT
, 0);
2052 for (i
= 0; i
< size
; i
+= subsize
)
2054 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2055 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2061 /* If we've printed some of it, but not all of it, there's no going
2074 assemble_real (REAL_VALUE_TYPE d
, enum machine_mode mode
, unsigned int align
)
2078 int bitsize
, nelts
, nunits
, units_per
;
2080 /* This is hairy. We have a quantity of known size. real_to_target
2081 will put it into an array of *host* longs, 32 bits per element
2082 (even if long is more than 32 bits). We need to determine the
2083 number of array elements that are occupied (nelts) and the number
2084 of *target* min-addressable units that will be occupied in the
2085 object file (nunits). We cannot assume that 32 divides the
2086 mode's bitsize (size * BITS_PER_UNIT) evenly.
2088 size * BITS_PER_UNIT is used here to make sure that padding bits
2089 (which might appear at either end of the value; real_to_target
2090 will include the padding bits in its output array) are included. */
2092 nunits
= GET_MODE_SIZE (mode
);
2093 bitsize
= nunits
* BITS_PER_UNIT
;
2094 nelts
= CEIL (bitsize
, 32);
2095 units_per
= 32 / BITS_PER_UNIT
;
2097 real_to_target (data
, &d
, mode
);
2099 /* Put out the first word with the specified alignment. */
2100 assemble_integer (GEN_INT (data
[0]), MIN (nunits
, units_per
), align
, 1);
2101 nunits
-= units_per
;
2103 /* Subsequent words need only 32-bit alignment. */
2104 align
= min_align (align
, 32);
2106 for (i
= 1; i
< nelts
; i
++)
2108 assemble_integer (GEN_INT (data
[i
]), MIN (nunits
, units_per
), align
, 1);
2109 nunits
-= units_per
;
2113 /* Given an expression EXP with a constant value,
2114 reduce it to the sum of an assembler symbol and an integer.
2115 Store them both in the structure *VALUE.
2116 Abort if EXP does not reduce. */
2118 struct addr_const
GTY(())
2121 HOST_WIDE_INT offset
;
2125 decode_addr_const (tree exp
, struct addr_const
*value
)
2127 tree target
= TREE_OPERAND (exp
, 0);
2133 if (TREE_CODE (target
) == COMPONENT_REF
2134 && host_integerp (byte_position (TREE_OPERAND (target
, 1)), 0))
2137 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2138 target
= TREE_OPERAND (target
, 0);
2140 else if (TREE_CODE (target
) == ARRAY_REF
2141 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
2143 offset
+= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target
)), 1)
2144 * tree_low_cst (TREE_OPERAND (target
, 1), 0));
2145 target
= TREE_OPERAND (target
, 0);
2151 switch (TREE_CODE (target
))
2155 x
= DECL_RTL (target
);
2159 x
= gen_rtx_MEM (FUNCTION_MODE
,
2160 gen_rtx_LABEL_REF (VOIDmode
, force_label_rtx (target
)));
2168 x
= output_constant_def (target
, 1);
2180 value
->offset
= offset
;
2183 /* Uniquize all constants that appear in memory.
2184 Each constant in memory thus far output is recorded
2185 in `const_desc_table'. */
2187 struct constant_descriptor_tree
GTY(())
2189 /* A MEM for the constant. */
2192 /* The value of the constant. */
2196 static GTY((param_is (struct constant_descriptor_tree
)))
2197 htab_t const_desc_htab
;
2199 static struct constant_descriptor_tree
* build_constant_desc (tree
);
2200 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
2202 /* Compute a hash code for a constant expression. */
2205 const_desc_hash (const void *ptr
)
2207 return const_hash_1 (((struct constant_descriptor_tree
*)ptr
)->value
);
2211 const_hash_1 (const tree exp
)
2216 enum tree_code code
= TREE_CODE (exp
);
2218 /* Either set P and LEN to the address and len of something to hash and
2219 exit the switch or return a value. */
2224 p
= (char *) &TREE_INT_CST (exp
);
2225 len
= sizeof TREE_INT_CST (exp
);
2229 return real_hash (TREE_REAL_CST_PTR (exp
));
2232 p
= TREE_STRING_POINTER (exp
);
2233 len
= TREE_STRING_LENGTH (exp
);
2237 return (const_hash_1 (TREE_REALPART (exp
)) * 5
2238 + const_hash_1 (TREE_IMAGPART (exp
)));
2241 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2245 len
= int_size_in_bytes (TREE_TYPE (exp
));
2247 get_set_constructor_bytes (exp
, (unsigned char *) tmp
, len
);
2255 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
2257 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2258 if (TREE_VALUE (link
))
2259 hi
= hi
* 603 + const_hash_1 (TREE_VALUE (link
));
2267 struct addr_const value
;
2269 decode_addr_const (exp
, &value
);
2270 if (GET_CODE (value
.base
) == SYMBOL_REF
)
2272 /* Don't hash the address of the SYMBOL_REF;
2273 only use the offset and the symbol name. */
2275 p
= XSTR (value
.base
, 0);
2276 for (i
= 0; p
[i
] != 0; i
++)
2277 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2279 else if (GET_CODE (value
.base
) == LABEL_REF
)
2280 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2288 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
2289 + const_hash_1 (TREE_OPERAND (exp
, 1)));
2293 case NON_LVALUE_EXPR
:
2294 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
2297 /* A language specific constant. Just hash the code. */
2301 /* Compute hashing function. */
2303 for (i
= 0; i
< len
; i
++)
2304 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2309 /* Wrapper of compare_constant, for the htab interface. */
2311 const_desc_eq (const void *p1
, const void *p2
)
2313 return compare_constant (((struct constant_descriptor_tree
*)p1
)->value
,
2314 ((struct constant_descriptor_tree
*)p2
)->value
);
2317 /* Compare t1 and t2, and return 1 only if they are known to result in
2318 the same bit pattern on output. */
2321 compare_constant (const tree t1
, const tree t2
)
2323 enum tree_code typecode
;
2325 if (t1
== NULL_TREE
)
2326 return t2
== NULL_TREE
;
2327 if (t2
== NULL_TREE
)
2330 if (TREE_CODE (t1
) != TREE_CODE (t2
))
2333 switch (TREE_CODE (t1
))
2336 /* Integer constants are the same only if the same width of type. */
2337 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2339 return tree_int_cst_equal (t1
, t2
);
2342 /* Real constants are the same only if the same width of type. */
2343 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2346 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
2349 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2352 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
2353 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
2354 TREE_STRING_LENGTH (t1
)));
2357 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
2358 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
2361 typecode
= TREE_CODE (TREE_TYPE (t1
));
2362 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
2365 if (typecode
== SET_TYPE
)
2367 int len
= int_size_in_bytes (TREE_TYPE (t2
));
2368 unsigned char *tmp1
, *tmp2
;
2370 if (int_size_in_bytes (TREE_TYPE (t1
)) != len
)
2373 tmp1
= alloca (len
);
2374 tmp2
= alloca (len
);
2376 if (get_set_constructor_bytes (t1
, tmp1
, len
) != NULL_TREE
)
2378 if (get_set_constructor_bytes (t2
, tmp2
, len
) != NULL_TREE
)
2381 return memcmp (tmp1
, tmp2
, len
) == 0;
2387 if (typecode
== ARRAY_TYPE
)
2389 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
2390 /* For arrays, check that the sizes all match. */
2391 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
2393 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
)))
2398 /* For record and union constructors, require exact type
2400 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
2404 for (l1
= CONSTRUCTOR_ELTS (t1
), l2
= CONSTRUCTOR_ELTS (t2
);
2406 l1
= TREE_CHAIN (l1
), l2
= TREE_CHAIN (l2
))
2408 /* Check that each value is the same... */
2409 if (! compare_constant (TREE_VALUE (l1
), TREE_VALUE (l2
)))
2411 /* ... and that they apply to the same fields! */
2412 if (typecode
== ARRAY_TYPE
)
2414 if (! compare_constant (TREE_PURPOSE (l1
),
2420 if (TREE_PURPOSE (l1
) != TREE_PURPOSE (l2
))
2425 return l1
== NULL_TREE
&& l2
== NULL_TREE
;
2431 struct addr_const value1
, value2
;
2433 decode_addr_const (t1
, &value1
);
2434 decode_addr_const (t2
, &value2
);
2435 return (value1
.offset
== value2
.offset
2436 && strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
2442 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
2443 && compare_constant(TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
2447 case NON_LVALUE_EXPR
:
2448 case VIEW_CONVERT_EXPR
:
2449 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
2454 nt1
= lang_hooks
.expand_constant (t1
);
2455 nt2
= lang_hooks
.expand_constant (t2
);
2456 if (nt1
!= t1
|| nt2
!= t2
)
2457 return compare_constant (nt1
, nt2
);
2463 /* Should not get here. */
2467 /* Make a copy of the whole tree structure for a constant. This
2468 handles the same types of nodes that compare_constant handles. */
2471 copy_constant (tree exp
)
2473 switch (TREE_CODE (exp
))
2476 /* For ADDR_EXPR, we do not want to copy the decl whose address
2477 is requested. We do want to copy constants though. */
2478 if (CONSTANT_CLASS_P (TREE_OPERAND (exp
, 0)))
2479 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2480 copy_constant (TREE_OPERAND (exp
, 0)));
2482 return copy_node (exp
);
2487 return copy_node (exp
);
2490 return build_complex (TREE_TYPE (exp
),
2491 copy_constant (TREE_REALPART (exp
)),
2492 copy_constant (TREE_IMAGPART (exp
)));
2496 return build2 (TREE_CODE (exp
), TREE_TYPE (exp
),
2497 copy_constant (TREE_OPERAND (exp
, 0)),
2498 copy_constant (TREE_OPERAND (exp
, 1)));
2502 case NON_LVALUE_EXPR
:
2503 case VIEW_CONVERT_EXPR
:
2504 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2505 copy_constant (TREE_OPERAND (exp
, 0)));
2509 tree copy
= copy_node (exp
);
2510 tree list
= copy_list (CONSTRUCTOR_ELTS (exp
));
2513 CONSTRUCTOR_ELTS (copy
) = list
;
2514 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
2515 TREE_VALUE (tail
) = copy_constant (TREE_VALUE (tail
));
2516 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2517 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
2518 TREE_PURPOSE (tail
) = copy_constant (TREE_PURPOSE (tail
));
2526 t
= lang_hooks
.expand_constant (exp
);
2528 return copy_constant (t
);
2535 /* Subroutine of output_constant_def:
2536 No constant equal to EXP is known to have been output.
2537 Make a constant descriptor to enter EXP in the hash table.
2538 Assign the label number and construct RTL to refer to the
2539 constant's location in memory.
2540 Caller is responsible for updating the hash table. */
2542 static struct constant_descriptor_tree
*
2543 build_constant_desc (tree exp
)
2549 struct constant_descriptor_tree
*desc
;
2551 desc
= ggc_alloc (sizeof (*desc
));
2552 desc
->value
= copy_constant (exp
);
2554 /* Propagate marked-ness to copied constant. */
2555 if (flag_mudflap
&& mf_marked_p (exp
))
2556 mf_mark (desc
->value
);
2558 /* Create a string containing the label name, in LABEL. */
2559 labelno
= const_labelno
++;
2560 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
2562 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2563 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
2564 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2565 SYMBOL_REF_DECL (symbol
) = desc
->value
;
2566 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
2568 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
2569 set_mem_attributes (rtl
, exp
, 1);
2570 set_mem_alias_set (rtl
, 0);
2571 set_mem_alias_set (rtl
, const_alias_set
);
2573 /* Set flags or add text to the name to record information, such as
2574 that it is a local symbol. If the name is changed, the macro
2575 ASM_OUTPUT_LABELREF will have to know how to strip this
2576 information. This call might invalidate our local variable
2577 SYMBOL; we can't use it afterward. */
2579 targetm
.encode_section_info (exp
, rtl
, true);
2586 /* Return an rtx representing a reference to constant data in memory
2587 for the constant expression EXP.
2589 If assembler code for such a constant has already been output,
2590 return an rtx to refer to it.
2591 Otherwise, output such a constant in memory
2592 and generate an rtx for it.
2594 If DEFER is nonzero, this constant can be deferred and output only
2595 if referenced in the function after all optimizations.
2597 `const_desc_table' records which constants already have label strings. */
2600 output_constant_def (tree exp
, int defer
)
2602 struct constant_descriptor_tree
*desc
;
2603 struct constant_descriptor_tree key
;
2606 /* Look up EXP in the table of constant descriptors. If we didn't find
2607 it, create a new one. */
2609 loc
= htab_find_slot (const_desc_htab
, &key
, INSERT
);
2614 desc
= build_constant_desc (exp
);
2618 maybe_output_constant_def_contents (desc
, defer
);
2622 /* Subroutine of output_constant_def: Decide whether or not we need to
2623 output the constant DESC now, and if so, do it. */
2625 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
2628 rtx symbol
= XEXP (desc
->rtl
, 0);
2629 tree exp
= desc
->value
;
2631 if (flag_syntax_only
)
2634 if (TREE_ASM_WRITTEN (exp
))
2635 /* Already output; don't do it again. */
2638 /* We can always defer constants as long as the context allows
2642 /* Increment n_deferred_constants if it exists. It needs to be at
2643 least as large as the number of constants actually referred to
2644 by the function. If it's too small we'll stop looking too early
2645 and fail to emit constants; if it's too large we'll only look
2646 through the entire function when we could have stopped earlier. */
2648 n_deferred_constants
++;
2652 output_constant_def_contents (symbol
);
2655 /* We must output the constant data referred to by SYMBOL; do so. */
2658 output_constant_def_contents (rtx symbol
)
2660 tree exp
= SYMBOL_REF_DECL (symbol
);
2661 const char *label
= XSTR (symbol
, 0);
2664 /* Make sure any other constants whose addresses appear in EXP
2665 are assigned label numbers. */
2666 int reloc
= compute_reloc_for_constant (exp
);
2668 /* Align the location counter as required by EXP's data type. */
2669 unsigned int align
= TYPE_ALIGN (TREE_TYPE (exp
));
2670 #ifdef CONSTANT_ALIGNMENT
2671 align
= CONSTANT_ALIGNMENT (exp
, align
);
2674 output_addressed_constants (exp
);
2676 /* We are no longer deferring this constant. */
2677 TREE_ASM_WRITTEN (exp
) = 1;
2679 if (IN_NAMED_SECTION (exp
))
2680 named_section (exp
, NULL
, reloc
);
2682 targetm
.asm_out
.select_section (exp
, reloc
, align
);
2684 if (align
> BITS_PER_UNIT
)
2686 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2689 size
= int_size_in_bytes (TREE_TYPE (exp
));
2690 if (TREE_CODE (exp
) == STRING_CST
)
2691 size
= MAX (TREE_STRING_LENGTH (exp
), size
);
2693 /* Do any machine/system dependent processing of the constant. */
2694 #ifdef ASM_DECLARE_CONSTANT_NAME
2695 ASM_DECLARE_CONSTANT_NAME (asm_out_file
, label
, exp
, size
);
2697 /* Standard thing is just output label for the constant. */
2698 ASM_OUTPUT_LABEL (asm_out_file
, label
);
2699 #endif /* ASM_DECLARE_CONSTANT_NAME */
2701 /* Output the value of EXP. */
2702 output_constant (exp
, size
, align
);
2704 mudflap_enqueue_constant (exp
);
2707 /* Look up EXP in the table of constant descriptors. Return the rtl
2708 if it has been emitted, else null. */
2711 lookup_constant_def (tree exp
)
2713 struct constant_descriptor_tree
*desc
;
2714 struct constant_descriptor_tree key
;
2717 desc
= htab_find (const_desc_htab
, &key
);
2719 return (desc
? desc
->rtl
: NULL_RTX
);
2722 /* Used in the hash tables to avoid outputting the same constant
2723 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2724 are output once per function, not once per file. */
2725 /* ??? Only a few targets need per-function constant pools. Most
2726 can use one per-file pool. Should add a targetm bit to tell the
2729 struct rtx_constant_pool
GTY(())
2731 /* Pointers to first and last constant in pool, as ordered by offset. */
2732 struct constant_descriptor_rtx
*first
;
2733 struct constant_descriptor_rtx
*last
;
2735 /* Hash facility for making memory-constants from constant rtl-expressions.
2736 It is used on RISC machines where immediate integer arguments and
2737 constant addresses are restricted so that such constants must be stored
2739 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_htab
;
2740 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_sym_htab
;
2742 /* Current offset in constant pool (does not include any
2743 machine-specific header). */
2744 HOST_WIDE_INT offset
;
2747 struct constant_descriptor_rtx
GTY((chain_next ("%h.next")))
2749 struct constant_descriptor_rtx
*next
;
2753 HOST_WIDE_INT offset
;
2755 enum machine_mode mode
;
2761 /* Hash and compare functions for const_rtx_htab. */
2764 const_desc_rtx_hash (const void *ptr
)
2766 const struct constant_descriptor_rtx
*desc
= ptr
;
2771 const_desc_rtx_eq (const void *a
, const void *b
)
2773 const struct constant_descriptor_rtx
*x
= a
;
2774 const struct constant_descriptor_rtx
*y
= b
;
2776 if (x
->mode
!= y
->mode
)
2778 return rtx_equal_p (x
->constant
, y
->constant
);
2781 /* Hash and compare functions for const_rtx_sym_htab. */
2784 const_desc_rtx_sym_hash (const void *ptr
)
2786 const struct constant_descriptor_rtx
*desc
= ptr
;
2787 return htab_hash_string (XSTR (desc
->sym
, 0));
2791 const_desc_rtx_sym_eq (const void *a
, const void *b
)
2793 const struct constant_descriptor_rtx
*x
= a
;
2794 const struct constant_descriptor_rtx
*y
= b
;
2795 return XSTR (x
->sym
, 0) == XSTR (y
->sym
, 0);
2798 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
2801 const_rtx_hash_1 (rtx
*xp
, void *data
)
2803 unsigned HOST_WIDE_INT hwi
;
2804 enum machine_mode mode
;
2810 code
= GET_CODE (x
);
2811 mode
= GET_MODE (x
);
2812 h
= (hashval_t
) code
* 1048573 + mode
;
2820 const int shift
= sizeof (hashval_t
) * CHAR_BIT
;
2821 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
2824 h
^= (hashval_t
) hwi
;
2825 for (i
= 1; i
< n
; ++i
)
2828 h
^= (hashval_t
) hwi
;
2834 if (mode
== VOIDmode
)
2836 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
2840 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
2844 h
^= htab_hash_string (XSTR (x
, 0));
2848 h
= h
* 251 + CODE_LABEL_NUMBER (XEXP (x
, 0));
2852 case UNSPEC_VOLATILE
:
2853 h
= h
* 251 + XINT (x
, 1);
2861 *hp
= *hp
* 509 + h
;
2865 /* Compute a hash value for X, which should be a constant. */
2868 const_rtx_hash (rtx x
)
2871 for_each_rtx (&x
, const_rtx_hash_1
, &h
);
2876 /* Initialize constant pool hashing for a new function. */
2879 init_varasm_status (struct function
*f
)
2881 struct varasm_status
*p
;
2882 struct rtx_constant_pool
*pool
;
2884 p
= ggc_alloc (sizeof (struct varasm_status
));
2887 pool
= ggc_alloc (sizeof (struct rtx_constant_pool
));
2889 p
->deferred_constants
= 0;
2891 pool
->const_rtx_htab
= htab_create_ggc (31, const_desc_rtx_hash
,
2892 const_desc_rtx_eq
, NULL
);
2893 pool
->const_rtx_sym_htab
= htab_create_ggc (31, const_desc_rtx_sym_hash
,
2894 const_desc_rtx_sym_eq
, NULL
);
2895 pool
->first
= pool
->last
= NULL
;
2899 /* Given a MINUS expression, simplify it if both sides
2900 include the same symbol. */
2903 simplify_subtraction (rtx x
)
2905 rtx r
= simplify_rtx (x
);
2909 /* Given a constant rtx X, make (or find) a memory constant for its value
2910 and return a MEM rtx to refer to it in memory. */
2913 force_const_mem (enum machine_mode mode
, rtx x
)
2915 struct constant_descriptor_rtx
*desc
, tmp
;
2916 struct rtx_constant_pool
*pool
= cfun
->varasm
->pool
;
2923 /* If we're not allowed to drop X into the constant pool, don't. */
2924 if (targetm
.cannot_force_const_mem (x
))
2927 /* Lookup the value in the hashtable. */
2930 hash
= const_rtx_hash (x
);
2931 slot
= htab_find_slot_with_hash (pool
->const_rtx_htab
, &tmp
, hash
, INSERT
);
2934 /* If the constant was already present, return its memory. */
2936 return copy_rtx (desc
->mem
);
2938 /* Otherwise, create a new descriptor. */
2939 desc
= ggc_alloc (sizeof (*desc
));
2942 /* Align the location counter as required by EXP's data type. */
2943 align
= GET_MODE_ALIGNMENT (mode
== VOIDmode
? word_mode
: mode
);
2944 #ifdef CONSTANT_ALIGNMENT
2946 tree type
= lang_hooks
.types
.type_for_mode (mode
, 0);
2947 if (type
!= NULL_TREE
)
2948 align
= CONSTANT_ALIGNMENT (make_tree (type
, x
), align
);
2952 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
2953 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
2956 desc
->constant
= tmp
.constant
;
2957 desc
->offset
= pool
->offset
;
2960 desc
->align
= align
;
2961 desc
->labelno
= const_labelno
;
2964 pool
->offset
+= GET_MODE_SIZE (mode
);
2966 pool
->last
->next
= desc
;
2968 pool
->first
= pool
->last
= desc
;
2971 /* Create a string containing the label name, in LABEL. */
2972 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
2975 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
2976 the constants pool. */
2977 desc
->sym
= symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
2978 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2979 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
2980 current_function_uses_const_pool
= 1;
2982 /* Insert the descriptor into the symbol cross-reference table too. */
2983 slot
= htab_find_slot (pool
->const_rtx_sym_htab
, desc
, INSERT
);
2988 /* Construct the MEM. */
2989 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
2990 set_mem_attributes (def
, lang_hooks
.types
.type_for_mode (mode
, 0), 1);
2992 /* If we're dropping a label to the constant pool, make sure we
2994 if (GET_CODE (x
) == LABEL_REF
)
2995 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
2997 return copy_rtx (def
);
3000 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3001 the corresponding constant_descriptor_rtx structure. */
3003 static struct constant_descriptor_rtx
*
3004 find_pool_constant (struct rtx_constant_pool
*pool
, rtx sym
)
3006 struct constant_descriptor_rtx tmp
;
3008 return htab_find (pool
->const_rtx_sym_htab
, &tmp
);
3011 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3014 get_pool_constant (rtx addr
)
3016 return find_pool_constant (cfun
->varasm
->pool
, addr
)->constant
;
3019 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3020 and whether it has been output or not. */
3023 get_pool_constant_mark (rtx addr
, bool *pmarked
)
3025 struct constant_descriptor_rtx
*desc
;
3027 desc
= find_pool_constant (cfun
->varasm
->pool
, addr
);
3028 *pmarked
= (desc
->mark
!= 0);
3029 return desc
->constant
;
3032 /* Likewise, but for the constant pool of a specific function. */
3035 get_pool_constant_for_function (struct function
*f
, rtx addr
)
3037 return find_pool_constant (f
->varasm
->pool
, addr
)->constant
;
3040 /* Similar, return the mode. */
3043 get_pool_mode (rtx addr
)
3045 return find_pool_constant (cfun
->varasm
->pool
, addr
)->mode
;
3048 /* Return the size of the constant pool. */
3051 get_pool_size (void)
3053 return cfun
->varasm
->pool
->offset
;
3056 /* Worker function for output_constant_pool_1. Emit assembly for X
3057 in MODE with known alignment ALIGN. */
3060 output_constant_pool_2 (enum machine_mode mode
, rtx x
, unsigned int align
)
3062 switch (GET_MODE_CLASS (mode
))
3065 if (GET_CODE (x
) != CONST_DOUBLE
)
3070 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
3071 assemble_real (r
, mode
, align
);
3076 case MODE_PARTIAL_INT
:
3077 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
3080 case MODE_VECTOR_FLOAT
:
3081 case MODE_VECTOR_INT
:
3084 enum machine_mode submode
= GET_MODE_INNER (mode
);
3085 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
3087 if (GET_CODE (x
) != CONST_VECTOR
)
3089 units
= CONST_VECTOR_NUNITS (x
);
3091 for (i
= 0; i
< units
; i
++)
3093 rtx elt
= CONST_VECTOR_ELT (x
, i
);
3094 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
3104 /* Worker function for output_constant_pool. Emit POOL. */
3107 output_constant_pool_1 (struct constant_descriptor_rtx
*desc
)
3115 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3116 whose CODE_LABEL has been deleted. This can occur if a jump table
3117 is eliminated by optimization. If so, write a constant of zero
3118 instead. Note that this can also happen by turning the
3119 CODE_LABEL into a NOTE. */
3120 /* ??? This seems completely and utterly wrong. Certainly it's
3121 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3122 functioning even with INSN_DELETED_P and friends. */
3125 switch (GET_CODE (x
))
3128 if (GET_CODE (XEXP (x
, 0)) != PLUS
3129 || GET_CODE (XEXP (XEXP (x
, 0), 0)) != LABEL_REF
)
3131 tmp
= XEXP (XEXP (x
, 0), 0);
3136 if (INSN_DELETED_P (tmp
)
3138 && NOTE_LINE_NUMBER (tmp
) == NOTE_INSN_DELETED
))
3149 /* First switch to correct section. */
3150 targetm
.asm_out
.select_rtx_section (desc
->mode
, x
, desc
->align
);
3152 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3153 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
3154 desc
->align
, desc
->labelno
, done
);
3157 assemble_align (desc
->align
);
3159 /* Output the label. */
3160 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
3162 /* Output the data. */
3163 output_constant_pool_2 (desc
->mode
, x
, desc
->align
);
3165 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3166 sections have proper size. */
3167 if (desc
->align
> GET_MODE_BITSIZE (desc
->mode
)
3168 && in_section
== in_named
3169 && get_named_section_flags (in_named_name
) & SECTION_MERGE
)
3170 assemble_align (desc
->align
);
3172 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3178 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3179 to as used. Emit referenced deferred strings. This function can
3180 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3183 mark_constant (rtx
*current_rtx
, void *data
)
3185 struct rtx_constant_pool
*pool
= data
;
3186 rtx x
= *current_rtx
;
3188 if (x
== NULL_RTX
|| GET_CODE (x
) != SYMBOL_REF
)
3191 if (CONSTANT_POOL_ADDRESS_P (x
))
3193 struct constant_descriptor_rtx
*desc
= find_pool_constant (pool
, x
);
3194 if (desc
->mark
== 0)
3197 for_each_rtx (&desc
->constant
, mark_constant
, pool
);
3200 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
3202 tree exp
= SYMBOL_REF_DECL (x
);
3203 if (!TREE_ASM_WRITTEN (exp
))
3205 n_deferred_constants
--;
3206 output_constant_def_contents (x
);
3213 /* Look through appropriate parts of INSN, marking all entries in the
3214 constant pool which are actually being used. Entries that are only
3215 referenced by other constants are also marked as used. Emit
3216 deferred strings that are used. */
3219 mark_constants (struct rtx_constant_pool
*pool
, rtx insn
)
3224 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3225 insns, not any notes that may be attached. We don't want to mark
3226 a constant just because it happens to appear in a REG_EQUIV note. */
3227 if (GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3229 rtx seq
= PATTERN (insn
);
3230 int i
, n
= XVECLEN (seq
, 0);
3231 for (i
= 0; i
< n
; ++i
)
3233 rtx subinsn
= XVECEXP (seq
, 0, i
);
3234 if (INSN_P (subinsn
))
3235 for_each_rtx (&PATTERN (subinsn
), mark_constant
, pool
);
3239 for_each_rtx (&PATTERN (insn
), mark_constant
, pool
);
3242 /* Look through the instructions for this function, and mark all the
3243 entries in POOL which are actually being used. Emit deferred constants
3244 which have indeed been used. */
3247 mark_constant_pool (struct rtx_constant_pool
*pool
)
3251 if (pool
->first
== 0 && n_deferred_constants
== 0)
3254 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3255 mark_constants (pool
, insn
);
3257 for (link
= current_function_epilogue_delay_list
;
3259 link
= XEXP (link
, 1))
3260 mark_constants (pool
, XEXP (link
, 0));
3263 /* Write all the constants in the constant pool. */
3266 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
3267 tree fndecl ATTRIBUTE_UNUSED
)
3269 struct rtx_constant_pool
*pool
= cfun
->varasm
->pool
;
3270 struct constant_descriptor_rtx
*desc
;
3272 /* It is possible for gcc to call force_const_mem and then to later
3273 discard the instructions which refer to the constant. In such a
3274 case we do not need to output the constant. */
3275 mark_constant_pool (pool
);
3277 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3278 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3281 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
3282 output_constant_pool_1 (desc
);
3284 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3285 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3289 /* Determine what kind of relocations EXP may need. */
3292 compute_reloc_for_constant (tree exp
)
3294 int reloc
= 0, reloc2
;
3297 /* Give the front-end a chance to convert VALUE to something that
3298 looks more like a constant to the back-end. */
3299 exp
= lang_hooks
.expand_constant (exp
);
3301 switch (TREE_CODE (exp
))
3305 /* Go inside any operations that get_inner_reference can handle and see
3306 if what's inside is a constant: no need to do anything here for
3307 addresses of variables or functions. */
3308 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
3309 tem
= TREE_OPERAND (tem
, 0))
3312 if (TREE_PUBLIC (tem
))
3319 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3320 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
3324 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3325 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
3326 /* The difference of two local labels is computable at link time. */
3327 if (reloc
== 1 && reloc2
== 1)
3335 case NON_LVALUE_EXPR
:
3336 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3340 for (tem
= CONSTRUCTOR_ELTS (exp
); tem
; tem
= TREE_CHAIN (tem
))
3341 if (TREE_VALUE (tem
) != 0)
3342 reloc
|= compute_reloc_for_constant (TREE_VALUE (tem
));
3352 /* Find all the constants whose addresses are referenced inside of EXP,
3353 and make sure assembler code with a label has been output for each one.
3354 Indicate whether an ADDR_EXPR has been encountered. */
3357 output_addressed_constants (tree exp
)
3361 /* Give the front-end a chance to convert VALUE to something that
3362 looks more like a constant to the back-end. */
3363 exp
= lang_hooks
.expand_constant (exp
);
3365 switch (TREE_CODE (exp
))
3369 /* Go inside any operations that get_inner_reference can handle and see
3370 if what's inside is a constant: no need to do anything here for
3371 addresses of variables or functions. */
3372 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
3373 tem
= TREE_OPERAND (tem
, 0))
3376 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
3377 output_constant_def (tem
, 0);
3382 output_addressed_constants (TREE_OPERAND (exp
, 1));
3387 case NON_LVALUE_EXPR
:
3388 output_addressed_constants (TREE_OPERAND (exp
, 0));
3392 for (tem
= CONSTRUCTOR_ELTS (exp
); tem
; tem
= TREE_CHAIN (tem
))
3393 if (TREE_VALUE (tem
) != 0)
3394 output_addressed_constants (TREE_VALUE (tem
));
3403 /* Return nonzero if VALUE is a valid constant-valued expression
3404 for use in initializing a static variable; one that can be an
3405 element of a "constant" initializer.
3407 Return null_pointer_node if the value is absolute;
3408 if it is relocatable, return the variable that determines the relocation.
3409 We assume that VALUE has been folded as much as possible;
3410 therefore, we do not need to check for such things as
3411 arithmetic-combinations of integers. */
3414 initializer_constant_valid_p (tree value
, tree endtype
)
3416 /* Give the front-end a chance to convert VALUE to something that
3417 looks more like a constant to the back-end. */
3418 value
= lang_hooks
.expand_constant (value
);
3420 switch (TREE_CODE (value
))
3423 if ((TREE_CODE (TREE_TYPE (value
)) == UNION_TYPE
3424 || TREE_CODE (TREE_TYPE (value
)) == RECORD_TYPE
)
3425 && TREE_CONSTANT (value
)
3426 && CONSTRUCTOR_ELTS (value
))
3429 bool absolute
= true;
3431 for (elt
= CONSTRUCTOR_ELTS (value
); elt
; elt
= TREE_CHAIN (elt
))
3434 value
= TREE_VALUE (elt
);
3435 reloc
= initializer_constant_valid_p (value
, TREE_TYPE (value
));
3438 if (reloc
!= null_pointer_node
)
3441 /* For a non-absolute relocation, there is no single
3442 variable that can be "the variable that determines the
3444 return absolute
? null_pointer_node
: error_mark_node
;
3447 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
3454 return null_pointer_node
;
3458 value
= staticp (TREE_OPERAND (value
, 0));
3459 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out to
3460 be a constant, this is old-skool offsetof-like nonsense. */
3462 && TREE_CODE (value
) == INDIRECT_REF
3463 && TREE_CONSTANT (TREE_OPERAND (value
, 0)))
3464 return null_pointer_node
;
3467 case VIEW_CONVERT_EXPR
:
3468 case NON_LVALUE_EXPR
:
3469 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3473 /* Allow conversions between pointer types. */
3474 if (POINTER_TYPE_P (TREE_TYPE (value
))
3475 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3476 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3478 /* Allow conversions between real types. */
3479 if (FLOAT_TYPE_P (TREE_TYPE (value
))
3480 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3481 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3483 /* Allow length-preserving conversions between integer types. */
3484 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
3485 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0)))
3486 && (TYPE_PRECISION (TREE_TYPE (value
))
3487 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0)))))
3488 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3490 /* Allow conversions between other integer types only if
3492 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
3493 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3495 tree inner
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3497 if (inner
== null_pointer_node
)
3498 return null_pointer_node
;
3502 /* Allow (int) &foo provided int is as wide as a pointer. */
3503 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
3504 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0)))
3505 && (TYPE_PRECISION (TREE_TYPE (value
))
3506 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0)))))
3507 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3510 /* Likewise conversions from int to pointers, but also allow
3511 conversions from 0. */
3512 if ((POINTER_TYPE_P (TREE_TYPE (value
))
3513 || TREE_CODE (TREE_TYPE (value
)) == OFFSET_TYPE
)
3514 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3516 if (integer_zerop (TREE_OPERAND (value
, 0)))
3517 return null_pointer_node
;
3518 else if (TYPE_PRECISION (TREE_TYPE (value
))
3519 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0))))
3520 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3524 /* Allow conversions to struct or union types if the value
3526 if (TREE_CODE (TREE_TYPE (value
)) == RECORD_TYPE
3527 || TREE_CODE (TREE_TYPE (value
)) == UNION_TYPE
)
3528 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3533 if (! INTEGRAL_TYPE_P (endtype
)
3534 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
3536 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3538 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
3540 /* If either term is absolute, use the other terms relocation. */
3541 if (valid0
== null_pointer_node
)
3543 if (valid1
== null_pointer_node
)
3549 if (! INTEGRAL_TYPE_P (endtype
)
3550 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
3552 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3554 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
3556 /* Win if second argument is absolute. */
3557 if (valid1
== null_pointer_node
)
3559 /* Win if both arguments have the same relocation.
3560 Then the value is absolute. */
3561 if (valid0
== valid1
&& valid0
!= 0)
3562 return null_pointer_node
;
3564 /* Since GCC guarantees that string constants are unique in the
3565 generated code, a subtraction between two copies of the same
3566 constant string is absolute. */
3567 if (valid0
&& TREE_CODE (valid0
) == STRING_CST
3568 && valid1
&& TREE_CODE (valid1
) == STRING_CST
3569 && operand_equal_p (valid0
, valid1
, 1))
3570 return null_pointer_node
;
3573 /* Support narrowing differences. */
3574 if (INTEGRAL_TYPE_P (endtype
))
3578 op0
= TREE_OPERAND (value
, 0);
3579 op1
= TREE_OPERAND (value
, 1);
3581 /* Like STRIP_NOPS except allow the operand mode to widen.
3582 This works around a feature of fold that simplifies
3583 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3584 that the narrower operation is cheaper. */
3586 while (TREE_CODE (op0
) == NOP_EXPR
3587 || TREE_CODE (op0
) == CONVERT_EXPR
3588 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
3590 tree inner
= TREE_OPERAND (op0
, 0);
3591 if (inner
== error_mark_node
3592 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
3593 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0
)))
3594 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
3599 while (TREE_CODE (op1
) == NOP_EXPR
3600 || TREE_CODE (op1
) == CONVERT_EXPR
3601 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
3603 tree inner
= TREE_OPERAND (op1
, 0);
3604 if (inner
== error_mark_node
3605 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
3606 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1
)))
3607 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
3612 op0
= initializer_constant_valid_p (op0
, endtype
);
3613 op1
= initializer_constant_valid_p (op1
, endtype
);
3615 /* Both initializers must be known. */
3619 return null_pointer_node
;
3621 /* Support differences between labels. */
3622 if (TREE_CODE (op0
) == LABEL_DECL
3623 && TREE_CODE (op1
) == LABEL_DECL
)
3624 return null_pointer_node
;
3626 if (TREE_CODE (op0
) == STRING_CST
3627 && TREE_CODE (op1
) == STRING_CST
3628 && operand_equal_p (op0
, op1
, 1))
3629 return null_pointer_node
;
3641 /* Output assembler code for constant EXP to FILE, with no label.
3642 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3643 Assumes output_addressed_constants has been done on EXP already.
3645 Generate exactly SIZE bytes of assembler data, padding at the end
3646 with zeros if necessary. SIZE must always be specified.
3648 SIZE is important for structure constructors,
3649 since trailing members may have been omitted from the constructor.
3650 It is also important for initialization of arrays from string constants
3651 since the full length of the string constant might not be wanted.
3652 It is also needed for initialization of unions, where the initializer's
3653 type is just one member, and that may not be as long as the union.
3655 There a case in which we would fail to output exactly SIZE bytes:
3656 for a structure constructor that wants to produce more than SIZE bytes.
3657 But such constructors will never be generated for any possible input.
3659 ALIGN is the alignment of the data in bits. */
3662 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
)
3664 enum tree_code code
;
3665 unsigned HOST_WIDE_INT thissize
;
3667 /* Some front-ends use constants other than the standard language-independent
3668 varieties, but which may still be output directly. Give the front-end a
3669 chance to convert EXP to a language-independent representation. */
3670 exp
= lang_hooks
.expand_constant (exp
);
3672 if (size
== 0 || flag_syntax_only
)
3675 /* Eliminate any conversions since we'll be outputting the underlying
3677 while (TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
3678 || TREE_CODE (exp
) == NON_LVALUE_EXPR
3679 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
3680 exp
= TREE_OPERAND (exp
, 0);
3682 code
= TREE_CODE (TREE_TYPE (exp
));
3683 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
3685 /* Allow a constructor with no elements for any data type.
3686 This means to fill the space with zeros. */
3687 if (TREE_CODE (exp
) == CONSTRUCTOR
&& CONSTRUCTOR_ELTS (exp
) == 0)
3689 assemble_zeros (size
);
3693 if (TREE_CODE (exp
) == FDESC_EXPR
)
3695 #ifdef ASM_OUTPUT_FDESC
3696 HOST_WIDE_INT part
= tree_low_cst (TREE_OPERAND (exp
, 1), 0);
3697 tree decl
= TREE_OPERAND (exp
, 0);
3698 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
3705 /* Now output the underlying data. If we've handling the padding, return.
3706 Otherwise, break and ensure SIZE is the size written. */
3714 case REFERENCE_TYPE
:
3716 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
3717 EXPAND_INITIALIZER
),
3718 MIN (size
, thissize
), align
, 0))
3719 error ("initializer for integer value is too complicated");
3723 if (TREE_CODE (exp
) != REAL_CST
)
3724 error ("initializer for floating value is not a floating constant");
3726 assemble_real (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)), align
);
3730 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
);
3731 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
3732 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)));
3737 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3739 output_constructor (exp
, size
, align
);
3742 else if (TREE_CODE (exp
) == STRING_CST
)
3744 thissize
= MIN ((unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
),
3746 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
3748 else if (TREE_CODE (exp
) == VECTOR_CST
)
3752 unsigned int nalign
;
3753 enum machine_mode inner
;
3755 inner
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
3756 nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
3758 elt_size
= GET_MODE_SIZE (inner
);
3760 link
= TREE_VECTOR_CST_ELTS (exp
);
3761 output_constant (TREE_VALUE (link
), elt_size
, align
);
3762 while ((link
= TREE_CHAIN (link
)) != NULL
)
3763 output_constant (TREE_VALUE (link
), elt_size
, nalign
);
3771 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3772 output_constructor (exp
, size
, align
);
3778 if (TREE_CODE (exp
) == INTEGER_CST
)
3779 assemble_integer (expand_expr (exp
, NULL_RTX
,
3780 VOIDmode
, EXPAND_INITIALIZER
),
3781 thissize
, align
, 1);
3782 else if (TREE_CODE (exp
) == CONSTRUCTOR
)
3784 unsigned char *buffer
= alloca (thissize
);
3785 if (get_set_constructor_bytes (exp
, buffer
, thissize
))
3787 assemble_string ((char *) buffer
, thissize
);
3790 error ("unknown set constructor type");
3800 if (size
> thissize
)
3801 assemble_zeros (size
- thissize
);
3805 /* Subroutine of output_constructor, used for computing the size of
3806 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
3807 type with an unspecified upper bound. */
3809 static unsigned HOST_WIDE_INT
3810 array_size_for_constructor (tree val
)
3814 /* This code used to attempt to handle string constants that are not
3815 arrays of single-bytes, but nothing else does, so there's no point in
3817 if (TREE_CODE (val
) == STRING_CST
)
3818 return TREE_STRING_LENGTH (val
);
3820 max_index
= NULL_TREE
;
3821 for (i
= CONSTRUCTOR_ELTS (val
); i
; i
= TREE_CHAIN (i
))
3823 tree index
= TREE_PURPOSE (i
);
3825 if (TREE_CODE (index
) == RANGE_EXPR
)
3826 index
= TREE_OPERAND (index
, 1);
3827 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
3831 if (max_index
== NULL_TREE
)
3834 /* Compute the total number of array elements. */
3835 i
= size_binop (MINUS_EXPR
, convert (sizetype
, max_index
),
3837 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)))));
3838 i
= size_binop (PLUS_EXPR
, i
, convert (sizetype
, integer_one_node
));
3840 /* Multiply by the array element unit size to find number of bytes. */
3841 i
= size_binop (MULT_EXPR
, i
, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
3843 return tree_low_cst (i
, 1);
3846 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
3847 Generate at least SIZE bytes, padding if necessary. */
3850 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
,
3853 tree type
= TREE_TYPE (exp
);
3854 tree link
, field
= 0;
3856 /* Number of bytes output or skipped so far.
3857 In other words, current position within the constructor. */
3858 HOST_WIDE_INT total_bytes
= 0;
3859 /* Nonzero means BYTE contains part of a byte, to be output. */
3860 int byte_buffer_in_use
= 0;
3863 if (HOST_BITS_PER_WIDE_INT
< BITS_PER_UNIT
)
3866 if (TREE_CODE (type
) == RECORD_TYPE
)
3867 field
= TYPE_FIELDS (type
);
3869 if (TREE_CODE (type
) == ARRAY_TYPE
3870 && TYPE_DOMAIN (type
) != 0)
3871 min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (type
));
3873 /* As LINK goes through the elements of the constant,
3874 FIELD goes through the structure fields, if the constant is a structure.
3875 if the constant is a union, then we override this,
3876 by getting the field from the TREE_LIST element.
3877 But the constant could also be an array. Then FIELD is zero.
3879 There is always a maximum of one element in the chain LINK for unions
3880 (even if the initializer in a source program incorrectly contains
3882 for (link
= CONSTRUCTOR_ELTS (exp
);
3884 link
= TREE_CHAIN (link
),
3885 field
= field
? TREE_CHAIN (field
) : 0)
3887 tree val
= TREE_VALUE (link
);
3890 /* The element in a union constructor specifies the proper field
3892 if ((TREE_CODE (type
) == RECORD_TYPE
|| TREE_CODE (type
) == UNION_TYPE
3893 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
3894 && TREE_PURPOSE (link
) != 0)
3895 field
= TREE_PURPOSE (link
);
3897 else if (TREE_CODE (type
) == ARRAY_TYPE
)
3898 index
= TREE_PURPOSE (link
);
3900 #ifdef ASM_COMMENT_START
3901 if (field
&& flag_verbose_asm
)
3902 fprintf (asm_out_file
, "%s %s:\n",
3905 ? IDENTIFIER_POINTER (DECL_NAME (field
))
3909 /* Eliminate the marker that makes a cast not be an lvalue. */
3913 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
3915 unsigned HOST_WIDE_INT fieldsize
3916 = int_size_in_bytes (TREE_TYPE (type
));
3917 HOST_WIDE_INT lo_index
= tree_low_cst (TREE_OPERAND (index
, 0), 0);
3918 HOST_WIDE_INT hi_index
= tree_low_cst (TREE_OPERAND (index
, 1), 0);
3919 HOST_WIDE_INT index
;
3920 unsigned int align2
= min_align (align
, fieldsize
* BITS_PER_UNIT
);
3922 for (index
= lo_index
; index
<= hi_index
; index
++)
3924 /* Output the element's initial value. */
3926 assemble_zeros (fieldsize
);
3928 output_constant (val
, fieldsize
, align2
);
3930 /* Count its size. */
3931 total_bytes
+= fieldsize
;
3934 else if (field
== 0 || !DECL_BIT_FIELD (field
))
3936 /* An element that is not a bit-field. */
3938 unsigned HOST_WIDE_INT fieldsize
;
3939 /* Since this structure is static,
3940 we know the positions are constant. */
3941 HOST_WIDE_INT pos
= field
? int_byte_position (field
) : 0;
3942 unsigned int align2
;
3945 pos
= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val
)), 1)
3946 * (tree_low_cst (index
, 0) - tree_low_cst (min_index
, 0)));
3948 /* Output any buffered-up bit-fields preceding this element. */
3949 if (byte_buffer_in_use
)
3951 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
3953 byte_buffer_in_use
= 0;
3956 /* Advance to offset of this element.
3957 Note no alignment needed in an array, since that is guaranteed
3958 if each element has the proper size. */
3959 if ((field
!= 0 || index
!= 0) && pos
!= total_bytes
)
3961 assemble_zeros (pos
- total_bytes
);
3965 /* Find the alignment of this element. */
3966 align2
= min_align (align
, BITS_PER_UNIT
* pos
);
3968 /* Determine size this element should occupy. */
3973 /* If this is an array with an unspecified upper bound,
3974 the initializer determines the size. */
3975 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
3976 but we cannot do this until the deprecated support for
3977 initializing zero-length array members is removed. */
3978 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
3979 && TYPE_DOMAIN (TREE_TYPE (field
))
3980 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field
))))
3982 fieldsize
= array_size_for_constructor (val
);
3983 /* Given a non-empty initialization, this field had
3985 if (fieldsize
!= 0 && TREE_CHAIN (field
) != NULL_TREE
)
3988 else if (DECL_SIZE_UNIT (field
))
3990 /* ??? This can't be right. If the decl size overflows
3991 a host integer we will silently emit no data. */
3992 if (host_integerp (DECL_SIZE_UNIT (field
), 1))
3993 fieldsize
= tree_low_cst (DECL_SIZE_UNIT (field
), 1);
3997 fieldsize
= int_size_in_bytes (TREE_TYPE (type
));
3999 /* Output the element's initial value. */
4001 assemble_zeros (fieldsize
);
4003 output_constant (val
, fieldsize
, align2
);
4005 /* Count its size. */
4006 total_bytes
+= fieldsize
;
4008 else if (val
!= 0 && TREE_CODE (val
) != INTEGER_CST
)
4009 error ("invalid initial value for member %qs",
4010 IDENTIFIER_POINTER (DECL_NAME (field
)));
4013 /* Element that is a bit-field. */
4015 HOST_WIDE_INT next_offset
= int_bit_position (field
);
4016 HOST_WIDE_INT end_offset
4017 = (next_offset
+ tree_low_cst (DECL_SIZE (field
), 1));
4020 val
= integer_zero_node
;
4022 /* If this field does not start in this (or, next) byte,
4024 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4026 /* Output remnant of any bit field in previous bytes. */
4027 if (byte_buffer_in_use
)
4029 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4031 byte_buffer_in_use
= 0;
4034 /* If still not at proper byte, advance to there. */
4035 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4037 assemble_zeros (next_offset
/ BITS_PER_UNIT
- total_bytes
);
4038 total_bytes
= next_offset
/ BITS_PER_UNIT
;
4042 if (! byte_buffer_in_use
)
4045 /* We must split the element into pieces that fall within
4046 separate bytes, and combine each byte with previous or
4047 following bit-fields. */
4049 /* next_offset is the offset n fbits from the beginning of
4050 the structure to the next bit of this element to be processed.
4051 end_offset is the offset of the first bit past the end of
4053 while (next_offset
< end_offset
)
4057 HOST_WIDE_INT value
;
4058 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
4059 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
4061 /* Advance from byte to byte
4062 within this element when necessary. */
4063 while (next_byte
!= total_bytes
)
4065 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4070 /* Number of bits we can process at once
4071 (all part of the same byte). */
4072 this_time
= MIN (end_offset
- next_offset
,
4073 BITS_PER_UNIT
- next_bit
);
4074 if (BYTES_BIG_ENDIAN
)
4076 /* On big-endian machine, take the most significant bits
4077 first (of the bits that are significant)
4078 and put them into bytes from the most significant end. */
4079 shift
= end_offset
- next_offset
- this_time
;
4081 /* Don't try to take a bunch of bits that cross
4082 the word boundary in the INTEGER_CST. We can
4083 only select bits from the LOW or HIGH part
4085 if (shift
< HOST_BITS_PER_WIDE_INT
4086 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4088 this_time
= shift
+ this_time
- HOST_BITS_PER_WIDE_INT
;
4089 shift
= HOST_BITS_PER_WIDE_INT
;
4092 /* Now get the bits from the appropriate constant word. */
4093 if (shift
< HOST_BITS_PER_WIDE_INT
)
4094 value
= TREE_INT_CST_LOW (val
);
4095 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4097 value
= TREE_INT_CST_HIGH (val
);
4098 shift
-= HOST_BITS_PER_WIDE_INT
;
4103 /* Get the result. This works only when:
4104 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4105 byte
|= (((value
>> shift
)
4106 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4107 << (BITS_PER_UNIT
- this_time
- next_bit
));
4111 /* On little-endian machines,
4112 take first the least significant bits of the value
4113 and pack them starting at the least significant
4114 bits of the bytes. */
4115 shift
= next_offset
- int_bit_position (field
);
4117 /* Don't try to take a bunch of bits that cross
4118 the word boundary in the INTEGER_CST. We can
4119 only select bits from the LOW or HIGH part
4121 if (shift
< HOST_BITS_PER_WIDE_INT
4122 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4123 this_time
= (HOST_BITS_PER_WIDE_INT
- shift
);
4125 /* Now get the bits from the appropriate constant word. */
4126 if (shift
< HOST_BITS_PER_WIDE_INT
)
4127 value
= TREE_INT_CST_LOW (val
);
4128 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4130 value
= TREE_INT_CST_HIGH (val
);
4131 shift
-= HOST_BITS_PER_WIDE_INT
;
4136 /* Get the result. This works only when:
4137 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4138 byte
|= (((value
>> shift
)
4139 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4143 next_offset
+= this_time
;
4144 byte_buffer_in_use
= 1;
4149 if (byte_buffer_in_use
)
4151 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4155 if ((unsigned HOST_WIDE_INT
)total_bytes
< size
)
4156 assemble_zeros (size
- total_bytes
);
4159 /* This TREE_LIST contains any weak symbol declarations waiting
4161 static GTY(()) tree weak_decls
;
4163 /* Mark DECL as weak. */
4166 mark_weak (tree decl
)
4168 DECL_WEAK (decl
) = 1;
4170 if (DECL_RTL_SET_P (decl
)
4171 && MEM_P (DECL_RTL (decl
))
4172 && XEXP (DECL_RTL (decl
), 0)
4173 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
4174 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
4177 /* Merge weak status between NEWDECL and OLDDECL. */
4180 merge_weak (tree newdecl
, tree olddecl
)
4182 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
4185 if (DECL_WEAK (newdecl
))
4189 /* NEWDECL is weak, but OLDDECL is not. */
4191 /* If we already output the OLDDECL, we're in trouble; we can't
4192 go back and make it weak. This error cannot caught in
4193 declare_weak because the NEWDECL and OLDDECL was not yet
4194 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4195 if (TREE_ASM_WRITTEN (olddecl
))
4196 error ("%Jweak declaration of %qD must precede definition",
4199 /* If we've already generated rtl referencing OLDDECL, we may
4200 have done so in a way that will not function properly with
4202 else if (TREE_USED (olddecl
)
4203 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)))
4204 warning ("%Jweak declaration of %qD after first use results "
4205 "in unspecified behavior", newdecl
, newdecl
);
4209 /* We put the NEWDECL on the weak_decls list at some point.
4210 Replace it with the OLDDECL. */
4211 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
4212 if (TREE_VALUE (wd
) == newdecl
)
4214 TREE_VALUE (wd
) = olddecl
;
4217 /* We may not find the entry on the list. If NEWDECL is a
4218 weak alias, then we will have already called
4219 globalize_decl to remove the entry; in that case, we do
4220 not need to do anything. */
4223 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4224 mark_weak (olddecl
);
4227 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4228 weak. Just update NEWDECL to indicate that it's weak too. */
4229 mark_weak (newdecl
);
4232 /* Declare DECL to be a weak symbol. */
4235 declare_weak (tree decl
)
4237 if (! TREE_PUBLIC (decl
))
4238 error ("%Jweak declaration of %qD must be public", decl
, decl
);
4239 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
4240 error ("%Jweak declaration of %qD must precede definition", decl
, decl
);
4241 else if (SUPPORTS_WEAK
)
4243 if (! DECL_WEAK (decl
))
4244 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
4247 warning ("%Jweak declaration of %qD not supported", decl
, decl
);
4252 /* Emit any pending weak declarations. */
4259 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
4261 tree decl
= TREE_VALUE (t
);
4262 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4263 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
4266 if (! TREE_USED (decl
))
4269 #ifdef ASM_WEAKEN_DECL
4270 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
4272 #ifdef ASM_WEAKEN_LABEL
4273 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4275 #ifdef ASM_OUTPUT_WEAK_ALIAS
4276 warning ("only weak aliases are supported in this configuration");
4284 /* Emit the assembly bits to indicate that DECL is globally visible. */
4287 globalize_decl (tree decl
)
4289 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
4291 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4292 if (DECL_WEAK (decl
))
4296 #ifdef ASM_WEAKEN_DECL
4297 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
4299 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4302 /* Remove this function from the pending weak list so that
4303 we do not emit multiple .weak directives for it. */
4304 for (p
= &weak_decls
; (t
= *p
) ; )
4306 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
4307 *p
= TREE_CHAIN (t
);
4309 p
= &TREE_CHAIN (t
);
4313 #elif defined(ASM_MAKE_LABEL_LINKONCE)
4314 if (DECL_ONE_ONLY (decl
))
4315 ASM_MAKE_LABEL_LINKONCE (asm_out_file
, name
);
4318 targetm
.asm_out
.globalize_label (asm_out_file
, name
);
4321 /* Emit an assembler directive to make the symbol for DECL an alias to
4322 the symbol for TARGET. */
4325 assemble_alias (tree decl
, tree target ATTRIBUTE_UNUSED
)
4329 /* We must force creation of DECL_RTL for debug info generation, even though
4330 we don't use it here. */
4331 make_decl_rtl (decl
);
4333 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
4335 #ifdef ASM_OUTPUT_DEF
4336 /* Make name accessible from other files, if appropriate. */
4338 if (TREE_PUBLIC (decl
))
4340 globalize_decl (decl
);
4341 maybe_assemble_visibility (decl
);
4344 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4345 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
4347 ASM_OUTPUT_DEF (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4349 #else /* !ASM_OUTPUT_DEF */
4350 #if defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4351 if (DECL_WEAK (decl
))
4354 #ifdef ASM_WEAKEN_DECL
4355 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
4357 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4359 /* Remove this function from the pending weak list so that
4360 we do not emit multiple .weak directives for it. */
4361 for (p
= &weak_decls
; (t
= *p
) ; )
4362 if (DECL_ASSEMBLER_NAME (decl
)
4363 == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
4364 *p
= TREE_CHAIN (t
);
4366 p
= &TREE_CHAIN (t
);
4369 warning ("only weak aliases are supported in this configuration");
4372 warning ("alias definitions not supported in this configuration; ignored");
4376 TREE_USED (decl
) = 1;
4377 TREE_ASM_WRITTEN (decl
) = 1;
4378 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
4381 /* Emit an assembler directive to set symbol for DECL visibility to
4382 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
4385 default_assemble_visibility (tree decl
, int vis
)
4387 static const char * const visibility_types
[] = {
4388 NULL
, "internal", "hidden", "protected"
4391 const char *name
, *type
;
4393 name
= (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
4394 type
= visibility_types
[vis
];
4396 #ifdef HAVE_GAS_HIDDEN
4397 fprintf (asm_out_file
, "\t.%s\t", type
);
4398 assemble_name (asm_out_file
, name
);
4399 fprintf (asm_out_file
, "\n");
4401 warning ("visibility attribute not supported in this configuration; ignored");
4405 /* A helper function to call assemble_visibility when needed for a decl. */
4408 maybe_assemble_visibility (tree decl
)
4410 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
4412 if (vis
!= VISIBILITY_DEFAULT
)
4413 targetm
.asm_out
.visibility (decl
, vis
);
4416 /* Returns 1 if the target configuration supports defining public symbols
4417 so that one of them will be chosen at link time instead of generating a
4418 multiply-defined symbol error, whether through the use of weak symbols or
4419 a target-specific mechanism for having duplicates discarded. */
4422 supports_one_only (void)
4424 if (SUPPORTS_ONE_ONLY
)
4426 return SUPPORTS_WEAK
;
4429 /* Set up DECL as a public symbol that can be defined in multiple
4430 translation units without generating a linker error. */
4433 make_decl_one_only (tree decl
)
4435 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != FUNCTION_DECL
)
4438 TREE_PUBLIC (decl
) = 1;
4440 if (SUPPORTS_ONE_ONLY
)
4442 #ifdef MAKE_DECL_ONE_ONLY
4443 MAKE_DECL_ONE_ONLY (decl
);
4445 DECL_ONE_ONLY (decl
) = 1;
4447 else if (TREE_CODE (decl
) == VAR_DECL
4448 && (DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
))
4449 DECL_COMMON (decl
) = 1;
4450 else if (SUPPORTS_WEAK
)
4451 DECL_WEAK (decl
) = 1;
4457 init_varasm_once (void)
4459 in_named_htab
= htab_create_ggc (31, in_named_entry_hash
,
4460 in_named_entry_eq
, NULL
);
4461 const_desc_htab
= htab_create_ggc (1009, const_desc_hash
,
4462 const_desc_eq
, NULL
);
4464 const_alias_set
= new_alias_set ();
4468 decl_tls_model (tree decl
)
4470 enum tls_model kind
;
4471 tree attr
= lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl
));
4476 attr
= TREE_VALUE (TREE_VALUE (attr
));
4477 if (TREE_CODE (attr
) != STRING_CST
)
4479 if (!strcmp (TREE_STRING_POINTER (attr
), "local-exec"))
4480 kind
= TLS_MODEL_LOCAL_EXEC
;
4481 else if (!strcmp (TREE_STRING_POINTER (attr
), "initial-exec"))
4482 kind
= TLS_MODEL_INITIAL_EXEC
;
4483 else if (!strcmp (TREE_STRING_POINTER (attr
), "local-dynamic"))
4484 kind
= optimize
? TLS_MODEL_LOCAL_DYNAMIC
: TLS_MODEL_GLOBAL_DYNAMIC
;
4485 else if (!strcmp (TREE_STRING_POINTER (attr
), "global-dynamic"))
4486 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
4492 is_local
= targetm
.binds_local_p (decl
);
4496 kind
= TLS_MODEL_LOCAL_EXEC
;
4498 kind
= TLS_MODEL_INITIAL_EXEC
;
4500 /* Local dynamic is inefficient when we're not combining the
4501 parts of the address. */
4502 else if (optimize
&& is_local
)
4503 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
4505 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
4506 if (kind
< flag_tls_default
)
4507 kind
= flag_tls_default
;
4512 /* Select a set of attributes for section NAME based on the properties
4513 of DECL and whether or not RELOC indicates that DECL's initializer
4514 might contain runtime relocations.
4516 We make the section read-only and executable for a function decl,
4517 read-only for a const data decl, and writable for a non-const data decl. */
4520 default_section_type_flags (tree decl
, const char *name
, int reloc
)
4522 return default_section_type_flags_1 (decl
, name
, reloc
, flag_pic
);
4526 default_section_type_flags_1 (tree decl
, const char *name
, int reloc
,
4531 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
4532 flags
= SECTION_CODE
;
4533 else if (decl
&& decl_readonly_section_1 (decl
, reloc
, shlib
))
4535 else if (unlikely_text_section_name
4536 && strcmp (name
, unlikely_text_section_name
) == 0)
4537 flags
= SECTION_CODE
;
4539 flags
= SECTION_WRITE
;
4541 if (decl
&& DECL_ONE_ONLY (decl
))
4542 flags
|= SECTION_LINKONCE
;
4544 if (decl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
4545 flags
|= SECTION_TLS
| SECTION_WRITE
;
4547 if (strcmp (name
, ".bss") == 0
4548 || strncmp (name
, ".bss.", 5) == 0
4549 || strncmp (name
, ".gnu.linkonce.b.", 16) == 0
4550 || strcmp (name
, ".sbss") == 0
4551 || strncmp (name
, ".sbss.", 6) == 0
4552 || strncmp (name
, ".gnu.linkonce.sb.", 17) == 0
4553 || strcmp (name
, ".tbss") == 0
4554 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
4555 flags
|= SECTION_BSS
;
4557 if (strcmp (name
, ".tdata") == 0
4558 || strcmp (name
, ".tbss") == 0
4559 || strncmp (name
, ".gnu.linkonce.td.", 17) == 0
4560 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
4561 flags
|= SECTION_TLS
;
4563 /* These three sections have special ELF types. They are neither
4564 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4565 want to print a section type (@progbits or @nobits). If someone
4566 is silly enough to emit code or TLS variables to one of these
4567 sections, then don't handle them specially. */
4568 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
))
4569 && (strcmp (name
, ".init_array") == 0
4570 || strcmp (name
, ".fini_array") == 0
4571 || strcmp (name
, ".preinit_array") == 0))
4572 flags
|= SECTION_NOTYPE
;
4577 /* Output assembly to switch to section NAME with attribute FLAGS.
4578 Four variants for common object file formats. */
4581 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
4582 unsigned int flags ATTRIBUTE_UNUSED
,
4583 tree decl ATTRIBUTE_UNUSED
)
4585 /* Some object formats don't support named sections at all. The
4586 front-end should already have flagged this as an error. */
4591 default_elf_asm_named_section (const char *name
, unsigned int flags
,
4592 tree decl ATTRIBUTE_UNUSED
)
4594 char flagchars
[10], *f
= flagchars
;
4596 /* If we have already declared this section, we can use an
4597 abbreviated form to switch back to it -- unless this section is
4598 part of a COMDAT groups, in which case GAS requires the full
4599 declaration every time. */
4600 if (!(HAVE_GAS_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
4601 && ! named_section_first_declaration (name
))
4603 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
4607 if (!(flags
& SECTION_DEBUG
))
4609 if (flags
& SECTION_WRITE
)
4611 if (flags
& SECTION_CODE
)
4613 if (flags
& SECTION_SMALL
)
4615 if (flags
& SECTION_MERGE
)
4617 if (flags
& SECTION_STRINGS
)
4619 if (flags
& SECTION_TLS
)
4621 if (HAVE_GAS_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
4625 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
4627 if (!(flags
& SECTION_NOTYPE
))
4632 if (flags
& SECTION_BSS
)
4638 #ifdef ASM_COMMENT_START
4639 /* On platforms that use "@" as the assembly comment character,
4641 if (strcmp (ASM_COMMENT_START
, "@") == 0)
4644 fprintf (asm_out_file
, format
, type
);
4646 if (flags
& SECTION_ENTSIZE
)
4647 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
4648 if (HAVE_GAS_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
4649 fprintf (asm_out_file
, ",%s,comdat",
4650 lang_hooks
.decls
.comdat_group (decl
));
4653 putc ('\n', asm_out_file
);
4657 default_coff_asm_named_section (const char *name
, unsigned int flags
,
4658 tree decl ATTRIBUTE_UNUSED
)
4660 char flagchars
[8], *f
= flagchars
;
4662 if (flags
& SECTION_WRITE
)
4664 if (flags
& SECTION_CODE
)
4668 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
4672 default_pe_asm_named_section (const char *name
, unsigned int flags
,
4675 default_coff_asm_named_section (name
, flags
, decl
);
4677 if (flags
& SECTION_LINKONCE
)
4679 /* Functions may have been compiled at various levels of
4680 optimization so we can't use `same_size' here.
4681 Instead, have the linker pick one. */
4682 fprintf (asm_out_file
, "\t.linkonce %s\n",
4683 (flags
& SECTION_CODE
? "discard" : "same_size"));
4687 /* The lame default section selector. */
4690 default_select_section (tree decl
, int reloc
,
4691 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
4693 bool readonly
= false;
4697 if (decl_readonly_section (decl
, reloc
))
4700 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
4702 if (! ((flag_pic
&& reloc
)
4703 || !TREE_READONLY (decl
)
4704 || TREE_SIDE_EFFECTS (decl
)
4705 || !TREE_CONSTANT (decl
)))
4708 else if (TREE_CODE (decl
) == STRING_CST
)
4710 else if (! (flag_pic
&& reloc
))
4714 readonly_data_section ();
4719 /* A helper function for default_elf_select_section and
4720 default_elf_unique_section. Categorizes the DECL. */
4722 enum section_category
4727 SECCAT_RODATA_MERGE_STR
,
4728 SECCAT_RODATA_MERGE_STR_INIT
,
4729 SECCAT_RODATA_MERGE_CONST
,
4734 /* To optimize loading of shared programs, define following subsections
4736 _REL Contains data that has relocations, so they get grouped
4737 together and dynamic linker will visit fewer pages in memory.
4738 _RO Contains data that is otherwise read-only. This is useful
4739 with prelinking as most relocations won't be dynamically
4740 linked and thus stay read only.
4741 _LOCAL Marks data containing relocations only to local objects.
4742 These relocations will get fully resolved by prelinking. */
4744 SECCAT_DATA_REL_LOCAL
,
4746 SECCAT_DATA_REL_RO_LOCAL
,
4756 static enum section_category
4757 categorize_decl_for_section (tree
, int, int);
4759 static enum section_category
4760 categorize_decl_for_section (tree decl
, int reloc
, int shlib
)
4762 enum section_category ret
;
4764 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4766 else if (TREE_CODE (decl
) == STRING_CST
)
4768 if (flag_mudflap
) /* or !flag_merge_constants */
4769 return SECCAT_RODATA
;
4771 return SECCAT_RODATA_MERGE_STR
;
4773 else if (TREE_CODE (decl
) == VAR_DECL
)
4775 if (DECL_INITIAL (decl
) == NULL
4776 || DECL_INITIAL (decl
) == error_mark_node
4777 || (flag_zero_initialized_in_bss
4778 /* Leave constant zeroes in .rodata so they can be shared. */
4779 && !TREE_READONLY (decl
)
4780 && initializer_zerop (DECL_INITIAL (decl
))))
4782 else if (! TREE_READONLY (decl
)
4783 || TREE_SIDE_EFFECTS (decl
)
4784 || ! TREE_CONSTANT (DECL_INITIAL (decl
)))
4786 if (shlib
&& (reloc
& 2))
4787 ret
= SECCAT_DATA_REL
;
4788 else if (shlib
&& reloc
)
4789 ret
= SECCAT_DATA_REL_LOCAL
;
4793 else if (shlib
&& (reloc
& 2))
4794 ret
= SECCAT_DATA_REL_RO
;
4795 else if (shlib
&& reloc
)
4796 ret
= SECCAT_DATA_REL_RO_LOCAL
;
4797 else if (reloc
|| flag_merge_constants
< 2)
4798 /* C and C++ don't allow different variables to share the same
4799 location. -fmerge-all-constants allows even that (at the
4800 expense of not conforming). */
4801 ret
= SECCAT_RODATA
;
4802 else if (TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
4803 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
4805 ret
= SECCAT_RODATA_MERGE_CONST
;
4807 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
4809 if ((shlib
&& reloc
)
4810 || TREE_SIDE_EFFECTS (decl
)
4811 || ! TREE_CONSTANT (decl
))
4814 ret
= SECCAT_RODATA
;
4817 ret
= SECCAT_RODATA
;
4819 /* There are no read-only thread-local sections. */
4820 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
4822 /* Note that this would be *just* SECCAT_BSS, except that there's
4823 no concept of a read-only thread-local-data section. */
4824 if (ret
== SECCAT_BSS
4825 || (flag_zero_initialized_in_bss
4826 && initializer_zerop (DECL_INITIAL (decl
))))
4832 /* If the target uses small data sections, select it. */
4833 else if (targetm
.in_small_data_p (decl
))
4835 if (ret
== SECCAT_BSS
)
4837 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
4838 ret
= SECCAT_SRODATA
;
4847 decl_readonly_section (tree decl
, int reloc
)
4849 return decl_readonly_section_1 (decl
, reloc
, flag_pic
);
4853 decl_readonly_section_1 (tree decl
, int reloc
, int shlib
)
4855 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
4858 case SECCAT_RODATA_MERGE_STR
:
4859 case SECCAT_RODATA_MERGE_STR_INIT
:
4860 case SECCAT_RODATA_MERGE_CONST
:
4861 case SECCAT_SRODATA
:
4870 /* Select a section based on the above categorization. */
4873 default_elf_select_section (tree decl
, int reloc
,
4874 unsigned HOST_WIDE_INT align
)
4876 default_elf_select_section_1 (decl
, reloc
, align
, flag_pic
);
4880 default_elf_select_section_1 (tree decl
, int reloc
,
4881 unsigned HOST_WIDE_INT align
, int shlib
)
4883 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
4886 /* We're not supposed to be called on FUNCTION_DECLs. */
4889 readonly_data_section ();
4891 case SECCAT_RODATA_MERGE_STR
:
4892 mergeable_string_section (decl
, align
, 0);
4894 case SECCAT_RODATA_MERGE_STR_INIT
:
4895 mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
4897 case SECCAT_RODATA_MERGE_CONST
:
4898 mergeable_constant_section (DECL_MODE (decl
), align
, 0);
4900 case SECCAT_SRODATA
:
4901 named_section (NULL_TREE
, ".sdata2", reloc
);
4906 case SECCAT_DATA_REL
:
4907 named_section (NULL_TREE
, ".data.rel", reloc
);
4909 case SECCAT_DATA_REL_LOCAL
:
4910 named_section (NULL_TREE
, ".data.rel.local", reloc
);
4912 case SECCAT_DATA_REL_RO
:
4913 named_section (NULL_TREE
, ".data.rel.ro", reloc
);
4915 case SECCAT_DATA_REL_RO_LOCAL
:
4916 named_section (NULL_TREE
, ".data.rel.ro.local", reloc
);
4919 named_section (NULL_TREE
, ".sdata", reloc
);
4922 named_section (NULL_TREE
, ".tdata", reloc
);
4925 #ifdef BSS_SECTION_ASM_OP
4928 named_section (NULL_TREE
, ".bss", reloc
);
4932 named_section (NULL_TREE
, ".sbss", reloc
);
4935 named_section (NULL_TREE
, ".tbss", reloc
);
4942 /* Construct a unique section name based on the decl name and the
4943 categorization performed above. */
4946 default_unique_section (tree decl
, int reloc
)
4948 default_unique_section_1 (decl
, reloc
, flag_pic
);
4952 default_unique_section_1 (tree decl
, int reloc
, int shlib
)
4954 bool one_only
= DECL_ONE_ONLY (decl
);
4955 const char *prefix
, *name
;
4959 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
4962 prefix
= one_only
? ".gnu.linkonce.t." : ".text.";
4965 case SECCAT_RODATA_MERGE_STR
:
4966 case SECCAT_RODATA_MERGE_STR_INIT
:
4967 case SECCAT_RODATA_MERGE_CONST
:
4968 prefix
= one_only
? ".gnu.linkonce.r." : ".rodata.";
4970 case SECCAT_SRODATA
:
4971 prefix
= one_only
? ".gnu.linkonce.s2." : ".sdata2.";
4974 case SECCAT_DATA_REL
:
4975 case SECCAT_DATA_REL_LOCAL
:
4976 case SECCAT_DATA_REL_RO
:
4977 case SECCAT_DATA_REL_RO_LOCAL
:
4978 prefix
= one_only
? ".gnu.linkonce.d." : ".data.";
4981 prefix
= one_only
? ".gnu.linkonce.s." : ".sdata.";
4984 prefix
= one_only
? ".gnu.linkonce.b." : ".bss.";
4987 prefix
= one_only
? ".gnu.linkonce.sb." : ".sbss.";
4990 prefix
= one_only
? ".gnu.linkonce.td." : ".tdata.";
4993 prefix
= one_only
? ".gnu.linkonce.tb." : ".tbss.";
4998 plen
= strlen (prefix
);
5000 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5001 name
= targetm
.strip_name_encoding (name
);
5002 nlen
= strlen (name
);
5004 string
= alloca (nlen
+ plen
+ 1);
5005 memcpy (string
, prefix
, plen
);
5006 memcpy (string
+ plen
, name
, nlen
+ 1);
5008 DECL_SECTION_NAME (decl
) = build_string (nlen
+ plen
, string
);
5012 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
5014 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
5017 switch (GET_CODE (x
))
5029 readonly_data_section ();
5033 default_elf_select_rtx_section (enum machine_mode mode
, rtx x
,
5034 unsigned HOST_WIDE_INT align
)
5036 /* ??? Handle small data here somehow. */
5039 switch (GET_CODE (x
))
5043 named_section (NULL_TREE
, ".data.rel.ro", 3);
5047 named_section (NULL_TREE
, ".data.rel.ro.local", 1);
5054 mergeable_constant_section (mode
, align
, 0);
5057 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5060 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
5065 /* Careful not to prod global register variables. */
5068 symbol
= XEXP (rtl
, 0);
5069 if (GET_CODE (symbol
) != SYMBOL_REF
)
5073 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5074 flags
|= SYMBOL_FLAG_FUNCTION
;
5075 if (targetm
.binds_local_p (decl
))
5076 flags
|= SYMBOL_FLAG_LOCAL
;
5077 if (targetm
.in_small_data_p (decl
))
5078 flags
|= SYMBOL_FLAG_SMALL
;
5079 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
5080 flags
|= decl_tls_model (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
5081 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5082 being PUBLIC, the thing *must* be defined in this translation unit.
5083 Prevent this buglet from being propagated into rtl code as well. */
5084 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
5085 flags
|= SYMBOL_FLAG_EXTERNAL
;
5087 SYMBOL_REF_FLAGS (symbol
) = flags
;
5090 /* By default, we do nothing for encode_section_info, so we need not
5091 do anything but discard the '*' marker. */
5094 default_strip_name_encoding (const char *str
)
5096 return str
+ (*str
== '*');
5099 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5100 wrt cross-module name binding. */
5103 default_binds_local_p (tree exp
)
5105 return default_binds_local_p_1 (exp
, flag_shlib
);
5109 default_binds_local_p_1 (tree exp
, int shlib
)
5113 /* A non-decl is an entry in the constant pool. */
5116 /* Static variables are always local. */
5117 else if (! TREE_PUBLIC (exp
))
5119 /* A variable is local if the user explicitly tells us so. */
5120 else if (DECL_VISIBILITY_SPECIFIED (exp
) && DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
5122 /* Otherwise, variables defined outside this object may not be local. */
5123 else if (DECL_EXTERNAL (exp
))
5125 /* Linkonce and weak data are never local. */
5126 else if (DECL_ONE_ONLY (exp
) || DECL_WEAK (exp
))
5128 /* If none of the above and visibility is not default, make local. */
5129 else if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
5131 /* If PIC, then assume that any global name can be overridden by
5132 symbols resolved from other modules. */
5135 /* Uninitialized COMMON variable may be unified with symbols
5136 resolved from other modules. */
5137 else if (DECL_COMMON (exp
)
5138 && (DECL_INITIAL (exp
) == NULL
5139 || DECL_INITIAL (exp
) == error_mark_node
))
5141 /* Otherwise we're left with initialized (or non-common) global data
5142 which is of necessity defined locally. */
5149 /* Determine whether or not a pointer mode is valid. Assume defaults
5150 of ptr_mode or Pmode - can be overridden. */
5152 default_valid_pointer_mode (enum machine_mode mode
)
5154 return (mode
== ptr_mode
|| mode
== Pmode
);
5157 /* Default function to output code that will globalize a label. A
5158 target must define GLOBAL_ASM_OP or provide it's own function to
5159 globalize a label. */
5160 #ifdef GLOBAL_ASM_OP
5162 default_globalize_label (FILE * stream
, const char *name
)
5164 fputs (GLOBAL_ASM_OP
, stream
);
5165 assemble_name (stream
, name
);
5166 putc ('\n', stream
);
5168 #endif /* GLOBAL_ASM_OP */
5170 /* Default function to output a label for unwind information. The
5171 default is to do nothing. A target that needs nonlocal labels for
5172 unwind information must provide its own function to do this. */
5174 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
5175 tree decl ATTRIBUTE_UNUSED
,
5176 int for_eh ATTRIBUTE_UNUSED
,
5177 int empty ATTRIBUTE_UNUSED
)
5181 /* This is how to output an internal numbered label where PREFIX is
5182 the class of label and LABELNO is the number within the class. */
5185 default_internal_label (FILE *stream
, const char *prefix
,
5186 unsigned long labelno
)
5188 char *const buf
= alloca (40 + strlen (prefix
));
5189 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
5190 ASM_OUTPUT_LABEL (stream
, buf
);
5193 /* This is the default behavior at the beginning of a file. It's
5194 controlled by two other target-hook toggles. */
5196 default_file_start (void)
5198 if (targetm
.file_start_app_off
&& !flag_verbose_asm
)
5199 fputs (ASM_APP_OFF
, asm_out_file
);
5201 if (targetm
.file_start_file_directive
)
5202 output_file_directive (asm_out_file
, main_input_filename
);
5205 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5206 which emits a special section directive used to indicate whether or
5207 not this object file needs an executable stack. This is primarily
5208 a GNU extension to ELF but could be used on other targets. */
5210 int trampolines_created
;
5213 file_end_indicate_exec_stack (void)
5215 unsigned int flags
= SECTION_DEBUG
;
5216 if (trampolines_created
)
5217 flags
|= SECTION_CODE
;
5219 named_section_flags (".note.GNU-stack", flags
);
5222 #include "gt-varasm.h"