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, 2005
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to the Free
20 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
24 /* This file handles generation of all the assembler code
25 *except* the instructions of a function.
26 This includes declarations of variables and their initial values.
28 We also output the assembler code for constants stored in memory
29 and are responsible for combining constants with the same value. */
33 #include "coretypes.h"
40 #include "hard-reg-set.h"
48 #include "langhooks.h"
52 #include "tree-mudflap.h"
54 #include "cfglayout.h"
56 #ifdef XCOFF_DEBUGGING_INFO
57 #include "xcoffout.h" /* Needed for external data
58 declarations for e.g. AIX 4.x. */
61 /* The (assembler) name of the first globally-visible object output. */
62 extern GTY(()) const char *first_global_object_name
;
63 extern GTY(()) const char *weak_global_object_name
;
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. We can be passed
571 NULL_TREE under some circumstances by dbxout.c at least. */
574 function_section (tree decl
)
576 if (decl
== NULL_TREE
)
580 /* ??? Typical use of this function maybe shouldn't be looking
581 for unlikely blocks at all - in the event that an entire
582 function is going into the unlikely-execute section, that
583 should be reflected in its DECL_SECTION_NAME. */
584 rtx insns
= cfun
&& cfun
->emit
? get_insns () : 0;
585 bool unlikely
= insns
&& scan_ahead_for_unlikely_executed_note (insns
);
587 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
588 targetm
.asm_out
.select_section (decl
, unlikely
, DECL_ALIGN (decl
));
591 unlikely_text_section ();
592 else if (DECL_SECTION_NAME (decl
))
593 named_section (decl
, 0, 0);
600 /* Switch to read-only data section associated with function DECL. */
603 default_function_rodata_section (tree decl
)
605 if (decl
!= NULL_TREE
&& DECL_SECTION_NAME (decl
))
607 const char *name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
609 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
610 if (DECL_ONE_ONLY (decl
) && strncmp (name
, ".gnu.linkonce.t.", 16) == 0)
612 size_t len
= strlen (name
) + 1;
613 char *rname
= alloca (len
);
615 memcpy (rname
, name
, len
);
617 named_section_real (rname
, SECTION_LINKONCE
, decl
);
620 /* For .text.foo we want to use .rodata.foo. */
621 else if (flag_function_sections
&& flag_data_sections
622 && strncmp (name
, ".text.", 6) == 0)
624 size_t len
= strlen (name
) + 1;
625 char *rname
= alloca (len
+ 2);
627 memcpy (rname
, ".rodata", 7);
628 memcpy (rname
+ 7, name
+ 5, len
- 5);
629 named_section_flags (rname
, 0);
634 readonly_data_section ();
637 /* Switch to read-only data section associated with function DECL
638 for targets where that section should be always the single
639 readonly data section. */
642 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED
)
644 readonly_data_section ();
647 /* Switch to section for variable DECL. RELOC is the same as the
648 argument to SELECT_SECTION. */
651 variable_section (tree decl
, int reloc
)
653 if (IN_NAMED_SECTION (decl
))
654 named_section (decl
, NULL
, reloc
);
656 targetm
.asm_out
.select_section (decl
, reloc
, DECL_ALIGN (decl
));
659 /* Tell assembler to switch to the section for string merging. */
662 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
663 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
664 unsigned int flags ATTRIBUTE_UNUSED
)
666 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
667 && TREE_CODE (decl
) == STRING_CST
668 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
670 && TREE_STRING_LENGTH (decl
) >= int_size_in_bytes (TREE_TYPE (decl
)))
672 enum machine_mode mode
;
673 unsigned int modesize
;
678 mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
679 modesize
= GET_MODE_BITSIZE (mode
);
680 if (modesize
>= 8 && modesize
<= 256
681 && (modesize
& (modesize
- 1)) == 0)
683 if (align
< modesize
)
686 str
= TREE_STRING_POINTER (decl
);
687 len
= TREE_STRING_LENGTH (decl
);
688 unit
= GET_MODE_SIZE (mode
);
690 /* Check for embedded NUL characters. */
691 for (i
= 0; i
< len
; i
+= unit
)
693 for (j
= 0; j
< unit
; j
++)
694 if (str
[i
+ j
] != '\0')
701 sprintf (name
, ".rodata.str%d.%d", modesize
/ 8,
703 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
704 if (!i
&& modesize
< align
)
706 /* A "" string with requested alignment greater than
707 character size might cause a problem:
708 if some other string required even bigger
709 alignment than "", then linker might think the
710 "" is just part of padding after some other string
711 and not put it into the hash table initially.
712 But this means "" could have smaller alignment
714 #ifdef ASM_OUTPUT_SECTION_START
715 named_section_flags (name
, flags
);
716 ASM_OUTPUT_SECTION_START (asm_out_file
);
718 readonly_data_section ();
723 named_section_flags (name
, flags
);
729 readonly_data_section ();
732 /* Tell assembler to switch to the section for constant merging. */
735 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
736 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
737 unsigned int flags ATTRIBUTE_UNUSED
)
739 unsigned int modesize
= GET_MODE_BITSIZE (mode
);
741 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
747 && (align
& (align
- 1)) == 0)
751 sprintf (name
, ".rodata.cst%d", (int) (align
/ 8));
752 flags
|= (align
/ 8) | SECTION_MERGE
;
753 named_section_flags (name
, flags
);
757 readonly_data_section ();
760 /* Given NAME, a putative register name, discard any customary prefixes. */
763 strip_reg_name (const char *name
)
765 #ifdef REGISTER_PREFIX
766 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
767 name
+= strlen (REGISTER_PREFIX
);
769 if (name
[0] == '%' || name
[0] == '#')
774 /* The user has asked for a DECL to have a particular name. Set (or
775 change) it in such a way that we don't prefix an underscore to
778 set_user_assembler_name (tree decl
, const char *name
)
780 char *starred
= alloca (strlen (name
) + 2);
782 strcpy (starred
+ 1, name
);
783 change_decl_assembler_name (decl
, get_identifier (starred
));
784 SET_DECL_RTL (decl
, NULL_RTX
);
787 /* Decode an `asm' spec for a declaration as a register name.
788 Return the register number, or -1 if nothing specified,
789 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
790 or -3 if ASMSPEC is `cc' and is not recognized,
791 or -4 if ASMSPEC is `memory' and is not recognized.
792 Accept an exact spelling or a decimal number.
793 Prefixes such as % are optional. */
796 decode_reg_name (const char *asmspec
)
802 /* Get rid of confusing prefixes. */
803 asmspec
= strip_reg_name (asmspec
);
805 /* Allow a decimal number as a "register name". */
806 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
807 if (! ISDIGIT (asmspec
[i
]))
809 if (asmspec
[0] != 0 && i
< 0)
812 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
818 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
820 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
823 #ifdef ADDITIONAL_REGISTER_NAMES
825 static const struct { const char *const name
; const int number
; } table
[]
826 = ADDITIONAL_REGISTER_NAMES
;
828 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
829 if (! strcmp (asmspec
, table
[i
].name
))
830 return table
[i
].number
;
832 #endif /* ADDITIONAL_REGISTER_NAMES */
834 if (!strcmp (asmspec
, "memory"))
837 if (!strcmp (asmspec
, "cc"))
846 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
847 have static storage duration. In other words, it should not be an
848 automatic variable, including PARM_DECLs.
850 There is, however, one exception: this function handles variables
851 explicitly placed in a particular register by the user.
853 This is never called for PARM_DECL nodes. */
856 make_decl_rtl (tree decl
)
858 const char *name
= 0;
862 /* Check that we are not being given an automatic variable. */
863 /* A weak alias has TREE_PUBLIC set but not the other bits. */
864 if (TREE_CODE (decl
) == PARM_DECL
865 || TREE_CODE (decl
) == RESULT_DECL
866 || (TREE_CODE (decl
) == VAR_DECL
867 && !TREE_STATIC (decl
)
868 && !TREE_PUBLIC (decl
)
869 && !DECL_EXTERNAL (decl
)
870 && !DECL_REGISTER (decl
)))
872 /* And that we were not given a type or a label. */
873 else if (TREE_CODE (decl
) == TYPE_DECL
874 || TREE_CODE (decl
) == LABEL_DECL
)
877 /* For a duplicate declaration, we can be called twice on the
878 same DECL node. Don't discard the RTL already made. */
879 if (DECL_RTL_SET_P (decl
))
881 /* If the old RTL had the wrong mode, fix the mode. */
882 if (GET_MODE (DECL_RTL (decl
)) != DECL_MODE (decl
))
883 SET_DECL_RTL (decl
, adjust_address_nv (DECL_RTL (decl
),
884 DECL_MODE (decl
), 0));
886 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
889 /* ??? Another way to do this would be to maintain a hashed
890 table of such critters. Instead of adding stuff to a DECL
891 to give certain attributes to it, we could use an external
892 hash map from DECL to set of attributes. */
894 /* Let the target reassign the RTL if it wants.
895 This is necessary, for example, when one machine specific
896 decl attribute overrides another. */
897 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
899 /* Make this function static known to the mudflap runtime. */
900 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
901 mudflap_enqueue_decl (decl
);
906 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
908 if (name
[0] != '*' && TREE_CODE (decl
) != FUNCTION_DECL
909 && DECL_REGISTER (decl
))
911 error ("%Jregister name not specified for %qD", decl
, decl
);
913 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
915 const char *asmspec
= name
+1;
916 reg_number
= decode_reg_name (asmspec
);
917 /* First detect errors in declaring global registers. */
918 if (reg_number
== -1)
919 error ("%Jregister name not specified for %qD", decl
, decl
);
920 else if (reg_number
< 0)
921 error ("%Jinvalid register name for %qD", decl
, decl
);
922 else if (TYPE_MODE (TREE_TYPE (decl
)) == BLKmode
)
923 error ("%Jdata type of %qD isn%'t suitable for a register",
925 else if (! HARD_REGNO_MODE_OK (reg_number
, TYPE_MODE (TREE_TYPE (decl
))))
926 error ("%Jregister specified for %qD isn%'t suitable for data type",
928 /* Now handle properly declared static register variables. */
933 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
935 DECL_INITIAL (decl
) = 0;
936 error ("global register variable has initial value");
938 if (TREE_THIS_VOLATILE (decl
))
939 warning ("volatile register variables don%'t "
940 "work as you might wish");
942 /* If the user specified one of the eliminables registers here,
943 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
944 confused with that register and be eliminated. This usage is
945 somewhat suspect... */
947 SET_DECL_RTL (decl
, gen_rtx_raw_REG (DECL_MODE (decl
), reg_number
));
948 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
949 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
951 if (TREE_STATIC (decl
))
953 /* Make this register global, so not usable for anything
955 #ifdef ASM_DECLARE_REGISTER_GLOBAL
956 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
957 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
959 nregs
= hard_regno_nregs
[reg_number
][DECL_MODE (decl
)];
961 globalize_reg (reg_number
+ --nregs
);
964 /* As a register variable, it has no section. */
968 /* Now handle ordinary static variables and functions (in memory).
969 Also handle vars declared register invalidly. */
970 else if (name
[0] == '*')
972 #ifdef REGISTER_PREFIX
973 if (strlen (REGISTER_PREFIX
) != 0)
975 reg_number
= decode_reg_name (name
);
976 if (reg_number
>= 0 || reg_number
== -3)
977 error ("%Jregister name given for non-register variable %qD", decl
, decl
);
982 /* Specifying a section attribute on a variable forces it into a
983 non-.bss section, and thus it cannot be common. */
984 if (TREE_CODE (decl
) == VAR_DECL
985 && DECL_SECTION_NAME (decl
) != NULL_TREE
986 && DECL_INITIAL (decl
) == NULL_TREE
987 && DECL_COMMON (decl
))
988 DECL_COMMON (decl
) = 0;
990 /* Variables can't be both common and weak. */
991 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_WEAK (decl
))
992 DECL_COMMON (decl
) = 0;
994 x
= gen_rtx_SYMBOL_REF (Pmode
, name
);
995 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
996 SYMBOL_REF_DECL (x
) = decl
;
998 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
999 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1000 set_mem_attributes (x
, decl
, 1);
1001 SET_DECL_RTL (decl
, x
);
1003 /* Optionally set flags or add text to the name to record information
1004 such as that it is a function name.
1005 If the name is changed, the macro ASM_OUTPUT_LABELREF
1006 will have to know how to strip this information. */
1007 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
1009 /* Make this function static known to the mudflap runtime. */
1010 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
1011 mudflap_enqueue_decl (decl
);
1014 /* Make the rtl for variable VAR be volatile.
1015 Use this only for static variables. */
1018 make_var_volatile (tree var
)
1020 if (!MEM_P (DECL_RTL (var
)))
1023 MEM_VOLATILE_P (DECL_RTL (var
)) = 1;
1026 /* Output a string of literal assembler code
1027 for an `asm' keyword used between functions. */
1030 assemble_asm (tree string
)
1034 if (TREE_CODE (string
) == ADDR_EXPR
)
1035 string
= TREE_OPERAND (string
, 0);
1037 fprintf (asm_out_file
, "\t%s\n", TREE_STRING_POINTER (string
));
1040 /* Record an element in the table of global destructors. SYMBOL is
1041 a SYMBOL_REF of the function to be called; PRIORITY is a number
1042 between 0 and MAX_INIT_PRIORITY. */
1045 default_stabs_asm_out_destructor (rtx symbol ATTRIBUTE_UNUSED
,
1046 int priority ATTRIBUTE_UNUSED
)
1048 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1049 /* Tell GNU LD that this is part of the static destructor set.
1050 This will work for any system that uses stabs, most usefully
1052 dbxout_begin_simple_stabs ("___DTOR_LIST__", 22 /* N_SETT */);
1053 dbxout_stab_value_label (XSTR (symbol
, 0));
1055 sorry ("global destructors not supported on this target");
1060 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1062 const char *section
= ".dtors";
1065 /* ??? This only works reliably with the GNU linker. */
1066 if (priority
!= DEFAULT_INIT_PRIORITY
)
1068 sprintf (buf
, ".dtors.%.5u",
1069 /* Invert the numbering so the linker puts us in the proper
1070 order; constructors are run from right to left, and the
1071 linker sorts in increasing order. */
1072 MAX_INIT_PRIORITY
- priority
);
1076 named_section_flags (section
, SECTION_WRITE
);
1077 assemble_align (POINTER_SIZE
);
1078 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1081 #ifdef DTORS_SECTION_ASM_OP
1083 dtors_section (void)
1085 if (in_section
!= in_dtors
)
1087 in_section
= in_dtors
;
1088 fputs (DTORS_SECTION_ASM_OP
, asm_out_file
);
1089 fputc ('\n', asm_out_file
);
1094 default_dtor_section_asm_out_destructor (rtx symbol
,
1095 int priority ATTRIBUTE_UNUSED
)
1098 assemble_align (POINTER_SIZE
);
1099 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1103 /* Likewise for global constructors. */
1106 default_stabs_asm_out_constructor (rtx symbol ATTRIBUTE_UNUSED
,
1107 int priority ATTRIBUTE_UNUSED
)
1109 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
1110 /* Tell GNU LD that this is part of the static destructor set.
1111 This will work for any system that uses stabs, most usefully
1113 dbxout_begin_simple_stabs ("___CTOR_LIST__", 22 /* N_SETT */);
1114 dbxout_stab_value_label (XSTR (symbol
, 0));
1116 sorry ("global constructors not supported on this target");
1121 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1123 const char *section
= ".ctors";
1126 /* ??? This only works reliably with the GNU linker. */
1127 if (priority
!= DEFAULT_INIT_PRIORITY
)
1129 sprintf (buf
, ".ctors.%.5u",
1130 /* Invert the numbering so the linker puts us in the proper
1131 order; constructors are run from right to left, and the
1132 linker sorts in increasing order. */
1133 MAX_INIT_PRIORITY
- priority
);
1137 named_section_flags (section
, SECTION_WRITE
);
1138 assemble_align (POINTER_SIZE
);
1139 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1142 #ifdef CTORS_SECTION_ASM_OP
1144 ctors_section (void)
1146 if (in_section
!= in_ctors
)
1148 in_section
= in_ctors
;
1149 fputs (CTORS_SECTION_ASM_OP
, asm_out_file
);
1150 fputc ('\n', asm_out_file
);
1155 default_ctor_section_asm_out_constructor (rtx symbol
,
1156 int priority ATTRIBUTE_UNUSED
)
1159 assemble_align (POINTER_SIZE
);
1160 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1164 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1165 a nonzero value if the constant pool should be output before the
1166 start of the function, or a zero value if the pool should output
1167 after the end of the function. The default is to put it before the
1170 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1171 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1174 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1175 to be output to assembler.
1176 Set first_global_object_name and weak_global_object_name as appropriate. */
1179 notice_global_symbol (tree decl
)
1181 const char **type
= &first_global_object_name
;
1183 if (first_global_object_name
1184 || !TREE_PUBLIC (decl
) || DECL_EXTERNAL (decl
)
1185 || !DECL_NAME (decl
)
1186 || (TREE_CODE (decl
) != FUNCTION_DECL
1187 && (TREE_CODE (decl
) != VAR_DECL
1188 || (DECL_COMMON (decl
)
1189 && (DECL_INITIAL (decl
) == 0
1190 || DECL_INITIAL (decl
) == error_mark_node
))))
1191 || !MEM_P (DECL_RTL (decl
)))
1194 /* We win when global object is found, but it is useful to know about weak
1195 symbol as well so we can produce nicer unique names. */
1196 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
))
1197 type
= &weak_global_object_name
;
1203 rtx decl_rtl
= DECL_RTL (decl
);
1205 p
= targetm
.strip_name_encoding (XSTR (XEXP (decl_rtl
, 0), 0));
1206 name
= ggc_strdup (p
);
1212 /* Output assembler code for the constant pool of a function and associated
1213 with defining the name of the function. DECL describes the function.
1214 NAME is the function's name. For the constant pool, we use the current
1215 constant pool data. */
1218 assemble_start_function (tree decl
, const char *fnname
)
1222 if (unlikely_text_section_name
)
1223 free (unlikely_text_section_name
);
1225 unlikely_section_label_printed
= false;
1226 unlikely_text_section_name
= NULL
;
1228 unlikely_section_label
= reconcat (unlikely_section_label
,
1229 fnname
, ".unlikely_section", NULL
);
1231 /* The following code does not need preprocessing in the assembler. */
1235 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1236 output_constant_pool (fnname
, decl
);
1238 /* Make sure the cold text (code) section is properly aligned. This
1239 is necessary here in the case where the function has both hot and
1240 cold sections, because we don't want to re-set the alignment when the
1241 section switch happens mid-function. We don't need to set the hot
1242 section alignment here, because code further down in this function
1243 sets the alignment for whichever section comes first, and if there
1244 is a hot section it is guaranteed to be first. */
1246 if (flag_reorder_blocks_and_partition
)
1248 unlikely_text_section ();
1249 assemble_align (FUNCTION_BOUNDARY
);
1252 resolve_unique_section (decl
, 0, flag_function_sections
);
1253 function_section (decl
);
1255 /* Tell assembler to move to target machine's alignment for functions. */
1256 align
= floor_log2 (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
1257 if (align
< force_align_functions_log
)
1258 align
= force_align_functions_log
;
1261 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1264 /* Handle a user-specified function alignment.
1265 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1266 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1267 if (align_functions_log
> align
1268 && cfun
->function_frequency
!= FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
)
1270 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1271 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1272 align_functions_log
, align_functions
- 1);
1274 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
1278 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1279 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1282 (*debug_hooks
->begin_function
) (decl
);
1284 /* Make function name accessible from other files, if appropriate. */
1286 if (TREE_PUBLIC (decl
))
1288 notice_global_symbol (decl
);
1290 globalize_decl (decl
);
1292 maybe_assemble_visibility (decl
);
1295 if (DECL_PRESERVE_P (decl
))
1296 targetm
.asm_out
.mark_decl_preserved (fnname
);
1298 /* Do any machine/system dependent processing of the function name. */
1299 #ifdef ASM_DECLARE_FUNCTION_NAME
1300 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1302 /* Standard thing is just output label for the function. */
1303 ASM_OUTPUT_LABEL (asm_out_file
, fnname
);
1304 #endif /* ASM_DECLARE_FUNCTION_NAME */
1306 if (in_unlikely_text_section ()
1307 && !unlikely_section_label_printed
)
1309 ASM_OUTPUT_LABEL (asm_out_file
, unlikely_section_label
);
1310 unlikely_section_label_printed
= true;
1314 /* Output assembler code associated with defining the size of the
1315 function. DECL describes the function. NAME is the function's name. */
1318 assemble_end_function (tree decl
, const char *fnname
)
1320 #ifdef ASM_DECLARE_FUNCTION_SIZE
1321 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1323 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1325 output_constant_pool (fnname
, decl
);
1326 function_section (decl
); /* need to switch back */
1330 /* Assemble code to leave SIZE bytes of zeros. */
1333 assemble_zeros (unsigned HOST_WIDE_INT size
)
1335 /* Do no output if -fsyntax-only. */
1336 if (flag_syntax_only
)
1339 #ifdef ASM_NO_SKIP_IN_TEXT
1340 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1341 so we must output 0s explicitly in the text section. */
1342 if ((ASM_NO_SKIP_IN_TEXT
&& in_text_section ())
1343 || (ASM_NO_SKIP_IN_TEXT
&& in_unlikely_text_section ()))
1345 unsigned HOST_WIDE_INT i
;
1346 for (i
= 0; i
< size
; i
++)
1347 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
1352 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1355 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1358 assemble_align (int align
)
1360 if (align
> BITS_PER_UNIT
)
1362 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1366 /* Assemble a string constant with the specified C string as contents. */
1369 assemble_string (const char *p
, int size
)
1374 /* If the string is very long, split it up. */
1378 int thissize
= size
- pos
;
1379 if (thissize
> maximum
)
1382 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1390 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1391 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1392 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1394 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1395 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1396 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1398 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1399 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1403 #if defined ASM_OUTPUT_ALIGNED_BSS
1404 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1405 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1407 #if defined ASM_OUTPUT_BSS
1408 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1409 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1415 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1416 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1417 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1419 #if defined ASM_OUTPUT_ALIGNED_COMMON
1420 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1421 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1423 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1424 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1429 asm_emit_uninitialised (tree decl
, const char *name
,
1430 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1431 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1439 destination
= asm_dest_local
;
1441 /* ??? We should handle .bss via select_section mechanisms rather than
1442 via special target hooks. That would eliminate this special case. */
1443 if (TREE_PUBLIC (decl
))
1445 if (!DECL_COMMON (decl
))
1447 destination
= asm_dest_bss
;
1452 destination
= asm_dest_common
;
1455 if (destination
!= asm_dest_common
)
1457 resolve_unique_section (decl
, 0, flag_data_sections
);
1458 /* Custom sections don't belong here. */
1459 if (DECL_SECTION_NAME (decl
))
1463 if (destination
== asm_dest_bss
)
1464 globalize_decl (decl
);
1466 if (flag_shared_data
)
1468 switch (destination
)
1470 #ifdef ASM_OUTPUT_SHARED_BSS
1472 ASM_OUTPUT_SHARED_BSS (asm_out_file
, decl
, name
, size
, rounded
);
1475 #ifdef ASM_OUTPUT_SHARED_COMMON
1476 case asm_dest_common
:
1477 ASM_OUTPUT_SHARED_COMMON (asm_out_file
, name
, size
, rounded
);
1480 #ifdef ASM_OUTPUT_SHARED_LOCAL
1481 case asm_dest_local
:
1482 ASM_OUTPUT_SHARED_LOCAL (asm_out_file
, name
, size
, rounded
);
1490 switch (destination
)
1494 ASM_EMIT_BSS (decl
, name
, size
, rounded
);
1497 case asm_dest_common
:
1498 ASM_EMIT_COMMON (decl
, name
, size
, rounded
);
1500 case asm_dest_local
:
1501 ASM_EMIT_LOCAL (decl
, name
, size
, rounded
);
1510 /* Assemble everything that is needed for a variable or function declaration.
1511 Not used for automatic variables, and not used for function definitions.
1512 Should not be called for variables of incomplete structure type.
1514 TOP_LEVEL is nonzero if this variable has file scope.
1515 AT_END is nonzero if this is the special handling, at end of compilation,
1516 to define things that have had only tentative definitions.
1517 DONT_OUTPUT_DATA if nonzero means don't actually output the
1518 initial value (that will be done by the caller). */
1521 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
1522 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
1529 if (lang_hooks
.decls
.prepare_assemble_variable
)
1530 lang_hooks
.decls
.prepare_assemble_variable (decl
);
1532 last_assemble_variable_decl
= 0;
1534 /* Normally no need to say anything here for external references,
1535 since assemble_external is called by the language-specific code
1536 when a declaration is first seen. */
1538 if (DECL_EXTERNAL (decl
))
1541 /* Output no assembler code for a function declaration.
1542 Only definitions of functions output anything. */
1544 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1547 /* Do nothing for global register variables. */
1548 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
1550 TREE_ASM_WRITTEN (decl
) = 1;
1554 /* If type was incomplete when the variable was declared,
1555 see if it is complete now. */
1557 if (DECL_SIZE (decl
) == 0)
1558 layout_decl (decl
, 0);
1560 /* Still incomplete => don't allocate it; treat the tentative defn
1561 (which is what it must have been) as an `extern' reference. */
1563 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
1565 error ("%Jstorage size of %qD isn%'t known", decl
, decl
);
1566 TREE_ASM_WRITTEN (decl
) = 1;
1570 /* The first declaration of a variable that comes through this function
1571 decides whether it is global (in C, has external linkage)
1572 or local (in C, has internal linkage). So do nothing more
1573 if this function has already run. */
1575 if (TREE_ASM_WRITTEN (decl
))
1578 /* Make sure targetm.encode_section_info is invoked before we set
1580 decl_rtl
= DECL_RTL (decl
);
1582 TREE_ASM_WRITTEN (decl
) = 1;
1584 /* Do no output if -fsyntax-only. */
1585 if (flag_syntax_only
)
1590 if (! dont_output_data
1591 && ! host_integerp (DECL_SIZE_UNIT (decl
), 1))
1593 error ("%Jsize of variable %qD is too large", decl
, decl
);
1597 name
= XSTR (XEXP (decl_rtl
, 0), 0);
1598 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1599 notice_global_symbol (decl
);
1601 /* Compute the alignment of this data. */
1603 align
= DECL_ALIGN (decl
);
1605 /* In the case for initialing an array whose length isn't specified,
1606 where we have not yet been able to do the layout,
1607 figure out the proper alignment now. */
1608 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1609 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1610 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1612 /* Some object file formats have a maximum alignment which they support.
1613 In particular, a.out format supports a maximum alignment of 4. */
1614 if (align
> MAX_OFILE_ALIGNMENT
)
1616 warning ("%Jalignment of %qD is greater than maximum object "
1617 "file alignment. Using %d", decl
, decl
,
1618 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
1619 align
= MAX_OFILE_ALIGNMENT
;
1622 /* On some machines, it is good to increase alignment sometimes. */
1623 if (! DECL_USER_ALIGN (decl
))
1625 #ifdef DATA_ALIGNMENT
1626 align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1628 #ifdef CONSTANT_ALIGNMENT
1629 if (DECL_INITIAL (decl
) != 0 && DECL_INITIAL (decl
) != error_mark_node
)
1630 align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1634 /* Reset the alignment in case we have made it tighter, so we can benefit
1635 from it in get_pointer_alignment. */
1636 DECL_ALIGN (decl
) = align
;
1637 set_mem_align (decl_rtl
, align
);
1639 if (TREE_PUBLIC (decl
))
1640 maybe_assemble_visibility (decl
);
1642 if (DECL_PRESERVE_P (decl
))
1643 targetm
.asm_out
.mark_decl_preserved (name
);
1645 /* Handle uninitialized definitions. */
1647 /* If the decl has been given an explicit section name, then it
1648 isn't common, and shouldn't be handled as such. */
1649 if (DECL_SECTION_NAME (decl
) || dont_output_data
)
1651 /* We don't implement common thread-local data at present. */
1652 else if (DECL_THREAD_LOCAL (decl
))
1654 if (DECL_COMMON (decl
))
1655 sorry ("thread-local COMMON data not implemented");
1657 else if (DECL_INITIAL (decl
) == 0
1658 || DECL_INITIAL (decl
) == error_mark_node
1659 || (flag_zero_initialized_in_bss
1660 /* Leave constant zeroes in .rodata so they can be shared. */
1661 && !TREE_READONLY (decl
)
1662 && initializer_zerop (DECL_INITIAL (decl
))))
1664 unsigned HOST_WIDE_INT size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
1665 unsigned HOST_WIDE_INT rounded
= size
;
1667 /* Don't allocate zero bytes of common,
1668 since that means "undefined external" in the linker. */
1672 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1673 so that each uninitialized object starts on such a boundary. */
1674 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1675 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1676 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1678 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1679 if ((unsigned HOST_WIDE_INT
) DECL_ALIGN_UNIT (decl
) > rounded
)
1680 warning ("%Jrequested alignment for %qD is greater than "
1681 "implemented alignment of %d", decl
, decl
, rounded
);
1684 /* If the target cannot output uninitialized but not common global data
1685 in .bss, then we have to use .data, so fall through. */
1686 if (asm_emit_uninitialised (decl
, name
, size
, rounded
))
1690 /* Handle initialized definitions.
1691 Also handle uninitialized global definitions if -fno-common and the
1692 target doesn't support ASM_OUTPUT_BSS. */
1694 /* First make the assembler name(s) global if appropriate. */
1695 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1696 globalize_decl (decl
);
1698 /* Output any data that we will need to use the address of. */
1699 if (DECL_INITIAL (decl
) == error_mark_node
)
1700 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1701 else if (DECL_INITIAL (decl
))
1703 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1704 output_addressed_constants (DECL_INITIAL (decl
));
1707 /* Switch to the appropriate section. */
1708 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1709 variable_section (decl
, reloc
);
1711 /* dbxout.c needs to know this. */
1712 if (in_text_section () || in_unlikely_text_section ())
1713 DECL_IN_TEXT_SECTION (decl
) = 1;
1715 /* Output the alignment of this data. */
1716 if (align
> BITS_PER_UNIT
)
1717 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (DECL_ALIGN_UNIT (decl
)));
1719 /* Do any machine/system dependent processing of the object. */
1720 #ifdef ASM_DECLARE_OBJECT_NAME
1721 last_assemble_variable_decl
= decl
;
1722 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1724 /* Standard thing is just output label for the object. */
1725 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1726 #endif /* ASM_DECLARE_OBJECT_NAME */
1728 if (!dont_output_data
)
1730 if (DECL_INITIAL (decl
)
1731 && DECL_INITIAL (decl
) != error_mark_node
1732 && !initializer_zerop (DECL_INITIAL (decl
)))
1733 /* Output the actual data. */
1734 output_constant (DECL_INITIAL (decl
),
1735 tree_low_cst (DECL_SIZE_UNIT (decl
), 1),
1738 /* Leave space for it. */
1739 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl
), 1));
1743 /* Return 1 if type TYPE contains any pointers. */
1746 contains_pointers_p (tree type
)
1748 switch (TREE_CODE (type
))
1751 case REFERENCE_TYPE
:
1752 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1753 so I'll play safe and return 1. */
1759 case QUAL_UNION_TYPE
:
1762 /* For a type that has fields, see if the fields have pointers. */
1763 for (fields
= TYPE_FIELDS (type
); fields
; fields
= TREE_CHAIN (fields
))
1764 if (TREE_CODE (fields
) == FIELD_DECL
1765 && contains_pointers_p (TREE_TYPE (fields
)))
1771 /* An array type contains pointers if its element type does. */
1772 return contains_pointers_p (TREE_TYPE (type
));
1779 /* In unit-at-a-time mode, we delay assemble_external processing until
1780 the compilation unit is finalized. This is the best we can do for
1781 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
1782 it all the way to final. See PR 17982 for further discussion. */
1783 static GTY(()) tree pending_assemble_externals
;
1785 #ifdef ASM_OUTPUT_EXTERNAL
1786 /* True if DECL is a function decl for which no out-of-line copy exists.
1787 It is assumed that DECL's assembler name has been set. */
1790 incorporeal_function_p (tree decl
)
1792 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
1796 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
1797 && DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA
)
1800 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
1801 if (strncmp (name
, "__builtin_", strlen ("__builtin_")) == 0)
1807 /* Actually do the tests to determine if this is necessary, and invoke
1808 ASM_OUTPUT_EXTERNAL. */
1810 assemble_external_real (tree decl
)
1812 rtx rtl
= DECL_RTL (decl
);
1814 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
1815 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
1816 && !incorporeal_function_p (decl
))
1818 /* Some systems do require some output. */
1819 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
1820 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
1826 process_pending_assemble_externals (void)
1828 #ifdef ASM_OUTPUT_EXTERNAL
1830 for (list
= pending_assemble_externals
; list
; list
= TREE_CHAIN (list
))
1831 assemble_external_real (TREE_VALUE (list
));
1833 pending_assemble_externals
= 0;
1837 /* Output something to declare an external symbol to the assembler.
1838 (Most assemblers don't need this, so we normally output nothing.)
1839 Do nothing if DECL is not external. */
1842 assemble_external (tree decl ATTRIBUTE_UNUSED
)
1844 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1845 main body of this code is only rarely exercised. To provide some
1846 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1847 open. If it's not, we should not be calling this function. */
1848 gcc_assert (asm_out_file
);
1850 #ifdef ASM_OUTPUT_EXTERNAL
1851 if (!DECL_P (decl
) || !DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
))
1854 if (flag_unit_at_a_time
)
1855 pending_assemble_externals
= tree_cons (0, decl
,
1856 pending_assemble_externals
);
1858 assemble_external_real (decl
);
1862 /* Similar, for calling a library function FUN. */
1865 assemble_external_libcall (rtx fun
)
1867 /* Declare library function name external when first used, if nec. */
1868 if (! SYMBOL_REF_USED (fun
))
1870 SYMBOL_REF_USED (fun
) = 1;
1871 targetm
.asm_out
.external_libcall (fun
);
1875 /* Assemble a label named NAME. */
1878 assemble_label (const char *name
)
1880 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1883 /* Set the symbol_referenced flag for ID. */
1885 mark_referenced (tree id
)
1887 TREE_SYMBOL_REFERENCED (id
) = 1;
1890 /* Set the symbol_referenced flag for DECL and notify callgraph. */
1892 mark_decl_referenced (tree decl
)
1894 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1896 /* Extern inline functions don't become needed when referenced.
1897 If we know a method will be emitted in other TU and no new
1898 functions can be marked reachable, just use the external
1900 struct cgraph_node
*node
= cgraph_node (decl
);
1901 if (!DECL_EXTERNAL (decl
)
1902 && (!node
->local
.vtable_method
|| !cgraph_global_info_ready
1903 || !node
->local
.finalized
))
1904 cgraph_mark_needed_node (node
);
1906 else if (TREE_CODE (decl
) == VAR_DECL
)
1907 cgraph_varpool_mark_needed_node (cgraph_varpool_node (decl
));
1908 /* else do nothing - we can get various sorts of CST nodes here,
1909 which do not need to be marked. */
1912 /* Output to FILE (an assembly file) a reference to NAME. If NAME
1913 starts with a *, the rest of NAME is output verbatim. Otherwise
1914 NAME is transformed in a target-specific way (usually by the
1915 addition of an underscore). */
1918 assemble_name_raw (FILE *file
, const char *name
)
1921 fputs (&name
[1], file
);
1923 ASM_OUTPUT_LABELREF (file
, name
);
1926 /* Like assemble_name_raw, but should be used when NAME might refer to
1927 an entity that is also represented as a tree (like a function or
1928 variable). If NAME does refer to such an entity, that entity will
1929 be marked as referenced. */
1932 assemble_name (FILE *file
, const char *name
)
1934 const char *real_name
;
1937 real_name
= targetm
.strip_name_encoding (name
);
1939 id
= maybe_get_identifier (real_name
);
1941 mark_referenced (id
);
1943 assemble_name_raw (file
, name
);
1946 /* Allocate SIZE bytes writable static space with a gensym name
1947 and return an RTX to refer to its address. */
1950 assemble_static_space (unsigned HOST_WIDE_INT size
)
1953 const char *namestring
;
1957 if (flag_shared_data
)
1961 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
1963 namestring
= ggc_strdup (name
);
1965 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
1966 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
1968 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1969 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
1972 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1973 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
1976 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1977 so that each uninitialized object starts on such a boundary. */
1978 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1979 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
1980 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
1981 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1982 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1983 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1990 /* Assemble the static constant template for function entry trampolines.
1991 This is done at most once per compilation.
1992 Returns an RTX for the address of the template. */
1994 static GTY(()) rtx initial_trampoline
;
1996 #ifdef TRAMPOLINE_TEMPLATE
1998 assemble_trampoline_template (void)
2005 if (initial_trampoline
)
2006 return initial_trampoline
;
2008 /* By default, put trampoline templates in read-only data section. */
2010 #ifdef TRAMPOLINE_SECTION
2011 TRAMPOLINE_SECTION ();
2013 readonly_data_section ();
2016 /* Write the assembler code to define one. */
2017 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
2020 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
2023 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
2024 TRAMPOLINE_TEMPLATE (asm_out_file
);
2026 /* Record the rtl to refer to it. */
2027 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
2028 name
= ggc_strdup (label
);
2029 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
2030 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2032 initial_trampoline
= gen_rtx_MEM (BLKmode
, symbol
);
2033 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
2035 return initial_trampoline
;
2039 /* A and B are either alignments or offsets. Return the minimum alignment
2040 that may be assumed after adding the two together. */
2042 static inline unsigned
2043 min_align (unsigned int a
, unsigned int b
)
2045 return (a
| b
) & -(a
| b
);
2048 /* Return the assembler directive for creating a given kind of integer
2049 object. SIZE is the number of bytes in the object and ALIGNED_P
2050 indicates whether it is known to be aligned. Return NULL if the
2051 assembly dialect has no such directive.
2053 The returned string should be printed at the start of a new line and
2054 be followed immediately by the object's initial value. */
2057 integer_asm_op (int size
, int aligned_p
)
2059 struct asm_int_op
*ops
;
2062 ops
= &targetm
.asm_out
.aligned_op
;
2064 ops
= &targetm
.asm_out
.unaligned_op
;
2069 return targetm
.asm_out
.byte_op
;
2083 /* Use directive OP to assemble an integer object X. Print OP at the
2084 start of the line, followed immediately by the value of X. */
2087 assemble_integer_with_op (const char *op
, rtx x
)
2089 fputs (op
, asm_out_file
);
2090 output_addr_const (asm_out_file
, x
);
2091 fputc ('\n', asm_out_file
);
2094 /* The default implementation of the asm_out.integer target hook. */
2097 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2098 unsigned int size ATTRIBUTE_UNUSED
,
2099 int aligned_p ATTRIBUTE_UNUSED
)
2101 const char *op
= integer_asm_op (size
, aligned_p
);
2102 /* Avoid GAS bugs for large values. Specifically negative values whose
2103 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2104 if (size
> UNITS_PER_WORD
&& size
> POINTER_SIZE
/ BITS_PER_UNIT
)
2106 return op
&& (assemble_integer_with_op (op
, x
), true);
2109 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2110 the alignment of the integer in bits. Return 1 if we were able to output
2111 the constant, otherwise 0. If FORCE is nonzero, abort if we can't output
2115 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2119 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2121 /* See if the target hook can handle this kind of object. */
2122 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2125 /* If the object is a multi-byte one, try splitting it up. Split
2126 it into words it if is multi-word, otherwise split it into bytes. */
2129 enum machine_mode omode
, imode
;
2130 unsigned int subalign
;
2131 unsigned int subsize
, i
;
2133 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2134 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2135 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, MODE_INT
, 0);
2136 imode
= mode_for_size (size
* BITS_PER_UNIT
, MODE_INT
, 0);
2138 for (i
= 0; i
< size
; i
+= subsize
)
2140 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2141 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2147 /* If we've printed some of it, but not all of it, there's no going
2160 assemble_real (REAL_VALUE_TYPE d
, enum machine_mode mode
, unsigned int align
)
2164 int bitsize
, nelts
, nunits
, units_per
;
2166 /* This is hairy. We have a quantity of known size. real_to_target
2167 will put it into an array of *host* longs, 32 bits per element
2168 (even if long is more than 32 bits). We need to determine the
2169 number of array elements that are occupied (nelts) and the number
2170 of *target* min-addressable units that will be occupied in the
2171 object file (nunits). We cannot assume that 32 divides the
2172 mode's bitsize (size * BITS_PER_UNIT) evenly.
2174 size * BITS_PER_UNIT is used here to make sure that padding bits
2175 (which might appear at either end of the value; real_to_target
2176 will include the padding bits in its output array) are included. */
2178 nunits
= GET_MODE_SIZE (mode
);
2179 bitsize
= nunits
* BITS_PER_UNIT
;
2180 nelts
= CEIL (bitsize
, 32);
2181 units_per
= 32 / BITS_PER_UNIT
;
2183 real_to_target (data
, &d
, mode
);
2185 /* Put out the first word with the specified alignment. */
2186 assemble_integer (GEN_INT (data
[0]), MIN (nunits
, units_per
), align
, 1);
2187 nunits
-= units_per
;
2189 /* Subsequent words need only 32-bit alignment. */
2190 align
= min_align (align
, 32);
2192 for (i
= 1; i
< nelts
; i
++)
2194 assemble_integer (GEN_INT (data
[i
]), MIN (nunits
, units_per
), align
, 1);
2195 nunits
-= units_per
;
2199 /* Given an expression EXP with a constant value,
2200 reduce it to the sum of an assembler symbol and an integer.
2201 Store them both in the structure *VALUE.
2202 Abort if EXP does not reduce. */
2204 struct addr_const
GTY(())
2207 HOST_WIDE_INT offset
;
2211 decode_addr_const (tree exp
, struct addr_const
*value
)
2213 tree target
= TREE_OPERAND (exp
, 0);
2219 if (TREE_CODE (target
) == COMPONENT_REF
2220 && host_integerp (byte_position (TREE_OPERAND (target
, 1)), 0))
2223 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2224 target
= TREE_OPERAND (target
, 0);
2226 else if (TREE_CODE (target
) == ARRAY_REF
2227 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
2229 offset
+= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target
)), 1)
2230 * tree_low_cst (TREE_OPERAND (target
, 1), 0));
2231 target
= TREE_OPERAND (target
, 0);
2237 switch (TREE_CODE (target
))
2241 x
= DECL_RTL (target
);
2245 x
= gen_rtx_MEM (FUNCTION_MODE
,
2246 gen_rtx_LABEL_REF (VOIDmode
, force_label_rtx (target
)));
2254 x
= output_constant_def (target
, 1);
2266 value
->offset
= offset
;
2269 /* Uniquize all constants that appear in memory.
2270 Each constant in memory thus far output is recorded
2271 in `const_desc_table'. */
2273 struct constant_descriptor_tree
GTY(())
2275 /* A MEM for the constant. */
2278 /* The value of the constant. */
2281 /* Hash of value. Computing the hash from value each time
2282 hashfn is called can't work properly, as that means recursive
2283 use of the hash table during hash table expansion. */
2287 static GTY((param_is (struct constant_descriptor_tree
)))
2288 htab_t const_desc_htab
;
2290 static struct constant_descriptor_tree
* build_constant_desc (tree
);
2291 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
2293 /* Compute a hash code for a constant expression. */
2296 const_desc_hash (const void *ptr
)
2298 return ((struct constant_descriptor_tree
*)ptr
)->hash
;
2302 const_hash_1 (const tree exp
)
2307 enum tree_code code
= TREE_CODE (exp
);
2309 /* Either set P and LEN to the address and len of something to hash and
2310 exit the switch or return a value. */
2315 p
= (char *) &TREE_INT_CST (exp
);
2316 len
= sizeof TREE_INT_CST (exp
);
2320 return real_hash (TREE_REAL_CST_PTR (exp
));
2323 p
= TREE_STRING_POINTER (exp
);
2324 len
= TREE_STRING_LENGTH (exp
);
2328 return (const_hash_1 (TREE_REALPART (exp
)) * 5
2329 + const_hash_1 (TREE_IMAGPART (exp
)));
2335 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
2337 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2338 if (TREE_VALUE (link
))
2339 hi
= hi
* 603 + const_hash_1 (TREE_VALUE (link
));
2347 struct addr_const value
;
2349 decode_addr_const (exp
, &value
);
2350 if (GET_CODE (value
.base
) == SYMBOL_REF
)
2352 /* Don't hash the address of the SYMBOL_REF;
2353 only use the offset and the symbol name. */
2355 p
= XSTR (value
.base
, 0);
2356 for (i
= 0; p
[i
] != 0; i
++)
2357 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2359 else if (GET_CODE (value
.base
) == LABEL_REF
)
2360 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2368 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
2369 + const_hash_1 (TREE_OPERAND (exp
, 1)));
2373 case NON_LVALUE_EXPR
:
2374 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
2377 /* A language specific constant. Just hash the code. */
2381 /* Compute hashing function. */
2383 for (i
= 0; i
< len
; i
++)
2384 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2389 /* Wrapper of compare_constant, for the htab interface. */
2391 const_desc_eq (const void *p1
, const void *p2
)
2393 const struct constant_descriptor_tree
*c1
= p1
;
2394 const struct constant_descriptor_tree
*c2
= p2
;
2395 if (c1
->hash
!= c2
->hash
)
2397 return compare_constant (c1
->value
, c2
->value
);
2400 /* Compare t1 and t2, and return 1 only if they are known to result in
2401 the same bit pattern on output. */
2404 compare_constant (const tree t1
, const tree t2
)
2406 enum tree_code typecode
;
2408 if (t1
== NULL_TREE
)
2409 return t2
== NULL_TREE
;
2410 if (t2
== NULL_TREE
)
2413 if (TREE_CODE (t1
) != TREE_CODE (t2
))
2416 switch (TREE_CODE (t1
))
2419 /* Integer constants are the same only if the same width of type. */
2420 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2422 return tree_int_cst_equal (t1
, t2
);
2425 /* Real constants are the same only if the same width of type. */
2426 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2429 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
2432 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2435 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
2436 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
2437 TREE_STRING_LENGTH (t1
)));
2440 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
2441 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
2447 typecode
= TREE_CODE (TREE_TYPE (t1
));
2448 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
2451 if (typecode
== ARRAY_TYPE
)
2453 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
2454 /* For arrays, check that the sizes all match. */
2455 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
2457 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
)))
2462 /* For record and union constructors, require exact type
2464 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
2468 for (l1
= CONSTRUCTOR_ELTS (t1
), l2
= CONSTRUCTOR_ELTS (t2
);
2470 l1
= TREE_CHAIN (l1
), l2
= TREE_CHAIN (l2
))
2472 /* Check that each value is the same... */
2473 if (! compare_constant (TREE_VALUE (l1
), TREE_VALUE (l2
)))
2475 /* ... and that they apply to the same fields! */
2476 if (typecode
== ARRAY_TYPE
)
2478 if (! compare_constant (TREE_PURPOSE (l1
),
2484 if (TREE_PURPOSE (l1
) != TREE_PURPOSE (l2
))
2489 return l1
== NULL_TREE
&& l2
== NULL_TREE
;
2495 struct addr_const value1
, value2
;
2497 decode_addr_const (t1
, &value1
);
2498 decode_addr_const (t2
, &value2
);
2499 return (value1
.offset
== value2
.offset
2500 && strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
2506 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
2507 && compare_constant(TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
2511 case NON_LVALUE_EXPR
:
2512 case VIEW_CONVERT_EXPR
:
2513 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
2518 nt1
= lang_hooks
.expand_constant (t1
);
2519 nt2
= lang_hooks
.expand_constant (t2
);
2520 if (nt1
!= t1
|| nt2
!= t2
)
2521 return compare_constant (nt1
, nt2
);
2527 /* Should not get here. */
2531 /* Make a copy of the whole tree structure for a constant. This
2532 handles the same types of nodes that compare_constant handles. */
2535 copy_constant (tree exp
)
2537 switch (TREE_CODE (exp
))
2540 /* For ADDR_EXPR, we do not want to copy the decl whose address
2541 is requested. We do want to copy constants though. */
2542 if (CONSTANT_CLASS_P (TREE_OPERAND (exp
, 0)))
2543 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2544 copy_constant (TREE_OPERAND (exp
, 0)));
2546 return copy_node (exp
);
2551 return copy_node (exp
);
2554 return build_complex (TREE_TYPE (exp
),
2555 copy_constant (TREE_REALPART (exp
)),
2556 copy_constant (TREE_IMAGPART (exp
)));
2560 return build2 (TREE_CODE (exp
), TREE_TYPE (exp
),
2561 copy_constant (TREE_OPERAND (exp
, 0)),
2562 copy_constant (TREE_OPERAND (exp
, 1)));
2566 case NON_LVALUE_EXPR
:
2567 case VIEW_CONVERT_EXPR
:
2568 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2569 copy_constant (TREE_OPERAND (exp
, 0)));
2573 tree copy
= copy_node (exp
);
2574 tree list
= copy_list (CONSTRUCTOR_ELTS (exp
));
2577 CONSTRUCTOR_ELTS (copy
) = list
;
2578 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
2579 TREE_VALUE (tail
) = copy_constant (TREE_VALUE (tail
));
2587 t
= lang_hooks
.expand_constant (exp
);
2589 return copy_constant (t
);
2596 /* Subroutine of output_constant_def:
2597 No constant equal to EXP is known to have been output.
2598 Make a constant descriptor to enter EXP in the hash table.
2599 Assign the label number and construct RTL to refer to the
2600 constant's location in memory.
2601 Caller is responsible for updating the hash table. */
2603 static struct constant_descriptor_tree
*
2604 build_constant_desc (tree exp
)
2610 struct constant_descriptor_tree
*desc
;
2612 desc
= ggc_alloc (sizeof (*desc
));
2613 desc
->value
= copy_constant (exp
);
2615 /* Propagate marked-ness to copied constant. */
2616 if (flag_mudflap
&& mf_marked_p (exp
))
2617 mf_mark (desc
->value
);
2619 /* Create a string containing the label name, in LABEL. */
2620 labelno
= const_labelno
++;
2621 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
2623 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2624 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
2625 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2626 SYMBOL_REF_DECL (symbol
) = desc
->value
;
2627 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
2629 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
2630 set_mem_attributes (rtl
, exp
, 1);
2631 set_mem_alias_set (rtl
, 0);
2632 set_mem_alias_set (rtl
, const_alias_set
);
2634 /* Set flags or add text to the name to record information, such as
2635 that it is a local symbol. If the name is changed, the macro
2636 ASM_OUTPUT_LABELREF will have to know how to strip this
2637 information. This call might invalidate our local variable
2638 SYMBOL; we can't use it afterward. */
2640 targetm
.encode_section_info (exp
, rtl
, true);
2647 /* Return an rtx representing a reference to constant data in memory
2648 for the constant expression EXP.
2650 If assembler code for such a constant has already been output,
2651 return an rtx to refer to it.
2652 Otherwise, output such a constant in memory
2653 and generate an rtx for it.
2655 If DEFER is nonzero, this constant can be deferred and output only
2656 if referenced in the function after all optimizations.
2658 `const_desc_table' records which constants already have label strings. */
2661 output_constant_def (tree exp
, int defer
)
2663 struct constant_descriptor_tree
*desc
;
2664 struct constant_descriptor_tree key
;
2667 /* Look up EXP in the table of constant descriptors. If we didn't find
2668 it, create a new one. */
2670 key
.hash
= const_hash_1 (exp
);
2671 loc
= htab_find_slot_with_hash (const_desc_htab
, &key
, key
.hash
, INSERT
);
2676 desc
= build_constant_desc (exp
);
2677 desc
->hash
= key
.hash
;
2681 maybe_output_constant_def_contents (desc
, defer
);
2685 /* Subroutine of output_constant_def: Decide whether or not we need to
2686 output the constant DESC now, and if so, do it. */
2688 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
2691 rtx symbol
= XEXP (desc
->rtl
, 0);
2692 tree exp
= desc
->value
;
2694 if (flag_syntax_only
)
2697 if (TREE_ASM_WRITTEN (exp
))
2698 /* Already output; don't do it again. */
2701 /* We can always defer constants as long as the context allows
2705 /* Increment n_deferred_constants if it exists. It needs to be at
2706 least as large as the number of constants actually referred to
2707 by the function. If it's too small we'll stop looking too early
2708 and fail to emit constants; if it's too large we'll only look
2709 through the entire function when we could have stopped earlier. */
2711 n_deferred_constants
++;
2715 output_constant_def_contents (symbol
);
2718 /* We must output the constant data referred to by SYMBOL; do so. */
2721 output_constant_def_contents (rtx symbol
)
2723 tree exp
= SYMBOL_REF_DECL (symbol
);
2724 const char *label
= XSTR (symbol
, 0);
2727 /* Make sure any other constants whose addresses appear in EXP
2728 are assigned label numbers. */
2729 int reloc
= compute_reloc_for_constant (exp
);
2731 /* Align the location counter as required by EXP's data type. */
2732 unsigned int align
= TYPE_ALIGN (TREE_TYPE (exp
));
2733 #ifdef CONSTANT_ALIGNMENT
2734 align
= CONSTANT_ALIGNMENT (exp
, align
);
2737 output_addressed_constants (exp
);
2739 /* We are no longer deferring this constant. */
2740 TREE_ASM_WRITTEN (exp
) = 1;
2742 if (IN_NAMED_SECTION (exp
))
2743 named_section (exp
, NULL
, reloc
);
2745 targetm
.asm_out
.select_section (exp
, reloc
, align
);
2747 if (align
> BITS_PER_UNIT
)
2749 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2752 size
= int_size_in_bytes (TREE_TYPE (exp
));
2753 if (TREE_CODE (exp
) == STRING_CST
)
2754 size
= MAX (TREE_STRING_LENGTH (exp
), size
);
2756 /* Do any machine/system dependent processing of the constant. */
2757 #ifdef ASM_DECLARE_CONSTANT_NAME
2758 ASM_DECLARE_CONSTANT_NAME (asm_out_file
, label
, exp
, size
);
2760 /* Standard thing is just output label for the constant. */
2761 ASM_OUTPUT_LABEL (asm_out_file
, label
);
2762 #endif /* ASM_DECLARE_CONSTANT_NAME */
2764 /* Output the value of EXP. */
2765 output_constant (exp
, size
, align
);
2767 mudflap_enqueue_constant (exp
);
2770 /* Look up EXP in the table of constant descriptors. Return the rtl
2771 if it has been emitted, else null. */
2774 lookup_constant_def (tree exp
)
2776 struct constant_descriptor_tree
*desc
;
2777 struct constant_descriptor_tree key
;
2780 key
.hash
= const_hash_1 (exp
);
2781 desc
= htab_find_with_hash (const_desc_htab
, &key
, key
.hash
);
2783 return (desc
? desc
->rtl
: NULL_RTX
);
2786 /* Used in the hash tables to avoid outputting the same constant
2787 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2788 are output once per function, not once per file. */
2789 /* ??? Only a few targets need per-function constant pools. Most
2790 can use one per-file pool. Should add a targetm bit to tell the
2793 struct rtx_constant_pool
GTY(())
2795 /* Pointers to first and last constant in pool, as ordered by offset. */
2796 struct constant_descriptor_rtx
*first
;
2797 struct constant_descriptor_rtx
*last
;
2799 /* Hash facility for making memory-constants from constant rtl-expressions.
2800 It is used on RISC machines where immediate integer arguments and
2801 constant addresses are restricted so that such constants must be stored
2803 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_htab
;
2804 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_sym_htab
;
2806 /* Current offset in constant pool (does not include any
2807 machine-specific header). */
2808 HOST_WIDE_INT offset
;
2811 struct constant_descriptor_rtx
GTY((chain_next ("%h.next")))
2813 struct constant_descriptor_rtx
*next
;
2817 HOST_WIDE_INT offset
;
2819 enum machine_mode mode
;
2825 /* Hash and compare functions for const_rtx_htab. */
2828 const_desc_rtx_hash (const void *ptr
)
2830 const struct constant_descriptor_rtx
*desc
= ptr
;
2835 const_desc_rtx_eq (const void *a
, const void *b
)
2837 const struct constant_descriptor_rtx
*x
= a
;
2838 const struct constant_descriptor_rtx
*y
= b
;
2840 if (x
->mode
!= y
->mode
)
2842 return rtx_equal_p (x
->constant
, y
->constant
);
2845 /* Hash and compare functions for const_rtx_sym_htab. */
2848 const_desc_rtx_sym_hash (const void *ptr
)
2850 const struct constant_descriptor_rtx
*desc
= ptr
;
2851 return htab_hash_string (XSTR (desc
->sym
, 0));
2855 const_desc_rtx_sym_eq (const void *a
, const void *b
)
2857 const struct constant_descriptor_rtx
*x
= a
;
2858 const struct constant_descriptor_rtx
*y
= b
;
2859 return XSTR (x
->sym
, 0) == XSTR (y
->sym
, 0);
2862 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
2865 const_rtx_hash_1 (rtx
*xp
, void *data
)
2867 unsigned HOST_WIDE_INT hwi
;
2868 enum machine_mode mode
;
2874 code
= GET_CODE (x
);
2875 mode
= GET_MODE (x
);
2876 h
= (hashval_t
) code
* 1048573 + mode
;
2884 const int shift
= sizeof (hashval_t
) * CHAR_BIT
;
2885 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
2888 h
^= (hashval_t
) hwi
;
2889 for (i
= 1; i
< n
; ++i
)
2892 h
^= (hashval_t
) hwi
;
2898 if (mode
== VOIDmode
)
2900 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
2904 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
2910 for (i
= XVECLEN (x
, 0); i
-- > 0; )
2911 h
= h
* 251 + const_rtx_hash_1 (&XVECEXP (x
, 0, i
), data
);
2916 h
^= htab_hash_string (XSTR (x
, 0));
2920 h
= h
* 251 + CODE_LABEL_NUMBER (XEXP (x
, 0));
2924 case UNSPEC_VOLATILE
:
2925 h
= h
* 251 + XINT (x
, 1);
2933 *hp
= *hp
* 509 + h
;
2937 /* Compute a hash value for X, which should be a constant. */
2940 const_rtx_hash (rtx x
)
2943 for_each_rtx (&x
, const_rtx_hash_1
, &h
);
2948 /* Initialize constant pool hashing for a new function. */
2951 init_varasm_status (struct function
*f
)
2953 struct varasm_status
*p
;
2954 struct rtx_constant_pool
*pool
;
2956 p
= ggc_alloc (sizeof (struct varasm_status
));
2959 pool
= ggc_alloc (sizeof (struct rtx_constant_pool
));
2961 p
->deferred_constants
= 0;
2963 pool
->const_rtx_htab
= htab_create_ggc (31, const_desc_rtx_hash
,
2964 const_desc_rtx_eq
, NULL
);
2965 pool
->const_rtx_sym_htab
= htab_create_ggc (31, const_desc_rtx_sym_hash
,
2966 const_desc_rtx_sym_eq
, NULL
);
2967 pool
->first
= pool
->last
= NULL
;
2971 /* Given a MINUS expression, simplify it if both sides
2972 include the same symbol. */
2975 simplify_subtraction (rtx x
)
2977 rtx r
= simplify_rtx (x
);
2981 /* Given a constant rtx X, make (or find) a memory constant for its value
2982 and return a MEM rtx to refer to it in memory. */
2985 force_const_mem (enum machine_mode mode
, rtx x
)
2987 struct constant_descriptor_rtx
*desc
, tmp
;
2988 struct rtx_constant_pool
*pool
= cfun
->varasm
->pool
;
2995 /* If we're not allowed to drop X into the constant pool, don't. */
2996 if (targetm
.cannot_force_const_mem (x
))
2999 /* Lookup the value in the hashtable. */
3002 hash
= const_rtx_hash (x
);
3003 slot
= htab_find_slot_with_hash (pool
->const_rtx_htab
, &tmp
, hash
, INSERT
);
3006 /* If the constant was already present, return its memory. */
3008 return copy_rtx (desc
->mem
);
3010 /* Otherwise, create a new descriptor. */
3011 desc
= ggc_alloc (sizeof (*desc
));
3014 /* Align the location counter as required by EXP's data type. */
3015 align
= GET_MODE_ALIGNMENT (mode
== VOIDmode
? word_mode
: mode
);
3016 #ifdef CONSTANT_ALIGNMENT
3018 tree type
= lang_hooks
.types
.type_for_mode (mode
, 0);
3019 if (type
!= NULL_TREE
)
3020 align
= CONSTANT_ALIGNMENT (make_tree (type
, x
), align
);
3024 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
3025 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
3028 desc
->constant
= tmp
.constant
;
3029 desc
->offset
= pool
->offset
;
3032 desc
->align
= align
;
3033 desc
->labelno
= const_labelno
;
3036 pool
->offset
+= GET_MODE_SIZE (mode
);
3038 pool
->last
->next
= desc
;
3040 pool
->first
= pool
->last
= desc
;
3043 /* Create a string containing the label name, in LABEL. */
3044 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3047 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3048 the constants pool. */
3049 desc
->sym
= symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3050 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
3051 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3052 current_function_uses_const_pool
= 1;
3054 /* Insert the descriptor into the symbol cross-reference table too. */
3055 slot
= htab_find_slot (pool
->const_rtx_sym_htab
, desc
, INSERT
);
3060 /* Construct the MEM. */
3061 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
3062 set_mem_attributes (def
, lang_hooks
.types
.type_for_mode (mode
, 0), 1);
3063 set_mem_align (def
, align
);
3065 /* If we're dropping a label to the constant pool, make sure we
3067 if (GET_CODE (x
) == LABEL_REF
)
3068 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
3070 return copy_rtx (def
);
3073 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3074 the corresponding constant_descriptor_rtx structure. */
3076 static struct constant_descriptor_rtx
*
3077 find_pool_constant (struct rtx_constant_pool
*pool
, rtx sym
)
3079 struct constant_descriptor_rtx tmp
;
3081 return htab_find (pool
->const_rtx_sym_htab
, &tmp
);
3084 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3087 get_pool_constant (rtx addr
)
3089 return find_pool_constant (cfun
->varasm
->pool
, addr
)->constant
;
3092 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3093 and whether it has been output or not. */
3096 get_pool_constant_mark (rtx addr
, bool *pmarked
)
3098 struct constant_descriptor_rtx
*desc
;
3100 desc
= find_pool_constant (cfun
->varasm
->pool
, addr
);
3101 *pmarked
= (desc
->mark
!= 0);
3102 return desc
->constant
;
3105 /* Likewise, but for the constant pool of a specific function. */
3108 get_pool_constant_for_function (struct function
*f
, rtx addr
)
3110 return find_pool_constant (f
->varasm
->pool
, addr
)->constant
;
3113 /* Similar, return the mode. */
3116 get_pool_mode (rtx addr
)
3118 return find_pool_constant (cfun
->varasm
->pool
, addr
)->mode
;
3121 /* Return the size of the constant pool. */
3124 get_pool_size (void)
3126 return cfun
->varasm
->pool
->offset
;
3129 /* Worker function for output_constant_pool_1. Emit assembly for X
3130 in MODE with known alignment ALIGN. */
3133 output_constant_pool_2 (enum machine_mode mode
, rtx x
, unsigned int align
)
3135 switch (GET_MODE_CLASS (mode
))
3138 if (GET_CODE (x
) != CONST_DOUBLE
)
3143 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
3144 assemble_real (r
, mode
, align
);
3149 case MODE_PARTIAL_INT
:
3150 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
3153 case MODE_VECTOR_FLOAT
:
3154 case MODE_VECTOR_INT
:
3157 enum machine_mode submode
= GET_MODE_INNER (mode
);
3158 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
3160 if (GET_CODE (x
) != CONST_VECTOR
)
3162 units
= CONST_VECTOR_NUNITS (x
);
3164 for (i
= 0; i
< units
; i
++)
3166 rtx elt
= CONST_VECTOR_ELT (x
, i
);
3167 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
3177 /* Worker function for output_constant_pool. Emit POOL. */
3180 output_constant_pool_1 (struct constant_descriptor_rtx
*desc
)
3188 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3189 whose CODE_LABEL has been deleted. This can occur if a jump table
3190 is eliminated by optimization. If so, write a constant of zero
3191 instead. Note that this can also happen by turning the
3192 CODE_LABEL into a NOTE. */
3193 /* ??? This seems completely and utterly wrong. Certainly it's
3194 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3195 functioning even with INSN_DELETED_P and friends. */
3198 switch (GET_CODE (x
))
3201 if (GET_CODE (XEXP (x
, 0)) != PLUS
3202 || GET_CODE (XEXP (XEXP (x
, 0), 0)) != LABEL_REF
)
3204 tmp
= XEXP (XEXP (x
, 0), 0);
3209 if (INSN_DELETED_P (tmp
)
3211 && NOTE_LINE_NUMBER (tmp
) == NOTE_INSN_DELETED
))
3222 /* First switch to correct section. */
3223 targetm
.asm_out
.select_rtx_section (desc
->mode
, x
, desc
->align
);
3225 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3226 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
3227 desc
->align
, desc
->labelno
, done
);
3230 assemble_align (desc
->align
);
3232 /* Output the label. */
3233 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
3235 /* Output the data. */
3236 output_constant_pool_2 (desc
->mode
, x
, desc
->align
);
3238 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3239 sections have proper size. */
3240 if (desc
->align
> GET_MODE_BITSIZE (desc
->mode
)
3241 && in_section
== in_named
3242 && get_named_section_flags (in_named_name
) & SECTION_MERGE
)
3243 assemble_align (desc
->align
);
3245 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3251 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3252 to as used. Emit referenced deferred strings. This function can
3253 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3256 mark_constant (rtx
*current_rtx
, void *data
)
3258 struct rtx_constant_pool
*pool
= data
;
3259 rtx x
= *current_rtx
;
3261 if (x
== NULL_RTX
|| GET_CODE (x
) != SYMBOL_REF
)
3264 if (CONSTANT_POOL_ADDRESS_P (x
))
3266 struct constant_descriptor_rtx
*desc
= find_pool_constant (pool
, x
);
3267 if (desc
->mark
== 0)
3270 for_each_rtx (&desc
->constant
, mark_constant
, pool
);
3273 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
3275 tree exp
= SYMBOL_REF_DECL (x
);
3276 if (!TREE_ASM_WRITTEN (exp
))
3278 n_deferred_constants
--;
3279 output_constant_def_contents (x
);
3286 /* Look through appropriate parts of INSN, marking all entries in the
3287 constant pool which are actually being used. Entries that are only
3288 referenced by other constants are also marked as used. Emit
3289 deferred strings that are used. */
3292 mark_constants (struct rtx_constant_pool
*pool
, rtx insn
)
3297 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3298 insns, not any notes that may be attached. We don't want to mark
3299 a constant just because it happens to appear in a REG_EQUIV note. */
3300 if (GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3302 rtx seq
= PATTERN (insn
);
3303 int i
, n
= XVECLEN (seq
, 0);
3304 for (i
= 0; i
< n
; ++i
)
3306 rtx subinsn
= XVECEXP (seq
, 0, i
);
3307 if (INSN_P (subinsn
))
3308 for_each_rtx (&PATTERN (subinsn
), mark_constant
, pool
);
3312 for_each_rtx (&PATTERN (insn
), mark_constant
, pool
);
3315 /* Look through the instructions for this function, and mark all the
3316 entries in POOL which are actually being used. Emit deferred constants
3317 which have indeed been used. */
3320 mark_constant_pool (struct rtx_constant_pool
*pool
)
3324 if (pool
->first
== 0 && n_deferred_constants
== 0)
3327 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3328 mark_constants (pool
, insn
);
3330 for (link
= current_function_epilogue_delay_list
;
3332 link
= XEXP (link
, 1))
3333 mark_constants (pool
, XEXP (link
, 0));
3336 /* Write all the constants in the constant pool. */
3339 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
3340 tree fndecl ATTRIBUTE_UNUSED
)
3342 struct rtx_constant_pool
*pool
= cfun
->varasm
->pool
;
3343 struct constant_descriptor_rtx
*desc
;
3345 /* It is possible for gcc to call force_const_mem and then to later
3346 discard the instructions which refer to the constant. In such a
3347 case we do not need to output the constant. */
3348 mark_constant_pool (pool
);
3350 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3351 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3354 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
3355 output_constant_pool_1 (desc
);
3357 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3358 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3362 /* Determine what kind of relocations EXP may need. */
3365 compute_reloc_for_constant (tree exp
)
3367 int reloc
= 0, reloc2
;
3370 /* Give the front-end a chance to convert VALUE to something that
3371 looks more like a constant to the back-end. */
3372 exp
= lang_hooks
.expand_constant (exp
);
3374 switch (TREE_CODE (exp
))
3378 /* Go inside any operations that get_inner_reference can handle and see
3379 if what's inside is a constant: no need to do anything here for
3380 addresses of variables or functions. */
3381 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
3382 tem
= TREE_OPERAND (tem
, 0))
3385 if (TREE_PUBLIC (tem
))
3392 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3393 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
3397 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3398 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
3399 /* The difference of two local labels is computable at link time. */
3400 if (reloc
== 1 && reloc2
== 1)
3408 case NON_LVALUE_EXPR
:
3409 case VIEW_CONVERT_EXPR
:
3410 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3414 for (tem
= CONSTRUCTOR_ELTS (exp
); tem
; tem
= TREE_CHAIN (tem
))
3415 if (TREE_VALUE (tem
) != 0)
3416 reloc
|= compute_reloc_for_constant (TREE_VALUE (tem
));
3426 /* Find all the constants whose addresses are referenced inside of EXP,
3427 and make sure assembler code with a label has been output for each one.
3428 Indicate whether an ADDR_EXPR has been encountered. */
3431 output_addressed_constants (tree exp
)
3435 /* Give the front-end a chance to convert VALUE to something that
3436 looks more like a constant to the back-end. */
3437 exp
= lang_hooks
.expand_constant (exp
);
3439 switch (TREE_CODE (exp
))
3443 /* Go inside any operations that get_inner_reference can handle and see
3444 if what's inside is a constant: no need to do anything here for
3445 addresses of variables or functions. */
3446 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
3447 tem
= TREE_OPERAND (tem
, 0))
3450 /* If we have an initialized CONST_DECL, retrieve the initializer. */
3451 if (TREE_CODE (tem
) == CONST_DECL
&& DECL_INITIAL (tem
))
3452 tem
= DECL_INITIAL (tem
);
3454 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
3455 output_constant_def (tem
, 0);
3460 output_addressed_constants (TREE_OPERAND (exp
, 1));
3465 case NON_LVALUE_EXPR
:
3466 case VIEW_CONVERT_EXPR
:
3467 output_addressed_constants (TREE_OPERAND (exp
, 0));
3471 for (tem
= CONSTRUCTOR_ELTS (exp
); tem
; tem
= TREE_CHAIN (tem
))
3472 if (TREE_VALUE (tem
) != 0)
3473 output_addressed_constants (TREE_VALUE (tem
));
3482 /* Return nonzero if VALUE is a valid constant-valued expression
3483 for use in initializing a static variable; one that can be an
3484 element of a "constant" initializer.
3486 Return null_pointer_node if the value is absolute;
3487 if it is relocatable, return the variable that determines the relocation.
3488 We assume that VALUE has been folded as much as possible;
3489 therefore, we do not need to check for such things as
3490 arithmetic-combinations of integers. */
3493 initializer_constant_valid_p (tree value
, tree endtype
)
3495 /* Give the front-end a chance to convert VALUE to something that
3496 looks more like a constant to the back-end. */
3497 value
= lang_hooks
.expand_constant (value
);
3499 switch (TREE_CODE (value
))
3502 if ((TREE_CODE (TREE_TYPE (value
)) == UNION_TYPE
3503 || TREE_CODE (TREE_TYPE (value
)) == RECORD_TYPE
)
3504 && TREE_CONSTANT (value
)
3505 && CONSTRUCTOR_ELTS (value
))
3508 bool absolute
= true;
3510 for (elt
= CONSTRUCTOR_ELTS (value
); elt
; elt
= TREE_CHAIN (elt
))
3513 value
= TREE_VALUE (elt
);
3514 reloc
= initializer_constant_valid_p (value
, TREE_TYPE (value
));
3517 if (reloc
!= null_pointer_node
)
3520 /* For a non-absolute relocation, there is no single
3521 variable that can be "the variable that determines the
3523 return absolute
? null_pointer_node
: error_mark_node
;
3526 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
3533 return null_pointer_node
;
3537 value
= staticp (TREE_OPERAND (value
, 0));
3538 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out to
3539 be a constant, this is old-skool offsetof-like nonsense. */
3541 && TREE_CODE (value
) == INDIRECT_REF
3542 && TREE_CONSTANT (TREE_OPERAND (value
, 0)))
3543 return null_pointer_node
;
3544 /* Taking the address of a nested function involves a trampoline. */
3546 && TREE_CODE (value
) == FUNCTION_DECL
3547 && ((decl_function_context (value
) && !DECL_NO_STATIC_CHAIN (value
))
3548 || DECL_NON_ADDR_CONST_P (value
)))
3552 case VIEW_CONVERT_EXPR
:
3553 case NON_LVALUE_EXPR
:
3554 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3563 src
= TREE_OPERAND (value
, 0);
3564 src_type
= TREE_TYPE (src
);
3565 dest_type
= TREE_TYPE (value
);
3567 /* Allow conversions between pointer types, floating-point
3568 types, and offset types. */
3569 if ((POINTER_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
))
3570 || (FLOAT_TYPE_P (dest_type
) && FLOAT_TYPE_P (src_type
))
3571 || (TREE_CODE (dest_type
) == OFFSET_TYPE
3572 && TREE_CODE (src_type
) == OFFSET_TYPE
))
3573 return initializer_constant_valid_p (src
, endtype
);
3575 /* Allow length-preserving conversions between integer types. */
3576 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
)
3577 && (TYPE_PRECISION (dest_type
) == TYPE_PRECISION (src_type
)))
3578 return initializer_constant_valid_p (src
, endtype
);
3580 /* Allow conversions between other integer types only if
3582 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
))
3584 tree inner
= initializer_constant_valid_p (src
, endtype
);
3585 if (inner
== null_pointer_node
)
3586 return null_pointer_node
;
3590 /* Allow (int) &foo provided int is as wide as a pointer. */
3591 if (INTEGRAL_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
)
3592 && (TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
)))
3593 return initializer_constant_valid_p (src
, endtype
);
3595 /* Likewise conversions from int to pointers, but also allow
3596 conversions from 0. */
3597 if ((POINTER_TYPE_P (dest_type
)
3598 || TREE_CODE (dest_type
) == OFFSET_TYPE
)
3599 && INTEGRAL_TYPE_P (src_type
))
3601 if (integer_zerop (src
))
3602 return null_pointer_node
;
3603 else if (TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
))
3604 return initializer_constant_valid_p (src
, endtype
);
3607 /* Allow conversions to struct or union types if the value
3609 if (TREE_CODE (dest_type
) == RECORD_TYPE
3610 || TREE_CODE (dest_type
) == UNION_TYPE
)
3611 return initializer_constant_valid_p (src
, endtype
);
3616 if (! INTEGRAL_TYPE_P (endtype
)
3617 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
3619 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3621 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
3623 /* If either term is absolute, use the other terms relocation. */
3624 if (valid0
== null_pointer_node
)
3626 if (valid1
== null_pointer_node
)
3632 if (! INTEGRAL_TYPE_P (endtype
)
3633 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
3635 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3637 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
3639 /* Win if second argument is absolute. */
3640 if (valid1
== null_pointer_node
)
3642 /* Win if both arguments have the same relocation.
3643 Then the value is absolute. */
3644 if (valid0
== valid1
&& valid0
!= 0)
3645 return null_pointer_node
;
3647 /* Since GCC guarantees that string constants are unique in the
3648 generated code, a subtraction between two copies of the same
3649 constant string is absolute. */
3650 if (valid0
&& TREE_CODE (valid0
) == STRING_CST
3651 && valid1
&& TREE_CODE (valid1
) == STRING_CST
3652 && operand_equal_p (valid0
, valid1
, 1))
3653 return null_pointer_node
;
3656 /* Support narrowing differences. */
3657 if (INTEGRAL_TYPE_P (endtype
))
3661 op0
= TREE_OPERAND (value
, 0);
3662 op1
= TREE_OPERAND (value
, 1);
3664 /* Like STRIP_NOPS except allow the operand mode to widen.
3665 This works around a feature of fold that simplifies
3666 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3667 that the narrower operation is cheaper. */
3669 while (TREE_CODE (op0
) == NOP_EXPR
3670 || TREE_CODE (op0
) == CONVERT_EXPR
3671 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
3673 tree inner
= TREE_OPERAND (op0
, 0);
3674 if (inner
== error_mark_node
3675 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
3676 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0
)))
3677 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
3682 while (TREE_CODE (op1
) == NOP_EXPR
3683 || TREE_CODE (op1
) == CONVERT_EXPR
3684 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
3686 tree inner
= TREE_OPERAND (op1
, 0);
3687 if (inner
== error_mark_node
3688 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
3689 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1
)))
3690 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
3695 op0
= initializer_constant_valid_p (op0
, endtype
);
3696 op1
= initializer_constant_valid_p (op1
, endtype
);
3698 /* Both initializers must be known. */
3702 return null_pointer_node
;
3704 /* Support differences between labels. */
3705 if (TREE_CODE (op0
) == LABEL_DECL
3706 && TREE_CODE (op1
) == LABEL_DECL
)
3707 return null_pointer_node
;
3709 if (TREE_CODE (op0
) == STRING_CST
3710 && TREE_CODE (op1
) == STRING_CST
3711 && operand_equal_p (op0
, op1
, 1))
3712 return null_pointer_node
;
3724 /* Output assembler code for constant EXP to FILE, with no label.
3725 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3726 Assumes output_addressed_constants has been done on EXP already.
3728 Generate exactly SIZE bytes of assembler data, padding at the end
3729 with zeros if necessary. SIZE must always be specified.
3731 SIZE is important for structure constructors,
3732 since trailing members may have been omitted from the constructor.
3733 It is also important for initialization of arrays from string constants
3734 since the full length of the string constant might not be wanted.
3735 It is also needed for initialization of unions, where the initializer's
3736 type is just one member, and that may not be as long as the union.
3738 There a case in which we would fail to output exactly SIZE bytes:
3739 for a structure constructor that wants to produce more than SIZE bytes.
3740 But such constructors will never be generated for any possible input.
3742 ALIGN is the alignment of the data in bits. */
3745 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
)
3747 enum tree_code code
;
3748 unsigned HOST_WIDE_INT thissize
;
3750 /* Some front-ends use constants other than the standard language-independent
3751 varieties, but which may still be output directly. Give the front-end a
3752 chance to convert EXP to a language-independent representation. */
3753 exp
= lang_hooks
.expand_constant (exp
);
3755 if (size
== 0 || flag_syntax_only
)
3758 /* Eliminate any conversions since we'll be outputting the underlying
3760 while (TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
3761 || TREE_CODE (exp
) == NON_LVALUE_EXPR
3762 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
3763 exp
= TREE_OPERAND (exp
, 0);
3765 code
= TREE_CODE (TREE_TYPE (exp
));
3766 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
3768 /* Allow a constructor with no elements for any data type.
3769 This means to fill the space with zeros. */
3770 if (TREE_CODE (exp
) == CONSTRUCTOR
&& CONSTRUCTOR_ELTS (exp
) == 0)
3772 assemble_zeros (size
);
3776 if (TREE_CODE (exp
) == FDESC_EXPR
)
3778 #ifdef ASM_OUTPUT_FDESC
3779 HOST_WIDE_INT part
= tree_low_cst (TREE_OPERAND (exp
, 1), 0);
3780 tree decl
= TREE_OPERAND (exp
, 0);
3781 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
3788 /* Now output the underlying data. If we've handling the padding, return.
3789 Otherwise, break and ensure SIZE is the size written. */
3797 case REFERENCE_TYPE
:
3799 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
3800 EXPAND_INITIALIZER
),
3801 MIN (size
, thissize
), align
, 0))
3802 error ("initializer for integer value is too complicated");
3806 if (TREE_CODE (exp
) != REAL_CST
)
3807 error ("initializer for floating value is not a floating constant");
3809 assemble_real (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)), align
);
3813 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
);
3814 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
3815 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)));
3820 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3822 output_constructor (exp
, size
, align
);
3825 else if (TREE_CODE (exp
) == STRING_CST
)
3827 thissize
= MIN ((unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
),
3829 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
3831 else if (TREE_CODE (exp
) == VECTOR_CST
)
3835 unsigned int nalign
;
3836 enum machine_mode inner
;
3838 inner
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
3839 nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
3841 elt_size
= GET_MODE_SIZE (inner
);
3843 link
= TREE_VECTOR_CST_ELTS (exp
);
3844 output_constant (TREE_VALUE (link
), elt_size
, align
);
3845 while ((link
= TREE_CHAIN (link
)) != NULL
)
3846 output_constant (TREE_VALUE (link
), elt_size
, nalign
);
3854 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3855 output_constructor (exp
, size
, align
);
3867 if (size
> thissize
)
3868 assemble_zeros (size
- thissize
);
3872 /* Subroutine of output_constructor, used for computing the size of
3873 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
3874 type with an unspecified upper bound. */
3876 static unsigned HOST_WIDE_INT
3877 array_size_for_constructor (tree val
)
3881 /* This code used to attempt to handle string constants that are not
3882 arrays of single-bytes, but nothing else does, so there's no point in
3884 if (TREE_CODE (val
) == STRING_CST
)
3885 return TREE_STRING_LENGTH (val
);
3887 max_index
= NULL_TREE
;
3888 for (i
= CONSTRUCTOR_ELTS (val
); i
; i
= TREE_CHAIN (i
))
3890 tree index
= TREE_PURPOSE (i
);
3892 if (TREE_CODE (index
) == RANGE_EXPR
)
3893 index
= TREE_OPERAND (index
, 1);
3894 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
3898 if (max_index
== NULL_TREE
)
3901 /* Compute the total number of array elements. */
3902 i
= size_binop (MINUS_EXPR
, convert (sizetype
, max_index
),
3904 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)))));
3905 i
= size_binop (PLUS_EXPR
, i
, convert (sizetype
, integer_one_node
));
3907 /* Multiply by the array element unit size to find number of bytes. */
3908 i
= size_binop (MULT_EXPR
, i
, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
3910 return tree_low_cst (i
, 1);
3913 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
3914 Generate at least SIZE bytes, padding if necessary. */
3917 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
,
3920 tree type
= TREE_TYPE (exp
);
3921 tree link
, field
= 0;
3923 /* Number of bytes output or skipped so far.
3924 In other words, current position within the constructor. */
3925 HOST_WIDE_INT total_bytes
= 0;
3926 /* Nonzero means BYTE contains part of a byte, to be output. */
3927 int byte_buffer_in_use
= 0;
3930 if (HOST_BITS_PER_WIDE_INT
< BITS_PER_UNIT
)
3933 if (TREE_CODE (type
) == RECORD_TYPE
)
3934 field
= TYPE_FIELDS (type
);
3936 if (TREE_CODE (type
) == ARRAY_TYPE
3937 && TYPE_DOMAIN (type
) != 0)
3938 min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (type
));
3940 /* As LINK goes through the elements of the constant,
3941 FIELD goes through the structure fields, if the constant is a structure.
3942 if the constant is a union, then we override this,
3943 by getting the field from the TREE_LIST element.
3944 But the constant could also be an array. Then FIELD is zero.
3946 There is always a maximum of one element in the chain LINK for unions
3947 (even if the initializer in a source program incorrectly contains
3949 for (link
= CONSTRUCTOR_ELTS (exp
);
3951 link
= TREE_CHAIN (link
),
3952 field
= field
? TREE_CHAIN (field
) : 0)
3954 tree val
= TREE_VALUE (link
);
3957 /* The element in a union constructor specifies the proper field
3959 if ((TREE_CODE (type
) == RECORD_TYPE
|| TREE_CODE (type
) == UNION_TYPE
3960 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
3961 && TREE_PURPOSE (link
) != 0)
3962 field
= TREE_PURPOSE (link
);
3964 else if (TREE_CODE (type
) == ARRAY_TYPE
)
3965 index
= TREE_PURPOSE (link
);
3967 #ifdef ASM_COMMENT_START
3968 if (field
&& flag_verbose_asm
)
3969 fprintf (asm_out_file
, "%s %s:\n",
3972 ? IDENTIFIER_POINTER (DECL_NAME (field
))
3976 /* Eliminate the marker that makes a cast not be an lvalue. */
3980 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
3982 unsigned HOST_WIDE_INT fieldsize
3983 = int_size_in_bytes (TREE_TYPE (type
));
3984 HOST_WIDE_INT lo_index
= tree_low_cst (TREE_OPERAND (index
, 0), 0);
3985 HOST_WIDE_INT hi_index
= tree_low_cst (TREE_OPERAND (index
, 1), 0);
3986 HOST_WIDE_INT index
;
3987 unsigned int align2
= min_align (align
, fieldsize
* BITS_PER_UNIT
);
3989 for (index
= lo_index
; index
<= hi_index
; index
++)
3991 /* Output the element's initial value. */
3993 assemble_zeros (fieldsize
);
3995 output_constant (val
, fieldsize
, align2
);
3997 /* Count its size. */
3998 total_bytes
+= fieldsize
;
4001 else if (field
== 0 || !DECL_BIT_FIELD (field
))
4003 /* An element that is not a bit-field. */
4005 unsigned HOST_WIDE_INT fieldsize
;
4006 /* Since this structure is static,
4007 we know the positions are constant. */
4008 HOST_WIDE_INT pos
= field
? int_byte_position (field
) : 0;
4009 unsigned int align2
;
4012 pos
= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val
)), 1)
4013 * (tree_low_cst (index
, 0) - tree_low_cst (min_index
, 0)));
4015 /* Output any buffered-up bit-fields preceding this element. */
4016 if (byte_buffer_in_use
)
4018 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4020 byte_buffer_in_use
= 0;
4023 /* Advance to offset of this element.
4024 Note no alignment needed in an array, since that is guaranteed
4025 if each element has the proper size. */
4026 if ((field
!= 0 || index
!= 0) && pos
!= total_bytes
)
4028 assemble_zeros (pos
- total_bytes
);
4032 /* Find the alignment of this element. */
4033 align2
= min_align (align
, BITS_PER_UNIT
* pos
);
4035 /* Determine size this element should occupy. */
4040 /* If this is an array with an unspecified upper bound,
4041 the initializer determines the size. */
4042 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4043 but we cannot do this until the deprecated support for
4044 initializing zero-length array members is removed. */
4045 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
4046 && TYPE_DOMAIN (TREE_TYPE (field
))
4047 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field
))))
4049 fieldsize
= array_size_for_constructor (val
);
4050 /* Given a non-empty initialization, this field had
4052 if (fieldsize
!= 0 && TREE_CHAIN (field
) != NULL_TREE
)
4055 else if (DECL_SIZE_UNIT (field
))
4057 /* ??? This can't be right. If the decl size overflows
4058 a host integer we will silently emit no data. */
4059 if (host_integerp (DECL_SIZE_UNIT (field
), 1))
4060 fieldsize
= tree_low_cst (DECL_SIZE_UNIT (field
), 1);
4064 fieldsize
= int_size_in_bytes (TREE_TYPE (type
));
4066 /* Output the element's initial value. */
4068 assemble_zeros (fieldsize
);
4070 output_constant (val
, fieldsize
, align2
);
4072 /* Count its size. */
4073 total_bytes
+= fieldsize
;
4075 else if (val
!= 0 && TREE_CODE (val
) != INTEGER_CST
)
4076 error ("invalid initial value for member %qs",
4077 IDENTIFIER_POINTER (DECL_NAME (field
)));
4080 /* Element that is a bit-field. */
4082 HOST_WIDE_INT next_offset
= int_bit_position (field
);
4083 HOST_WIDE_INT end_offset
4084 = (next_offset
+ tree_low_cst (DECL_SIZE (field
), 1));
4087 val
= integer_zero_node
;
4089 /* If this field does not start in this (or, next) byte,
4091 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4093 /* Output remnant of any bit field in previous bytes. */
4094 if (byte_buffer_in_use
)
4096 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4098 byte_buffer_in_use
= 0;
4101 /* If still not at proper byte, advance to there. */
4102 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4104 assemble_zeros (next_offset
/ BITS_PER_UNIT
- total_bytes
);
4105 total_bytes
= next_offset
/ BITS_PER_UNIT
;
4109 if (! byte_buffer_in_use
)
4112 /* We must split the element into pieces that fall within
4113 separate bytes, and combine each byte with previous or
4114 following bit-fields. */
4116 /* next_offset is the offset n fbits from the beginning of
4117 the structure to the next bit of this element to be processed.
4118 end_offset is the offset of the first bit past the end of
4120 while (next_offset
< end_offset
)
4124 HOST_WIDE_INT value
;
4125 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
4126 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
4128 /* Advance from byte to byte
4129 within this element when necessary. */
4130 while (next_byte
!= total_bytes
)
4132 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4137 /* Number of bits we can process at once
4138 (all part of the same byte). */
4139 this_time
= MIN (end_offset
- next_offset
,
4140 BITS_PER_UNIT
- next_bit
);
4141 if (BYTES_BIG_ENDIAN
)
4143 /* On big-endian machine, take the most significant bits
4144 first (of the bits that are significant)
4145 and put them into bytes from the most significant end. */
4146 shift
= end_offset
- next_offset
- this_time
;
4148 /* Don't try to take a bunch of bits that cross
4149 the word boundary in the INTEGER_CST. We can
4150 only select bits from the LOW or HIGH part
4152 if (shift
< HOST_BITS_PER_WIDE_INT
4153 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4155 this_time
= shift
+ this_time
- HOST_BITS_PER_WIDE_INT
;
4156 shift
= HOST_BITS_PER_WIDE_INT
;
4159 /* Now get the bits from the appropriate constant word. */
4160 if (shift
< HOST_BITS_PER_WIDE_INT
)
4161 value
= TREE_INT_CST_LOW (val
);
4162 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4164 value
= TREE_INT_CST_HIGH (val
);
4165 shift
-= HOST_BITS_PER_WIDE_INT
;
4170 /* Get the result. This works only when:
4171 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4172 byte
|= (((value
>> shift
)
4173 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4174 << (BITS_PER_UNIT
- this_time
- next_bit
));
4178 /* On little-endian machines,
4179 take first the least significant bits of the value
4180 and pack them starting at the least significant
4181 bits of the bytes. */
4182 shift
= next_offset
- int_bit_position (field
);
4184 /* Don't try to take a bunch of bits that cross
4185 the word boundary in the INTEGER_CST. We can
4186 only select bits from the LOW or HIGH part
4188 if (shift
< HOST_BITS_PER_WIDE_INT
4189 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4190 this_time
= (HOST_BITS_PER_WIDE_INT
- shift
);
4192 /* Now get the bits from the appropriate constant word. */
4193 if (shift
< HOST_BITS_PER_WIDE_INT
)
4194 value
= TREE_INT_CST_LOW (val
);
4195 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4197 value
= TREE_INT_CST_HIGH (val
);
4198 shift
-= HOST_BITS_PER_WIDE_INT
;
4203 /* Get the result. This works only when:
4204 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4205 byte
|= (((value
>> shift
)
4206 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4210 next_offset
+= this_time
;
4211 byte_buffer_in_use
= 1;
4216 if (byte_buffer_in_use
)
4218 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4222 if ((unsigned HOST_WIDE_INT
)total_bytes
< size
)
4223 assemble_zeros (size
- total_bytes
);
4226 /* This TREE_LIST contains any weak symbol declarations waiting
4228 static GTY(()) tree weak_decls
;
4230 /* Mark DECL as weak. */
4233 mark_weak (tree decl
)
4235 DECL_WEAK (decl
) = 1;
4237 if (DECL_RTL_SET_P (decl
)
4238 && MEM_P (DECL_RTL (decl
))
4239 && XEXP (DECL_RTL (decl
), 0)
4240 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
4241 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
4244 /* Merge weak status between NEWDECL and OLDDECL. */
4247 merge_weak (tree newdecl
, tree olddecl
)
4249 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
4251 if (DECL_WEAK (newdecl
) && SUPPORTS_WEAK
)
4254 /* We put the NEWDECL on the weak_decls list at some point
4255 and OLDDECL as well. Keep just OLDDECL on the list. */
4256 for (pwd
= &weak_decls
; *pwd
; pwd
= &TREE_CHAIN (*pwd
))
4257 if (TREE_VALUE (*pwd
) == newdecl
)
4259 *pwd
= TREE_CHAIN (*pwd
);
4266 if (DECL_WEAK (newdecl
))
4270 /* NEWDECL is weak, but OLDDECL is not. */
4272 /* If we already output the OLDDECL, we're in trouble; we can't
4273 go back and make it weak. This error cannot caught in
4274 declare_weak because the NEWDECL and OLDDECL was not yet
4275 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4276 if (TREE_ASM_WRITTEN (olddecl
))
4277 error ("%Jweak declaration of %qD must precede definition",
4280 /* If we've already generated rtl referencing OLDDECL, we may
4281 have done so in a way that will not function properly with
4283 else if (TREE_USED (olddecl
)
4284 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)))
4285 warning ("%Jweak declaration of %qD after first use results "
4286 "in unspecified behavior", newdecl
, newdecl
);
4290 /* We put the NEWDECL on the weak_decls list at some point.
4291 Replace it with the OLDDECL. */
4292 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
4293 if (TREE_VALUE (wd
) == newdecl
)
4295 TREE_VALUE (wd
) = olddecl
;
4298 /* We may not find the entry on the list. If NEWDECL is a
4299 weak alias, then we will have already called
4300 globalize_decl to remove the entry; in that case, we do
4301 not need to do anything. */
4304 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4305 mark_weak (olddecl
);
4308 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4309 weak. Just update NEWDECL to indicate that it's weak too. */
4310 mark_weak (newdecl
);
4313 /* Declare DECL to be a weak symbol. */
4316 declare_weak (tree decl
)
4318 if (! TREE_PUBLIC (decl
))
4319 error ("%Jweak declaration of %qD must be public", decl
, decl
);
4320 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
4321 error ("%Jweak declaration of %qD must precede definition", decl
, decl
);
4322 else if (SUPPORTS_WEAK
)
4324 if (! DECL_WEAK (decl
))
4325 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
4328 warning ("%Jweak declaration of %qD not supported", decl
, decl
);
4333 /* Emit any pending weak declarations. */
4340 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
4342 tree decl
= TREE_VALUE (t
);
4343 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4344 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
4347 if (! TREE_USED (decl
))
4350 #ifdef ASM_WEAKEN_DECL
4351 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
4353 #ifdef ASM_WEAKEN_LABEL
4354 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4356 #ifdef ASM_OUTPUT_WEAK_ALIAS
4357 warning ("only weak aliases are supported in this configuration");
4365 /* Emit the assembly bits to indicate that DECL is globally visible. */
4368 globalize_decl (tree decl
)
4370 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
4372 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4373 if (DECL_WEAK (decl
))
4377 #ifdef ASM_WEAKEN_DECL
4378 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
4380 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4383 /* Remove this function from the pending weak list so that
4384 we do not emit multiple .weak directives for it. */
4385 for (p
= &weak_decls
; (t
= *p
) ; )
4387 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
4388 *p
= TREE_CHAIN (t
);
4390 p
= &TREE_CHAIN (t
);
4394 #elif defined(ASM_MAKE_LABEL_LINKONCE)
4395 if (DECL_ONE_ONLY (decl
))
4396 ASM_MAKE_LABEL_LINKONCE (asm_out_file
, name
);
4399 targetm
.asm_out
.globalize_label (asm_out_file
, name
);
4402 /* We have to be able to tell cgraph about the needed-ness of the target
4403 of an alias. This requires that the decl have been defined. Aliases
4404 that preceed their definition have to be queued for later processing. */
4406 struct alias_pair
GTY(())
4411 typedef struct alias_pair
*alias_pair
;
4413 /* Define gc'd vector type. */
4414 DEF_VEC_GC_P(alias_pair
);
4416 static GTY(()) VEC(alias_pair
) *alias_pairs
;
4418 /* Given an assembly name, find the decl it is associated with. At the
4419 same time, mark it needed for cgraph. */
4422 find_decl_and_mark_needed (tree decl
, tree target
)
4424 struct cgraph_node
*fnode
= NULL
;
4425 struct cgraph_varpool_node
*vnode
= NULL
;
4427 /* C++ thunk emitting code produces aliases late in the game.
4428 Avoid confusing cgraph code in that case. */
4429 if (!cgraph_global_info_ready
)
4431 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4433 fnode
= cgraph_node_for_asm (target
);
4435 vnode
= cgraph_varpool_node_for_asm (target
);
4439 vnode
= cgraph_varpool_node_for_asm (target
);
4441 fnode
= cgraph_node_for_asm (target
);
4447 cgraph_mark_needed_node (fnode
);
4452 cgraph_varpool_mark_needed_node (vnode
);
4460 do_assemble_alias (tree decl
, tree target
)
4462 if (TREE_ASM_WRITTEN (decl
))
4465 TREE_ASM_WRITTEN (decl
) = 1;
4466 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
4468 #ifdef ASM_OUTPUT_DEF
4469 /* Make name accessible from other files, if appropriate. */
4471 if (TREE_PUBLIC (decl
))
4473 globalize_decl (decl
);
4474 maybe_assemble_visibility (decl
);
4477 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
4478 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
4480 ASM_OUTPUT_DEF (asm_out_file
,
4481 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
4482 IDENTIFIER_POINTER (target
));
4484 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4489 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
4490 # ifdef ASM_WEAKEN_DECL
4491 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
4493 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4495 /* Remove this function from the pending weak list so that
4496 we do not emit multiple .weak directives for it. */
4497 for (p
= &weak_decls
; (t
= *p
) ; )
4498 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
4499 *p
= TREE_CHAIN (t
);
4501 p
= &TREE_CHAIN (t
);
4506 /* First pass of completing pending aliases. Make sure that cgraph knows
4507 which symbols will be required. */
4510 finish_aliases_1 (void)
4515 for (i
= 0; VEC_iterate (alias_pair
, alias_pairs
, i
, p
); i
++)
4519 target_decl
= find_decl_and_mark_needed (p
->decl
, p
->target
);
4520 if (target_decl
== NULL
)
4521 error ("%J%qD aliased to undefined symbol %qE",
4522 p
->decl
, p
->decl
, p
->target
);
4523 else if (DECL_EXTERNAL (target_decl
))
4524 error ("%J%qD aliased to external symbol %qE",
4525 p
->decl
, p
->decl
, p
->target
);
4529 /* Second pass of completing pending aliases. Emit the actual assembly.
4530 This happens at the end of compilation and thus it is assured that the
4531 target symbol has been emitted. */
4534 finish_aliases_2 (void)
4539 for (i
= 0; VEC_iterate (alias_pair
, alias_pairs
, i
, p
); i
++)
4540 do_assemble_alias (p
->decl
, p
->target
);
4545 /* Emit an assembler directive to make the symbol for DECL an alias to
4546 the symbol for TARGET. */
4549 assemble_alias (tree decl
, tree target
)
4553 #if !defined (ASM_OUTPUT_DEF)
4554 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
4555 error ("%Jalias definitions not supported in this configuration", decl
);
4558 if (!DECL_WEAK (decl
))
4560 error ("%Jonly weak aliases are supported in this configuration", decl
);
4566 /* We must force creation of DECL_RTL for debug info generation, even though
4567 we don't use it here. */
4568 make_decl_rtl (decl
);
4569 TREE_USED (decl
) = 1;
4571 /* A quirk of the initial implementation of aliases required that the user
4572 add "extern" to all of them. Which is silly, but now historical. Do
4573 note that the symbol is in fact locally defined. */
4574 DECL_EXTERNAL (decl
) = 0;
4576 /* Allow aliases to aliases. */
4577 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4578 cgraph_node (decl
)->alias
= true;
4580 cgraph_varpool_node (decl
)->alias
= true;
4582 /* If the target has already been emitted, we don't have to queue the
4583 alias. This saves a tad o memory. */
4584 target_decl
= find_decl_and_mark_needed (decl
, target
);
4585 if (target_decl
&& TREE_ASM_WRITTEN (target_decl
))
4586 do_assemble_alias (decl
, target
);
4591 p
= ggc_alloc (sizeof (struct alias_pair
));
4594 VEC_safe_push (alias_pair
, alias_pairs
, p
);
4598 /* Emit an assembler directive to set symbol for DECL visibility to
4599 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
4602 default_assemble_visibility (tree decl
, int vis
)
4604 static const char * const visibility_types
[] = {
4605 NULL
, "internal", "hidden", "protected"
4608 const char *name
, *type
;
4610 name
= (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
4611 type
= visibility_types
[vis
];
4613 #ifdef HAVE_GAS_HIDDEN
4614 fprintf (asm_out_file
, "\t.%s\t", type
);
4615 assemble_name (asm_out_file
, name
);
4616 fprintf (asm_out_file
, "\n");
4618 warning ("visibility attribute not supported in this configuration; ignored");
4622 /* A helper function to call assemble_visibility when needed for a decl. */
4625 maybe_assemble_visibility (tree decl
)
4627 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
4629 if (vis
!= VISIBILITY_DEFAULT
)
4630 targetm
.asm_out
.visibility (decl
, vis
);
4633 /* Returns 1 if the target configuration supports defining public symbols
4634 so that one of them will be chosen at link time instead of generating a
4635 multiply-defined symbol error, whether through the use of weak symbols or
4636 a target-specific mechanism for having duplicates discarded. */
4639 supports_one_only (void)
4641 if (SUPPORTS_ONE_ONLY
)
4643 return SUPPORTS_WEAK
;
4646 /* Set up DECL as a public symbol that can be defined in multiple
4647 translation units without generating a linker error. */
4650 make_decl_one_only (tree decl
)
4652 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != FUNCTION_DECL
)
4655 TREE_PUBLIC (decl
) = 1;
4657 if (SUPPORTS_ONE_ONLY
)
4659 #ifdef MAKE_DECL_ONE_ONLY
4660 MAKE_DECL_ONE_ONLY (decl
);
4662 DECL_ONE_ONLY (decl
) = 1;
4664 else if (TREE_CODE (decl
) == VAR_DECL
4665 && (DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
))
4666 DECL_COMMON (decl
) = 1;
4667 else if (SUPPORTS_WEAK
)
4668 DECL_WEAK (decl
) = 1;
4674 init_varasm_once (void)
4676 in_named_htab
= htab_create_ggc (31, in_named_entry_hash
,
4677 in_named_entry_eq
, NULL
);
4678 const_desc_htab
= htab_create_ggc (1009, const_desc_hash
,
4679 const_desc_eq
, NULL
);
4681 const_alias_set
= new_alias_set ();
4684 static enum tls_model
4685 decl_tls_model (tree decl
)
4687 enum tls_model kind
;
4688 tree attr
= lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl
));
4693 attr
= TREE_VALUE (TREE_VALUE (attr
));
4694 if (TREE_CODE (attr
) != STRING_CST
)
4696 if (!strcmp (TREE_STRING_POINTER (attr
), "local-exec"))
4697 kind
= TLS_MODEL_LOCAL_EXEC
;
4698 else if (!strcmp (TREE_STRING_POINTER (attr
), "initial-exec"))
4699 kind
= TLS_MODEL_INITIAL_EXEC
;
4700 else if (!strcmp (TREE_STRING_POINTER (attr
), "local-dynamic"))
4701 kind
= optimize
? TLS_MODEL_LOCAL_DYNAMIC
: TLS_MODEL_GLOBAL_DYNAMIC
;
4702 else if (!strcmp (TREE_STRING_POINTER (attr
), "global-dynamic"))
4703 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
4709 is_local
= targetm
.binds_local_p (decl
);
4713 kind
= TLS_MODEL_LOCAL_EXEC
;
4715 kind
= TLS_MODEL_INITIAL_EXEC
;
4717 /* Local dynamic is inefficient when we're not combining the
4718 parts of the address. */
4719 else if (optimize
&& is_local
)
4720 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
4722 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
4723 if (kind
< flag_tls_default
)
4724 kind
= flag_tls_default
;
4729 /* Select a set of attributes for section NAME based on the properties
4730 of DECL and whether or not RELOC indicates that DECL's initializer
4731 might contain runtime relocations.
4733 We make the section read-only and executable for a function decl,
4734 read-only for a const data decl, and writable for a non-const data decl. */
4737 default_section_type_flags (tree decl
, const char *name
, int reloc
)
4739 return default_section_type_flags_1 (decl
, name
, reloc
, flag_pic
);
4743 default_section_type_flags_1 (tree decl
, const char *name
, int reloc
,
4748 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
4749 flags
= SECTION_CODE
;
4750 else if (decl
&& decl_readonly_section_1 (decl
, reloc
, shlib
))
4752 else if (unlikely_text_section_name
4753 && strcmp (name
, unlikely_text_section_name
) == 0)
4754 flags
= SECTION_CODE
;
4756 flags
= SECTION_WRITE
;
4758 if (decl
&& DECL_ONE_ONLY (decl
))
4759 flags
|= SECTION_LINKONCE
;
4761 if (decl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
4762 flags
|= SECTION_TLS
| SECTION_WRITE
;
4764 if (strcmp (name
, ".bss") == 0
4765 || strncmp (name
, ".bss.", 5) == 0
4766 || strncmp (name
, ".gnu.linkonce.b.", 16) == 0
4767 || strcmp (name
, ".sbss") == 0
4768 || strncmp (name
, ".sbss.", 6) == 0
4769 || strncmp (name
, ".gnu.linkonce.sb.", 17) == 0)
4770 flags
|= SECTION_BSS
;
4772 if (strcmp (name
, ".tdata") == 0
4773 || strncmp (name
, ".tdata.", 7) == 0
4774 || strncmp (name
, ".gnu.linkonce.td.", 17) == 0)
4775 flags
|= SECTION_TLS
;
4777 if (strcmp (name
, ".tbss") == 0
4778 || strncmp (name
, ".tbss.", 6) == 0
4779 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
4780 flags
|= SECTION_TLS
| SECTION_BSS
;
4782 /* These three sections have special ELF types. They are neither
4783 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4784 want to print a section type (@progbits or @nobits). If someone
4785 is silly enough to emit code or TLS variables to one of these
4786 sections, then don't handle them specially. */
4787 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
))
4788 && (strcmp (name
, ".init_array") == 0
4789 || strcmp (name
, ".fini_array") == 0
4790 || strcmp (name
, ".preinit_array") == 0))
4791 flags
|= SECTION_NOTYPE
;
4796 /* Output assembly to switch to section NAME with attribute FLAGS.
4797 Four variants for common object file formats. */
4800 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
4801 unsigned int flags ATTRIBUTE_UNUSED
,
4802 tree decl ATTRIBUTE_UNUSED
)
4804 /* Some object formats don't support named sections at all. The
4805 front-end should already have flagged this as an error. */
4810 default_elf_asm_named_section (const char *name
, unsigned int flags
,
4811 tree decl ATTRIBUTE_UNUSED
)
4813 char flagchars
[10], *f
= flagchars
;
4815 /* If we have already declared this section, we can use an
4816 abbreviated form to switch back to it -- unless this section is
4817 part of a COMDAT groups, in which case GAS requires the full
4818 declaration every time. */
4819 if (!(HAVE_GAS_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
4820 && ! named_section_first_declaration (name
))
4822 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
4826 if (!(flags
& SECTION_DEBUG
))
4828 if (flags
& SECTION_WRITE
)
4830 if (flags
& SECTION_CODE
)
4832 if (flags
& SECTION_SMALL
)
4834 if (flags
& SECTION_MERGE
)
4836 if (flags
& SECTION_STRINGS
)
4838 if (flags
& SECTION_TLS
)
4840 if (HAVE_GAS_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
4844 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
4846 if (!(flags
& SECTION_NOTYPE
))
4851 if (flags
& SECTION_BSS
)
4857 #ifdef ASM_COMMENT_START
4858 /* On platforms that use "@" as the assembly comment character,
4860 if (strcmp (ASM_COMMENT_START
, "@") == 0)
4863 fprintf (asm_out_file
, format
, type
);
4865 if (flags
& SECTION_ENTSIZE
)
4866 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
4867 if (HAVE_GAS_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
4868 fprintf (asm_out_file
, ",%s,comdat",
4869 lang_hooks
.decls
.comdat_group (decl
));
4872 putc ('\n', asm_out_file
);
4876 default_coff_asm_named_section (const char *name
, unsigned int flags
,
4877 tree decl ATTRIBUTE_UNUSED
)
4879 char flagchars
[8], *f
= flagchars
;
4881 if (flags
& SECTION_WRITE
)
4883 if (flags
& SECTION_CODE
)
4887 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
4891 default_pe_asm_named_section (const char *name
, unsigned int flags
,
4894 default_coff_asm_named_section (name
, flags
, decl
);
4896 if (flags
& SECTION_LINKONCE
)
4898 /* Functions may have been compiled at various levels of
4899 optimization so we can't use `same_size' here.
4900 Instead, have the linker pick one. */
4901 fprintf (asm_out_file
, "\t.linkonce %s\n",
4902 (flags
& SECTION_CODE
? "discard" : "same_size"));
4906 /* The lame default section selector. */
4909 default_select_section (tree decl
, int reloc
,
4910 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
4912 bool readonly
= false;
4916 if (decl_readonly_section (decl
, reloc
))
4919 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
4921 if (! ((flag_pic
&& reloc
)
4922 || !TREE_READONLY (decl
)
4923 || TREE_SIDE_EFFECTS (decl
)
4924 || !TREE_CONSTANT (decl
)))
4927 else if (TREE_CODE (decl
) == STRING_CST
)
4929 else if (! (flag_pic
&& reloc
))
4933 readonly_data_section ();
4938 /* A helper function for default_elf_select_section and
4939 default_elf_unique_section. Categorizes the DECL. */
4941 enum section_category
4946 SECCAT_RODATA_MERGE_STR
,
4947 SECCAT_RODATA_MERGE_STR_INIT
,
4948 SECCAT_RODATA_MERGE_CONST
,
4953 /* To optimize loading of shared programs, define following subsections
4955 _REL Contains data that has relocations, so they get grouped
4956 together and dynamic linker will visit fewer pages in memory.
4957 _RO Contains data that is otherwise read-only. This is useful
4958 with prelinking as most relocations won't be dynamically
4959 linked and thus stay read only.
4960 _LOCAL Marks data containing relocations only to local objects.
4961 These relocations will get fully resolved by prelinking. */
4963 SECCAT_DATA_REL_LOCAL
,
4965 SECCAT_DATA_REL_RO_LOCAL
,
4975 static enum section_category
4976 categorize_decl_for_section (tree
, int, int);
4978 static enum section_category
4979 categorize_decl_for_section (tree decl
, int reloc
, int shlib
)
4981 enum section_category ret
;
4983 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4985 else if (TREE_CODE (decl
) == STRING_CST
)
4987 if (flag_mudflap
) /* or !flag_merge_constants */
4988 return SECCAT_RODATA
;
4990 return SECCAT_RODATA_MERGE_STR
;
4992 else if (TREE_CODE (decl
) == VAR_DECL
)
4994 if (DECL_INITIAL (decl
) == NULL
4995 || DECL_INITIAL (decl
) == error_mark_node
4996 || (flag_zero_initialized_in_bss
4997 /* Leave constant zeroes in .rodata so they can be shared. */
4998 && !TREE_READONLY (decl
)
4999 && initializer_zerop (DECL_INITIAL (decl
))))
5001 else if (! TREE_READONLY (decl
)
5002 || TREE_SIDE_EFFECTS (decl
)
5003 || ! TREE_CONSTANT (DECL_INITIAL (decl
)))
5005 if (shlib
&& (reloc
& 2))
5006 ret
= SECCAT_DATA_REL
;
5007 else if (shlib
&& reloc
)
5008 ret
= SECCAT_DATA_REL_LOCAL
;
5012 else if (shlib
&& (reloc
& 2))
5013 ret
= SECCAT_DATA_REL_RO
;
5014 else if (shlib
&& reloc
)
5015 ret
= SECCAT_DATA_REL_RO_LOCAL
;
5016 else if (reloc
|| flag_merge_constants
< 2)
5017 /* C and C++ don't allow different variables to share the same
5018 location. -fmerge-all-constants allows even that (at the
5019 expense of not conforming). */
5020 ret
= SECCAT_RODATA
;
5021 else if (TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
5022 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
5024 ret
= SECCAT_RODATA_MERGE_CONST
;
5026 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
5028 if ((shlib
&& reloc
)
5029 || TREE_SIDE_EFFECTS (decl
)
5030 || ! TREE_CONSTANT (decl
))
5033 ret
= SECCAT_RODATA
;
5036 ret
= SECCAT_RODATA
;
5038 /* There are no read-only thread-local sections. */
5039 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
5041 /* Note that this would be *just* SECCAT_BSS, except that there's
5042 no concept of a read-only thread-local-data section. */
5043 if (ret
== SECCAT_BSS
5044 || (flag_zero_initialized_in_bss
5045 && initializer_zerop (DECL_INITIAL (decl
))))
5051 /* If the target uses small data sections, select it. */
5052 else if (targetm
.in_small_data_p (decl
))
5054 if (ret
== SECCAT_BSS
)
5056 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
5057 ret
= SECCAT_SRODATA
;
5066 decl_readonly_section (tree decl
, int reloc
)
5068 return decl_readonly_section_1 (decl
, reloc
, flag_pic
);
5072 decl_readonly_section_1 (tree decl
, int reloc
, int shlib
)
5074 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
5077 case SECCAT_RODATA_MERGE_STR
:
5078 case SECCAT_RODATA_MERGE_STR_INIT
:
5079 case SECCAT_RODATA_MERGE_CONST
:
5080 case SECCAT_SRODATA
:
5089 /* Select a section based on the above categorization. */
5092 default_elf_select_section (tree decl
, int reloc
,
5093 unsigned HOST_WIDE_INT align
)
5095 default_elf_select_section_1 (decl
, reloc
, align
, flag_pic
);
5099 default_elf_select_section_1 (tree decl
, int reloc
,
5100 unsigned HOST_WIDE_INT align
, int shlib
)
5103 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
5106 /* We're not supposed to be called on FUNCTION_DECLs. */
5109 readonly_data_section ();
5111 case SECCAT_RODATA_MERGE_STR
:
5112 mergeable_string_section (decl
, align
, 0);
5114 case SECCAT_RODATA_MERGE_STR_INIT
:
5115 mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
5117 case SECCAT_RODATA_MERGE_CONST
:
5118 mergeable_constant_section (DECL_MODE (decl
), align
, 0);
5120 case SECCAT_SRODATA
:
5126 case SECCAT_DATA_REL
:
5127 sname
= ".data.rel";
5129 case SECCAT_DATA_REL_LOCAL
:
5130 sname
= ".data.rel.local";
5132 case SECCAT_DATA_REL_RO
:
5133 sname
= ".data.rel.ro";
5135 case SECCAT_DATA_REL_RO_LOCAL
:
5136 sname
= ".data.rel.ro.local";
5145 #ifdef BSS_SECTION_ASM_OP
5164 named_section (decl
, sname
, reloc
);
5167 /* Construct a unique section name based on the decl name and the
5168 categorization performed above. */
5171 default_unique_section (tree decl
, int reloc
)
5173 default_unique_section_1 (decl
, reloc
, flag_pic
);
5177 default_unique_section_1 (tree decl
, int reloc
, int shlib
)
5179 bool one_only
= DECL_ONE_ONLY (decl
);
5180 const char *prefix
, *name
;
5184 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
5187 prefix
= one_only
? ".gnu.linkonce.t." : ".text.";
5190 case SECCAT_RODATA_MERGE_STR
:
5191 case SECCAT_RODATA_MERGE_STR_INIT
:
5192 case SECCAT_RODATA_MERGE_CONST
:
5193 prefix
= one_only
? ".gnu.linkonce.r." : ".rodata.";
5195 case SECCAT_SRODATA
:
5196 prefix
= one_only
? ".gnu.linkonce.s2." : ".sdata2.";
5199 case SECCAT_DATA_REL
:
5200 case SECCAT_DATA_REL_LOCAL
:
5201 case SECCAT_DATA_REL_RO
:
5202 case SECCAT_DATA_REL_RO_LOCAL
:
5203 prefix
= one_only
? ".gnu.linkonce.d." : ".data.";
5206 prefix
= one_only
? ".gnu.linkonce.s." : ".sdata.";
5209 prefix
= one_only
? ".gnu.linkonce.b." : ".bss.";
5212 prefix
= one_only
? ".gnu.linkonce.sb." : ".sbss.";
5215 prefix
= one_only
? ".gnu.linkonce.td." : ".tdata.";
5218 prefix
= one_only
? ".gnu.linkonce.tb." : ".tbss.";
5223 plen
= strlen (prefix
);
5225 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5226 name
= targetm
.strip_name_encoding (name
);
5227 nlen
= strlen (name
);
5229 string
= alloca (nlen
+ plen
+ 1);
5230 memcpy (string
, prefix
, plen
);
5231 memcpy (string
+ plen
, name
, nlen
+ 1);
5233 DECL_SECTION_NAME (decl
) = build_string (nlen
+ plen
, string
);
5237 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
5239 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
5242 switch (GET_CODE (x
))
5254 readonly_data_section ();
5258 default_elf_select_rtx_section (enum machine_mode mode
, rtx x
,
5259 unsigned HOST_WIDE_INT align
)
5261 /* ??? Handle small data here somehow. */
5264 switch (GET_CODE (x
))
5268 named_section (NULL_TREE
, ".data.rel.ro", 3);
5272 named_section (NULL_TREE
, ".data.rel.ro.local", 1);
5279 mergeable_constant_section (mode
, align
, 0);
5282 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5285 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
5290 /* Careful not to prod global register variables. */
5293 symbol
= XEXP (rtl
, 0);
5294 if (GET_CODE (symbol
) != SYMBOL_REF
)
5298 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5299 flags
|= SYMBOL_FLAG_FUNCTION
;
5300 if (targetm
.binds_local_p (decl
))
5301 flags
|= SYMBOL_FLAG_LOCAL
;
5302 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
5303 flags
|= decl_tls_model (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
5304 else if (targetm
.in_small_data_p (decl
))
5305 flags
|= SYMBOL_FLAG_SMALL
;
5306 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5307 being PUBLIC, the thing *must* be defined in this translation unit.
5308 Prevent this buglet from being propagated into rtl code as well. */
5309 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
5310 flags
|= SYMBOL_FLAG_EXTERNAL
;
5312 SYMBOL_REF_FLAGS (symbol
) = flags
;
5315 /* By default, we do nothing for encode_section_info, so we need not
5316 do anything but discard the '*' marker. */
5319 default_strip_name_encoding (const char *str
)
5321 return str
+ (*str
== '*');
5324 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5325 wrt cross-module name binding. */
5328 default_binds_local_p (tree exp
)
5330 return default_binds_local_p_1 (exp
, flag_shlib
);
5334 default_binds_local_p_1 (tree exp
, int shlib
)
5338 /* A non-decl is an entry in the constant pool. */
5341 /* Static variables are always local. */
5342 else if (! TREE_PUBLIC (exp
))
5344 /* A variable is local if the user explicitly tells us so. */
5345 else if (DECL_VISIBILITY_SPECIFIED (exp
) && DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
5347 /* Otherwise, variables defined outside this object may not be local. */
5348 else if (DECL_EXTERNAL (exp
))
5350 /* Linkonce and weak data are never local. */
5351 else if (DECL_ONE_ONLY (exp
) || DECL_WEAK (exp
))
5353 /* If none of the above and visibility is not default, make local. */
5354 else if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
5356 /* If PIC, then assume that any global name can be overridden by
5357 symbols resolved from other modules. */
5360 /* Uninitialized COMMON variable may be unified with symbols
5361 resolved from other modules. */
5362 else if (DECL_COMMON (exp
)
5363 && (DECL_INITIAL (exp
) == NULL
5364 || DECL_INITIAL (exp
) == error_mark_node
))
5366 /* Otherwise we're left with initialized (or non-common) global data
5367 which is of necessity defined locally. */
5374 /* Determine whether or not a pointer mode is valid. Assume defaults
5375 of ptr_mode or Pmode - can be overridden. */
5377 default_valid_pointer_mode (enum machine_mode mode
)
5379 return (mode
== ptr_mode
|| mode
== Pmode
);
5382 /* Default function to output code that will globalize a label. A
5383 target must define GLOBAL_ASM_OP or provide it's own function to
5384 globalize a label. */
5385 #ifdef GLOBAL_ASM_OP
5387 default_globalize_label (FILE * stream
, const char *name
)
5389 fputs (GLOBAL_ASM_OP
, stream
);
5390 assemble_name (stream
, name
);
5391 putc ('\n', stream
);
5393 #endif /* GLOBAL_ASM_OP */
5395 /* Default function to output a label for unwind information. The
5396 default is to do nothing. A target that needs nonlocal labels for
5397 unwind information must provide its own function to do this. */
5399 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
5400 tree decl ATTRIBUTE_UNUSED
,
5401 int for_eh ATTRIBUTE_UNUSED
,
5402 int empty ATTRIBUTE_UNUSED
)
5406 /* This is how to output an internal numbered label where PREFIX is
5407 the class of label and LABELNO is the number within the class. */
5410 default_internal_label (FILE *stream
, const char *prefix
,
5411 unsigned long labelno
)
5413 char *const buf
= alloca (40 + strlen (prefix
));
5414 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
5415 ASM_OUTPUT_INTERNAL_LABEL (stream
, buf
);
5418 /* This is the default behavior at the beginning of a file. It's
5419 controlled by two other target-hook toggles. */
5421 default_file_start (void)
5423 if (targetm
.file_start_app_off
&& !flag_verbose_asm
)
5424 fputs (ASM_APP_OFF
, asm_out_file
);
5426 if (targetm
.file_start_file_directive
)
5427 output_file_directive (asm_out_file
, main_input_filename
);
5430 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5431 which emits a special section directive used to indicate whether or
5432 not this object file needs an executable stack. This is primarily
5433 a GNU extension to ELF but could be used on other targets. */
5435 int trampolines_created
;
5438 file_end_indicate_exec_stack (void)
5440 unsigned int flags
= SECTION_DEBUG
;
5441 if (trampolines_created
)
5442 flags
|= SECTION_CODE
;
5444 named_section_flags (".note.GNU-stack", flags
);
5447 #include "gt-varasm.h"