1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
21 /* This file handles generation of all the assembler code
22 *except* the instructions of a function.
23 This includes declarations of variables and their initial values.
25 We also output the assembler code for constants stored in memory
26 and are responsible for combining constants with the same value. */
30 #include "coretypes.h"
34 #include "stor-layout.h"
35 #include "stringpool.h"
36 #include "gcc-symtab.h"
41 #include "hard-reg-set.h"
44 #include "diagnostic-core.h"
47 #include "langhooks.h"
51 #include "common/common-target.h"
52 #include "targhooks.h"
54 #include "pointer-set.h"
56 #include "basic-block.h"
58 #ifdef XCOFF_DEBUGGING_INFO
59 #include "xcoffout.h" /* Needed for external data
60 declarations for e.g. AIX 4.x. */
63 /* The (assembler) name of the first globally-visible object output. */
64 extern GTY(()) const char *first_global_object_name
;
65 extern GTY(()) const char *weak_global_object_name
;
67 const char *first_global_object_name
;
68 const char *weak_global_object_name
;
71 struct constant_descriptor_rtx
;
72 struct rtx_constant_pool
;
74 #define n_deferred_constants (crtl->varasm.deferred_constants)
76 /* Number for making the label on the next
77 constant that is stored in memory. */
79 static GTY(()) int const_labelno
;
81 /* Carry information from ASM_DECLARE_OBJECT_NAME
82 to ASM_FINISH_DECLARE_OBJECT. */
84 int size_directive_output
;
86 /* The last decl for which assemble_variable was called,
87 if it did ASM_DECLARE_OBJECT_NAME.
88 If the last call to assemble_variable didn't do that,
91 tree last_assemble_variable_decl
;
93 /* The following global variable indicates if the first basic block
94 in a function belongs to the cold partition or not. */
96 bool first_function_block_is_cold
;
98 /* We give all constants their own alias set. Perhaps redundant with
99 MEM_READONLY_P, but pre-dates it. */
101 static alias_set_type const_alias_set
;
103 /* Whether we saw any functions with no_split_stack. */
105 static bool saw_no_split_stack
;
107 static const char *strip_reg_name (const char *);
108 static int contains_pointers_p (tree
);
109 #ifdef ASM_OUTPUT_EXTERNAL
110 static bool incorporeal_function_p (tree
);
112 static void decode_addr_const (tree
, struct addr_const
*);
113 static hashval_t
const_desc_hash (const void *);
114 static int const_desc_eq (const void *, const void *);
115 static hashval_t
const_hash_1 (const tree
);
116 static int compare_constant (const tree
, const tree
);
117 static void output_constant_def_contents (rtx
);
118 static void output_addressed_constants (tree
);
119 static unsigned HOST_WIDE_INT
output_constant (tree
, unsigned HOST_WIDE_INT
,
121 static void globalize_decl (tree
);
122 static bool decl_readonly_section_1 (enum section_category
);
123 #ifdef BSS_SECTION_ASM_OP
124 #ifdef ASM_OUTPUT_ALIGNED_BSS
125 static void asm_output_aligned_bss (FILE *, tree
, const char *,
126 unsigned HOST_WIDE_INT
, int)
129 #endif /* BSS_SECTION_ASM_OP */
130 static void mark_weak (tree
);
131 static void output_constant_pool (const char *, tree
);
133 /* Well-known sections, each one associated with some sort of *_ASM_OP. */
134 section
*text_section
;
135 section
*data_section
;
136 section
*readonly_data_section
;
137 section
*sdata_section
;
138 section
*ctors_section
;
139 section
*dtors_section
;
140 section
*bss_section
;
141 section
*sbss_section
;
143 /* Various forms of common section. All are guaranteed to be nonnull. */
144 section
*tls_comm_section
;
145 section
*comm_section
;
146 section
*lcomm_section
;
148 /* A SECTION_NOSWITCH section used for declaring global BSS variables.
150 section
*bss_noswitch_section
;
152 /* The section that holds the main exception table, when known. The section
153 is set either by the target's init_sections hook or by the first call to
154 switch_to_exception_section. */
155 section
*exception_section
;
157 /* The section that holds the DWARF2 frame unwind information, when known.
158 The section is set either by the target's init_sections hook or by the
159 first call to switch_to_eh_frame_section. */
160 section
*eh_frame_section
;
162 /* asm_out_file's current section. This is NULL if no section has yet
163 been selected or if we lose track of what the current section is. */
166 /* True if code for the current function is currently being directed
167 at the cold section. */
168 bool in_cold_section_p
;
170 /* A linked list of all the unnamed sections. */
171 static GTY(()) section
*unnamed_sections
;
173 /* Return a nonzero value if DECL has a section attribute. */
174 #define IN_NAMED_SECTION(DECL) \
175 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
176 && DECL_SECTION_NAME (DECL) != NULL)
178 /* Hash table of named sections. */
179 static GTY((param_is (section
))) htab_t section_htab
;
181 /* A table of object_blocks, indexed by section. */
182 static GTY((param_is (struct object_block
))) htab_t object_block_htab
;
184 /* The next number to use for internal anchor labels. */
185 static GTY(()) int anchor_labelno
;
187 /* A pool of constants that can be shared between functions. */
188 static GTY(()) struct rtx_constant_pool
*shared_constant_pool
;
190 /* Helper routines for maintaining section_htab. */
193 section_entry_eq (const void *p1
, const void *p2
)
195 const section
*old
= (const section
*) p1
;
196 const char *new_name
= (const char *) p2
;
198 return strcmp (old
->named
.name
, new_name
) == 0;
202 section_entry_hash (const void *p
)
204 const section
*old
= (const section
*) p
;
205 return htab_hash_string (old
->named
.name
);
208 /* Return a hash value for section SECT. */
211 hash_section (section
*sect
)
213 if (sect
->common
.flags
& SECTION_NAMED
)
214 return htab_hash_string (sect
->named
.name
);
215 return sect
->common
.flags
;
218 /* Helper routines for maintaining object_block_htab. */
221 object_block_entry_eq (const void *p1
, const void *p2
)
223 const struct object_block
*old
= (const struct object_block
*) p1
;
224 const section
*new_section
= (const section
*) p2
;
226 return old
->sect
== new_section
;
230 object_block_entry_hash (const void *p
)
232 const struct object_block
*old
= (const struct object_block
*) p
;
233 return hash_section (old
->sect
);
236 /* Return a new unnamed section with the given fields. */
239 get_unnamed_section (unsigned int flags
, void (*callback
) (const void *),
244 sect
= ggc_alloc
<section
> ();
245 sect
->unnamed
.common
.flags
= flags
| SECTION_UNNAMED
;
246 sect
->unnamed
.callback
= callback
;
247 sect
->unnamed
.data
= data
;
248 sect
->unnamed
.next
= unnamed_sections
;
250 unnamed_sections
= sect
;
254 /* Return a SECTION_NOSWITCH section with the given fields. */
257 get_noswitch_section (unsigned int flags
, noswitch_section_callback callback
)
261 sect
= ggc_alloc
<section
> ();
262 sect
->noswitch
.common
.flags
= flags
| SECTION_NOSWITCH
;
263 sect
->noswitch
.callback
= callback
;
268 /* Return the named section structure associated with NAME. Create
269 a new section with the given fields if no such structure exists. */
272 get_section (const char *name
, unsigned int flags
, tree decl
)
274 section
*sect
, **slot
;
277 htab_find_slot_with_hash (section_htab
, name
,
278 htab_hash_string (name
), INSERT
);
279 flags
|= SECTION_NAMED
;
282 sect
= ggc_alloc
<section
> ();
283 sect
->named
.common
.flags
= flags
;
284 sect
->named
.name
= ggc_strdup (name
);
285 sect
->named
.decl
= decl
;
291 if ((sect
->common
.flags
& ~SECTION_DECLARED
) != flags
292 && ((sect
->common
.flags
| flags
) & SECTION_OVERRIDE
) == 0)
294 /* It is fine if one of the section flags is
295 SECTION_WRITE | SECTION_RELRO and the other has none of these
296 flags (i.e. read-only) in named sections and either the
297 section hasn't been declared yet or has been declared as writable.
298 In that case just make sure the resulting flags are
299 SECTION_WRITE | SECTION_RELRO, ie. writable only because of
301 if (((sect
->common
.flags
^ flags
) & (SECTION_WRITE
| SECTION_RELRO
))
302 == (SECTION_WRITE
| SECTION_RELRO
)
303 && (sect
->common
.flags
304 & ~(SECTION_DECLARED
| SECTION_WRITE
| SECTION_RELRO
))
305 == (flags
& ~(SECTION_WRITE
| SECTION_RELRO
))
306 && ((sect
->common
.flags
& SECTION_DECLARED
) == 0
307 || (sect
->common
.flags
& SECTION_WRITE
)))
309 sect
->common
.flags
|= (SECTION_WRITE
| SECTION_RELRO
);
312 /* Sanity check user variables for flag changes. */
313 if (sect
->named
.decl
!= NULL
314 && DECL_P (sect
->named
.decl
)
315 && decl
!= sect
->named
.decl
)
317 if (decl
!= NULL
&& DECL_P (decl
))
318 error ("%+D causes a section type conflict with %D",
319 decl
, sect
->named
.decl
);
321 error ("section type conflict with %D", sect
->named
.decl
);
322 inform (DECL_SOURCE_LOCATION (sect
->named
.decl
),
323 "%qD was declared here", sect
->named
.decl
);
325 else if (decl
!= NULL
&& DECL_P (decl
))
326 error ("%+D causes a section type conflict", decl
);
328 error ("section type conflict");
329 /* Make sure we don't error about one section multiple times. */
330 sect
->common
.flags
|= SECTION_OVERRIDE
;
336 /* Return true if the current compilation mode benefits from having
337 objects grouped into blocks. */
340 use_object_blocks_p (void)
342 return flag_section_anchors
;
345 /* Return the object_block structure for section SECT. Create a new
346 structure if we haven't created one already. Return null if SECT
349 static struct object_block
*
350 get_block_for_section (section
*sect
)
352 struct object_block
*block
;
358 slot
= htab_find_slot_with_hash (object_block_htab
, sect
,
359 hash_section (sect
), INSERT
);
360 block
= (struct object_block
*) *slot
;
363 block
= ggc_cleared_alloc
<object_block
> ();
370 /* Create a symbol with label LABEL and place it at byte offset
371 OFFSET in BLOCK. OFFSET can be negative if the symbol's offset
372 is not yet known. LABEL must be a garbage-collected string. */
375 create_block_symbol (const char *label
, struct object_block
*block
,
376 HOST_WIDE_INT offset
)
381 /* Create the extended SYMBOL_REF. */
382 size
= RTX_HDR_SIZE
+ sizeof (struct block_symbol
);
383 symbol
= (rtx
) ggc_internal_alloc (size
);
385 /* Initialize the normal SYMBOL_REF fields. */
386 memset (symbol
, 0, size
);
387 PUT_CODE (symbol
, SYMBOL_REF
);
388 PUT_MODE (symbol
, Pmode
);
389 XSTR (symbol
, 0) = label
;
390 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_HAS_BLOCK_INFO
;
392 /* Initialize the block_symbol stuff. */
393 SYMBOL_REF_BLOCK (symbol
) = block
;
394 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
399 /* Return a section with a particular name and with whatever SECTION_*
400 flags section_type_flags deems appropriate. The name of the section
401 is taken from NAME if nonnull, otherwise it is taken from DECL's
402 DECL_SECTION_NAME. DECL is the decl associated with the section
403 (see the section comment for details) and RELOC is as for
404 section_type_flags. */
407 get_named_section (tree decl
, const char *name
, int reloc
)
413 gcc_assert (decl
&& DECL_P (decl
) && DECL_SECTION_NAME (decl
));
414 name
= DECL_SECTION_NAME (decl
);
417 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
418 return get_section (name
, flags
, decl
);
421 /* Worker for resolve_unique_section. */
424 set_implicit_section (struct symtab_node
*n
, void *data ATTRIBUTE_UNUSED
)
426 n
->implicit_section
= true;
430 /* If required, set DECL_SECTION_NAME to a unique name. */
433 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
434 int flag_function_or_data_sections
)
436 if (DECL_SECTION_NAME (decl
) == NULL
437 && targetm_common
.have_named_sections
438 && (flag_function_or_data_sections
439 || DECL_COMDAT_GROUP (decl
)))
441 targetm
.asm_out
.unique_section (decl
, reloc
);
442 if (DECL_SECTION_NAME (decl
))
443 symtab_node::get (decl
)->call_for_symbol_and_aliases
444 (set_implicit_section
, NULL
, true);
448 #ifdef BSS_SECTION_ASM_OP
450 #ifdef ASM_OUTPUT_ALIGNED_BSS
452 /* Utility function for targets to use in implementing
453 ASM_OUTPUT_ALIGNED_BSS.
454 ??? It is believed that this function will work in most cases so such
455 support is localized here. */
458 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
459 const char *name
, unsigned HOST_WIDE_INT size
,
462 switch_to_section (bss_section
);
463 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
464 #ifdef ASM_DECLARE_OBJECT_NAME
465 last_assemble_variable_decl
= decl
;
466 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
468 /* Standard thing is just output label for the object. */
469 ASM_OUTPUT_LABEL (file
, name
);
470 #endif /* ASM_DECLARE_OBJECT_NAME */
471 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
476 #endif /* BSS_SECTION_ASM_OP */
478 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
479 /* Return the hot section for function DECL. Return text_section for
483 hot_function_section (tree decl
)
485 if (decl
!= NULL_TREE
486 && DECL_SECTION_NAME (decl
) != NULL
487 && targetm_common
.have_named_sections
)
488 return get_named_section (decl
, NULL
, 0);
494 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
497 When DECL_SECTION_NAME is non-NULL and it is implicit section and
498 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
499 concatenate the name with NAMED_SECTION_SUFFIX.
500 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
503 get_named_text_section (tree decl
,
504 const char *text_section_name
,
505 const char *named_section_suffix
)
507 if (decl
&& DECL_SECTION_NAME (decl
))
509 if (named_section_suffix
)
511 const char *dsn
= DECL_SECTION_NAME (decl
);
512 const char *stripped_name
;
515 name
= (char *) alloca (strlen (dsn
) + 1);
519 stripped_name
= targetm
.strip_name_encoding (name
);
521 buffer
= ACONCAT ((stripped_name
, named_section_suffix
, NULL
));
522 return get_named_section (decl
, buffer
, 0);
524 else if (symtab_node::get (decl
)->implicit_section
)
528 /* Do not try to split gnu_linkonce functions. This gets somewhat
530 if (DECL_COMDAT_GROUP (decl
) && !HAVE_COMDAT_GROUP
)
532 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
533 name
= targetm
.strip_name_encoding (name
);
534 return get_named_section (decl
, ACONCAT ((text_section_name
, ".",
540 return get_named_section (decl
, text_section_name
, 0);
543 /* Choose named function section based on its frequency. */
546 default_function_section (tree decl
, enum node_frequency freq
,
547 bool startup
, bool exit
)
549 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
550 /* Old GNU linkers have buggy --gc-section support, which sometimes
551 results in .gcc_except_table* sections being garbage collected. */
553 && symtab_node::get (decl
)->implicit_section
)
557 if (!flag_reorder_functions
558 || !targetm_common
.have_named_sections
)
560 /* Startup code should go to startup subsection unless it is
561 unlikely executed (this happens especially with function splitting
562 where we can split away unnecessary parts of static constructors. */
563 if (startup
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
565 /* If we do have a profile or(and) LTO phase is executed, we do not need
566 these ELF section. */
567 if (!in_lto_p
|| !flag_profile_values
)
568 return get_named_text_section (decl
, ".text.startup", NULL
);
573 /* Similarly for exit. */
574 if (exit
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
575 return get_named_text_section (decl
, ".text.exit", NULL
);
577 /* Group cold functions together, similarly for hot code. */
580 case NODE_FREQUENCY_UNLIKELY_EXECUTED
:
581 return get_named_text_section (decl
, ".text.unlikely", NULL
);
582 case NODE_FREQUENCY_HOT
:
583 /* If we do have a profile or(and) LTO phase is executed, we do not need
584 these ELF section. */
585 if (!in_lto_p
|| !flag_profile_values
)
586 return get_named_text_section (decl
, ".text.hot", NULL
);
592 /* Return the section for function DECL.
594 If DECL is NULL_TREE, return the text section. We can be passed
595 NULL_TREE under some circumstances by dbxout.c at least.
597 If FORCE_COLD is true, return cold function section ignoring
598 the frequency info of cgraph_node. */
601 function_section_1 (tree decl
, bool force_cold
)
603 section
*section
= NULL
;
604 enum node_frequency freq
= NODE_FREQUENCY_NORMAL
;
605 bool startup
= false, exit
= false;
609 struct cgraph_node
*node
= cgraph_node::get (decl
);
613 freq
= node
->frequency
;
614 startup
= node
->only_called_at_startup
;
615 exit
= node
->only_called_at_exit
;
619 freq
= NODE_FREQUENCY_UNLIKELY_EXECUTED
;
621 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
622 if (decl
!= NULL_TREE
623 && DECL_SECTION_NAME (decl
) != NULL
)
625 if (targetm
.asm_out
.function_section
)
626 section
= targetm
.asm_out
.function_section (decl
, freq
,
630 return get_named_section (decl
, NULL
, 0);
633 return targetm
.asm_out
.select_section
634 (decl
, freq
== NODE_FREQUENCY_UNLIKELY_EXECUTED
,
637 if (targetm
.asm_out
.function_section
)
638 section
= targetm
.asm_out
.function_section (decl
, freq
, startup
, exit
);
641 return hot_function_section (decl
);
645 /* Return the section for function DECL.
647 If DECL is NULL_TREE, return the text section. We can be passed
648 NULL_TREE under some circumstances by dbxout.c at least. */
651 function_section (tree decl
)
653 /* Handle cases where function splitting code decides
654 to put function entry point into unlikely executed section
655 despite the fact that the function itself is not cold
656 (i.e. it is called rarely but contains a hot loop that is
657 better to live in hot subsection for the code locality). */
658 return function_section_1 (decl
,
659 first_function_block_is_cold
);
662 /* Return the section for the current function, take IN_COLD_SECTION_P
666 current_function_section (void)
668 return function_section_1 (current_function_decl
, in_cold_section_p
);
671 /* Tell assembler to switch to unlikely-to-be-executed text section. */
674 unlikely_text_section (void)
676 return function_section_1 (current_function_decl
, true);
679 /* When called within a function context, return true if the function
680 has been assigned a cold text section and if SECT is that section.
681 When called outside a function context, return true if SECT is the
682 default cold section. */
685 unlikely_text_section_p (section
*sect
)
687 return sect
== function_section_1 (current_function_decl
, true);
690 /* Return the read-only data section associated with function DECL. */
693 default_function_rodata_section (tree decl
)
695 if (decl
!= NULL_TREE
&& DECL_SECTION_NAME (decl
))
697 const char *name
= DECL_SECTION_NAME (decl
);
699 if (DECL_COMDAT_GROUP (decl
) && HAVE_COMDAT_GROUP
)
705 dot
= strchr (name
+ 1, '.');
708 len
= strlen (dot
) + 8;
709 rname
= (char *) alloca (len
);
711 strcpy (rname
, ".rodata");
713 return get_section (rname
, SECTION_LINKONCE
, decl
);
715 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
716 else if (DECL_COMDAT_GROUP (decl
)
717 && strncmp (name
, ".gnu.linkonce.t.", 16) == 0)
719 size_t len
= strlen (name
) + 1;
720 char *rname
= (char *) alloca (len
);
722 memcpy (rname
, name
, len
);
724 return get_section (rname
, SECTION_LINKONCE
, decl
);
726 /* For .text.foo we want to use .rodata.foo. */
727 else if (flag_function_sections
&& flag_data_sections
728 && strncmp (name
, ".text.", 6) == 0)
730 size_t len
= strlen (name
) + 1;
731 char *rname
= (char *) alloca (len
+ 2);
733 memcpy (rname
, ".rodata", 7);
734 memcpy (rname
+ 7, name
+ 5, len
- 5);
735 return get_section (rname
, 0, decl
);
739 return readonly_data_section
;
742 /* Return the read-only data section associated with function DECL
743 for targets where that section should be always the single
744 readonly data section. */
747 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED
)
749 return readonly_data_section
;
752 /* Return the section to use for string merging. */
755 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
756 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
757 unsigned int flags ATTRIBUTE_UNUSED
)
761 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
762 && TREE_CODE (decl
) == STRING_CST
763 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
765 && (len
= int_size_in_bytes (TREE_TYPE (decl
))) > 0
766 && TREE_STRING_LENGTH (decl
) >= len
)
768 enum machine_mode mode
;
769 unsigned int modesize
;
773 const char *prefix
= targetm
.asm_out
.mergeable_rodata_prefix
;
774 char *name
= (char *) alloca (strlen (prefix
) + 30);
776 mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
777 modesize
= GET_MODE_BITSIZE (mode
);
778 if (modesize
>= 8 && modesize
<= 256
779 && (modesize
& (modesize
- 1)) == 0)
781 if (align
< modesize
)
784 str
= TREE_STRING_POINTER (decl
);
785 unit
= GET_MODE_SIZE (mode
);
787 /* Check for embedded NUL characters. */
788 for (i
= 0; i
< len
; i
+= unit
)
790 for (j
= 0; j
< unit
; j
++)
791 if (str
[i
+ j
] != '\0')
798 sprintf (name
, "%s.str%d.%d", prefix
,
799 modesize
/ 8, (int) (align
/ 8));
800 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
801 return get_section (name
, flags
, NULL
);
806 return readonly_data_section
;
809 /* Return the section to use for constant merging. */
812 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
813 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
814 unsigned int flags ATTRIBUTE_UNUSED
)
816 unsigned int modesize
= GET_MODE_BITSIZE (mode
);
818 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
824 && (align
& (align
- 1)) == 0)
826 const char *prefix
= targetm
.asm_out
.mergeable_rodata_prefix
;
827 char *name
= (char *) alloca (strlen (prefix
) + 30);
829 sprintf (name
, "%s.cst%d", prefix
, (int) (align
/ 8));
830 flags
|= (align
/ 8) | SECTION_MERGE
;
831 return get_section (name
, flags
, NULL
);
833 return readonly_data_section
;
836 /* Given NAME, a putative register name, discard any customary prefixes. */
839 strip_reg_name (const char *name
)
841 #ifdef REGISTER_PREFIX
842 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
843 name
+= strlen (REGISTER_PREFIX
);
845 if (name
[0] == '%' || name
[0] == '#')
850 /* The user has asked for a DECL to have a particular name. Set (or
851 change) it in such a way that we don't prefix an underscore to
854 set_user_assembler_name (tree decl
, const char *name
)
856 char *starred
= (char *) alloca (strlen (name
) + 2);
858 strcpy (starred
+ 1, name
);
859 change_decl_assembler_name (decl
, get_identifier (starred
));
860 SET_DECL_RTL (decl
, NULL_RTX
);
863 /* Decode an `asm' spec for a declaration as a register name.
864 Return the register number, or -1 if nothing specified,
865 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
866 or -3 if ASMSPEC is `cc' and is not recognized,
867 or -4 if ASMSPEC is `memory' and is not recognized.
868 Accept an exact spelling or a decimal number.
869 Prefixes such as % are optional. */
872 decode_reg_name_and_count (const char *asmspec
, int *pnregs
)
874 /* Presume just one register is clobbered. */
881 /* Get rid of confusing prefixes. */
882 asmspec
= strip_reg_name (asmspec
);
884 /* Allow a decimal number as a "register name". */
885 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
886 if (! ISDIGIT (asmspec
[i
]))
888 if (asmspec
[0] != 0 && i
< 0)
891 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
897 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
899 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
902 #ifdef OVERLAPPING_REGISTER_NAMES
906 const char *const name
;
909 } table
[] = OVERLAPPING_REGISTER_NAMES
;
911 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
913 && ! strcmp (asmspec
, table
[i
].name
))
915 *pnregs
= table
[i
].nregs
;
916 return table
[i
].number
;
919 #endif /* OVERLAPPING_REGISTER_NAMES */
921 #ifdef ADDITIONAL_REGISTER_NAMES
923 static const struct { const char *const name
; const int number
; } table
[]
924 = ADDITIONAL_REGISTER_NAMES
;
926 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
928 && ! strcmp (asmspec
, table
[i
].name
))
929 return table
[i
].number
;
931 #endif /* ADDITIONAL_REGISTER_NAMES */
933 if (!strcmp (asmspec
, "memory"))
936 if (!strcmp (asmspec
, "cc"))
946 decode_reg_name (const char *name
)
949 return decode_reg_name_and_count (name
, &count
);
953 /* Return true if DECL's initializer is suitable for a BSS section. */
956 bss_initializer_p (const_tree decl
)
958 return (DECL_INITIAL (decl
) == NULL
959 /* In LTO we have no errors in program; error_mark_node is used
960 to mark offlined constructors. */
961 || (DECL_INITIAL (decl
) == error_mark_node
963 || (flag_zero_initialized_in_bss
964 /* Leave constant zeroes in .rodata so they
966 && !TREE_READONLY (decl
)
967 && initializer_zerop (DECL_INITIAL (decl
))));
970 /* Compute the alignment of variable specified by DECL.
971 DONT_OUTPUT_DATA is from assemble_variable. */
974 align_variable (tree decl
, bool dont_output_data
)
976 unsigned int align
= DECL_ALIGN (decl
);
978 /* In the case for initialing an array whose length isn't specified,
979 where we have not yet been able to do the layout,
980 figure out the proper alignment now. */
981 if (dont_output_data
&& DECL_SIZE (decl
) == 0
982 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
983 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
985 /* Some object file formats have a maximum alignment which they support.
986 In particular, a.out format supports a maximum alignment of 4. */
987 if (align
> MAX_OFILE_ALIGNMENT
)
989 error ("alignment of %q+D is greater than maximum object "
990 "file alignment %d", decl
,
991 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
992 align
= MAX_OFILE_ALIGNMENT
;
995 if (! DECL_USER_ALIGN (decl
))
997 #ifdef DATA_ABI_ALIGNMENT
998 unsigned int data_abi_align
999 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1000 /* For backwards compatibility, don't assume the ABI alignment for
1002 if (! DECL_THREAD_LOCAL_P (decl
) || data_abi_align
<= BITS_PER_WORD
)
1003 align
= data_abi_align
;
1006 /* On some machines, it is good to increase alignment sometimes.
1007 But as DECL_ALIGN is used both for actually emitting the variable
1008 and for code accessing the variable as guaranteed alignment, we
1009 can only increase the alignment if it is a performance optimization
1010 if the references to it must bind to the current definition. */
1011 if (decl_binds_to_current_def_p (decl
)
1012 && !DECL_VIRTUAL_P (decl
))
1014 #ifdef DATA_ALIGNMENT
1015 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1016 /* Don't increase alignment too much for TLS variables - TLS space
1018 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1021 #ifdef CONSTANT_ALIGNMENT
1022 if (DECL_INITIAL (decl
) != 0
1023 /* In LTO we have no errors in program; error_mark_node is used
1024 to mark offlined constructors. */
1025 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1027 unsigned int const_align
1028 = CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1029 /* Don't increase alignment too much for TLS variables - TLS
1030 space is too precious. */
1031 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1032 align
= const_align
;
1038 /* Reset the alignment in case we have made it tighter, so we can benefit
1039 from it in get_pointer_alignment. */
1040 DECL_ALIGN (decl
) = align
;
1043 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1044 beyond what align_variable returned. */
1047 get_variable_align (tree decl
)
1049 unsigned int align
= DECL_ALIGN (decl
);
1051 /* For user aligned vars or static vars align_variable already did
1053 if (DECL_USER_ALIGN (decl
) || !TREE_PUBLIC (decl
))
1056 #ifdef DATA_ABI_ALIGNMENT
1057 if (DECL_THREAD_LOCAL_P (decl
))
1058 align
= DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1061 /* For decls that bind to the current definition, align_variable
1062 did also everything, except for not assuming ABI required alignment
1063 of TLS variables. For other vars, increase the alignment here
1064 as an optimization. */
1065 if (!decl_binds_to_current_def_p (decl
))
1067 /* On some machines, it is good to increase alignment sometimes. */
1068 #ifdef DATA_ALIGNMENT
1069 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1070 /* Don't increase alignment too much for TLS variables - TLS space
1072 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1075 #ifdef CONSTANT_ALIGNMENT
1076 if (DECL_INITIAL (decl
) != 0
1077 /* In LTO we have no errors in program; error_mark_node is used
1078 to mark offlined constructors. */
1079 && (in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
))
1081 unsigned int const_align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
),
1083 /* Don't increase alignment too much for TLS variables - TLS space
1085 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1086 align
= const_align
;
1094 /* Return the section into which the given VAR_DECL or CONST_DECL
1095 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1096 section should be used wherever possible. */
1099 get_variable_section (tree decl
, bool prefer_noswitch_p
)
1101 addr_space_t as
= ADDR_SPACE_GENERIC
;
1103 varpool_node
*vnode
= varpool_node::get (decl
);
1106 vnode
= vnode
->ultimate_alias_target ();
1110 if (TREE_TYPE (decl
) != error_mark_node
)
1111 as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1113 /* We need the constructor to figure out reloc flag. */
1115 vnode
->get_constructor ();
1117 if (DECL_COMMON (decl
))
1119 /* If the decl has been given an explicit section name, or it resides
1120 in a non-generic address space, then it isn't common, and shouldn't
1121 be handled as such. */
1122 gcc_assert (DECL_SECTION_NAME (decl
) == NULL
1123 && ADDR_SPACE_GENERIC_P (as
));
1124 if (DECL_THREAD_LOCAL_P (decl
))
1125 return tls_comm_section
;
1126 else if (TREE_PUBLIC (decl
) && bss_initializer_p (decl
))
1127 return comm_section
;
1130 if (DECL_INITIAL (decl
) == error_mark_node
)
1131 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1132 else if (DECL_INITIAL (decl
))
1133 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1137 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1138 if (IN_NAMED_SECTION (decl
))
1139 return get_named_section (decl
, NULL
, reloc
);
1141 if (ADDR_SPACE_GENERIC_P (as
)
1142 && !DECL_THREAD_LOCAL_P (decl
)
1143 && !(prefer_noswitch_p
&& targetm
.have_switchable_bss_sections
)
1144 && bss_initializer_p (decl
))
1146 if (!TREE_PUBLIC (decl
)
1147 && !((flag_sanitize
& SANITIZE_ADDRESS
)
1148 && asan_protect_global (decl
)))
1149 return lcomm_section
;
1150 if (bss_noswitch_section
)
1151 return bss_noswitch_section
;
1154 return targetm
.asm_out
.select_section (decl
, reloc
,
1155 get_variable_align (decl
));
1158 /* Return the block into which object_block DECL should be placed. */
1160 static struct object_block
*
1161 get_block_for_decl (tree decl
)
1165 if (TREE_CODE (decl
) == VAR_DECL
)
1167 /* The object must be defined in this translation unit. */
1168 if (DECL_EXTERNAL (decl
))
1171 /* There's no point using object blocks for something that is
1172 isolated by definition. */
1173 if (DECL_COMDAT_GROUP (decl
))
1177 /* We can only calculate block offsets if the decl has a known
1179 if (DECL_SIZE_UNIT (decl
) == NULL
)
1181 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl
)))
1184 /* Find out which section should contain DECL. We cannot put it into
1185 an object block if it requires a standalone definition. */
1186 if (TREE_CODE (decl
) == VAR_DECL
)
1187 align_variable (decl
, 0);
1188 sect
= get_variable_section (decl
, true);
1189 if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
1192 return get_block_for_section (sect
);
1195 /* Make sure block symbol SYMBOL is in block BLOCK. */
1198 change_symbol_block (rtx symbol
, struct object_block
*block
)
1200 if (block
!= SYMBOL_REF_BLOCK (symbol
))
1202 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol
) < 0);
1203 SYMBOL_REF_BLOCK (symbol
) = block
;
1207 /* Return true if it is possible to put DECL in an object_block. */
1210 use_blocks_for_decl_p (tree decl
)
1212 struct symtab_node
*snode
;
1214 /* Only data DECLs can be placed into object blocks. */
1215 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != CONST_DECL
)
1218 /* Detect decls created by dw2_force_const_mem. Such decls are
1219 special because DECL_INITIAL doesn't specify the decl's true value.
1220 dw2_output_indirect_constants will instead call assemble_variable
1221 with dont_output_data set to 1 and then print the contents itself. */
1222 if (DECL_INITIAL (decl
) == decl
)
1225 /* If this decl is an alias, then we don't want to emit a
1227 if (TREE_CODE (decl
) == VAR_DECL
1228 && (snode
= symtab_node::get (decl
)) != NULL
1232 return targetm
.use_blocks_for_decl_p (decl
);
1235 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1236 have static storage duration. In other words, it should not be an
1237 automatic variable, including PARM_DECLs.
1239 There is, however, one exception: this function handles variables
1240 explicitly placed in a particular register by the user.
1242 This is never called for PARM_DECL nodes. */
1245 make_decl_rtl (tree decl
)
1247 const char *name
= 0;
1251 /* Check that we are not being given an automatic variable. */
1252 gcc_assert (TREE_CODE (decl
) != PARM_DECL
1253 && TREE_CODE (decl
) != RESULT_DECL
);
1255 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1256 gcc_assert (TREE_CODE (decl
) != VAR_DECL
1257 || TREE_STATIC (decl
)
1258 || TREE_PUBLIC (decl
)
1259 || DECL_EXTERNAL (decl
)
1260 || DECL_REGISTER (decl
));
1262 /* And that we were not given a type or a label. */
1263 gcc_assert (TREE_CODE (decl
) != TYPE_DECL
1264 && TREE_CODE (decl
) != LABEL_DECL
);
1266 /* For a duplicate declaration, we can be called twice on the
1267 same DECL node. Don't discard the RTL already made. */
1268 if (DECL_RTL_SET_P (decl
))
1270 /* If the old RTL had the wrong mode, fix the mode. */
1271 x
= DECL_RTL (decl
);
1272 if (GET_MODE (x
) != DECL_MODE (decl
))
1273 SET_DECL_RTL (decl
, adjust_address_nv (x
, DECL_MODE (decl
), 0));
1275 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1278 /* ??? Another way to do this would be to maintain a hashed
1279 table of such critters. Instead of adding stuff to a DECL
1280 to give certain attributes to it, we could use an external
1281 hash map from DECL to set of attributes. */
1283 /* Let the target reassign the RTL if it wants.
1284 This is necessary, for example, when one machine specific
1285 decl attribute overrides another. */
1286 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
1288 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1289 on the new decl information. */
1291 && GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
1292 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x
, 0)))
1293 change_symbol_block (XEXP (x
, 0), get_block_for_decl (decl
));
1298 /* If this variable belongs to the global constant pool, retrieve the
1299 pre-computed RTL or recompute it in LTO mode. */
1300 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_IN_CONSTANT_POOL (decl
))
1302 SET_DECL_RTL (decl
, output_constant_def (DECL_INITIAL (decl
), 1));
1306 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
1308 if (name
[0] != '*' && TREE_CODE (decl
) != FUNCTION_DECL
1309 && DECL_REGISTER (decl
))
1311 error ("register name not specified for %q+D", decl
);
1313 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1315 const char *asmspec
= name
+1;
1316 enum machine_mode mode
= DECL_MODE (decl
);
1317 reg_number
= decode_reg_name (asmspec
);
1318 /* First detect errors in declaring global registers. */
1319 if (reg_number
== -1)
1320 error ("register name not specified for %q+D", decl
);
1321 else if (reg_number
< 0)
1322 error ("invalid register name for %q+D", decl
);
1323 else if (mode
== BLKmode
)
1324 error ("data type of %q+D isn%'t suitable for a register",
1326 else if (!in_hard_reg_set_p (accessible_reg_set
, mode
, reg_number
))
1327 error ("the register specified for %q+D cannot be accessed"
1328 " by the current target", decl
);
1329 else if (!in_hard_reg_set_p (operand_reg_set
, mode
, reg_number
))
1330 error ("the register specified for %q+D is not general enough"
1331 " to be used as a register variable", decl
);
1332 else if (!HARD_REGNO_MODE_OK (reg_number
, mode
))
1333 error ("register specified for %q+D isn%'t suitable for data type",
1335 /* Now handle properly declared static register variables. */
1340 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
1342 DECL_INITIAL (decl
) = 0;
1343 error ("global register variable has initial value");
1345 if (TREE_THIS_VOLATILE (decl
))
1346 warning (OPT_Wvolatile_register_var
,
1347 "optimization may eliminate reads and/or "
1348 "writes to register variables");
1350 /* If the user specified one of the eliminables registers here,
1351 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1352 confused with that register and be eliminated. This usage is
1353 somewhat suspect... */
1355 SET_DECL_RTL (decl
, gen_rtx_raw_REG (mode
, reg_number
));
1356 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
1357 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
1359 if (TREE_STATIC (decl
))
1361 /* Make this register global, so not usable for anything
1363 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1364 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
1365 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
1367 nregs
= hard_regno_nregs
[reg_number
][mode
];
1369 globalize_reg (decl
, reg_number
+ --nregs
);
1372 /* As a register variable, it has no section. */
1376 /* Now handle ordinary static variables and functions (in memory).
1377 Also handle vars declared register invalidly. */
1378 else if (name
[0] == '*')
1380 #ifdef REGISTER_PREFIX
1381 if (strlen (REGISTER_PREFIX
) != 0)
1383 reg_number
= decode_reg_name (name
);
1384 if (reg_number
>= 0 || reg_number
== -3)
1385 error ("register name given for non-register variable %q+D", decl
);
1390 /* Specifying a section attribute on a variable forces it into a
1391 non-.bss section, and thus it cannot be common. */
1392 /* FIXME: In general this code should not be necessary because
1393 visibility pass is doing the same work. But notice_global_symbol
1394 is called early and it needs to make DECL_RTL to get the name.
1395 we take care of recomputing the DECL_RTL after visibility is changed. */
1396 if (TREE_CODE (decl
) == VAR_DECL
1397 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
))
1398 && DECL_SECTION_NAME (decl
) != NULL
1399 && DECL_INITIAL (decl
) == NULL_TREE
1400 && DECL_COMMON (decl
))
1401 DECL_COMMON (decl
) = 0;
1403 /* Variables can't be both common and weak. */
1404 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_WEAK (decl
))
1405 DECL_COMMON (decl
) = 0;
1407 if (use_object_blocks_p () && use_blocks_for_decl_p (decl
))
1408 x
= create_block_symbol (name
, get_block_for_decl (decl
), -1);
1411 enum machine_mode address_mode
= Pmode
;
1412 if (TREE_TYPE (decl
) != error_mark_node
)
1414 addr_space_t as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1415 address_mode
= targetm
.addr_space
.address_mode (as
);
1417 x
= gen_rtx_SYMBOL_REF (address_mode
, name
);
1419 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
1420 SET_SYMBOL_REF_DECL (x
, decl
);
1422 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
1423 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1424 set_mem_attributes (x
, decl
, 1);
1425 SET_DECL_RTL (decl
, x
);
1427 /* Optionally set flags or add text to the name to record information
1428 such as that it is a function name.
1429 If the name is changed, the macro ASM_OUTPUT_LABELREF
1430 will have to know how to strip this information. */
1431 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
1434 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1435 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1439 make_decl_rtl_for_debug (tree decl
)
1441 unsigned int save_aliasing_flag
;
1444 if (DECL_RTL_SET_P (decl
))
1445 return DECL_RTL (decl
);
1447 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1448 call new_alias_set. If running with -fcompare-debug, sometimes
1449 we do not want to create alias sets that will throw the alias
1450 numbers off in the comparison dumps. So... clearing
1451 flag_strict_aliasing will keep new_alias_set() from creating a
1453 save_aliasing_flag
= flag_strict_aliasing
;
1454 flag_strict_aliasing
= 0;
1456 rtl
= DECL_RTL (decl
);
1457 /* Reset DECL_RTL back, as various parts of the compiler expects
1458 DECL_RTL set meaning it is actually going to be output. */
1459 SET_DECL_RTL (decl
, NULL
);
1461 flag_strict_aliasing
= save_aliasing_flag
;
1465 /* Output a string of literal assembler code
1466 for an `asm' keyword used between functions. */
1469 assemble_asm (tree string
)
1474 if (TREE_CODE (string
) == ADDR_EXPR
)
1475 string
= TREE_OPERAND (string
, 0);
1477 p
= TREE_STRING_POINTER (string
);
1478 fprintf (asm_out_file
, "%s%s\n", p
[0] == '\t' ? "" : "\t", p
);
1481 /* Write the address of the entity given by SYMBOL to SEC. */
1483 assemble_addr_to_section (rtx symbol
, section
*sec
)
1485 switch_to_section (sec
);
1486 assemble_align (POINTER_SIZE
);
1487 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1490 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1491 not) section for PRIORITY. */
1493 get_cdtor_priority_section (int priority
, bool constructor_p
)
1497 /* ??? This only works reliably with the GNU linker. */
1498 sprintf (buf
, "%s.%.5u",
1499 constructor_p
? ".ctors" : ".dtors",
1500 /* Invert the numbering so the linker puts us in the proper
1501 order; constructors are run from right to left, and the
1502 linker sorts in increasing order. */
1503 MAX_INIT_PRIORITY
- priority
);
1504 return get_section (buf
, SECTION_WRITE
, NULL
);
1508 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1512 if (priority
!= DEFAULT_INIT_PRIORITY
)
1513 sec
= get_cdtor_priority_section (priority
,
1514 /*constructor_p=*/false);
1516 sec
= get_section (".dtors", SECTION_WRITE
, NULL
);
1518 assemble_addr_to_section (symbol
, sec
);
1521 #ifdef DTORS_SECTION_ASM_OP
1523 default_dtor_section_asm_out_destructor (rtx symbol
,
1524 int priority ATTRIBUTE_UNUSED
)
1526 assemble_addr_to_section (symbol
, dtors_section
);
1531 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1535 if (priority
!= DEFAULT_INIT_PRIORITY
)
1536 sec
= get_cdtor_priority_section (priority
,
1537 /*constructor_p=*/true);
1539 sec
= get_section (".ctors", SECTION_WRITE
, NULL
);
1541 assemble_addr_to_section (symbol
, sec
);
1544 #ifdef CTORS_SECTION_ASM_OP
1546 default_ctor_section_asm_out_constructor (rtx symbol
,
1547 int priority ATTRIBUTE_UNUSED
)
1549 assemble_addr_to_section (symbol
, ctors_section
);
1553 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1554 a nonzero value if the constant pool should be output before the
1555 start of the function, or a zero value if the pool should output
1556 after the end of the function. The default is to put it before the
1559 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1560 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1563 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1564 to be output to assembler.
1565 Set first_global_object_name and weak_global_object_name as appropriate. */
1568 notice_global_symbol (tree decl
)
1570 const char **type
= &first_global_object_name
;
1572 if (first_global_object_name
1573 || !TREE_PUBLIC (decl
)
1574 || DECL_EXTERNAL (decl
)
1575 || !DECL_NAME (decl
)
1576 || (TREE_CODE (decl
) != FUNCTION_DECL
1577 && (TREE_CODE (decl
) != VAR_DECL
1578 || (DECL_COMMON (decl
)
1579 && (DECL_INITIAL (decl
) == 0
1580 || DECL_INITIAL (decl
) == error_mark_node
))))
1581 || !MEM_P (DECL_RTL (decl
)))
1584 /* We win when global object is found, but it is useful to know about weak
1585 symbol as well so we can produce nicer unique names. */
1586 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
) || flag_shlib
)
1587 type
= &weak_global_object_name
;
1593 rtx decl_rtl
= DECL_RTL (decl
);
1595 p
= targetm
.strip_name_encoding (XSTR (XEXP (decl_rtl
, 0), 0));
1596 name
= ggc_strdup (p
);
1602 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1603 current function goes into the cold section, so that targets can use
1604 current_function_section during RTL expansion. DECL describes the
1608 decide_function_section (tree decl
)
1610 first_function_block_is_cold
= false;
1612 if (flag_reorder_blocks_and_partition
)
1613 /* We will decide in assemble_start_function. */
1616 if (DECL_SECTION_NAME (decl
))
1618 struct cgraph_node
*node
= cgraph_node::get (current_function_decl
);
1619 /* Calls to function_section rely on first_function_block_is_cold
1621 first_function_block_is_cold
= (node
1623 == NODE_FREQUENCY_UNLIKELY_EXECUTED
);
1626 in_cold_section_p
= first_function_block_is_cold
;
1629 /* Output assembler code for the constant pool of a function and associated
1630 with defining the name of the function. DECL describes the function.
1631 NAME is the function's name. For the constant pool, we use the current
1632 constant pool data. */
1635 assemble_start_function (tree decl
, const char *fnname
)
1638 char tmp_label
[100];
1639 bool hot_label_written
= false;
1641 if (flag_reorder_blocks_and_partition
)
1643 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTB", const_labelno
);
1644 crtl
->subsections
.hot_section_label
= ggc_strdup (tmp_label
);
1645 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDB", const_labelno
);
1646 crtl
->subsections
.cold_section_label
= ggc_strdup (tmp_label
);
1647 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTE", const_labelno
);
1648 crtl
->subsections
.hot_section_end_label
= ggc_strdup (tmp_label
);
1649 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDE", const_labelno
);
1650 crtl
->subsections
.cold_section_end_label
= ggc_strdup (tmp_label
);
1655 crtl
->subsections
.hot_section_label
= NULL
;
1656 crtl
->subsections
.cold_section_label
= NULL
;
1657 crtl
->subsections
.hot_section_end_label
= NULL
;
1658 crtl
->subsections
.cold_section_end_label
= NULL
;
1661 /* The following code does not need preprocessing in the assembler. */
1665 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1666 output_constant_pool (fnname
, decl
);
1668 /* Make sure the not and cold text (code) sections are properly
1669 aligned. This is necessary here in the case where the function
1670 has both hot and cold sections, because we don't want to re-set
1671 the alignment when the section switch happens mid-function. */
1673 if (flag_reorder_blocks_and_partition
)
1675 first_function_block_is_cold
= false;
1677 switch_to_section (unlikely_text_section ());
1678 assemble_align (DECL_ALIGN (decl
));
1679 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_label
);
1681 /* When the function starts with a cold section, we need to explicitly
1682 align the hot section and write out the hot section label.
1683 But if the current function is a thunk, we do not have a CFG. */
1685 && BB_PARTITION (ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
) == BB_COLD_PARTITION
)
1687 switch_to_section (text_section
);
1688 assemble_align (DECL_ALIGN (decl
));
1689 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1690 hot_label_written
= true;
1691 first_function_block_is_cold
= true;
1693 in_cold_section_p
= first_function_block_is_cold
;
1697 /* Switch to the correct text section for the start of the function. */
1699 switch_to_section (function_section (decl
));
1700 if (flag_reorder_blocks_and_partition
1701 && !hot_label_written
)
1702 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1704 /* Tell assembler to move to target machine's alignment for functions. */
1705 align
= floor_log2 (DECL_ALIGN (decl
) / BITS_PER_UNIT
);
1708 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1711 /* Handle a user-specified function alignment.
1712 Note that we still need to align to DECL_ALIGN, as above,
1713 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1714 if (! DECL_USER_ALIGN (decl
)
1715 && align_functions_log
> align
1716 && optimize_function_for_speed_p (cfun
))
1718 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1719 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1720 align_functions_log
, align_functions
- 1);
1722 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
1726 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1727 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1730 if (!DECL_IGNORED_P (decl
))
1731 (*debug_hooks
->begin_function
) (decl
);
1733 /* Make function name accessible from other files, if appropriate. */
1735 if (TREE_PUBLIC (decl
))
1737 notice_global_symbol (decl
);
1739 globalize_decl (decl
);
1741 maybe_assemble_visibility (decl
);
1744 if (DECL_PRESERVE_P (decl
))
1745 targetm
.asm_out
.mark_decl_preserved (fnname
);
1747 /* Do any machine/system dependent processing of the function name. */
1748 #ifdef ASM_DECLARE_FUNCTION_NAME
1749 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1751 /* Standard thing is just output label for the function. */
1752 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file
, fnname
, current_function_decl
);
1753 #endif /* ASM_DECLARE_FUNCTION_NAME */
1755 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl
)))
1756 saw_no_split_stack
= true;
1759 /* Output assembler code associated with defining the size of the
1760 function. DECL describes the function. NAME is the function's name. */
1763 assemble_end_function (tree decl
, const char *fnname ATTRIBUTE_UNUSED
)
1765 #ifdef ASM_DECLARE_FUNCTION_SIZE
1766 /* We could have switched section in the middle of the function. */
1767 if (flag_reorder_blocks_and_partition
)
1768 switch_to_section (function_section (decl
));
1769 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1771 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1773 output_constant_pool (fnname
, decl
);
1774 switch_to_section (function_section (decl
)); /* need to switch back */
1776 /* Output labels for end of hot/cold text sections (to be used by
1778 if (flag_reorder_blocks_and_partition
)
1780 section
*save_text_section
;
1782 save_text_section
= in_section
;
1783 switch_to_section (unlikely_text_section ());
1784 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_end_label
);
1785 if (first_function_block_is_cold
)
1786 switch_to_section (text_section
);
1788 switch_to_section (function_section (decl
));
1789 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_end_label
);
1790 switch_to_section (save_text_section
);
1794 /* Assemble code to leave SIZE bytes of zeros. */
1797 assemble_zeros (unsigned HOST_WIDE_INT size
)
1799 /* Do no output if -fsyntax-only. */
1800 if (flag_syntax_only
)
1803 #ifdef ASM_NO_SKIP_IN_TEXT
1804 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1805 so we must output 0s explicitly in the text section. */
1806 if (ASM_NO_SKIP_IN_TEXT
&& (in_section
->common
.flags
& SECTION_CODE
) != 0)
1808 unsigned HOST_WIDE_INT i
;
1809 for (i
= 0; i
< size
; i
++)
1810 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
1815 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1818 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1821 assemble_align (int align
)
1823 if (align
> BITS_PER_UNIT
)
1825 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1829 /* Assemble a string constant with the specified C string as contents. */
1832 assemble_string (const char *p
, int size
)
1837 /* If the string is very long, split it up. */
1841 int thissize
= size
- pos
;
1842 if (thissize
> maximum
)
1845 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1853 /* A noswitch_section_callback for lcomm_section. */
1856 emit_local (tree decl ATTRIBUTE_UNUSED
,
1857 const char *name ATTRIBUTE_UNUSED
,
1858 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1859 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1861 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1862 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, decl
, name
,
1863 size
, DECL_ALIGN (decl
));
1865 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1866 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, DECL_ALIGN (decl
));
1869 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1874 /* A noswitch_section_callback for bss_noswitch_section. */
1876 #if defined ASM_OUTPUT_ALIGNED_BSS
1878 emit_bss (tree decl ATTRIBUTE_UNUSED
,
1879 const char *name ATTRIBUTE_UNUSED
,
1880 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1881 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1883 #if defined ASM_OUTPUT_ALIGNED_BSS
1884 ASM_OUTPUT_ALIGNED_BSS (asm_out_file
, decl
, name
, size
,
1885 get_variable_align (decl
));
1891 /* A noswitch_section_callback for comm_section. */
1894 emit_common (tree decl ATTRIBUTE_UNUSED
,
1895 const char *name ATTRIBUTE_UNUSED
,
1896 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1897 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1899 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1900 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, decl
, name
,
1901 size
, get_variable_align (decl
));
1903 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1904 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, name
, size
,
1905 get_variable_align (decl
));
1908 ASM_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
1913 /* A noswitch_section_callback for tls_comm_section. */
1916 emit_tls_common (tree decl ATTRIBUTE_UNUSED
,
1917 const char *name ATTRIBUTE_UNUSED
,
1918 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1919 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1921 #ifdef ASM_OUTPUT_TLS_COMMON
1922 ASM_OUTPUT_TLS_COMMON (asm_out_file
, decl
, name
, size
);
1925 sorry ("thread-local COMMON data not implemented");
1930 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1931 NAME is the name of DECL's SYMBOL_REF. */
1934 assemble_noswitch_variable (tree decl
, const char *name
, section
*sect
,
1937 unsigned HOST_WIDE_INT size
, rounded
;
1939 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
1942 if ((flag_sanitize
& SANITIZE_ADDRESS
) && asan_protect_global (decl
))
1943 size
+= asan_red_zone_size (size
);
1945 /* Don't allocate zero bytes of common,
1946 since that means "undefined external" in the linker. */
1950 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1951 so that each uninitialized object starts on such a boundary. */
1952 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1953 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1954 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1956 if (!sect
->noswitch
.callback (decl
, name
, size
, rounded
)
1957 && (unsigned HOST_WIDE_INT
) (align
/ BITS_PER_UNIT
) > rounded
)
1958 error ("requested alignment for %q+D is greater than "
1959 "implemented alignment of %wu", decl
, rounded
);
1962 /* A subroutine of assemble_variable. Output the label and contents of
1963 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1964 is as for assemble_variable. */
1967 assemble_variable_contents (tree decl
, const char *name
,
1968 bool dont_output_data
)
1970 /* Do any machine/system dependent processing of the object. */
1971 #ifdef ASM_DECLARE_OBJECT_NAME
1972 last_assemble_variable_decl
= decl
;
1973 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1975 /* Standard thing is just output label for the object. */
1976 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1977 #endif /* ASM_DECLARE_OBJECT_NAME */
1979 if (!dont_output_data
)
1981 /* Caller is supposed to use varpool_get_constructor when it wants
1982 to output the body. */
1983 gcc_assert (!in_lto_p
|| DECL_INITIAL (decl
) != error_mark_node
);
1984 if (DECL_INITIAL (decl
)
1985 && DECL_INITIAL (decl
) != error_mark_node
1986 && !initializer_zerop (DECL_INITIAL (decl
)))
1987 /* Output the actual data. */
1988 output_constant (DECL_INITIAL (decl
),
1989 tree_to_uhwi (DECL_SIZE_UNIT (decl
)),
1990 get_variable_align (decl
));
1992 /* Leave space for it. */
1993 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl
)));
1997 /* Assemble everything that is needed for a variable or function declaration.
1998 Not used for automatic variables, and not used for function definitions.
1999 Should not be called for variables of incomplete structure type.
2001 TOP_LEVEL is nonzero if this variable has file scope.
2002 AT_END is nonzero if this is the special handling, at end of compilation,
2003 to define things that have had only tentative definitions.
2004 DONT_OUTPUT_DATA if nonzero means don't actually output the
2005 initial value (that will be done by the caller). */
2008 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
2009 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
2012 rtx decl_rtl
, symbol
;
2015 bool asan_protected
= false;
2017 /* This function is supposed to handle VARIABLES. Ensure we have one. */
2018 gcc_assert (TREE_CODE (decl
) == VAR_DECL
);
2020 /* Emulated TLS had better not get this far. */
2021 gcc_checking_assert (targetm
.have_tls
|| !DECL_THREAD_LOCAL_P (decl
));
2023 last_assemble_variable_decl
= 0;
2025 /* Normally no need to say anything here for external references,
2026 since assemble_external is called by the language-specific code
2027 when a declaration is first seen. */
2029 if (DECL_EXTERNAL (decl
))
2032 /* Do nothing for global register variables. */
2033 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
2035 TREE_ASM_WRITTEN (decl
) = 1;
2039 /* If type was incomplete when the variable was declared,
2040 see if it is complete now. */
2042 if (DECL_SIZE (decl
) == 0)
2043 layout_decl (decl
, 0);
2045 /* Still incomplete => don't allocate it; treat the tentative defn
2046 (which is what it must have been) as an `extern' reference. */
2048 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
2050 error ("storage size of %q+D isn%'t known", decl
);
2051 TREE_ASM_WRITTEN (decl
) = 1;
2055 /* The first declaration of a variable that comes through this function
2056 decides whether it is global (in C, has external linkage)
2057 or local (in C, has internal linkage). So do nothing more
2058 if this function has already run. */
2060 if (TREE_ASM_WRITTEN (decl
))
2063 /* Make sure targetm.encode_section_info is invoked before we set
2065 decl_rtl
= DECL_RTL (decl
);
2067 TREE_ASM_WRITTEN (decl
) = 1;
2069 /* Do no output if -fsyntax-only. */
2070 if (flag_syntax_only
)
2073 if (! dont_output_data
2074 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl
)))
2076 error ("size of variable %q+D is too large", decl
);
2080 gcc_assert (MEM_P (decl_rtl
));
2081 gcc_assert (GET_CODE (XEXP (decl_rtl
, 0)) == SYMBOL_REF
);
2082 symbol
= XEXP (decl_rtl
, 0);
2084 /* If this symbol belongs to the tree constant pool, output the constant
2085 if it hasn't already been written. */
2086 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
2088 tree decl
= SYMBOL_REF_DECL (symbol
);
2089 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
2090 output_constant_def_contents (symbol
);
2096 name
= XSTR (symbol
, 0);
2097 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
2098 notice_global_symbol (decl
);
2100 /* Compute the alignment of this data. */
2102 align_variable (decl
, dont_output_data
);
2104 if ((flag_sanitize
& SANITIZE_ADDRESS
)
2105 && asan_protect_global (decl
))
2107 asan_protected
= true;
2108 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
2109 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
2112 set_mem_align (decl_rtl
, DECL_ALIGN (decl
));
2114 align
= get_variable_align (decl
);
2116 if (TREE_PUBLIC (decl
))
2117 maybe_assemble_visibility (decl
);
2119 if (DECL_PRESERVE_P (decl
))
2120 targetm
.asm_out
.mark_decl_preserved (name
);
2122 /* First make the assembler name(s) global if appropriate. */
2123 sect
= get_variable_section (decl
, false);
2124 if (TREE_PUBLIC (decl
)
2125 && (sect
->common
.flags
& SECTION_COMMON
) == 0)
2126 globalize_decl (decl
);
2128 /* Output any data that we will need to use the address of. */
2129 if (DECL_INITIAL (decl
) && DECL_INITIAL (decl
) != error_mark_node
)
2130 output_addressed_constants (DECL_INITIAL (decl
));
2132 /* dbxout.c needs to know this. */
2133 if (sect
&& (sect
->common
.flags
& SECTION_CODE
) != 0)
2134 DECL_IN_TEXT_SECTION (decl
) = 1;
2136 /* If the decl is part of an object_block, make sure that the decl
2137 has been positioned within its block, but do not write out its
2138 definition yet. output_object_blocks will do that later. */
2139 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
2141 gcc_assert (!dont_output_data
);
2142 place_block_symbol (symbol
);
2144 else if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
2145 assemble_noswitch_variable (decl
, name
, sect
, align
);
2148 /* The following bit of code ensures that vtable_map
2149 variables are not only in the comdat section, but that
2150 each variable has its own unique comdat name. If this
2151 code is removed, the variables end up in the same section
2152 with a single comdat name.
2154 FIXME: resolve_unique_section needs to deal better with
2155 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
2156 that is fixed, this if-else statement can be replaced with
2157 a single call to "switch_to_section (sect)". */
2158 if (sect
->named
.name
2159 && (strcmp (sect
->named
.name
, ".vtable_map_vars") == 0))
2161 #if defined (OBJECT_FORMAT_ELF)
2162 targetm
.asm_out
.named_section (sect
->named
.name
,
2163 sect
->named
.common
.flags
2168 switch_to_section (sect
);
2172 switch_to_section (sect
);
2173 if (align
> BITS_PER_UNIT
)
2174 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2175 assemble_variable_contents (decl
, name
, dont_output_data
);
2178 unsigned HOST_WIDE_INT
int size
2179 = tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2180 assemble_zeros (asan_red_zone_size (size
));
2186 /* Given a function declaration (FN_DECL), this function assembles the
2187 function into the .preinit_array section. */
2190 assemble_vtv_preinit_initializer (tree fn_decl
)
2193 unsigned flags
= SECTION_WRITE
;
2194 rtx symbol
= XEXP (DECL_RTL (fn_decl
), 0);
2196 flags
|= SECTION_NOTYPE
;
2197 sect
= get_section (".preinit_array", flags
, fn_decl
);
2198 switch_to_section (sect
);
2199 assemble_addr_to_section (symbol
, sect
);
2202 /* Return 1 if type TYPE contains any pointers. */
2205 contains_pointers_p (tree type
)
2207 switch (TREE_CODE (type
))
2210 case REFERENCE_TYPE
:
2211 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2212 so I'll play safe and return 1. */
2218 case QUAL_UNION_TYPE
:
2221 /* For a type that has fields, see if the fields have pointers. */
2222 for (fields
= TYPE_FIELDS (type
); fields
; fields
= DECL_CHAIN (fields
))
2223 if (TREE_CODE (fields
) == FIELD_DECL
2224 && contains_pointers_p (TREE_TYPE (fields
)))
2230 /* An array type contains pointers if its element type does. */
2231 return contains_pointers_p (TREE_TYPE (type
));
2238 /* We delay assemble_external processing until
2239 the compilation unit is finalized. This is the best we can do for
2240 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2241 it all the way to final. See PR 17982 for further discussion. */
2242 static GTY(()) tree pending_assemble_externals
;
2244 #ifdef ASM_OUTPUT_EXTERNAL
2245 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2246 As a result, assemble_external can be called after the list of externals
2247 is processed and the pointer set destroyed. */
2248 static bool pending_assemble_externals_processed
;
2250 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2251 TREE_LIST in assemble_external. */
2252 static struct pointer_set_t
*pending_assemble_externals_set
;
2254 /* True if DECL is a function decl for which no out-of-line copy exists.
2255 It is assumed that DECL's assembler name has been set. */
2258 incorporeal_function_p (tree decl
)
2260 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
2264 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
2265 && (DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA
2266 || DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA_WITH_ALIGN
))
2269 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2270 /* Atomic or sync builtins which have survived this far will be
2271 resolved externally and therefore are not incorporeal. */
2272 if (strncmp (name
, "__builtin_", 10) == 0)
2278 /* Actually do the tests to determine if this is necessary, and invoke
2279 ASM_OUTPUT_EXTERNAL. */
2281 assemble_external_real (tree decl
)
2283 rtx rtl
= DECL_RTL (decl
);
2285 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
2286 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
2287 && !incorporeal_function_p (decl
))
2289 /* Some systems do require some output. */
2290 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
2291 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
2297 process_pending_assemble_externals (void)
2299 #ifdef ASM_OUTPUT_EXTERNAL
2301 for (list
= pending_assemble_externals
; list
; list
= TREE_CHAIN (list
))
2302 assemble_external_real (TREE_VALUE (list
));
2304 pending_assemble_externals
= 0;
2305 pending_assemble_externals_processed
= true;
2306 pointer_set_destroy (pending_assemble_externals_set
);
2310 /* This TREE_LIST contains any weak symbol declarations waiting
2312 static GTY(()) tree weak_decls
;
2314 /* Output something to declare an external symbol to the assembler,
2315 and qualifiers such as weakness. (Most assemblers don't need
2316 extern declaration, so we normally output nothing.) Do nothing if
2317 DECL is not external. */
2320 assemble_external (tree decl ATTRIBUTE_UNUSED
)
2322 /* Make sure that the ASM_OUT_FILE is open.
2323 If it's not, we should not be calling this function. */
2324 gcc_assert (asm_out_file
);
2326 /* In a perfect world, the following condition would be true.
2327 Sadly, the Java and Go front ends emit assembly *from the front end*,
2328 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2330 /* This function should only be called if we are expanding, or have
2332 Ideally, only final.c would be calling this function, but it is
2333 not clear whether that would break things somehow. See PR 17982
2334 for further discussion. */
2335 gcc_assert (cgraph_state
== CGRAPH_STATE_EXPANSION
2336 || cgraph_state
== CGRAPH_STATE_FINISHED
);
2339 if (!DECL_P (decl
) || !DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
))
2342 /* We want to output annotation for weak and external symbols at
2343 very last to check if they are references or not. */
2345 if (TARGET_SUPPORTS_WEAK
2347 /* TREE_STATIC is a weird and abused creature which is not
2348 generally the right test for whether an entity has been
2349 locally emitted, inlined or otherwise not-really-extern, but
2350 for declarations that can be weak, it happens to be
2352 && !TREE_STATIC (decl
)
2353 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl
))
2354 && value_member (decl
, weak_decls
) == NULL_TREE
)
2355 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
2357 #ifdef ASM_OUTPUT_EXTERNAL
2358 if (pending_assemble_externals_processed
)
2360 assemble_external_real (decl
);
2364 if (! pointer_set_insert (pending_assemble_externals_set
, decl
))
2365 pending_assemble_externals
= tree_cons (NULL
, decl
,
2366 pending_assemble_externals
);
2370 /* Similar, for calling a library function FUN. */
2373 assemble_external_libcall (rtx fun
)
2375 /* Declare library function name external when first used, if nec. */
2376 if (! SYMBOL_REF_USED (fun
))
2378 SYMBOL_REF_USED (fun
) = 1;
2379 targetm
.asm_out
.external_libcall (fun
);
2383 /* Assemble a label named NAME. */
2386 assemble_label (FILE *file
, const char *name
)
2388 ASM_OUTPUT_LABEL (file
, name
);
2391 /* Set the symbol_referenced flag for ID. */
2393 mark_referenced (tree id
)
2395 TREE_SYMBOL_REFERENCED (id
) = 1;
2398 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2400 mark_decl_referenced (tree decl
)
2402 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2404 /* Extern inline functions don't become needed when referenced.
2405 If we know a method will be emitted in other TU and no new
2406 functions can be marked reachable, just use the external
2408 struct cgraph_node
*node
= cgraph_node::get_create (decl
);
2409 if (!DECL_EXTERNAL (decl
)
2410 && !node
->definition
)
2411 node
->mark_force_output ();
2413 else if (TREE_CODE (decl
) == VAR_DECL
)
2415 varpool_node
*node
= varpool_node::get_create (decl
);
2416 /* C++ frontend use mark_decl_references to force COMDAT variables
2417 to be output that might appear dead otherwise. */
2418 node
->force_output
= true;
2420 /* else do nothing - we can get various sorts of CST nodes here,
2421 which do not need to be marked. */
2425 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2426 until we find an identifier that is not itself a transparent alias.
2427 Modify the alias passed to it by reference (and all aliases on the
2428 way to the ultimate target), such that they do not have to be
2429 followed again, and return the ultimate target of the alias
2433 ultimate_transparent_alias_target (tree
*alias
)
2435 tree target
= *alias
;
2437 if (IDENTIFIER_TRANSPARENT_ALIAS (target
))
2439 gcc_assert (TREE_CHAIN (target
));
2440 target
= ultimate_transparent_alias_target (&TREE_CHAIN (target
));
2441 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target
)
2442 && ! TREE_CHAIN (target
));
2449 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2450 starts with a *, the rest of NAME is output verbatim. Otherwise
2451 NAME is transformed in a target-specific way (usually by the
2452 addition of an underscore). */
2455 assemble_name_raw (FILE *file
, const char *name
)
2458 fputs (&name
[1], file
);
2460 ASM_OUTPUT_LABELREF (file
, name
);
2463 /* Like assemble_name_raw, but should be used when NAME might refer to
2464 an entity that is also represented as a tree (like a function or
2465 variable). If NAME does refer to such an entity, that entity will
2466 be marked as referenced. */
2469 assemble_name (FILE *file
, const char *name
)
2471 const char *real_name
;
2474 real_name
= targetm
.strip_name_encoding (name
);
2476 id
= maybe_get_identifier (real_name
);
2481 mark_referenced (id
);
2482 ultimate_transparent_alias_target (&id
);
2484 name
= IDENTIFIER_POINTER (id
);
2485 gcc_assert (! TREE_CHAIN (id
));
2488 assemble_name_raw (file
, name
);
2491 /* Allocate SIZE bytes writable static space with a gensym name
2492 and return an RTX to refer to its address. */
2495 assemble_static_space (unsigned HOST_WIDE_INT size
)
2498 const char *namestring
;
2501 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
2503 namestring
= ggc_strdup (name
);
2505 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
2506 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
2508 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2509 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
2512 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2513 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
2516 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2517 so that each uninitialized object starts on such a boundary. */
2518 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2519 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2520 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
2521 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2522 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2523 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2530 /* Assemble the static constant template for function entry trampolines.
2531 This is done at most once per compilation.
2532 Returns an RTX for the address of the template. */
2534 static GTY(()) rtx initial_trampoline
;
2537 assemble_trampoline_template (void)
2544 gcc_assert (targetm
.asm_out
.trampoline_template
!= NULL
);
2546 if (initial_trampoline
)
2547 return initial_trampoline
;
2549 /* By default, put trampoline templates in read-only data section. */
2551 #ifdef TRAMPOLINE_SECTION
2552 switch_to_section (TRAMPOLINE_SECTION
);
2554 switch_to_section (readonly_data_section
);
2557 /* Write the assembler code to define one. */
2558 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
2560 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
2562 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
2563 targetm
.asm_out
.trampoline_template (asm_out_file
);
2565 /* Record the rtl to refer to it. */
2566 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
2567 name
= ggc_strdup (label
);
2568 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
2569 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2571 initial_trampoline
= gen_const_mem (BLKmode
, symbol
);
2572 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
2573 set_mem_size (initial_trampoline
, TRAMPOLINE_SIZE
);
2575 return initial_trampoline
;
2578 /* A and B are either alignments or offsets. Return the minimum alignment
2579 that may be assumed after adding the two together. */
2581 static inline unsigned
2582 min_align (unsigned int a
, unsigned int b
)
2584 return (a
| b
) & -(a
| b
);
2587 /* Return the assembler directive for creating a given kind of integer
2588 object. SIZE is the number of bytes in the object and ALIGNED_P
2589 indicates whether it is known to be aligned. Return NULL if the
2590 assembly dialect has no such directive.
2592 The returned string should be printed at the start of a new line and
2593 be followed immediately by the object's initial value. */
2596 integer_asm_op (int size
, int aligned_p
)
2598 struct asm_int_op
*ops
;
2601 ops
= &targetm
.asm_out
.aligned_op
;
2603 ops
= &targetm
.asm_out
.unaligned_op
;
2608 return targetm
.asm_out
.byte_op
;
2622 /* Use directive OP to assemble an integer object X. Print OP at the
2623 start of the line, followed immediately by the value of X. */
2626 assemble_integer_with_op (const char *op
, rtx x
)
2628 fputs (op
, asm_out_file
);
2629 output_addr_const (asm_out_file
, x
);
2630 fputc ('\n', asm_out_file
);
2633 /* The default implementation of the asm_out.integer target hook. */
2636 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2637 unsigned int size ATTRIBUTE_UNUSED
,
2638 int aligned_p ATTRIBUTE_UNUSED
)
2640 const char *op
= integer_asm_op (size
, aligned_p
);
2641 /* Avoid GAS bugs for large values. Specifically negative values whose
2642 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2643 if (size
> UNITS_PER_WORD
&& size
> POINTER_SIZE
/ BITS_PER_UNIT
)
2645 return op
&& (assemble_integer_with_op (op
, x
), true);
2648 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2649 the alignment of the integer in bits. Return 1 if we were able to output
2650 the constant, otherwise 0. We must be able to output the constant,
2651 if FORCE is nonzero. */
2654 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2658 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2660 /* See if the target hook can handle this kind of object. */
2661 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2664 /* If the object is a multi-byte one, try splitting it up. Split
2665 it into words it if is multi-word, otherwise split it into bytes. */
2668 enum machine_mode omode
, imode
;
2669 unsigned int subalign
;
2670 unsigned int subsize
, i
;
2671 enum mode_class mclass
;
2673 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2674 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2675 if (GET_CODE (x
) == CONST_FIXED
)
2676 mclass
= GET_MODE_CLASS (GET_MODE (x
));
2680 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, mclass
, 0);
2681 imode
= mode_for_size (size
* BITS_PER_UNIT
, mclass
, 0);
2683 for (i
= 0; i
< size
; i
+= subsize
)
2685 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2686 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2692 /* If we've printed some of it, but not all of it, there's no going
2697 gcc_assert (!force
);
2703 assemble_real (REAL_VALUE_TYPE d
, enum machine_mode mode
, unsigned int align
)
2705 long data
[4] = {0, 0, 0, 0};
2707 int bitsize
, nelts
, nunits
, units_per
;
2709 /* This is hairy. We have a quantity of known size. real_to_target
2710 will put it into an array of *host* longs, 32 bits per element
2711 (even if long is more than 32 bits). We need to determine the
2712 number of array elements that are occupied (nelts) and the number
2713 of *target* min-addressable units that will be occupied in the
2714 object file (nunits). We cannot assume that 32 divides the
2715 mode's bitsize (size * BITS_PER_UNIT) evenly.
2717 size * BITS_PER_UNIT is used here to make sure that padding bits
2718 (which might appear at either end of the value; real_to_target
2719 will include the padding bits in its output array) are included. */
2721 nunits
= GET_MODE_SIZE (mode
);
2722 bitsize
= nunits
* BITS_PER_UNIT
;
2723 nelts
= CEIL (bitsize
, 32);
2724 units_per
= 32 / BITS_PER_UNIT
;
2726 real_to_target (data
, &d
, mode
);
2728 /* Put out the first word with the specified alignment. */
2729 assemble_integer (GEN_INT (data
[0]), MIN (nunits
, units_per
), align
, 1);
2730 nunits
-= units_per
;
2732 /* Subsequent words need only 32-bit alignment. */
2733 align
= min_align (align
, 32);
2735 for (i
= 1; i
< nelts
; i
++)
2737 assemble_integer (GEN_INT (data
[i
]), MIN (nunits
, units_per
), align
, 1);
2738 nunits
-= units_per
;
2742 /* Given an expression EXP with a constant value,
2743 reduce it to the sum of an assembler symbol and an integer.
2744 Store them both in the structure *VALUE.
2745 EXP must be reducible. */
2749 HOST_WIDE_INT offset
;
2753 decode_addr_const (tree exp
, struct addr_const
*value
)
2755 tree target
= TREE_OPERAND (exp
, 0);
2761 if (TREE_CODE (target
) == COMPONENT_REF
2762 && tree_fits_shwi_p (byte_position (TREE_OPERAND (target
, 1))))
2764 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2765 target
= TREE_OPERAND (target
, 0);
2767 else if (TREE_CODE (target
) == ARRAY_REF
2768 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
2770 offset
+= (tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (target
)))
2771 * tree_to_shwi (TREE_OPERAND (target
, 1)));
2772 target
= TREE_OPERAND (target
, 0);
2774 else if (TREE_CODE (target
) == MEM_REF
2775 && TREE_CODE (TREE_OPERAND (target
, 0)) == ADDR_EXPR
)
2777 offset
+= mem_ref_offset (target
).to_short_addr ();
2778 target
= TREE_OPERAND (TREE_OPERAND (target
, 0), 0);
2780 else if (TREE_CODE (target
) == INDIRECT_REF
2781 && TREE_CODE (TREE_OPERAND (target
, 0)) == NOP_EXPR
2782 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target
, 0), 0))
2784 target
= TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target
, 0), 0), 0);
2789 switch (TREE_CODE (target
))
2793 x
= DECL_RTL (target
);
2797 x
= gen_rtx_MEM (FUNCTION_MODE
,
2798 gen_rtx_LABEL_REF (Pmode
, force_label_rtx (target
)));
2807 x
= output_constant_def (target
, 1);
2814 gcc_assert (MEM_P (x
));
2818 value
->offset
= offset
;
2822 static GTY((param_is (struct constant_descriptor_tree
)))
2823 htab_t const_desc_htab
;
2825 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
2827 /* Constant pool accessor function. */
2830 constant_pool_htab (void)
2832 return const_desc_htab
;
2835 /* Compute a hash code for a constant expression. */
2838 const_desc_hash (const void *ptr
)
2840 return ((const struct constant_descriptor_tree
*)ptr
)->hash
;
2844 const_hash_1 (const tree exp
)
2849 enum tree_code code
= TREE_CODE (exp
);
2851 /* Either set P and LEN to the address and len of something to hash and
2852 exit the switch or return a value. */
2857 p
= (char *) &TREE_INT_CST_ELT (exp
, 0);
2858 len
= TREE_INT_CST_NUNITS (exp
) * sizeof (HOST_WIDE_INT
);
2862 return real_hash (TREE_REAL_CST_PTR (exp
));
2865 return fixed_hash (TREE_FIXED_CST_PTR (exp
));
2868 p
= TREE_STRING_POINTER (exp
);
2869 len
= TREE_STRING_LENGTH (exp
);
2873 return (const_hash_1 (TREE_REALPART (exp
)) * 5
2874 + const_hash_1 (TREE_IMAGPART (exp
)));
2880 hi
= 7 + VECTOR_CST_NELTS (exp
);
2882 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
2883 hi
= hi
* 563 + const_hash_1 (VECTOR_CST_ELT (exp
, i
));
2890 unsigned HOST_WIDE_INT idx
;
2893 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
2895 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
2897 hi
= hi
* 603 + const_hash_1 (value
);
2905 struct addr_const value
;
2907 decode_addr_const (exp
, &value
);
2908 switch (GET_CODE (value
.base
))
2911 /* Don't hash the address of the SYMBOL_REF;
2912 only use the offset and the symbol name. */
2914 p
= XSTR (value
.base
, 0);
2915 for (i
= 0; p
[i
] != 0; i
++)
2916 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2920 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2930 case POINTER_PLUS_EXPR
:
2932 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
2933 + const_hash_1 (TREE_OPERAND (exp
, 1)));
2936 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
2939 /* A language specific constant. Just hash the code. */
2943 /* Compute hashing function. */
2945 for (i
= 0; i
< len
; i
++)
2946 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2951 /* Wrapper of compare_constant, for the htab interface. */
2953 const_desc_eq (const void *p1
, const void *p2
)
2955 const struct constant_descriptor_tree
*const c1
2956 = (const struct constant_descriptor_tree
*) p1
;
2957 const struct constant_descriptor_tree
*const c2
2958 = (const struct constant_descriptor_tree
*) p2
;
2959 if (c1
->hash
!= c2
->hash
)
2961 return compare_constant (c1
->value
, c2
->value
);
2964 /* Compare t1 and t2, and return 1 only if they are known to result in
2965 the same bit pattern on output. */
2968 compare_constant (const tree t1
, const tree t2
)
2970 enum tree_code typecode
;
2972 if (t1
== NULL_TREE
)
2973 return t2
== NULL_TREE
;
2974 if (t2
== NULL_TREE
)
2977 if (TREE_CODE (t1
) != TREE_CODE (t2
))
2980 switch (TREE_CODE (t1
))
2983 /* Integer constants are the same only if the same width of type. */
2984 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2986 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2988 return tree_int_cst_equal (t1
, t2
);
2991 /* Real constants are the same only if the same width of type. */
2992 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2995 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
2998 /* Fixed constants are the same only if the same width of type. */
2999 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
3002 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
3005 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
3008 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
3009 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
3010 TREE_STRING_LENGTH (t1
)));
3013 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
3014 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
3020 if (VECTOR_CST_NELTS (t1
) != VECTOR_CST_NELTS (t2
))
3023 for (i
= 0; i
< VECTOR_CST_NELTS (t1
); ++i
)
3024 if (!compare_constant (VECTOR_CST_ELT (t1
, i
),
3025 VECTOR_CST_ELT (t2
, i
)))
3033 vec
<constructor_elt
, va_gc
> *v1
, *v2
;
3034 unsigned HOST_WIDE_INT idx
;
3036 typecode
= TREE_CODE (TREE_TYPE (t1
));
3037 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
3040 if (typecode
== ARRAY_TYPE
)
3042 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
3043 /* For arrays, check that the sizes all match. */
3044 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3046 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
)))
3051 /* For record and union constructors, require exact type
3053 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
3057 v1
= CONSTRUCTOR_ELTS (t1
);
3058 v2
= CONSTRUCTOR_ELTS (t2
);
3059 if (vec_safe_length (v1
) != vec_safe_length (v2
))
3062 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
3064 constructor_elt
*c1
= &(*v1
)[idx
];
3065 constructor_elt
*c2
= &(*v2
)[idx
];
3067 /* Check that each value is the same... */
3068 if (!compare_constant (c1
->value
, c2
->value
))
3070 /* ... and that they apply to the same fields! */
3071 if (typecode
== ARRAY_TYPE
)
3073 if (!compare_constant (c1
->index
, c2
->index
))
3078 if (c1
->index
!= c2
->index
)
3089 struct addr_const value1
, value2
;
3093 decode_addr_const (t1
, &value1
);
3094 decode_addr_const (t2
, &value2
);
3096 if (value1
.offset
!= value2
.offset
)
3099 code
= GET_CODE (value1
.base
);
3100 if (code
!= GET_CODE (value2
.base
))
3106 ret
= (strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
3110 ret
= (CODE_LABEL_NUMBER (XEXP (value1
.base
, 0))
3111 == CODE_LABEL_NUMBER (XEXP (value2
.base
, 0)));
3121 case POINTER_PLUS_EXPR
:
3124 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
3125 && compare_constant (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
3128 case VIEW_CONVERT_EXPR
:
3129 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3138 /* Return the section into which constant EXP should be placed. */
3141 get_constant_section (tree exp
, unsigned int align
)
3143 return targetm
.asm_out
.select_section (exp
,
3144 compute_reloc_for_constant (exp
),
3148 /* Return the size of constant EXP in bytes. */
3150 static HOST_WIDE_INT
3151 get_constant_size (tree exp
)
3155 size
= int_size_in_bytes (TREE_TYPE (exp
));
3156 if (TREE_CODE (exp
) == STRING_CST
)
3157 size
= MAX (TREE_STRING_LENGTH (exp
), size
);
3161 /* Subroutine of output_constant_def:
3162 No constant equal to EXP is known to have been output.
3163 Make a constant descriptor to enter EXP in the hash table.
3164 Assign the label number and construct RTL to refer to the
3165 constant's location in memory.
3166 Caller is responsible for updating the hash table. */
3168 static struct constant_descriptor_tree
*
3169 build_constant_desc (tree exp
)
3171 struct constant_descriptor_tree
*desc
;
3177 desc
= ggc_alloc
<constant_descriptor_tree
> ();
3180 /* Create a string containing the label name, in LABEL. */
3181 labelno
= const_labelno
++;
3182 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
3184 /* Construct the VAR_DECL associated with the constant. */
3185 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (label
),
3187 DECL_ARTIFICIAL (decl
) = 1;
3188 DECL_IGNORED_P (decl
) = 1;
3189 TREE_READONLY (decl
) = 1;
3190 TREE_STATIC (decl
) = 1;
3191 TREE_ADDRESSABLE (decl
) = 1;
3192 /* We don't set the RTL yet as this would cause varpool to assume that the
3193 variable is referenced. Moreover, it would just be dropped in LTO mode.
3194 Instead we set the flag that will be recognized in make_decl_rtl. */
3195 DECL_IN_CONSTANT_POOL (decl
) = 1;
3196 DECL_INITIAL (decl
) = desc
->value
;
3197 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3198 architectures so use DATA_ALIGNMENT as well, except for strings. */
3199 if (TREE_CODE (exp
) == STRING_CST
)
3201 #ifdef CONSTANT_ALIGNMENT
3202 DECL_ALIGN (decl
) = CONSTANT_ALIGNMENT (exp
, DECL_ALIGN (decl
));
3206 align_variable (decl
, 0);
3208 /* Now construct the SYMBOL_REF and the MEM. */
3209 if (use_object_blocks_p ())
3211 section
*sect
= get_constant_section (exp
, DECL_ALIGN (decl
));
3212 symbol
= create_block_symbol (ggc_strdup (label
),
3213 get_block_for_section (sect
), -1);
3216 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3217 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3218 SET_SYMBOL_REF_DECL (symbol
, decl
);
3219 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3221 rtl
= gen_const_mem (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
3222 set_mem_attributes (rtl
, exp
, 1);
3223 set_mem_alias_set (rtl
, 0);
3224 set_mem_alias_set (rtl
, const_alias_set
);
3226 /* We cannot share RTX'es in pool entries.
3227 Mark this piece of RTL as required for unsharing. */
3228 RTX_FLAG (rtl
, used
) = 1;
3230 /* Set flags or add text to the name to record information, such as
3231 that it is a local symbol. If the name is changed, the macro
3232 ASM_OUTPUT_LABELREF will have to know how to strip this
3233 information. This call might invalidate our local variable
3234 SYMBOL; we can't use it afterward. */
3235 targetm
.encode_section_info (exp
, rtl
, true);
3242 /* Return an rtx representing a reference to constant data in memory
3243 for the constant expression EXP.
3245 If assembler code for such a constant has already been output,
3246 return an rtx to refer to it.
3247 Otherwise, output such a constant in memory
3248 and generate an rtx for it.
3250 If DEFER is nonzero, this constant can be deferred and output only
3251 if referenced in the function after all optimizations.
3253 `const_desc_table' records which constants already have label strings. */
3256 output_constant_def (tree exp
, int defer
)
3258 struct constant_descriptor_tree
*desc
;
3259 struct constant_descriptor_tree key
;
3262 /* Look up EXP in the table of constant descriptors. If we didn't find
3263 it, create a new one. */
3265 key
.hash
= const_hash_1 (exp
);
3266 loc
= htab_find_slot_with_hash (const_desc_htab
, &key
, key
.hash
, INSERT
);
3268 desc
= (struct constant_descriptor_tree
*) *loc
;
3271 desc
= build_constant_desc (exp
);
3272 desc
->hash
= key
.hash
;
3276 maybe_output_constant_def_contents (desc
, defer
);
3280 /* Subroutine of output_constant_def: Decide whether or not we need to
3281 output the constant DESC now, and if so, do it. */
3283 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
3286 rtx symbol
= XEXP (desc
->rtl
, 0);
3287 tree exp
= desc
->value
;
3289 if (flag_syntax_only
)
3292 if (TREE_ASM_WRITTEN (exp
))
3293 /* Already output; don't do it again. */
3296 /* We can always defer constants as long as the context allows
3300 /* Increment n_deferred_constants if it exists. It needs to be at
3301 least as large as the number of constants actually referred to
3302 by the function. If it's too small we'll stop looking too early
3303 and fail to emit constants; if it's too large we'll only look
3304 through the entire function when we could have stopped earlier. */
3306 n_deferred_constants
++;
3310 output_constant_def_contents (symbol
);
3313 /* Subroutine of output_constant_def_contents. Output the definition
3314 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3315 constant's alignment in bits. */
3318 assemble_constant_contents (tree exp
, const char *label
, unsigned int align
)
3322 size
= get_constant_size (exp
);
3324 /* Do any machine/system dependent processing of the constant. */
3325 targetm
.asm_out
.declare_constant_name (asm_out_file
, label
, exp
, size
);
3327 /* Output the value of EXP. */
3328 output_constant (exp
, size
, align
);
3331 /* We must output the constant data referred to by SYMBOL; do so. */
3334 output_constant_def_contents (rtx symbol
)
3336 tree decl
= SYMBOL_REF_DECL (symbol
);
3337 tree exp
= DECL_INITIAL (decl
);
3339 bool asan_protected
= false;
3341 /* Make sure any other constants whose addresses appear in EXP
3342 are assigned label numbers. */
3343 output_addressed_constants (exp
);
3345 /* We are no longer deferring this constant. */
3346 TREE_ASM_WRITTEN (decl
) = TREE_ASM_WRITTEN (exp
) = 1;
3348 if ((flag_sanitize
& SANITIZE_ADDRESS
)
3349 && TREE_CODE (exp
) == STRING_CST
3350 && asan_protect_global (exp
))
3352 asan_protected
= true;
3353 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
3354 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
3357 /* If the constant is part of an object block, make sure that the
3358 decl has been positioned within its block, but do not write out
3359 its definition yet. output_object_blocks will do that later. */
3360 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
3361 place_block_symbol (symbol
);
3364 align
= DECL_ALIGN (decl
);
3365 switch_to_section (get_constant_section (exp
, align
));
3366 if (align
> BITS_PER_UNIT
)
3367 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
3368 assemble_constant_contents (exp
, XSTR (symbol
, 0), align
);
3371 HOST_WIDE_INT size
= get_constant_size (exp
);
3372 assemble_zeros (asan_red_zone_size (size
));
3377 /* Look up EXP in the table of constant descriptors. Return the rtl
3378 if it has been emitted, else null. */
3381 lookup_constant_def (tree exp
)
3383 struct constant_descriptor_tree
*desc
;
3384 struct constant_descriptor_tree key
;
3387 key
.hash
= const_hash_1 (exp
);
3388 desc
= (struct constant_descriptor_tree
*)
3389 htab_find_with_hash (const_desc_htab
, &key
, key
.hash
);
3391 return (desc
? desc
->rtl
: NULL_RTX
);
3394 /* Return a tree representing a reference to constant data in memory
3395 for the constant expression EXP.
3397 This is the counterpart of output_constant_def at the Tree level. */
3400 tree_output_constant_def (tree exp
)
3402 struct constant_descriptor_tree
*desc
, key
;
3406 /* Look up EXP in the table of constant descriptors. If we didn't find
3407 it, create a new one. */
3409 key
.hash
= const_hash_1 (exp
);
3410 loc
= htab_find_slot_with_hash (const_desc_htab
, &key
, key
.hash
, INSERT
);
3412 desc
= (struct constant_descriptor_tree
*) *loc
;
3415 desc
= build_constant_desc (exp
);
3416 desc
->hash
= key
.hash
;
3420 decl
= SYMBOL_REF_DECL (XEXP (desc
->rtl
, 0));
3421 varpool_node::finalize_decl (decl
);
3425 /* Used in the hash tables to avoid outputting the same constant
3426 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3427 are output once per function, not once per file. */
3428 /* ??? Only a few targets need per-function constant pools. Most
3429 can use one per-file pool. Should add a targetm bit to tell the
3432 struct GTY(()) rtx_constant_pool
{
3433 /* Pointers to first and last constant in pool, as ordered by offset. */
3434 struct constant_descriptor_rtx
*first
;
3435 struct constant_descriptor_rtx
*last
;
3437 /* Hash facility for making memory-constants from constant rtl-expressions.
3438 It is used on RISC machines where immediate integer arguments and
3439 constant addresses are restricted so that such constants must be stored
3441 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_htab
;
3443 /* Current offset in constant pool (does not include any
3444 machine-specific header). */
3445 HOST_WIDE_INT offset
;
3448 struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx
{
3449 struct constant_descriptor_rtx
*next
;
3453 HOST_WIDE_INT offset
;
3455 enum machine_mode mode
;
3461 /* Hash and compare functions for const_rtx_htab. */
3464 const_desc_rtx_hash (const void *ptr
)
3466 const struct constant_descriptor_rtx
*const desc
3467 = (const struct constant_descriptor_rtx
*) ptr
;
3472 const_desc_rtx_eq (const void *a
, const void *b
)
3474 const struct constant_descriptor_rtx
*const x
3475 = (const struct constant_descriptor_rtx
*) a
;
3476 const struct constant_descriptor_rtx
*const y
3477 = (const struct constant_descriptor_rtx
*) b
;
3479 if (x
->mode
!= y
->mode
)
3481 return rtx_equal_p (x
->constant
, y
->constant
);
3484 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3487 const_rtx_hash_1 (rtx
*xp
, void *data
)
3489 unsigned HOST_WIDE_INT hwi
;
3490 enum machine_mode mode
;
3497 code
= GET_CODE (x
);
3498 mode
= GET_MODE (x
);
3499 h
= (hashval_t
) code
* 1048573 + mode
;
3508 int shift
= sizeof (hashval_t
) * CHAR_BIT
;
3509 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
3511 h
^= (hashval_t
) hwi
;
3512 for (i
= 1; i
< n
; ++i
)
3515 h
^= (hashval_t
) hwi
;
3520 case CONST_WIDE_INT
:
3521 hwi
= GET_MODE_PRECISION (mode
);
3523 for (i
= 0; i
< CONST_WIDE_INT_NUNITS (x
); i
++)
3524 hwi
^= CONST_WIDE_INT_ELT (x
, i
);
3529 if (TARGET_SUPPORTS_WIDE_INT
== 0 && mode
== VOIDmode
)
3531 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
3535 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
3539 h
^= fixed_hash (CONST_FIXED_VALUE (x
));
3545 for (i
= XVECLEN (x
, 0); i
-- > 0; )
3546 h
= h
* 251 + const_rtx_hash_1 (&XVECEXP (x
, 0, i
), data
);
3551 h
^= htab_hash_string (XSTR (x
, 0));
3555 h
= h
* 251 + CODE_LABEL_NUMBER (XEXP (x
, 0));
3559 case UNSPEC_VOLATILE
:
3560 h
= h
* 251 + XINT (x
, 1);
3567 hp
= (hashval_t
*) data
;
3568 *hp
= *hp
* 509 + h
;
3572 /* Compute a hash value for X, which should be a constant. */
3575 const_rtx_hash (rtx x
)
3578 for_each_rtx (&x
, const_rtx_hash_1
, &h
);
3583 /* Create and return a new rtx constant pool. */
3585 static struct rtx_constant_pool
*
3586 create_constant_pool (void)
3588 struct rtx_constant_pool
*pool
;
3590 pool
= ggc_alloc
<rtx_constant_pool
> ();
3591 pool
->const_rtx_htab
= htab_create_ggc (31, const_desc_rtx_hash
,
3592 const_desc_rtx_eq
, NULL
);
3599 /* Initialize constant pool hashing for a new function. */
3602 init_varasm_status (void)
3604 crtl
->varasm
.pool
= create_constant_pool ();
3605 crtl
->varasm
.deferred_constants
= 0;
3608 /* Given a MINUS expression, simplify it if both sides
3609 include the same symbol. */
3612 simplify_subtraction (rtx x
)
3614 rtx r
= simplify_rtx (x
);
3618 /* Given a constant rtx X, make (or find) a memory constant for its value
3619 and return a MEM rtx to refer to it in memory. */
3622 force_const_mem (enum machine_mode mode
, rtx x
)
3624 struct constant_descriptor_rtx
*desc
, tmp
;
3625 struct rtx_constant_pool
*pool
;
3632 /* If we're not allowed to drop X into the constant pool, don't. */
3633 if (targetm
.cannot_force_const_mem (mode
, x
))
3636 /* Record that this function has used a constant pool entry. */
3637 crtl
->uses_const_pool
= 1;
3639 /* Decide which pool to use. */
3640 pool
= (targetm
.use_blocks_for_constant_p (mode
, x
)
3641 ? shared_constant_pool
3642 : crtl
->varasm
.pool
);
3644 /* Lookup the value in the hashtable. */
3647 hash
= const_rtx_hash (x
);
3648 slot
= htab_find_slot_with_hash (pool
->const_rtx_htab
, &tmp
, hash
, INSERT
);
3649 desc
= (struct constant_descriptor_rtx
*) *slot
;
3651 /* If the constant was already present, return its memory. */
3653 return copy_rtx (desc
->mem
);
3655 /* Otherwise, create a new descriptor. */
3656 desc
= ggc_alloc
<constant_descriptor_rtx
> ();
3659 /* Align the location counter as required by EXP's data type. */
3660 align
= GET_MODE_ALIGNMENT (mode
== VOIDmode
? word_mode
: mode
);
3661 #ifdef CONSTANT_ALIGNMENT
3663 tree type
= lang_hooks
.types
.type_for_mode (mode
, 0);
3664 if (type
!= NULL_TREE
)
3665 align
= CONSTANT_ALIGNMENT (make_tree (type
, x
), align
);
3669 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
3670 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
3673 desc
->constant
= copy_rtx (tmp
.constant
);
3674 desc
->offset
= pool
->offset
;
3677 desc
->align
= align
;
3678 desc
->labelno
= const_labelno
;
3681 pool
->offset
+= GET_MODE_SIZE (mode
);
3683 pool
->last
->next
= desc
;
3685 pool
->first
= pool
->last
= desc
;
3688 /* Create a string containing the label name, in LABEL. */
3689 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3692 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3693 the constants pool. */
3694 if (use_object_blocks_p () && targetm
.use_blocks_for_constant_p (mode
, x
))
3696 section
*sect
= targetm
.asm_out
.select_rtx_section (mode
, x
, align
);
3697 symbol
= create_block_symbol (ggc_strdup (label
),
3698 get_block_for_section (sect
), -1);
3701 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3703 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3704 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3705 SET_SYMBOL_REF_CONSTANT (symbol
, desc
);
3707 /* Construct the MEM. */
3708 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
3709 set_mem_attributes (def
, lang_hooks
.types
.type_for_mode (mode
, 0), 1);
3710 set_mem_align (def
, align
);
3712 /* If we're dropping a label to the constant pool, make sure we
3714 if (GET_CODE (x
) == LABEL_REF
)
3715 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
3717 return copy_rtx (def
);
3720 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3723 get_pool_constant (rtx addr
)
3725 return SYMBOL_REF_CONSTANT (addr
)->constant
;
3728 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3729 and whether it has been output or not. */
3732 get_pool_constant_mark (rtx addr
, bool *pmarked
)
3734 struct constant_descriptor_rtx
*desc
;
3736 desc
= SYMBOL_REF_CONSTANT (addr
);
3737 *pmarked
= (desc
->mark
!= 0);
3738 return desc
->constant
;
3741 /* Similar, return the mode. */
3744 get_pool_mode (const_rtx addr
)
3746 return SYMBOL_REF_CONSTANT (addr
)->mode
;
3749 /* Return the size of the constant pool. */
3752 get_pool_size (void)
3754 return crtl
->varasm
.pool
->offset
;
3757 /* Worker function for output_constant_pool_1. Emit assembly for X
3758 in MODE with known alignment ALIGN. */
3761 output_constant_pool_2 (enum machine_mode mode
, rtx x
, unsigned int align
)
3763 switch (GET_MODE_CLASS (mode
))
3766 case MODE_DECIMAL_FLOAT
:
3770 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x
));
3771 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
3772 assemble_real (r
, mode
, align
);
3777 case MODE_PARTIAL_INT
:
3782 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
3785 case MODE_VECTOR_FLOAT
:
3786 case MODE_VECTOR_INT
:
3787 case MODE_VECTOR_FRACT
:
3788 case MODE_VECTOR_UFRACT
:
3789 case MODE_VECTOR_ACCUM
:
3790 case MODE_VECTOR_UACCUM
:
3793 enum machine_mode submode
= GET_MODE_INNER (mode
);
3794 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
3796 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
3797 units
= CONST_VECTOR_NUNITS (x
);
3799 for (i
= 0; i
< units
; i
++)
3801 rtx elt
= CONST_VECTOR_ELT (x
, i
);
3802 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
3812 /* Worker function for output_constant_pool. Emit constant DESC,
3813 giving it ALIGN bits of alignment. */
3816 output_constant_pool_1 (struct constant_descriptor_rtx
*desc
,
3823 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3824 whose CODE_LABEL has been deleted. This can occur if a jump table
3825 is eliminated by optimization. If so, write a constant of zero
3826 instead. Note that this can also happen by turning the
3827 CODE_LABEL into a NOTE. */
3828 /* ??? This seems completely and utterly wrong. Certainly it's
3829 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3830 functioning even with INSN_DELETED_P and friends. */
3833 switch (GET_CODE (tmp
))
3836 if (GET_CODE (XEXP (tmp
, 0)) != PLUS
3837 || GET_CODE (XEXP (XEXP (tmp
, 0), 0)) != LABEL_REF
)
3839 tmp
= XEXP (XEXP (tmp
, 0), 0);
3843 tmp
= XEXP (tmp
, 0);
3844 gcc_assert (!INSN_DELETED_P (tmp
));
3845 gcc_assert (!NOTE_P (tmp
)
3846 || NOTE_KIND (tmp
) != NOTE_INSN_DELETED
);
3853 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3854 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
3855 align
, desc
->labelno
, done
);
3858 assemble_align (align
);
3860 /* Output the label. */
3861 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
3863 /* Output the data. */
3864 output_constant_pool_2 (desc
->mode
, x
, align
);
3866 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3867 sections have proper size. */
3868 if (align
> GET_MODE_BITSIZE (desc
->mode
)
3870 && (in_section
->common
.flags
& SECTION_MERGE
))
3871 assemble_align (align
);
3873 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3879 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3880 to as used. Emit referenced deferred strings. This function can
3881 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3884 mark_constant (rtx
*current_rtx
, void *data ATTRIBUTE_UNUSED
)
3886 rtx x
= *current_rtx
;
3888 if (x
== NULL_RTX
|| GET_CODE (x
) != SYMBOL_REF
)
3891 if (CONSTANT_POOL_ADDRESS_P (x
))
3893 struct constant_descriptor_rtx
*desc
= SYMBOL_REF_CONSTANT (x
);
3894 if (desc
->mark
== 0)
3897 for_each_rtx (&desc
->constant
, mark_constant
, NULL
);
3900 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
3902 tree decl
= SYMBOL_REF_DECL (x
);
3903 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
3905 n_deferred_constants
--;
3906 output_constant_def_contents (x
);
3913 /* Look through appropriate parts of INSN, marking all entries in the
3914 constant pool which are actually being used. Entries that are only
3915 referenced by other constants are also marked as used. Emit
3916 deferred strings that are used. */
3919 mark_constants (rtx insn
)
3924 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3925 insns, not any notes that may be attached. We don't want to mark
3926 a constant just because it happens to appear in a REG_EQUIV note. */
3927 if (GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3929 rtx seq
= PATTERN (insn
);
3930 int i
, n
= XVECLEN (seq
, 0);
3931 for (i
= 0; i
< n
; ++i
)
3933 rtx subinsn
= XVECEXP (seq
, 0, i
);
3934 if (INSN_P (subinsn
))
3935 for_each_rtx (&PATTERN (subinsn
), mark_constant
, NULL
);
3939 for_each_rtx (&PATTERN (insn
), mark_constant
, NULL
);
3942 /* Look through the instructions for this function, and mark all the
3943 entries in POOL which are actually being used. Emit deferred constants
3944 which have indeed been used. */
3947 mark_constant_pool (void)
3951 if (!crtl
->uses_const_pool
&& n_deferred_constants
== 0)
3954 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3955 mark_constants (insn
);
3958 /* Write all the constants in POOL. */
3961 output_constant_pool_contents (struct rtx_constant_pool
*pool
)
3963 struct constant_descriptor_rtx
*desc
;
3965 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
3968 /* If the constant is part of an object_block, make sure that
3969 the constant has been positioned within its block, but do not
3970 write out its definition yet. output_object_blocks will do
3972 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
3973 && SYMBOL_REF_BLOCK (desc
->sym
))
3974 place_block_symbol (desc
->sym
);
3977 switch_to_section (targetm
.asm_out
.select_rtx_section
3978 (desc
->mode
, desc
->constant
, desc
->align
));
3979 output_constant_pool_1 (desc
, desc
->align
);
3984 /* Mark all constants that are used in the current function, then write
3985 out the function's private constant pool. */
3988 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
3989 tree fndecl ATTRIBUTE_UNUSED
)
3991 struct rtx_constant_pool
*pool
= crtl
->varasm
.pool
;
3993 /* It is possible for gcc to call force_const_mem and then to later
3994 discard the instructions which refer to the constant. In such a
3995 case we do not need to output the constant. */
3996 mark_constant_pool ();
3998 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3999 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4002 output_constant_pool_contents (pool
);
4004 #ifdef ASM_OUTPUT_POOL_EPILOGUE
4005 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
4009 /* Write the contents of the shared constant pool. */
4012 output_shared_constant_pool (void)
4014 output_constant_pool_contents (shared_constant_pool
);
4017 /* Determine what kind of relocations EXP may need. */
4020 compute_reloc_for_constant (tree exp
)
4022 int reloc
= 0, reloc2
;
4025 switch (TREE_CODE (exp
))
4029 /* Go inside any operations that get_inner_reference can handle and see
4030 if what's inside is a constant: no need to do anything here for
4031 addresses of variables or functions. */
4032 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4033 tem
= TREE_OPERAND (tem
, 0))
4036 if (TREE_CODE (tem
) == MEM_REF
4037 && TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
)
4039 reloc
= compute_reloc_for_constant (TREE_OPERAND (tem
, 0));
4043 if (!targetm
.binds_local_p (tem
))
4050 case POINTER_PLUS_EXPR
:
4051 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4052 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4056 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4057 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4058 /* The difference of two local labels is computable at link time. */
4059 if (reloc
== 1 && reloc2
== 1)
4066 case VIEW_CONVERT_EXPR
:
4067 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4072 unsigned HOST_WIDE_INT idx
;
4073 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4075 reloc
|= compute_reloc_for_constant (tem
);
4085 /* Find all the constants whose addresses are referenced inside of EXP,
4086 and make sure assembler code with a label has been output for each one.
4087 Indicate whether an ADDR_EXPR has been encountered. */
4090 output_addressed_constants (tree exp
)
4094 switch (TREE_CODE (exp
))
4098 /* Go inside any operations that get_inner_reference can handle and see
4099 if what's inside is a constant: no need to do anything here for
4100 addresses of variables or functions. */
4101 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4102 tem
= TREE_OPERAND (tem
, 0))
4105 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4106 if (TREE_CODE (tem
) == CONST_DECL
&& DECL_INITIAL (tem
))
4107 tem
= DECL_INITIAL (tem
);
4109 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
4110 output_constant_def (tem
, 0);
4112 if (TREE_CODE (tem
) == MEM_REF
)
4113 output_addressed_constants (TREE_OPERAND (tem
, 0));
4117 case POINTER_PLUS_EXPR
:
4119 output_addressed_constants (TREE_OPERAND (exp
, 1));
4123 case VIEW_CONVERT_EXPR
:
4124 output_addressed_constants (TREE_OPERAND (exp
, 0));
4129 unsigned HOST_WIDE_INT idx
;
4130 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4132 output_addressed_constants (tem
);
4141 /* Whether a constructor CTOR is a valid static constant initializer if all
4142 its elements are. This used to be internal to initializer_constant_valid_p
4143 and has been exposed to let other functions like categorize_ctor_elements
4144 evaluate the property while walking a constructor for other purposes. */
4147 constructor_static_from_elts_p (const_tree ctor
)
4149 return (TREE_CONSTANT (ctor
)
4150 && (TREE_CODE (TREE_TYPE (ctor
)) == UNION_TYPE
4151 || TREE_CODE (TREE_TYPE (ctor
)) == RECORD_TYPE
4152 || TREE_CODE (TREE_TYPE (ctor
)) == ARRAY_TYPE
));
4155 static tree
initializer_constant_valid_p_1 (tree value
, tree endtype
,
4158 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4159 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4160 which are valid when ENDTYPE is an integer of any size; in
4161 particular, this does not accept a pointer minus a constant. This
4162 returns null_pointer_node if the VALUE is an absolute constant
4163 which can be used to initialize a static variable. Otherwise it
4167 narrowing_initializer_constant_valid_p (tree value
, tree endtype
, tree
*cache
)
4171 if (!INTEGRAL_TYPE_P (endtype
))
4174 op0
= TREE_OPERAND (value
, 0);
4175 op1
= TREE_OPERAND (value
, 1);
4177 /* Like STRIP_NOPS except allow the operand mode to widen. This
4178 works around a feature of fold that simplifies (int)(p1 - p2) to
4179 ((int)p1 - (int)p2) under the theory that the narrower operation
4182 while (CONVERT_EXPR_P (op0
)
4183 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
4185 tree inner
= TREE_OPERAND (op0
, 0);
4186 if (inner
== error_mark_node
4187 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4188 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0
)))
4189 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4194 while (CONVERT_EXPR_P (op1
)
4195 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
4197 tree inner
= TREE_OPERAND (op1
, 0);
4198 if (inner
== error_mark_node
4199 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4200 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1
)))
4201 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4206 op0
= initializer_constant_valid_p_1 (op0
, endtype
, cache
);
4210 op1
= initializer_constant_valid_p_1 (op1
, endtype
,
4211 cache
? cache
+ 2 : NULL
);
4212 /* Both initializers must be known. */
4216 && (op0
== null_pointer_node
4217 || TREE_CODE (value
) == MINUS_EXPR
))
4218 return null_pointer_node
;
4220 /* Support differences between labels. */
4221 if (TREE_CODE (op0
) == LABEL_DECL
4222 && TREE_CODE (op1
) == LABEL_DECL
)
4223 return null_pointer_node
;
4225 if (TREE_CODE (op0
) == STRING_CST
4226 && TREE_CODE (op1
) == STRING_CST
4227 && operand_equal_p (op0
, op1
, 1))
4228 return null_pointer_node
;
4234 /* Helper function of initializer_constant_valid_p.
4235 Return nonzero if VALUE is a valid constant-valued expression
4236 for use in initializing a static variable; one that can be an
4237 element of a "constant" initializer.
4239 Return null_pointer_node if the value is absolute;
4240 if it is relocatable, return the variable that determines the relocation.
4241 We assume that VALUE has been folded as much as possible;
4242 therefore, we do not need to check for such things as
4243 arithmetic-combinations of integers.
4245 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4248 initializer_constant_valid_p_1 (tree value
, tree endtype
, tree
*cache
)
4252 switch (TREE_CODE (value
))
4255 if (constructor_static_from_elts_p (value
))
4257 unsigned HOST_WIDE_INT idx
;
4259 bool absolute
= true;
4261 if (cache
&& cache
[0] == value
)
4263 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4266 reloc
= initializer_constant_valid_p_1 (elt
, TREE_TYPE (elt
),
4273 cache
[1] = NULL_TREE
;
4277 if (reloc
!= null_pointer_node
)
4280 /* For a non-absolute relocation, there is no single
4281 variable that can be "the variable that determines the
4286 cache
[1] = absolute
? null_pointer_node
: error_mark_node
;
4288 return absolute
? null_pointer_node
: error_mark_node
;
4291 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
4299 return null_pointer_node
;
4304 tree op0
= staticp (TREE_OPERAND (value
, 0));
4307 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4308 to be a constant, this is old-skool offsetof-like nonsense. */
4309 if (TREE_CODE (op0
) == INDIRECT_REF
4310 && TREE_CONSTANT (TREE_OPERAND (op0
, 0)))
4311 return null_pointer_node
;
4312 /* Taking the address of a nested function involves a trampoline,
4313 unless we don't need or want one. */
4314 if (TREE_CODE (op0
) == FUNCTION_DECL
4315 && DECL_STATIC_CHAIN (op0
)
4316 && !TREE_NO_TRAMPOLINE (value
))
4318 /* "&{...}" requires a temporary to hold the constructed
4320 if (TREE_CODE (op0
) == CONSTRUCTOR
)
4326 case NON_LVALUE_EXPR
:
4327 return initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4330 case VIEW_CONVERT_EXPR
:
4332 tree src
= TREE_OPERAND (value
, 0);
4333 tree src_type
= TREE_TYPE (src
);
4334 tree dest_type
= TREE_TYPE (value
);
4336 /* Allow view-conversions from aggregate to non-aggregate type only
4337 if the bit pattern is fully preserved afterwards; otherwise, the
4338 RTL expander won't be able to apply a subsequent transformation
4339 to the underlying constructor. */
4340 if (AGGREGATE_TYPE_P (src_type
) && !AGGREGATE_TYPE_P (dest_type
))
4342 if (TYPE_MODE (endtype
) == TYPE_MODE (dest_type
))
4343 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4348 /* Allow all other kinds of view-conversion. */
4349 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4354 tree src
= TREE_OPERAND (value
, 0);
4355 tree src_type
= TREE_TYPE (src
);
4356 tree dest_type
= TREE_TYPE (value
);
4358 /* Allow conversions between pointer types, floating-point
4359 types, and offset types. */
4360 if ((POINTER_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
))
4361 || (FLOAT_TYPE_P (dest_type
) && FLOAT_TYPE_P (src_type
))
4362 || (TREE_CODE (dest_type
) == OFFSET_TYPE
4363 && TREE_CODE (src_type
) == OFFSET_TYPE
))
4364 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4366 /* Allow length-preserving conversions between integer types. */
4367 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
)
4368 && (TYPE_PRECISION (dest_type
) == TYPE_PRECISION (src_type
)))
4369 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4371 /* Allow conversions between other integer types only if
4373 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
))
4375 tree inner
= initializer_constant_valid_p_1 (src
, endtype
, cache
);
4376 if (inner
== null_pointer_node
)
4377 return null_pointer_node
;
4381 /* Allow (int) &foo provided int is as wide as a pointer. */
4382 if (INTEGRAL_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
)
4383 && (TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
)))
4384 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4386 /* Likewise conversions from int to pointers, but also allow
4387 conversions from 0. */
4388 if ((POINTER_TYPE_P (dest_type
)
4389 || TREE_CODE (dest_type
) == OFFSET_TYPE
)
4390 && INTEGRAL_TYPE_P (src_type
))
4392 if (TREE_CODE (src
) == INTEGER_CST
4393 && TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
))
4394 return null_pointer_node
;
4395 if (integer_zerop (src
))
4396 return null_pointer_node
;
4397 else if (TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
))
4398 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4401 /* Allow conversions to struct or union types if the value
4403 if (TREE_CODE (dest_type
) == RECORD_TYPE
4404 || TREE_CODE (dest_type
) == UNION_TYPE
)
4405 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4409 case POINTER_PLUS_EXPR
:
4411 /* Any valid floating-point constants will have been folded by now;
4412 with -frounding-math we hit this with addition of two constants. */
4413 if (TREE_CODE (endtype
) == REAL_TYPE
)
4415 if (cache
&& cache
[0] == value
)
4417 if (! INTEGRAL_TYPE_P (endtype
)
4418 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4420 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4422 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4425 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4426 endtype
, ncache
+ 2);
4427 /* If either term is absolute, use the other term's relocation. */
4428 if (valid0
== null_pointer_node
)
4430 else if (valid1
== null_pointer_node
)
4432 /* Support narrowing pointer differences. */
4434 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4438 /* Support narrowing pointer differences. */
4439 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4448 if (TREE_CODE (endtype
) == REAL_TYPE
)
4450 if (cache
&& cache
[0] == value
)
4452 if (! INTEGRAL_TYPE_P (endtype
)
4453 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4455 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4457 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4460 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4461 endtype
, ncache
+ 2);
4462 /* Win if second argument is absolute. */
4463 if (valid1
== null_pointer_node
)
4465 /* Win if both arguments have the same relocation.
4466 Then the value is absolute. */
4467 else if (valid0
== valid1
&& valid0
!= 0)
4468 ret
= null_pointer_node
;
4469 /* Since GCC guarantees that string constants are unique in the
4470 generated code, a subtraction between two copies of the same
4471 constant string is absolute. */
4472 else if (valid0
&& TREE_CODE (valid0
) == STRING_CST
4473 && valid1
&& TREE_CODE (valid1
) == STRING_CST
4474 && operand_equal_p (valid0
, valid1
, 1))
4475 ret
= null_pointer_node
;
4476 /* Support narrowing differences. */
4478 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4482 /* Support narrowing differences. */
4483 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4498 /* Return nonzero if VALUE is a valid constant-valued expression
4499 for use in initializing a static variable; one that can be an
4500 element of a "constant" initializer.
4502 Return null_pointer_node if the value is absolute;
4503 if it is relocatable, return the variable that determines the relocation.
4504 We assume that VALUE has been folded as much as possible;
4505 therefore, we do not need to check for such things as
4506 arithmetic-combinations of integers. */
4508 initializer_constant_valid_p (tree value
, tree endtype
)
4510 return initializer_constant_valid_p_1 (value
, endtype
, NULL
);
4513 /* Return true if VALUE is a valid constant-valued expression
4514 for use in initializing a static bit-field; one that can be
4515 an element of a "constant" initializer. */
4518 initializer_constant_valid_for_bitfield_p (tree value
)
4520 /* For bitfields we support integer constants or possibly nested aggregates
4522 switch (TREE_CODE (value
))
4526 unsigned HOST_WIDE_INT idx
;
4529 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4530 if (!initializer_constant_valid_for_bitfield_p (elt
))
4539 case VIEW_CONVERT_EXPR
:
4540 case NON_LVALUE_EXPR
:
4542 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value
, 0));
4551 /* output_constructor outer state of relevance in recursive calls, typically
4552 for nested aggregate bitfields. */
4555 unsigned int bit_offset
; /* current position in ... */
4556 int byte
; /* ... the outer byte buffer. */
4559 static unsigned HOST_WIDE_INT
4560 output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int,
4563 /* Output assembler code for constant EXP, with no label.
4564 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4565 Assumes output_addressed_constants has been done on EXP already.
4567 Generate at least SIZE bytes of assembler data, padding at the end
4568 with zeros if necessary. SIZE must always be specified. The returned
4569 value is the actual number of bytes of assembler data generated, which
4570 may be bigger than SIZE if the object contains a variable length field.
4572 SIZE is important for structure constructors,
4573 since trailing members may have been omitted from the constructor.
4574 It is also important for initialization of arrays from string constants
4575 since the full length of the string constant might not be wanted.
4576 It is also needed for initialization of unions, where the initializer's
4577 type is just one member, and that may not be as long as the union.
4579 There a case in which we would fail to output exactly SIZE bytes:
4580 for a structure constructor that wants to produce more than SIZE bytes.
4581 But such constructors will never be generated for any possible input.
4583 ALIGN is the alignment of the data in bits. */
4585 static unsigned HOST_WIDE_INT
4586 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
)
4588 enum tree_code code
;
4589 unsigned HOST_WIDE_INT thissize
;
4591 if (size
== 0 || flag_syntax_only
)
4594 /* See if we're trying to initialize a pointer in a non-default mode
4595 to the address of some declaration somewhere. If the target says
4596 the mode is valid for pointers, assume the target has a way of
4598 if (TREE_CODE (exp
) == NOP_EXPR
4599 && POINTER_TYPE_P (TREE_TYPE (exp
))
4600 && targetm
.addr_space
.valid_pointer_mode
4601 (TYPE_MODE (TREE_TYPE (exp
)),
4602 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4604 tree saved_type
= TREE_TYPE (exp
);
4606 /* Peel off any intermediate conversions-to-pointer for valid
4608 while (TREE_CODE (exp
) == NOP_EXPR
4609 && POINTER_TYPE_P (TREE_TYPE (exp
))
4610 && targetm
.addr_space
.valid_pointer_mode
4611 (TYPE_MODE (TREE_TYPE (exp
)),
4612 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4613 exp
= TREE_OPERAND (exp
, 0);
4615 /* If what we're left with is the address of something, we can
4616 convert the address to the final type and output it that
4618 if (TREE_CODE (exp
) == ADDR_EXPR
)
4619 exp
= build1 (ADDR_EXPR
, saved_type
, TREE_OPERAND (exp
, 0));
4620 /* Likewise for constant ints. */
4621 else if (TREE_CODE (exp
) == INTEGER_CST
)
4622 exp
= wide_int_to_tree (saved_type
, exp
);
4626 /* Eliminate any conversions since we'll be outputting the underlying
4628 while (CONVERT_EXPR_P (exp
)
4629 || TREE_CODE (exp
) == NON_LVALUE_EXPR
4630 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
4632 HOST_WIDE_INT type_size
= int_size_in_bytes (TREE_TYPE (exp
));
4633 HOST_WIDE_INT op_size
= int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp
, 0)));
4635 /* Make sure eliminating the conversion is really a no-op, except with
4636 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4637 union types to allow for Ada unchecked unions. */
4638 if (type_size
> op_size
4639 && TREE_CODE (exp
) != VIEW_CONVERT_EXPR
4640 && TREE_CODE (TREE_TYPE (exp
)) != UNION_TYPE
)
4641 /* Keep the conversion. */
4644 exp
= TREE_OPERAND (exp
, 0);
4647 code
= TREE_CODE (TREE_TYPE (exp
));
4648 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
4650 /* Allow a constructor with no elements for any data type.
4651 This means to fill the space with zeros. */
4652 if (TREE_CODE (exp
) == CONSTRUCTOR
4653 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp
)))
4655 assemble_zeros (size
);
4659 if (TREE_CODE (exp
) == FDESC_EXPR
)
4661 #ifdef ASM_OUTPUT_FDESC
4662 HOST_WIDE_INT part
= tree_to_shwi (TREE_OPERAND (exp
, 1));
4663 tree decl
= TREE_OPERAND (exp
, 0);
4664 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
4671 /* Now output the underlying data. If we've handling the padding, return.
4672 Otherwise, break and ensure SIZE is the size written. */
4679 case REFERENCE_TYPE
:
4681 case FIXED_POINT_TYPE
:
4683 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
4684 EXPAND_INITIALIZER
),
4685 MIN (size
, thissize
), align
, 0))
4686 error ("initializer for integer/fixed-point value is too complicated");
4690 if (TREE_CODE (exp
) != REAL_CST
)
4691 error ("initializer for floating value is not a floating constant");
4693 assemble_real (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)), align
);
4697 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
);
4698 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
4699 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)));
4704 switch (TREE_CODE (exp
))
4707 return output_constructor (exp
, size
, align
, NULL
);
4710 = MIN ((unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
), size
);
4711 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
4715 enum machine_mode inner
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
4716 unsigned int nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
4717 int elt_size
= GET_MODE_SIZE (inner
);
4718 output_constant (VECTOR_CST_ELT (exp
, 0), elt_size
, align
);
4719 thissize
= elt_size
;
4720 for (unsigned int i
= 1; i
< VECTOR_CST_NELTS (exp
); i
++)
4722 output_constant (VECTOR_CST_ELT (exp
, i
), elt_size
, nalign
);
4723 thissize
+= elt_size
;
4734 gcc_assert (TREE_CODE (exp
) == CONSTRUCTOR
);
4735 return output_constructor (exp
, size
, align
, NULL
);
4744 if (size
> thissize
)
4745 assemble_zeros (size
- thissize
);
4751 /* Subroutine of output_constructor, used for computing the size of
4752 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4753 type with an unspecified upper bound. */
4755 static unsigned HOST_WIDE_INT
4756 array_size_for_constructor (tree val
)
4759 unsigned HOST_WIDE_INT cnt
;
4760 tree index
, value
, tmp
;
4763 /* This code used to attempt to handle string constants that are not
4764 arrays of single-bytes, but nothing else does, so there's no point in
4766 if (TREE_CODE (val
) == STRING_CST
)
4767 return TREE_STRING_LENGTH (val
);
4769 max_index
= NULL_TREE
;
4770 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val
), cnt
, index
, value
)
4772 if (TREE_CODE (index
) == RANGE_EXPR
)
4773 index
= TREE_OPERAND (index
, 1);
4774 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
4778 if (max_index
== NULL_TREE
)
4781 /* Compute the total number of array elements. */
4782 tmp
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)));
4783 i
= wi::to_offset (max_index
) - wi::to_offset (tmp
) + 1;
4785 /* Multiply by the array element unit size to find number of bytes. */
4786 i
*= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
4788 gcc_assert (wi::fits_uhwi_p (i
));
4789 return i
.to_uhwi ();
4792 /* Other datastructures + helpers for output_constructor. */
4794 /* output_constructor local state to support interaction with helpers. */
4798 /* Received arguments. */
4799 tree exp
; /* Constructor expression. */
4800 tree type
; /* Type of constructor expression. */
4801 unsigned HOST_WIDE_INT size
; /* # bytes to output - pad if necessary. */
4802 unsigned int align
; /* Known initial alignment. */
4803 tree min_index
; /* Lower bound if specified for an array. */
4805 /* Output processing state. */
4806 HOST_WIDE_INT total_bytes
; /* # bytes output so far / current position. */
4807 int byte
; /* Part of a bitfield byte yet to be output. */
4808 int last_relative_index
; /* Implicit or explicit index of the last
4809 array element output within a bitfield. */
4810 bool byte_buffer_in_use
; /* Whether BYTE is in use. */
4812 /* Current element. */
4813 tree field
; /* Current field decl in a record. */
4814 tree val
; /* Current element value. */
4815 tree index
; /* Current element index. */
4819 /* Helper for output_constructor. From the current LOCAL state, output a
4820 RANGE_EXPR element. */
4823 output_constructor_array_range (oc_local_state
*local
)
4825 unsigned HOST_WIDE_INT fieldsize
4826 = int_size_in_bytes (TREE_TYPE (local
->type
));
4828 HOST_WIDE_INT lo_index
4829 = tree_to_shwi (TREE_OPERAND (local
->index
, 0));
4830 HOST_WIDE_INT hi_index
4831 = tree_to_shwi (TREE_OPERAND (local
->index
, 1));
4832 HOST_WIDE_INT index
;
4835 = min_align (local
->align
, fieldsize
* BITS_PER_UNIT
);
4837 for (index
= lo_index
; index
<= hi_index
; index
++)
4839 /* Output the element's initial value. */
4840 if (local
->val
== NULL_TREE
)
4841 assemble_zeros (fieldsize
);
4843 fieldsize
= output_constant (local
->val
, fieldsize
, align2
);
4845 /* Count its size. */
4846 local
->total_bytes
+= fieldsize
;
4850 /* Helper for output_constructor. From the current LOCAL state, output a
4851 field element that is not true bitfield or part of an outer one. */
4854 output_constructor_regular_field (oc_local_state
*local
)
4856 /* Field size and position. Since this structure is static, we know the
4857 positions are constant. */
4858 unsigned HOST_WIDE_INT fieldsize
;
4859 HOST_WIDE_INT fieldpos
;
4861 unsigned int align2
;
4863 if (local
->index
!= NULL_TREE
)
4865 /* Perform the index calculation in modulo arithmetic but
4866 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
4867 but we are using an unsigned sizetype. */
4868 unsigned prec
= TYPE_PRECISION (sizetype
);
4869 offset_int idx
= wi::sext (wi::to_offset (local
->index
)
4870 - wi::to_offset (local
->min_index
), prec
);
4871 fieldpos
= (idx
* wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local
->val
))))
4874 else if (local
->field
!= NULL_TREE
)
4875 fieldpos
= int_byte_position (local
->field
);
4879 /* Output any buffered-up bit-fields preceding this element. */
4880 if (local
->byte_buffer_in_use
)
4882 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
4883 local
->total_bytes
++;
4884 local
->byte_buffer_in_use
= false;
4887 /* Advance to offset of this element.
4888 Note no alignment needed in an array, since that is guaranteed
4889 if each element has the proper size. */
4890 if ((local
->field
!= NULL_TREE
|| local
->index
!= NULL_TREE
)
4891 && fieldpos
> local
->total_bytes
)
4893 assemble_zeros (fieldpos
- local
->total_bytes
);
4894 local
->total_bytes
= fieldpos
;
4897 /* Find the alignment of this element. */
4898 align2
= min_align (local
->align
, BITS_PER_UNIT
* fieldpos
);
4900 /* Determine size this element should occupy. */
4905 /* If this is an array with an unspecified upper bound,
4906 the initializer determines the size. */
4907 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4908 but we cannot do this until the deprecated support for
4909 initializing zero-length array members is removed. */
4910 if (TREE_CODE (TREE_TYPE (local
->field
)) == ARRAY_TYPE
4911 && TYPE_DOMAIN (TREE_TYPE (local
->field
))
4912 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local
->field
))))
4914 fieldsize
= array_size_for_constructor (local
->val
);
4915 /* Given a non-empty initialization, this field had
4917 gcc_assert (!fieldsize
|| !DECL_CHAIN (local
->field
));
4920 fieldsize
= tree_to_uhwi (DECL_SIZE_UNIT (local
->field
));
4923 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->type
));
4925 /* Output the element's initial value. */
4926 if (local
->val
== NULL_TREE
)
4927 assemble_zeros (fieldsize
);
4929 fieldsize
= output_constant (local
->val
, fieldsize
, align2
);
4931 /* Count its size. */
4932 local
->total_bytes
+= fieldsize
;
4935 /* Helper for output_constructor. From the LOCAL state, output an element
4936 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
4937 from the start of a possibly ongoing outer byte buffer. */
4940 output_constructor_bitfield (oc_local_state
*local
, unsigned int bit_offset
)
4942 /* Bit size of this element. */
4943 HOST_WIDE_INT ebitsize
4945 ? tree_to_uhwi (DECL_SIZE (local
->field
))
4946 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local
->type
))));
4948 /* Relative index of this element if this is an array component. */
4949 HOST_WIDE_INT relative_index
4952 ? (tree_to_shwi (local
->index
)
4953 - tree_to_shwi (local
->min_index
))
4954 : local
->last_relative_index
+ 1)
4957 /* Bit position of this element from the start of the containing
4959 HOST_WIDE_INT constructor_relative_ebitpos
4961 ? int_bit_position (local
->field
)
4962 : ebitsize
* relative_index
);
4964 /* Bit position of this element from the start of a possibly ongoing
4965 outer byte buffer. */
4966 HOST_WIDE_INT byte_relative_ebitpos
4967 = bit_offset
+ constructor_relative_ebitpos
;
4969 /* From the start of a possibly ongoing outer byte buffer, offsets to
4970 the first bit of this element and to the first bit past the end of
4972 HOST_WIDE_INT next_offset
= byte_relative_ebitpos
;
4973 HOST_WIDE_INT end_offset
= byte_relative_ebitpos
+ ebitsize
;
4975 local
->last_relative_index
= relative_index
;
4977 if (local
->val
== NULL_TREE
)
4978 local
->val
= integer_zero_node
;
4980 while (TREE_CODE (local
->val
) == VIEW_CONVERT_EXPR
4981 || TREE_CODE (local
->val
) == NON_LVALUE_EXPR
)
4982 local
->val
= TREE_OPERAND (local
->val
, 0);
4984 if (TREE_CODE (local
->val
) != INTEGER_CST
4985 && TREE_CODE (local
->val
) != CONSTRUCTOR
)
4987 error ("invalid initial value for member %qE", DECL_NAME (local
->field
));
4991 /* If this field does not start in this (or next) byte, skip some bytes. */
4992 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
4994 /* Output remnant of any bit field in previous bytes. */
4995 if (local
->byte_buffer_in_use
)
4997 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
4998 local
->total_bytes
++;
4999 local
->byte_buffer_in_use
= false;
5002 /* If still not at proper byte, advance to there. */
5003 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
5005 gcc_assert (next_offset
/ BITS_PER_UNIT
>= local
->total_bytes
);
5006 assemble_zeros (next_offset
/ BITS_PER_UNIT
- local
->total_bytes
);
5007 local
->total_bytes
= next_offset
/ BITS_PER_UNIT
;
5011 /* Set up the buffer if necessary. */
5012 if (!local
->byte_buffer_in_use
)
5016 local
->byte_buffer_in_use
= true;
5019 /* If this is nested constructor, recurse passing the bit offset and the
5020 pending data, then retrieve the new pending data afterwards. */
5021 if (TREE_CODE (local
->val
) == CONSTRUCTOR
)
5023 oc_outer_state temp_state
;
5024 temp_state
.bit_offset
= next_offset
% BITS_PER_UNIT
;
5025 temp_state
.byte
= local
->byte
;
5027 += output_constructor (local
->val
, 0, 0, &temp_state
);
5028 local
->byte
= temp_state
.byte
;
5032 /* Otherwise, we must split the element into pieces that fall within
5033 separate bytes, and combine each byte with previous or following
5035 while (next_offset
< end_offset
)
5039 HOST_WIDE_INT value
;
5040 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
5041 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
5043 /* Advance from byte to byte within this element when necessary. */
5044 while (next_byte
!= local
->total_bytes
)
5046 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5047 local
->total_bytes
++;
5051 /* Number of bits we can process at once (all part of the same byte). */
5052 this_time
= MIN (end_offset
- next_offset
, BITS_PER_UNIT
- next_bit
);
5053 if (BYTES_BIG_ENDIAN
)
5055 /* On big-endian machine, take the most significant bits (of the
5056 bits that are significant) first and put them into bytes from
5057 the most significant end. */
5058 shift
= end_offset
- next_offset
- this_time
;
5060 /* Don't try to take a bunch of bits that cross
5061 the word boundary in the INTEGER_CST. We can
5062 only select bits from one element. */
5063 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5064 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5066 const int end
= shift
+ this_time
- 1;
5067 shift
= end
& -HOST_BITS_PER_WIDE_INT
;
5068 this_time
= end
- shift
+ 1;
5071 /* Now get the bits from the appropriate constant word. */
5072 value
= TREE_INT_CST_ELT (local
->val
, shift
/ HOST_BITS_PER_WIDE_INT
);
5073 shift
= shift
& (HOST_BITS_PER_WIDE_INT
- 1);
5075 /* Get the result. This works only when:
5076 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5077 local
->byte
|= (((value
>> shift
)
5078 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5079 << (BITS_PER_UNIT
- this_time
- next_bit
));
5083 /* On little-endian machines, take the least significant bits of
5084 the value first and pack them starting at the least significant
5085 bits of the bytes. */
5086 shift
= next_offset
- byte_relative_ebitpos
;
5088 /* Don't try to take a bunch of bits that cross
5089 the word boundary in the INTEGER_CST. We can
5090 only select bits from one element. */
5091 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5092 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5094 = HOST_BITS_PER_WIDE_INT
- (shift
& (HOST_BITS_PER_WIDE_INT
- 1));
5096 /* Now get the bits from the appropriate constant word. */
5097 value
= TREE_INT_CST_ELT (local
->val
, shift
/ HOST_BITS_PER_WIDE_INT
);
5098 shift
= shift
& (HOST_BITS_PER_WIDE_INT
- 1);
5100 /* Get the result. This works only when:
5101 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5102 local
->byte
|= (((value
>> shift
)
5103 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5107 next_offset
+= this_time
;
5108 local
->byte_buffer_in_use
= true;
5112 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5113 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5114 caller output state of relevance in recursive invocations. */
5116 static unsigned HOST_WIDE_INT
5117 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
,
5118 unsigned int align
, oc_outer_state
*outer
)
5120 unsigned HOST_WIDE_INT cnt
;
5121 constructor_elt
*ce
;
5123 oc_local_state local
;
5125 /* Setup our local state to communicate with helpers. */
5127 local
.type
= TREE_TYPE (exp
);
5129 local
.align
= align
;
5130 if (TREE_CODE (local
.type
) == ARRAY_TYPE
&& TYPE_DOMAIN (local
.type
))
5131 local
.min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (local
.type
));
5133 local
.min_index
= NULL_TREE
;
5135 local
.total_bytes
= 0;
5136 local
.byte_buffer_in_use
= outer
!= NULL
;
5137 local
.byte
= outer
? outer
->byte
: 0;
5138 local
.last_relative_index
= -1;
5140 gcc_assert (HOST_BITS_PER_WIDE_INT
>= BITS_PER_UNIT
);
5142 /* As CE goes through the elements of the constant, FIELD goes through the
5143 structure fields if the constant is a structure. If the constant is a
5144 union, we override this by getting the field from the TREE_LIST element.
5145 But the constant could also be an array. Then FIELD is zero.
5147 There is always a maximum of one element in the chain LINK for unions
5148 (even if the initializer in a source program incorrectly contains
5151 if (TREE_CODE (local
.type
) == RECORD_TYPE
)
5152 local
.field
= TYPE_FIELDS (local
.type
);
5154 local
.field
= NULL_TREE
;
5157 vec_safe_iterate (CONSTRUCTOR_ELTS (exp
), cnt
, &ce
);
5158 cnt
++, local
.field
= local
.field
? DECL_CHAIN (local
.field
) : 0)
5160 local
.val
= ce
->value
;
5161 local
.index
= NULL_TREE
;
5163 /* The element in a union constructor specifies the proper field
5165 if (RECORD_OR_UNION_TYPE_P (local
.type
) && ce
->index
!= NULL_TREE
)
5166 local
.field
= ce
->index
;
5168 else if (TREE_CODE (local
.type
) == ARRAY_TYPE
)
5169 local
.index
= ce
->index
;
5171 if (local
.field
&& flag_verbose_asm
)
5172 fprintf (asm_out_file
, "%s %s:\n",
5174 DECL_NAME (local
.field
)
5175 ? IDENTIFIER_POINTER (DECL_NAME (local
.field
))
5178 /* Eliminate the marker that makes a cast not be an lvalue. */
5179 if (local
.val
!= NULL_TREE
)
5180 STRIP_NOPS (local
.val
);
5182 /* Output the current element, using the appropriate helper ... */
5184 /* For an array slice not part of an outer bitfield. */
5186 && local
.index
!= NULL_TREE
5187 && TREE_CODE (local
.index
) == RANGE_EXPR
)
5188 output_constructor_array_range (&local
);
5190 /* For a field that is neither a true bitfield nor part of an outer one,
5191 known to be at least byte aligned and multiple-of-bytes long. */
5193 && (local
.field
== NULL_TREE
5194 || !CONSTRUCTOR_BITFIELD_P (local
.field
)))
5195 output_constructor_regular_field (&local
);
5197 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5198 supported for scalar fields, so we may need to convert first. */
5201 if (TREE_CODE (local
.val
) == REAL_CST
)
5203 = fold_unary (VIEW_CONVERT_EXPR
,
5204 build_nonstandard_integer_type
5205 (TYPE_PRECISION (TREE_TYPE (local
.val
)), 0),
5207 output_constructor_bitfield (&local
, outer
? outer
->bit_offset
: 0);
5211 /* If we are not at toplevel, save the pending data for our caller.
5212 Otherwise output the pending data and padding zeros as needed. */
5214 outer
->byte
= local
.byte
;
5217 if (local
.byte_buffer_in_use
)
5219 assemble_integer (GEN_INT (local
.byte
), 1, BITS_PER_UNIT
, 1);
5220 local
.total_bytes
++;
5223 if ((unsigned HOST_WIDE_INT
)local
.total_bytes
< local
.size
)
5225 assemble_zeros (local
.size
- local
.total_bytes
);
5226 local
.total_bytes
= local
.size
;
5230 return local
.total_bytes
;
5233 /* Mark DECL as weak. */
5236 mark_weak (tree decl
)
5238 DECL_WEAK (decl
) = 1;
5240 if (DECL_RTL_SET_P (decl
)
5241 && MEM_P (DECL_RTL (decl
))
5242 && XEXP (DECL_RTL (decl
), 0)
5243 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
5244 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
5247 /* Merge weak status between NEWDECL and OLDDECL. */
5250 merge_weak (tree newdecl
, tree olddecl
)
5252 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
5254 if (DECL_WEAK (newdecl
) && TARGET_SUPPORTS_WEAK
)
5257 /* We put the NEWDECL on the weak_decls list at some point
5258 and OLDDECL as well. Keep just OLDDECL on the list. */
5259 for (pwd
= &weak_decls
; *pwd
; pwd
= &TREE_CHAIN (*pwd
))
5260 if (TREE_VALUE (*pwd
) == newdecl
)
5262 *pwd
= TREE_CHAIN (*pwd
);
5269 if (DECL_WEAK (newdecl
))
5273 /* NEWDECL is weak, but OLDDECL is not. */
5275 /* If we already output the OLDDECL, we're in trouble; we can't
5276 go back and make it weak. This should never happen in
5277 unit-at-a-time compilation. */
5278 gcc_assert (!TREE_ASM_WRITTEN (olddecl
));
5280 /* If we've already generated rtl referencing OLDDECL, we may
5281 have done so in a way that will not function properly with
5282 a weak symbol. Again in unit-at-a-time this should be
5284 gcc_assert (!TREE_USED (olddecl
)
5285 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)));
5287 if (TARGET_SUPPORTS_WEAK
)
5289 /* We put the NEWDECL on the weak_decls list at some point.
5290 Replace it with the OLDDECL. */
5291 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
5292 if (TREE_VALUE (wd
) == newdecl
)
5294 TREE_VALUE (wd
) = olddecl
;
5297 /* We may not find the entry on the list. If NEWDECL is a
5298 weak alias, then we will have already called
5299 globalize_decl to remove the entry; in that case, we do
5300 not need to do anything. */
5303 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5304 mark_weak (olddecl
);
5307 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5308 weak. Just update NEWDECL to indicate that it's weak too. */
5309 mark_weak (newdecl
);
5312 /* Declare DECL to be a weak symbol. */
5315 declare_weak (tree decl
)
5317 gcc_assert (TREE_CODE (decl
) != FUNCTION_DECL
|| !TREE_ASM_WRITTEN (decl
));
5318 if (! TREE_PUBLIC (decl
))
5319 error ("weak declaration of %q+D must be public", decl
);
5320 else if (!TARGET_SUPPORTS_WEAK
)
5321 warning (0, "weak declaration of %q+D not supported", decl
);
5324 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl
)))
5325 DECL_ATTRIBUTES (decl
)
5326 = tree_cons (get_identifier ("weak"), NULL
, DECL_ATTRIBUTES (decl
));
5330 weak_finish_1 (tree decl
)
5332 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5333 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5336 if (! TREE_USED (decl
))
5339 #ifdef ASM_WEAKEN_DECL
5340 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
5342 #ifdef ASM_WEAKEN_LABEL
5343 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5345 #ifdef ASM_OUTPUT_WEAK_ALIAS
5347 static bool warn_once
= 0;
5350 warning (0, "only weak aliases are supported in this configuration");
5360 /* Fiven an assembly name, find the decl it is associated with. */
5362 find_decl (tree target
)
5364 symtab_node
*node
= symtab_node_for_asm (target
);
5370 /* This TREE_LIST contains weakref targets. */
5372 static GTY(()) tree weakref_targets
;
5374 /* Emit any pending weak declarations. */
5381 for (t
= weakref_targets
; t
; t
= TREE_CHAIN (t
))
5383 tree alias_decl
= TREE_PURPOSE (t
);
5384 tree target
= ultimate_transparent_alias_target (&TREE_VALUE (t
));
5386 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl
)))
5387 /* Remove alias_decl from the weak list, but leave entries for
5388 the target alone. */
5390 #ifndef ASM_OUTPUT_WEAKREF
5391 else if (! TREE_SYMBOL_REFERENCED (target
))
5393 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5394 defined, otherwise we and weak_finish_1 would use
5395 different macros. */
5396 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5397 ASM_WEAKEN_LABEL (asm_out_file
, IDENTIFIER_POINTER (target
));
5399 tree decl
= find_decl (target
);
5403 decl
= build_decl (DECL_SOURCE_LOCATION (alias_decl
),
5404 TREE_CODE (alias_decl
), target
,
5405 TREE_TYPE (alias_decl
));
5407 DECL_EXTERNAL (decl
) = 1;
5408 TREE_PUBLIC (decl
) = 1;
5409 DECL_ARTIFICIAL (decl
) = 1;
5410 TREE_NOTHROW (decl
) = TREE_NOTHROW (alias_decl
);
5411 TREE_USED (decl
) = 1;
5414 weak_finish_1 (decl
);
5423 /* Remove the alias and the target from the pending weak list
5424 so that we do not emit any .weak directives for the former,
5425 nor multiple .weak directives for the latter. */
5426 for (p
= &weak_decls
; (t2
= *p
) ; )
5428 if (TREE_VALUE (t2
) == alias_decl
5429 || target
== DECL_ASSEMBLER_NAME (TREE_VALUE (t2
)))
5430 *p
= TREE_CHAIN (t2
);
5432 p
= &TREE_CHAIN (t2
);
5435 /* Remove other weakrefs to the same target, to speed things up. */
5436 for (p
= &TREE_CHAIN (t
); (t2
= *p
) ; )
5438 if (target
== ultimate_transparent_alias_target (&TREE_VALUE (t2
)))
5439 *p
= TREE_CHAIN (t2
);
5441 p
= &TREE_CHAIN (t2
);
5446 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
5448 tree decl
= TREE_VALUE (t
);
5450 weak_finish_1 (decl
);
5454 /* Emit the assembly bits to indicate that DECL is globally visible. */
5457 globalize_decl (tree decl
)
5460 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5461 if (DECL_WEAK (decl
))
5463 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
5466 #ifdef ASM_WEAKEN_DECL
5467 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
5469 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5472 /* Remove this function from the pending weak list so that
5473 we do not emit multiple .weak directives for it. */
5474 for (p
= &weak_decls
; (t
= *p
) ; )
5476 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5477 *p
= TREE_CHAIN (t
);
5479 p
= &TREE_CHAIN (t
);
5482 /* Remove weakrefs to the same target from the pending weakref
5483 list, for the same reason. */
5484 for (p
= &weakref_targets
; (t
= *p
) ; )
5486 if (DECL_ASSEMBLER_NAME (decl
)
5487 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5488 *p
= TREE_CHAIN (t
);
5490 p
= &TREE_CHAIN (t
);
5497 targetm
.asm_out
.globalize_decl_name (asm_out_file
, decl
);
5500 vec
<alias_pair
, va_gc
> *alias_pairs
;
5502 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5503 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5504 tree node is DECL to have the value of the tree node TARGET. */
5507 do_assemble_alias (tree decl
, tree target
)
5509 /* Emulated TLS had better not get this var. */
5510 gcc_assert (!(!targetm
.have_tls
5511 && TREE_CODE (decl
) == VAR_DECL
5512 && DECL_THREAD_LOCAL_P (decl
)));
5514 if (TREE_ASM_WRITTEN (decl
))
5517 /* We must force creation of DECL_RTL for debug info generation, even though
5518 we don't use it here. */
5519 make_decl_rtl (decl
);
5521 TREE_ASM_WRITTEN (decl
) = 1;
5522 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
5524 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5526 ultimate_transparent_alias_target (&target
);
5528 if (!TREE_SYMBOL_REFERENCED (target
))
5529 weakref_targets
= tree_cons (decl
, target
, weakref_targets
);
5531 #ifdef ASM_OUTPUT_WEAKREF
5532 ASM_OUTPUT_WEAKREF (asm_out_file
, decl
,
5533 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5534 IDENTIFIER_POINTER (target
));
5536 if (!TARGET_SUPPORTS_WEAK
)
5538 error_at (DECL_SOURCE_LOCATION (decl
),
5539 "weakref is not supported in this configuration");
5546 #ifdef ASM_OUTPUT_DEF
5547 /* Make name accessible from other files, if appropriate. */
5549 if (TREE_PUBLIC (decl
))
5551 globalize_decl (decl
);
5552 maybe_assemble_visibility (decl
);
5554 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5556 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
5557 if (targetm
.has_ifunc_p ())
5558 ASM_OUTPUT_TYPE_DIRECTIVE
5559 (asm_out_file
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5563 error_at (DECL_SOURCE_LOCATION (decl
),
5564 "ifunc is not supported on this target");
5567 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5568 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
5570 ASM_OUTPUT_DEF (asm_out_file
,
5571 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5572 IDENTIFIER_POINTER (target
));
5574 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5579 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5580 # ifdef ASM_WEAKEN_DECL
5581 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
5583 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
5585 /* Remove this function from the pending weak list so that
5586 we do not emit multiple .weak directives for it. */
5587 for (p
= &weak_decls
; (t
= *p
) ; )
5588 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5589 *p
= TREE_CHAIN (t
);
5591 p
= &TREE_CHAIN (t
);
5593 /* Remove weakrefs to the same target from the pending weakref
5594 list, for the same reason. */
5595 for (p
= &weakref_targets
; (t
= *p
) ; )
5597 if (DECL_ASSEMBLER_NAME (decl
)
5598 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5599 *p
= TREE_CHAIN (t
);
5601 p
= &TREE_CHAIN (t
);
5607 /* Emit an assembler directive to make the symbol for DECL an alias to
5608 the symbol for TARGET. */
5611 assemble_alias (tree decl
, tree target
)
5615 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5617 tree alias
= DECL_ASSEMBLER_NAME (decl
);
5619 ultimate_transparent_alias_target (&target
);
5621 if (alias
== target
)
5622 error ("weakref %q+D ultimately targets itself", decl
);
5623 if (TREE_PUBLIC (decl
))
5624 error ("weakref %q+D must have static linkage", decl
);
5628 #if !defined (ASM_OUTPUT_DEF)
5629 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5630 error_at (DECL_SOURCE_LOCATION (decl
),
5631 "alias definitions not supported in this configuration");
5632 TREE_ASM_WRITTEN (decl
) = 1;
5635 if (!DECL_WEAK (decl
))
5637 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5638 error_at (DECL_SOURCE_LOCATION (decl
),
5639 "ifunc is not supported in this configuration");
5641 error_at (DECL_SOURCE_LOCATION (decl
),
5642 "only weak aliases are supported in this configuration");
5643 TREE_ASM_WRITTEN (decl
) = 1;
5649 TREE_USED (decl
) = 1;
5651 /* Allow aliases to aliases. */
5652 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5653 cgraph_node::get_create (decl
)->alias
= true;
5655 varpool_node::get_create (decl
)->alias
= true;
5657 /* If the target has already been emitted, we don't have to queue the
5658 alias. This saves a tad of memory. */
5659 if (cgraph_global_info_ready
)
5660 target_decl
= find_decl (target
);
5663 if ((target_decl
&& TREE_ASM_WRITTEN (target_decl
))
5664 || cgraph_state
>= CGRAPH_STATE_EXPANSION
)
5665 do_assemble_alias (decl
, target
);
5668 alias_pair p
= {decl
, target
};
5669 vec_safe_push (alias_pairs
, p
);
5673 /* Record and output a table of translations from original function
5674 to its transaction aware clone. Note that tm_pure functions are
5675 considered to be their own clone. */
5677 static GTY((if_marked ("tree_map_marked_p"), param_is (struct tree_map
)))
5678 htab_t tm_clone_hash
;
5681 record_tm_clone_pair (tree o
, tree n
)
5683 struct tree_map
**slot
, *h
;
5685 if (tm_clone_hash
== NULL
)
5686 tm_clone_hash
= htab_create_ggc (32, tree_map_hash
, tree_map_eq
, 0);
5688 h
= ggc_alloc
<tree_map
> ();
5689 h
->hash
= htab_hash_pointer (o
);
5693 slot
= (struct tree_map
**)
5694 htab_find_slot_with_hash (tm_clone_hash
, h
, h
->hash
, INSERT
);
5699 get_tm_clone_pair (tree o
)
5703 struct tree_map
*h
, in
;
5706 in
.hash
= htab_hash_pointer (o
);
5707 h
= (struct tree_map
*) htab_find_with_hash (tm_clone_hash
,
5715 typedef struct tm_alias_pair
5723 /* Helper function for finish_tm_clone_pairs. Dump a hash table entry
5724 into a VEC in INFO. */
5727 dump_tm_clone_to_vec (void **slot
, void *info
)
5729 struct tree_map
*map
= (struct tree_map
*) *slot
;
5730 vec
<tm_alias_pair
> *tm_alias_pairs
= (vec
<tm_alias_pair
> *) info
;
5731 tm_alias_pair p
= {DECL_UID (map
->base
.from
), map
->base
.from
, map
->to
};
5732 tm_alias_pairs
->safe_push (p
);
5736 /* Dump the actual pairs to the .tm_clone_table section. */
5739 dump_tm_clone_pairs (vec
<tm_alias_pair
> tm_alias_pairs
)
5743 bool switched
= false;
5745 FOR_EACH_VEC_ELT (tm_alias_pairs
, i
, p
)
5749 struct cgraph_node
*src_n
= cgraph_node::get (src
);
5750 struct cgraph_node
*dst_n
= cgraph_node::get (dst
);
5752 /* The function ipa_tm_create_version() marks the clone as needed if
5753 the original function was needed. But we also mark the clone as
5754 needed if we ever called the clone indirectly through
5755 TM_GETTMCLONE. If neither of these are true, we didn't generate
5756 a clone, and we didn't call it indirectly... no sense keeping it
5757 in the clone table. */
5758 if (!dst_n
|| !dst_n
->definition
)
5761 /* This covers the case where we have optimized the original
5762 function away, and only access the transactional clone. */
5763 if (!src_n
|| !src_n
->definition
)
5768 switch_to_section (targetm
.asm_out
.tm_clone_table_section ());
5769 assemble_align (POINTER_SIZE
);
5773 assemble_integer (XEXP (DECL_RTL (src
), 0),
5774 POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
5775 assemble_integer (XEXP (DECL_RTL (dst
), 0),
5776 POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
5780 /* Provide a default for the tm_clone_table section. */
5783 default_clone_table_section (void)
5785 return get_named_section (NULL
, ".tm_clone_table", 3);
5788 /* Helper comparison function for qsorting by the DECL_UID stored in
5789 alias_pair->emitted_diags. */
5792 tm_alias_pair_cmp (const void *x
, const void *y
)
5794 const tm_alias_pair
*p1
= (const tm_alias_pair
*) x
;
5795 const tm_alias_pair
*p2
= (const tm_alias_pair
*) y
;
5796 if (p1
->uid
< p2
->uid
)
5798 if (p1
->uid
> p2
->uid
)
5804 finish_tm_clone_pairs (void)
5806 vec
<tm_alias_pair
> tm_alias_pairs
= vNULL
;
5808 if (tm_clone_hash
== NULL
)
5811 /* We need a determenistic order for the .tm_clone_table, otherwise
5812 we will get bootstrap comparison failures, so dump the hash table
5813 to a vector, sort it, and dump the vector. */
5815 /* Dump the hashtable to a vector. */
5816 htab_traverse_noresize (tm_clone_hash
, dump_tm_clone_to_vec
,
5817 (void *) &tm_alias_pairs
);
5819 tm_alias_pairs
.qsort (tm_alias_pair_cmp
);
5822 dump_tm_clone_pairs (tm_alias_pairs
);
5824 htab_delete (tm_clone_hash
);
5825 tm_clone_hash
= NULL
;
5826 tm_alias_pairs
.release ();
5830 /* Emit an assembler directive to set symbol for DECL visibility to
5831 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5834 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED
,
5835 int vis ATTRIBUTE_UNUSED
)
5837 #ifdef HAVE_GAS_HIDDEN
5838 static const char * const visibility_types
[] = {
5839 NULL
, "protected", "hidden", "internal"
5842 const char *name
, *type
;
5844 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5845 type
= visibility_types
[vis
];
5847 fprintf (asm_out_file
, "\t.%s\t", type
);
5848 assemble_name (asm_out_file
, name
);
5849 fprintf (asm_out_file
, "\n");
5851 if (!DECL_ARTIFICIAL (decl
))
5852 warning (OPT_Wattributes
, "visibility attribute not supported "
5853 "in this configuration; ignored");
5857 /* A helper function to call assemble_visibility when needed for a decl. */
5860 maybe_assemble_visibility (tree decl
)
5862 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
5864 if (vis
!= VISIBILITY_DEFAULT
)
5866 targetm
.asm_out
.assemble_visibility (decl
, vis
);
5873 /* Returns 1 if the target configuration supports defining public symbols
5874 so that one of them will be chosen at link time instead of generating a
5875 multiply-defined symbol error, whether through the use of weak symbols or
5876 a target-specific mechanism for having duplicates discarded. */
5879 supports_one_only (void)
5881 if (SUPPORTS_ONE_ONLY
)
5883 return TARGET_SUPPORTS_WEAK
;
5886 /* Set up DECL as a public symbol that can be defined in multiple
5887 translation units without generating a linker error. */
5890 make_decl_one_only (tree decl
, tree comdat_group
)
5892 struct symtab_node
*symbol
;
5893 gcc_assert (TREE_CODE (decl
) == VAR_DECL
5894 || TREE_CODE (decl
) == FUNCTION_DECL
);
5896 TREE_PUBLIC (decl
) = 1;
5898 if (TREE_CODE (decl
) == VAR_DECL
)
5899 symbol
= varpool_node::get_create (decl
);
5901 symbol
= cgraph_node::get_create (decl
);
5903 if (SUPPORTS_ONE_ONLY
)
5905 #ifdef MAKE_DECL_ONE_ONLY
5906 MAKE_DECL_ONE_ONLY (decl
);
5908 symbol
->set_comdat_group (comdat_group
);
5910 else if (TREE_CODE (decl
) == VAR_DECL
5911 && (DECL_INITIAL (decl
) == 0
5912 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
5913 DECL_COMMON (decl
) = 1;
5916 gcc_assert (TARGET_SUPPORTS_WEAK
);
5917 DECL_WEAK (decl
) = 1;
5922 init_varasm_once (void)
5924 section_htab
= htab_create_ggc (31, section_entry_hash
,
5925 section_entry_eq
, NULL
);
5926 object_block_htab
= htab_create_ggc (31, object_block_entry_hash
,
5927 object_block_entry_eq
, NULL
);
5928 const_desc_htab
= htab_create_ggc (1009, const_desc_hash
,
5929 const_desc_eq
, NULL
);
5931 const_alias_set
= new_alias_set ();
5932 shared_constant_pool
= create_constant_pool ();
5934 #ifdef TEXT_SECTION_ASM_OP
5935 text_section
= get_unnamed_section (SECTION_CODE
, output_section_asm_op
,
5936 TEXT_SECTION_ASM_OP
);
5939 #ifdef DATA_SECTION_ASM_OP
5940 data_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
5941 DATA_SECTION_ASM_OP
);
5944 #ifdef SDATA_SECTION_ASM_OP
5945 sdata_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
5946 SDATA_SECTION_ASM_OP
);
5949 #ifdef READONLY_DATA_SECTION_ASM_OP
5950 readonly_data_section
= get_unnamed_section (0, output_section_asm_op
,
5951 READONLY_DATA_SECTION_ASM_OP
);
5954 #ifdef CTORS_SECTION_ASM_OP
5955 ctors_section
= get_unnamed_section (0, output_section_asm_op
,
5956 CTORS_SECTION_ASM_OP
);
5959 #ifdef DTORS_SECTION_ASM_OP
5960 dtors_section
= get_unnamed_section (0, output_section_asm_op
,
5961 DTORS_SECTION_ASM_OP
);
5964 #ifdef BSS_SECTION_ASM_OP
5965 bss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
5966 output_section_asm_op
,
5967 BSS_SECTION_ASM_OP
);
5970 #ifdef SBSS_SECTION_ASM_OP
5971 sbss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
5972 output_section_asm_op
,
5973 SBSS_SECTION_ASM_OP
);
5976 tls_comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
5977 | SECTION_COMMON
, emit_tls_common
);
5978 lcomm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
5979 | SECTION_COMMON
, emit_local
);
5980 comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
5981 | SECTION_COMMON
, emit_common
);
5983 #if defined ASM_OUTPUT_ALIGNED_BSS
5984 bss_noswitch_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
,
5988 targetm
.asm_out
.init_sections ();
5990 if (readonly_data_section
== NULL
)
5991 readonly_data_section
= text_section
;
5993 #ifdef ASM_OUTPUT_EXTERNAL
5994 pending_assemble_externals_set
= pointer_set_create ();
5999 decl_default_tls_model (const_tree decl
)
6001 enum tls_model kind
;
6004 is_local
= targetm
.binds_local_p (decl
);
6008 kind
= TLS_MODEL_LOCAL_EXEC
;
6010 kind
= TLS_MODEL_INITIAL_EXEC
;
6013 /* Local dynamic is inefficient when we're not combining the
6014 parts of the address. */
6015 else if (optimize
&& is_local
)
6016 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
6018 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
6019 if (kind
< flag_tls_default
)
6020 kind
= flag_tls_default
;
6025 /* Select a set of attributes for section NAME based on the properties
6026 of DECL and whether or not RELOC indicates that DECL's initializer
6027 might contain runtime relocations.
6029 We make the section read-only and executable for a function decl,
6030 read-only for a const data decl, and writable for a non-const data decl. */
6033 default_section_type_flags (tree decl
, const char *name
, int reloc
)
6037 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6038 flags
= SECTION_CODE
;
6041 enum section_category category
6042 = categorize_decl_for_section (decl
, reloc
);
6043 if (decl_readonly_section_1 (category
))
6045 else if (category
== SECCAT_DATA_REL_RO
6046 || category
== SECCAT_DATA_REL_RO_LOCAL
)
6047 flags
= SECTION_WRITE
| SECTION_RELRO
;
6049 flags
= SECTION_WRITE
;
6053 flags
= SECTION_WRITE
;
6054 if (strcmp (name
, ".data.rel.ro") == 0
6055 || strcmp (name
, ".data.rel.ro.local") == 0)
6056 flags
|= SECTION_RELRO
;
6059 if (decl
&& DECL_P (decl
) && DECL_COMDAT_GROUP (decl
))
6060 flags
|= SECTION_LINKONCE
;
6062 if (strcmp (name
, ".vtable_map_vars") == 0)
6063 flags
|= SECTION_LINKONCE
;
6065 if (decl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6066 flags
|= SECTION_TLS
| SECTION_WRITE
;
6068 if (strcmp (name
, ".bss") == 0
6069 || strncmp (name
, ".bss.", 5) == 0
6070 || strncmp (name
, ".gnu.linkonce.b.", 16) == 0
6071 || strcmp (name
, ".sbss") == 0
6072 || strncmp (name
, ".sbss.", 6) == 0
6073 || strncmp (name
, ".gnu.linkonce.sb.", 17) == 0)
6074 flags
|= SECTION_BSS
;
6076 if (strcmp (name
, ".tdata") == 0
6077 || strncmp (name
, ".tdata.", 7) == 0
6078 || strncmp (name
, ".gnu.linkonce.td.", 17) == 0)
6079 flags
|= SECTION_TLS
;
6081 if (strcmp (name
, ".tbss") == 0
6082 || strncmp (name
, ".tbss.", 6) == 0
6083 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
6084 flags
|= SECTION_TLS
| SECTION_BSS
;
6086 /* These three sections have special ELF types. They are neither
6087 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6088 want to print a section type (@progbits or @nobits). If someone
6089 is silly enough to emit code or TLS variables to one of these
6090 sections, then don't handle them specially. */
6091 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
))
6092 && (strcmp (name
, ".init_array") == 0
6093 || strcmp (name
, ".fini_array") == 0
6094 || strcmp (name
, ".preinit_array") == 0))
6095 flags
|= SECTION_NOTYPE
;
6100 /* Return true if the target supports some form of global BSS,
6101 either through bss_noswitch_section, or by selecting a BSS
6102 section in TARGET_ASM_SELECT_SECTION. */
6105 have_global_bss_p (void)
6107 return bss_noswitch_section
|| targetm
.have_switchable_bss_sections
;
6110 /* Output assembly to switch to section NAME with attribute FLAGS.
6111 Four variants for common object file formats. */
6114 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
6115 unsigned int flags ATTRIBUTE_UNUSED
,
6116 tree decl ATTRIBUTE_UNUSED
)
6118 /* Some object formats don't support named sections at all. The
6119 front-end should already have flagged this as an error. */
6123 #ifndef TLS_SECTION_ASM_FLAG
6124 #define TLS_SECTION_ASM_FLAG 'T'
6128 default_elf_asm_named_section (const char *name
, unsigned int flags
,
6129 tree decl ATTRIBUTE_UNUSED
)
6131 char flagchars
[10], *f
= flagchars
;
6133 /* If we have already declared this section, we can use an
6134 abbreviated form to switch back to it -- unless this section is
6135 part of a COMDAT groups, in which case GAS requires the full
6136 declaration every time. */
6137 if (!(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6138 && (flags
& SECTION_DECLARED
))
6140 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
6144 if (!(flags
& SECTION_DEBUG
))
6146 if (flags
& SECTION_EXCLUDE
)
6148 if (flags
& SECTION_WRITE
)
6150 if (flags
& SECTION_CODE
)
6152 if (flags
& SECTION_SMALL
)
6154 if (flags
& SECTION_MERGE
)
6156 if (flags
& SECTION_STRINGS
)
6158 if (flags
& SECTION_TLS
)
6159 *f
++ = TLS_SECTION_ASM_FLAG
;
6160 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6164 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
6166 if (!(flags
& SECTION_NOTYPE
))
6171 if (flags
& SECTION_BSS
)
6177 /* On platforms that use "@" as the assembly comment character,
6179 if (strcmp (ASM_COMMENT_START
, "@") == 0)
6181 fprintf (asm_out_file
, format
, type
);
6183 if (flags
& SECTION_ENTSIZE
)
6184 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
6185 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6187 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
6188 fprintf (asm_out_file
, ",%s,comdat", IDENTIFIER_POINTER (decl
));
6190 fprintf (asm_out_file
, ",%s,comdat",
6191 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)));
6195 putc ('\n', asm_out_file
);
6199 default_coff_asm_named_section (const char *name
, unsigned int flags
,
6200 tree decl ATTRIBUTE_UNUSED
)
6202 char flagchars
[8], *f
= flagchars
;
6204 if (flags
& SECTION_WRITE
)
6206 if (flags
& SECTION_CODE
)
6210 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
6214 default_pe_asm_named_section (const char *name
, unsigned int flags
,
6217 default_coff_asm_named_section (name
, flags
, decl
);
6219 if (flags
& SECTION_LINKONCE
)
6221 /* Functions may have been compiled at various levels of
6222 optimization so we can't use `same_size' here.
6223 Instead, have the linker pick one. */
6224 fprintf (asm_out_file
, "\t.linkonce %s\n",
6225 (flags
& SECTION_CODE
? "discard" : "same_size"));
6229 /* The lame default section selector. */
6232 default_select_section (tree decl
, int reloc
,
6233 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6237 if (decl_readonly_section (decl
, reloc
))
6238 return readonly_data_section
;
6240 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6242 if (! ((flag_pic
&& reloc
)
6243 || !TREE_READONLY (decl
)
6244 || TREE_SIDE_EFFECTS (decl
)
6245 || !TREE_CONSTANT (decl
)))
6246 return readonly_data_section
;
6248 else if (TREE_CODE (decl
) == STRING_CST
)
6249 return readonly_data_section
;
6250 else if (! (flag_pic
&& reloc
))
6251 return readonly_data_section
;
6253 return data_section
;
6256 enum section_category
6257 categorize_decl_for_section (const_tree decl
, int reloc
)
6259 enum section_category ret
;
6261 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6263 else if (TREE_CODE (decl
) == STRING_CST
)
6265 if ((flag_sanitize
& SANITIZE_ADDRESS
)
6266 && asan_protect_global (CONST_CAST_TREE (decl
)))
6267 /* or !flag_merge_constants */
6268 return SECCAT_RODATA
;
6270 return SECCAT_RODATA_MERGE_STR
;
6272 else if (TREE_CODE (decl
) == VAR_DECL
)
6274 if (bss_initializer_p (decl
))
6276 else if (! TREE_READONLY (decl
)
6277 || TREE_SIDE_EFFECTS (decl
)
6278 || ! TREE_CONSTANT (DECL_INITIAL (decl
)))
6280 /* Here the reloc_rw_mask is not testing whether the section should
6281 be read-only or not, but whether the dynamic link will have to
6282 do something. If so, we wish to segregate the data in order to
6283 minimize cache misses inside the dynamic linker. */
6284 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6285 ret
= reloc
== 1 ? SECCAT_DATA_REL_LOCAL
: SECCAT_DATA_REL
;
6289 else if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6290 ret
= reloc
== 1 ? SECCAT_DATA_REL_RO_LOCAL
: SECCAT_DATA_REL_RO
;
6291 else if (reloc
|| flag_merge_constants
< 2
6292 || ((flag_sanitize
& SANITIZE_ADDRESS
)
6293 && asan_protect_global (CONST_CAST_TREE (decl
))))
6294 /* C and C++ don't allow different variables to share the same
6295 location. -fmerge-all-constants allows even that (at the
6296 expense of not conforming). */
6297 ret
= SECCAT_RODATA
;
6298 else if (TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
6299 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
6301 ret
= SECCAT_RODATA_MERGE_CONST
;
6303 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6305 if ((reloc
& targetm
.asm_out
.reloc_rw_mask ())
6306 || TREE_SIDE_EFFECTS (decl
)
6307 || ! TREE_CONSTANT (decl
))
6310 ret
= SECCAT_RODATA
;
6313 ret
= SECCAT_RODATA
;
6315 /* There are no read-only thread-local sections. */
6316 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6318 /* Note that this would be *just* SECCAT_BSS, except that there's
6319 no concept of a read-only thread-local-data section. */
6320 if (ret
== SECCAT_BSS
6321 || (flag_zero_initialized_in_bss
6322 && initializer_zerop (DECL_INITIAL (decl
))))
6328 /* If the target uses small data sections, select it. */
6329 else if (targetm
.in_small_data_p (decl
))
6331 if (ret
== SECCAT_BSS
)
6333 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
6334 ret
= SECCAT_SRODATA
;
6343 decl_readonly_section_1 (enum section_category category
)
6348 case SECCAT_RODATA_MERGE_STR
:
6349 case SECCAT_RODATA_MERGE_STR_INIT
:
6350 case SECCAT_RODATA_MERGE_CONST
:
6351 case SECCAT_SRODATA
:
6359 decl_readonly_section (const_tree decl
, int reloc
)
6361 return decl_readonly_section_1 (categorize_decl_for_section (decl
, reloc
));
6364 /* Select a section based on the above categorization. */
6367 default_elf_select_section (tree decl
, int reloc
,
6368 unsigned HOST_WIDE_INT align
)
6371 switch (categorize_decl_for_section (decl
, reloc
))
6374 /* We're not supposed to be called on FUNCTION_DECLs. */
6377 return readonly_data_section
;
6378 case SECCAT_RODATA_MERGE_STR
:
6379 return mergeable_string_section (decl
, align
, 0);
6380 case SECCAT_RODATA_MERGE_STR_INIT
:
6381 return mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
6382 case SECCAT_RODATA_MERGE_CONST
:
6383 return mergeable_constant_section (DECL_MODE (decl
), align
, 0);
6384 case SECCAT_SRODATA
:
6388 return data_section
;
6389 case SECCAT_DATA_REL
:
6390 sname
= ".data.rel";
6392 case SECCAT_DATA_REL_LOCAL
:
6393 sname
= ".data.rel.local";
6395 case SECCAT_DATA_REL_RO
:
6396 sname
= ".data.rel.ro";
6398 case SECCAT_DATA_REL_RO_LOCAL
:
6399 sname
= ".data.rel.ro.local";
6422 return get_named_section (decl
, sname
, reloc
);
6425 /* Construct a unique section name based on the decl name and the
6426 categorization performed above. */
6429 default_unique_section (tree decl
, int reloc
)
6431 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6432 bool one_only
= DECL_ONE_ONLY (decl
) && !HAVE_COMDAT_GROUP
;
6433 const char *prefix
, *name
, *linkonce
;
6436 switch (categorize_decl_for_section (decl
, reloc
))
6439 prefix
= one_only
? ".t" : ".text";
6442 case SECCAT_RODATA_MERGE_STR
:
6443 case SECCAT_RODATA_MERGE_STR_INIT
:
6444 case SECCAT_RODATA_MERGE_CONST
:
6445 prefix
= one_only
? ".r" : ".rodata";
6447 case SECCAT_SRODATA
:
6448 prefix
= one_only
? ".s2" : ".sdata2";
6451 prefix
= one_only
? ".d" : ".data";
6453 case SECCAT_DATA_REL
:
6454 prefix
= one_only
? ".d.rel" : ".data.rel";
6456 case SECCAT_DATA_REL_LOCAL
:
6457 prefix
= one_only
? ".d.rel.local" : ".data.rel.local";
6459 case SECCAT_DATA_REL_RO
:
6460 prefix
= one_only
? ".d.rel.ro" : ".data.rel.ro";
6462 case SECCAT_DATA_REL_RO_LOCAL
:
6463 prefix
= one_only
? ".d.rel.ro.local" : ".data.rel.ro.local";
6466 prefix
= one_only
? ".s" : ".sdata";
6469 prefix
= one_only
? ".b" : ".bss";
6472 prefix
= one_only
? ".sb" : ".sbss";
6475 prefix
= one_only
? ".td" : ".tdata";
6478 prefix
= one_only
? ".tb" : ".tbss";
6484 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
6485 name
= targetm
.strip_name_encoding (name
);
6487 /* If we're using one_only, then there needs to be a .gnu.linkonce
6488 prefix to the section name. */
6489 linkonce
= one_only
? ".gnu.linkonce" : "";
6491 string
= ACONCAT ((linkonce
, prefix
, ".", name
, NULL
));
6493 set_decl_section_name (decl
, string
);
6496 /* Like compute_reloc_for_constant, except for an RTX. The return value
6497 is a mask for which bit 1 indicates a global relocation, and bit 0
6498 indicates a local relocation. */
6501 compute_reloc_for_rtx_1 (rtx
*xp
, void *data
)
6503 int *preloc
= (int *) data
;
6506 switch (GET_CODE (x
))
6509 *preloc
|= SYMBOL_REF_LOCAL_P (x
) ? 1 : 2;
6522 compute_reloc_for_rtx (rtx x
)
6526 switch (GET_CODE (x
))
6532 for_each_rtx (&x
, compute_reloc_for_rtx_1
, &reloc
);
6541 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
6543 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6545 if (compute_reloc_for_rtx (x
) & targetm
.asm_out
.reloc_rw_mask ())
6546 return data_section
;
6548 return readonly_data_section
;
6552 default_elf_select_rtx_section (enum machine_mode mode
, rtx x
,
6553 unsigned HOST_WIDE_INT align
)
6555 int reloc
= compute_reloc_for_rtx (x
);
6557 /* ??? Handle small data here somehow. */
6559 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6562 return get_named_section (NULL
, ".data.rel.ro.local", 1);
6564 return get_named_section (NULL
, ".data.rel.ro", 3);
6567 return mergeable_constant_section (mode
, align
, 0);
6570 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6573 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
6578 /* Careful not to prod global register variables. */
6581 symbol
= XEXP (rtl
, 0);
6582 if (GET_CODE (symbol
) != SYMBOL_REF
)
6585 flags
= SYMBOL_REF_FLAGS (symbol
) & SYMBOL_FLAG_HAS_BLOCK_INFO
;
6586 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6587 flags
|= SYMBOL_FLAG_FUNCTION
;
6588 if (targetm
.binds_local_p (decl
))
6589 flags
|= SYMBOL_FLAG_LOCAL
;
6590 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6591 flags
|= DECL_TLS_MODEL (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
6592 else if (targetm
.in_small_data_p (decl
))
6593 flags
|= SYMBOL_FLAG_SMALL
;
6594 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6595 being PUBLIC, the thing *must* be defined in this translation unit.
6596 Prevent this buglet from being propagated into rtl code as well. */
6597 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
6598 flags
|= SYMBOL_FLAG_EXTERNAL
;
6600 SYMBOL_REF_FLAGS (symbol
) = flags
;
6603 /* By default, we do nothing for encode_section_info, so we need not
6604 do anything but discard the '*' marker. */
6607 default_strip_name_encoding (const char *str
)
6609 return str
+ (*str
== '*');
6612 #ifdef ASM_OUTPUT_DEF
6613 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6614 anchor relative to ".", the current section position. */
6617 default_asm_output_anchor (rtx symbol
)
6621 sprintf (buffer
, "*. + " HOST_WIDE_INT_PRINT_DEC
,
6622 SYMBOL_REF_BLOCK_OFFSET (symbol
));
6623 ASM_OUTPUT_DEF (asm_out_file
, XSTR (symbol
, 0), buffer
);
6627 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6630 default_use_anchors_for_symbol_p (const_rtx symbol
)
6635 /* Don't use anchors for mergeable sections. The linker might move
6636 the objects around. */
6637 sect
= SYMBOL_REF_BLOCK (symbol
)->sect
;
6638 if (sect
->common
.flags
& SECTION_MERGE
)
6641 /* Don't use anchors for small data sections. The small data register
6642 acts as an anchor for such sections. */
6643 if (sect
->common
.flags
& SECTION_SMALL
)
6646 decl
= SYMBOL_REF_DECL (symbol
);
6647 if (decl
&& DECL_P (decl
))
6649 /* Don't use section anchors for decls that might be defined or
6650 usurped by other modules. */
6651 if (TREE_PUBLIC (decl
) && !decl_binds_to_current_def_p (decl
))
6654 /* Don't use section anchors for decls that will be placed in a
6655 small data section. */
6656 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6657 one above. The problem is that we only use SECTION_SMALL for
6658 sections that should be marked as small in the section directive. */
6659 if (targetm
.in_small_data_p (decl
))
6665 /* Return true when RESOLUTION indicate that symbol will be bound to the
6666 definition provided by current .o file. */
6669 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution
)
6671 return (resolution
== LDPR_PREVAILING_DEF
6672 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6673 || resolution
== LDPR_PREVAILING_DEF_IRONLY
);
6676 /* Return true when RESOLUTION indicate that symbol will be bound locally
6677 within current executable or DSO. */
6680 resolution_local_p (enum ld_plugin_symbol_resolution resolution
)
6682 return (resolution
== LDPR_PREVAILING_DEF
6683 || resolution
== LDPR_PREVAILING_DEF_IRONLY
6684 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6685 || resolution
== LDPR_PREEMPTED_REG
6686 || resolution
== LDPR_PREEMPTED_IR
6687 || resolution
== LDPR_RESOLVED_IR
6688 || resolution
== LDPR_RESOLVED_EXEC
);
6691 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6692 wrt cross-module name binding. */
6695 default_binds_local_p (const_tree exp
)
6697 return default_binds_local_p_1 (exp
, flag_shlib
);
6701 default_binds_local_p_1 (const_tree exp
, int shlib
)
6704 bool resolved_locally
= false;
6705 bool resolved_to_local_def
= false;
6707 /* With resolution file in hands, take look into resolutions.
6708 We can't just return true for resolved_locally symbols,
6709 because dynamic linking might overwrite symbols
6710 in shared libraries. */
6711 if (TREE_CODE (exp
) == VAR_DECL
&& TREE_PUBLIC (exp
)
6712 && (TREE_STATIC (exp
) || DECL_EXTERNAL (exp
)))
6714 varpool_node
*vnode
= varpool_node::get (exp
);
6715 if (vnode
&& (resolution_local_p (vnode
->resolution
) || vnode
->in_other_partition
))
6716 resolved_locally
= true;
6718 && resolution_to_local_definition_p (vnode
->resolution
))
6719 resolved_to_local_def
= true;
6721 else if (TREE_CODE (exp
) == FUNCTION_DECL
&& TREE_PUBLIC (exp
))
6723 struct cgraph_node
*node
= cgraph_node::get (exp
);
6725 && (resolution_local_p (node
->resolution
) || node
->in_other_partition
))
6726 resolved_locally
= true;
6728 && resolution_to_local_definition_p (node
->resolution
))
6729 resolved_to_local_def
= true;
6732 /* A non-decl is an entry in the constant pool. */
6735 /* Weakrefs may not bind locally, even though the weakref itself is always
6736 static and therefore local. Similarly, the resolver for ifunc functions
6737 might resolve to a non-local function.
6738 FIXME: We can resolve the weakref case more curefuly by looking at the
6740 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp
))
6741 || (TREE_CODE (exp
) == FUNCTION_DECL
6742 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (exp
))))
6744 /* Static variables are always local. */
6745 else if (! TREE_PUBLIC (exp
))
6747 /* A variable is local if the user has said explicitly that it will
6749 else if ((DECL_VISIBILITY_SPECIFIED (exp
)
6750 || resolved_to_local_def
)
6751 && DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
6753 /* Variables defined outside this object might not be local. */
6754 else if (DECL_EXTERNAL (exp
) && !resolved_locally
)
6756 /* If defined in this object and visibility is not default, must be
6758 else if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
6760 /* Default visibility weak data can be overridden by a strong symbol
6761 in another module and so are not local. */
6762 else if (DECL_WEAK (exp
)
6763 && !resolved_locally
)
6765 /* If PIC, then assume that any global name can be overridden by
6766 symbols resolved from other modules. */
6769 /* Uninitialized COMMON variable may be unified with symbols
6770 resolved from other modules. */
6771 else if (DECL_COMMON (exp
)
6772 && !resolved_locally
6773 && (DECL_INITIAL (exp
) == NULL
6774 || (!in_lto_p
&& DECL_INITIAL (exp
) == error_mark_node
)))
6776 /* Otherwise we're left with initialized (or non-common) global data
6777 which is of necessity defined locally. */
6784 /* Return true when references to DECL must bind to current definition in
6787 The condition is usually equivalent to whether the function binds to the
6788 current module (shared library or executable), that is to binds_local_p.
6789 We use this fact to avoid need for another target hook and implement
6790 the logic using binds_local_p and just special cases where
6791 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
6792 the weak definitions (that can be overwritten at linktime by other
6793 definition from different object file) and when resolution info is available
6794 we simply use the knowledge passed to us by linker plugin. */
6796 decl_binds_to_current_def_p (const_tree decl
)
6798 gcc_assert (DECL_P (decl
));
6799 if (!targetm
.binds_local_p (decl
))
6801 if (!TREE_PUBLIC (decl
))
6803 /* When resolution is available, just use it. */
6804 if (TREE_CODE (decl
) == VAR_DECL
6805 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)))
6807 varpool_node
*vnode
= varpool_node::get (decl
);
6809 && vnode
->resolution
!= LDPR_UNKNOWN
)
6810 return resolution_to_local_definition_p (vnode
->resolution
);
6812 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
6814 struct cgraph_node
*node
= cgraph_node::get (decl
);
6816 && node
->resolution
!= LDPR_UNKNOWN
)
6817 return resolution_to_local_definition_p (node
->resolution
);
6819 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6820 binds locally but still can be overwritten), DECL_COMMON (can be merged
6821 with a non-common definition somewhere in the same module) or
6823 This rely on fact that binds_local_p behave as decl_replaceable_p
6824 for all other declaration types. */
6825 if (DECL_WEAK (decl
))
6827 if (DECL_COMMON (decl
)
6828 && (DECL_INITIAL (decl
) == NULL
6829 || (!in_lto_p
&& DECL_INITIAL (decl
) == error_mark_node
)))
6831 if (DECL_EXTERNAL (decl
))
6836 /* A replaceable function or variable is one which may be replaced
6837 at link-time with an entirely different definition, provided that the
6838 replacement has the same type. For example, functions declared
6839 with __attribute__((weak)) on most systems are replaceable.
6841 COMDAT functions are not replaceable, since all definitions of the
6842 function must be equivalent. It is important that COMDAT functions
6843 not be treated as replaceable so that use of C++ template
6844 instantiations is not penalized. */
6847 decl_replaceable_p (tree decl
)
6849 gcc_assert (DECL_P (decl
));
6850 if (!TREE_PUBLIC (decl
) || DECL_COMDAT (decl
))
6852 if (!flag_semantic_interposition
6853 && !DECL_WEAK (decl
))
6855 return !decl_binds_to_current_def_p (decl
);
6858 /* Default function to output code that will globalize a label. A
6859 target must define GLOBAL_ASM_OP or provide its own function to
6860 globalize a label. */
6861 #ifdef GLOBAL_ASM_OP
6863 default_globalize_label (FILE * stream
, const char *name
)
6865 fputs (GLOBAL_ASM_OP
, stream
);
6866 assemble_name (stream
, name
);
6867 putc ('\n', stream
);
6869 #endif /* GLOBAL_ASM_OP */
6871 /* Default function to output code that will globalize a declaration. */
6873 default_globalize_decl_name (FILE * stream
, tree decl
)
6875 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
6876 targetm
.asm_out
.globalize_label (stream
, name
);
6879 /* Default function to output a label for unwind information. The
6880 default is to do nothing. A target that needs nonlocal labels for
6881 unwind information must provide its own function to do this. */
6883 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
6884 tree decl ATTRIBUTE_UNUSED
,
6885 int for_eh ATTRIBUTE_UNUSED
,
6886 int empty ATTRIBUTE_UNUSED
)
6890 /* Default function to output a label to divide up the exception table.
6891 The default is to do nothing. A target that needs/wants to divide
6892 up the table must provide it's own function to do this. */
6894 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED
)
6898 /* This is how to output an internal numbered label where PREFIX is
6899 the class of label and LABELNO is the number within the class. */
6902 default_generate_internal_label (char *buf
, const char *prefix
,
6903 unsigned long labelno
)
6905 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
6908 /* This is how to output an internal numbered label where PREFIX is
6909 the class of label and LABELNO is the number within the class. */
6912 default_internal_label (FILE *stream
, const char *prefix
,
6913 unsigned long labelno
)
6915 char *const buf
= (char *) alloca (40 + strlen (prefix
));
6916 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
6917 ASM_OUTPUT_INTERNAL_LABEL (stream
, buf
);
6921 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
6924 default_asm_declare_constant_name (FILE *file
, const char *name
,
6925 const_tree exp ATTRIBUTE_UNUSED
,
6926 HOST_WIDE_INT size ATTRIBUTE_UNUSED
)
6928 assemble_label (file
, name
);
6931 /* This is the default behavior at the beginning of a file. It's
6932 controlled by two other target-hook toggles. */
6934 default_file_start (void)
6936 if (targetm
.asm_file_start_app_off
6937 && !(flag_verbose_asm
|| flag_debug_asm
|| flag_dump_rtl_in_asm
))
6938 fputs (ASM_APP_OFF
, asm_out_file
);
6940 if (targetm
.asm_file_start_file_directive
)
6941 output_file_directive (asm_out_file
, main_input_filename
);
6944 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6945 which emits a special section directive used to indicate whether or
6946 not this object file needs an executable stack. This is primarily
6947 a GNU extension to ELF but could be used on other targets. */
6949 int trampolines_created
;
6952 file_end_indicate_exec_stack (void)
6954 unsigned int flags
= SECTION_DEBUG
;
6955 if (trampolines_created
)
6956 flags
|= SECTION_CODE
;
6958 switch_to_section (get_section (".note.GNU-stack", flags
, NULL
));
6961 /* Emit a special section directive to indicate that this object file
6962 was compiled with -fsplit-stack. This is used to let the linker
6963 detect calls between split-stack code and non-split-stack code, so
6964 that it can modify the split-stack code to allocate a sufficiently
6965 large stack. We emit another special section if there are any
6966 functions in this file which have the no_split_stack attribute, to
6967 prevent the linker from warning about being unable to convert the
6968 functions if they call non-split-stack code. */
6971 file_end_indicate_split_stack (void)
6973 if (flag_split_stack
)
6975 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG
,
6977 if (saw_no_split_stack
)
6978 switch_to_section (get_section (".note.GNU-no-split-stack",
6979 SECTION_DEBUG
, NULL
));
6983 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
6984 a get_unnamed_section callback. */
6987 output_section_asm_op (const void *directive
)
6989 fprintf (asm_out_file
, "%s\n", (const char *) directive
);
6992 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
6993 the current section is NEW_SECTION. */
6996 switch_to_section (section
*new_section
)
6998 if (in_section
== new_section
)
7001 if (new_section
->common
.flags
& SECTION_FORGET
)
7004 in_section
= new_section
;
7006 switch (SECTION_STYLE (new_section
))
7009 targetm
.asm_out
.named_section (new_section
->named
.name
,
7010 new_section
->named
.common
.flags
,
7011 new_section
->named
.decl
);
7014 case SECTION_UNNAMED
:
7015 new_section
->unnamed
.callback (new_section
->unnamed
.data
);
7018 case SECTION_NOSWITCH
:
7023 new_section
->common
.flags
|= SECTION_DECLARED
;
7026 /* If block symbol SYMBOL has not yet been assigned an offset, place
7027 it at the end of its block. */
7030 place_block_symbol (rtx symbol
)
7032 unsigned HOST_WIDE_INT size
, mask
, offset
;
7033 struct constant_descriptor_rtx
*desc
;
7034 unsigned int alignment
;
7035 struct object_block
*block
;
7038 gcc_assert (SYMBOL_REF_BLOCK (symbol
));
7039 if (SYMBOL_REF_BLOCK_OFFSET (symbol
) >= 0)
7042 /* Work out the symbol's size and alignment. */
7043 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7045 desc
= SYMBOL_REF_CONSTANT (symbol
);
7046 alignment
= desc
->align
;
7047 size
= GET_MODE_SIZE (desc
->mode
);
7049 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7051 decl
= SYMBOL_REF_DECL (symbol
);
7052 alignment
= DECL_ALIGN (decl
);
7053 size
= get_constant_size (DECL_INITIAL (decl
));
7054 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7055 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7056 && asan_protect_global (DECL_INITIAL (decl
)))
7057 size
+= asan_red_zone_size (size
);
7061 struct symtab_node
*snode
;
7062 decl
= SYMBOL_REF_DECL (symbol
);
7064 snode
= symtab_node::get (decl
);
7067 rtx target
= DECL_RTL (snode
->ultimate_alias_target ()->decl
);
7069 place_block_symbol (target
);
7070 SYMBOL_REF_BLOCK_OFFSET (symbol
) = SYMBOL_REF_BLOCK_OFFSET (target
);
7073 alignment
= get_variable_align (decl
);
7074 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
7075 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7076 && asan_protect_global (decl
))
7078 size
+= asan_red_zone_size (size
);
7079 alignment
= MAX (alignment
,
7080 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
7084 /* Calculate the object's offset from the start of the block. */
7085 block
= SYMBOL_REF_BLOCK (symbol
);
7086 mask
= alignment
/ BITS_PER_UNIT
- 1;
7087 offset
= (block
->size
+ mask
) & ~mask
;
7088 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
7090 /* Record the block's new alignment and size. */
7091 block
->alignment
= MAX (block
->alignment
, alignment
);
7092 block
->size
= offset
+ size
;
7094 vec_safe_push (block
->objects
, symbol
);
7097 /* Return the anchor that should be used to address byte offset OFFSET
7098 from the first object in BLOCK. MODEL is the TLS model used
7102 get_section_anchor (struct object_block
*block
, HOST_WIDE_INT offset
,
7103 enum tls_model model
)
7106 unsigned int begin
, middle
, end
;
7107 unsigned HOST_WIDE_INT min_offset
, max_offset
, range
, bias
, delta
;
7110 /* Work out the anchor's offset. Use an offset of 0 for the first
7111 anchor so that we don't pessimize the case where we take the address
7112 of a variable at the beginning of the block. This is particularly
7113 useful when a block has only one variable assigned to it.
7115 We try to place anchors RANGE bytes apart, so there can then be
7116 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7117 a ptr_mode offset. With some target settings, the lowest such
7118 anchor might be out of range for the lowest ptr_mode offset;
7119 likewise the highest anchor for the highest offset. Use anchors
7120 at the extreme ends of the ptr_mode range in such cases.
7122 All arithmetic uses unsigned integers in order to avoid
7124 max_offset
= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
;
7125 min_offset
= (unsigned HOST_WIDE_INT
) targetm
.min_anchor_offset
;
7126 range
= max_offset
- min_offset
+ 1;
7131 bias
= 1 << (GET_MODE_BITSIZE (ptr_mode
) - 1);
7134 delta
= -(unsigned HOST_WIDE_INT
) offset
+ max_offset
;
7135 delta
-= delta
% range
;
7138 offset
= (HOST_WIDE_INT
) (-delta
);
7142 delta
= (unsigned HOST_WIDE_INT
) offset
- min_offset
;
7143 delta
-= delta
% range
;
7144 if (delta
> bias
- 1)
7146 offset
= (HOST_WIDE_INT
) delta
;
7150 /* Do a binary search to see if there's already an anchor we can use.
7151 Set BEGIN to the new anchor's index if not. */
7153 end
= vec_safe_length (block
->anchors
);
7154 while (begin
!= end
)
7156 middle
= (end
+ begin
) / 2;
7157 anchor
= (*block
->anchors
)[middle
];
7158 if (SYMBOL_REF_BLOCK_OFFSET (anchor
) > offset
)
7160 else if (SYMBOL_REF_BLOCK_OFFSET (anchor
) < offset
)
7162 else if (SYMBOL_REF_TLS_MODEL (anchor
) > model
)
7164 else if (SYMBOL_REF_TLS_MODEL (anchor
) < model
)
7170 /* Create a new anchor with a unique label. */
7171 ASM_GENERATE_INTERNAL_LABEL (label
, "LANCHOR", anchor_labelno
++);
7172 anchor
= create_block_symbol (ggc_strdup (label
), block
, offset
);
7173 SYMBOL_REF_FLAGS (anchor
) |= SYMBOL_FLAG_LOCAL
| SYMBOL_FLAG_ANCHOR
;
7174 SYMBOL_REF_FLAGS (anchor
) |= model
<< SYMBOL_FLAG_TLS_SHIFT
;
7176 /* Insert it at index BEGIN. */
7177 vec_safe_insert (block
->anchors
, begin
, anchor
);
7181 /* Output the objects in BLOCK. */
7184 output_object_block (struct object_block
*block
)
7186 struct constant_descriptor_rtx
*desc
;
7188 HOST_WIDE_INT offset
;
7192 if (!block
->objects
)
7195 /* Switch to the section and make sure that the first byte is
7196 suitably aligned. */
7197 switch_to_section (block
->sect
);
7198 assemble_align (block
->alignment
);
7200 /* Define the values of all anchors relative to the current section
7202 FOR_EACH_VEC_SAFE_ELT (block
->anchors
, i
, symbol
)
7203 targetm
.asm_out
.output_anchor (symbol
);
7205 /* Output the objects themselves. */
7207 FOR_EACH_VEC_ELT (*block
->objects
, i
, symbol
)
7209 /* Move to the object's offset, padding with zeros if necessary. */
7210 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol
) - offset
);
7211 offset
= SYMBOL_REF_BLOCK_OFFSET (symbol
);
7212 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7214 desc
= SYMBOL_REF_CONSTANT (symbol
);
7215 output_constant_pool_1 (desc
, 1);
7216 offset
+= GET_MODE_SIZE (desc
->mode
);
7218 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7221 decl
= SYMBOL_REF_DECL (symbol
);
7222 assemble_constant_contents (DECL_INITIAL (decl
), XSTR (symbol
, 0),
7224 size
= get_constant_size (DECL_INITIAL (decl
));
7226 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7227 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7228 && asan_protect_global (DECL_INITIAL (decl
)))
7230 size
= asan_red_zone_size (size
);
7231 assemble_zeros (size
);
7238 decl
= SYMBOL_REF_DECL (symbol
);
7239 assemble_variable_contents (decl
, XSTR (symbol
, 0), false);
7240 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
7242 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7243 && asan_protect_global (decl
))
7245 size
= asan_red_zone_size (size
);
7246 assemble_zeros (size
);
7253 /* A htab_traverse callback used to call output_object_block for
7254 each member of object_block_htab. */
7257 output_object_block_htab (void **slot
, void *data ATTRIBUTE_UNUSED
)
7259 output_object_block ((struct object_block
*) (*slot
));
7263 /* Output the definitions of all object_blocks. */
7266 output_object_blocks (void)
7268 htab_traverse (object_block_htab
, output_object_block_htab
, NULL
);
7271 /* This function provides a possible implementation of the
7272 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7273 by -frecord-gcc-switches it creates a new mergeable, string section in the
7274 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7275 contains the switches in ASCII format.
7277 FIXME: This code does not correctly handle double quote characters
7278 that appear inside strings, (it strips them rather than preserving them).
7279 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7280 characters - instead it treats them as sub-string separators. Since
7281 we want to emit NUL strings terminators into the object file we have to use
7285 elf_record_gcc_switches (print_switch_type type
, const char * name
)
7289 case SWITCH_TYPE_PASSED
:
7290 ASM_OUTPUT_ASCII (asm_out_file
, name
, strlen (name
));
7291 ASM_OUTPUT_SKIP (asm_out_file
, (unsigned HOST_WIDE_INT
) 1);
7294 case SWITCH_TYPE_DESCRIPTIVE
:
7297 /* Distinguish between invocations where name is NULL. */
7298 static bool started
= false;
7304 sec
= get_section (targetm
.asm_out
.record_gcc_switches_section
,
7308 | (SECTION_ENTSIZE
& 1),
7310 switch_to_section (sec
);
7319 /* The return value is currently ignored by the caller, but must be 0.
7320 For -fverbose-asm the return value would be the number of characters
7321 emitted into the assembler file. */
7325 /* Emit text to declare externally defined symbols. It is needed to
7326 properly support non-default visibility. */
7328 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED
,
7330 const char *name ATTRIBUTE_UNUSED
)
7332 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7333 set in order to avoid putting out names that are never really
7335 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
7336 && targetm
.binds_local_p (decl
))
7337 maybe_assemble_visibility (decl
);
7340 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7343 default_asm_output_source_filename (FILE *file
, const char *name
)
7345 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7346 ASM_OUTPUT_SOURCE_FILENAME (file
, name
);
7348 fprintf (file
, "\t.file\t");
7349 output_quoted_string (file
, name
);
7354 /* Output a file name in the form wanted by System V. */
7357 output_file_directive (FILE *asm_file
, const char *input_name
)
7362 if (input_name
== NULL
)
7363 input_name
= "<stdin>";
7365 input_name
= remap_debug_filename (input_name
);
7367 len
= strlen (input_name
);
7368 na
= input_name
+ len
;
7370 /* NA gets INPUT_NAME sans directory names. */
7371 while (na
> input_name
)
7373 if (IS_DIR_SEPARATOR (na
[-1]))
7378 targetm
.asm_out
.output_source_filename (asm_file
, na
);
7381 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7384 make_debug_expr_from_rtl (const_rtx exp
)
7386 tree ddecl
= make_node (DEBUG_EXPR_DECL
), type
;
7387 enum machine_mode mode
= GET_MODE (exp
);
7390 DECL_ARTIFICIAL (ddecl
) = 1;
7391 if (REG_P (exp
) && REG_EXPR (exp
))
7392 type
= TREE_TYPE (REG_EXPR (exp
));
7393 else if (MEM_P (exp
) && MEM_EXPR (exp
))
7394 type
= TREE_TYPE (MEM_EXPR (exp
));
7397 if (type
&& TYPE_MODE (type
) == mode
)
7398 TREE_TYPE (ddecl
) = type
;
7400 TREE_TYPE (ddecl
) = lang_hooks
.types
.type_for_mode (mode
, 1);
7401 DECL_MODE (ddecl
) = mode
;
7402 dval
= gen_rtx_DEBUG_EXPR (mode
);
7403 DEBUG_EXPR_TREE_DECL (dval
) = ddecl
;
7404 SET_DECL_RTL (ddecl
, dval
);
7408 #ifdef ELF_ASCII_ESCAPES
7409 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
7412 default_elf_asm_output_limited_string (FILE *f
, const char *s
)
7417 fputs (STRING_ASM_OP
, f
);
7422 escape
= ELF_ASCII_ESCAPES
[c
];
7429 /* TODO: Print in hex with fast function, important for -flto. */
7430 fprintf (f
, "\\%03o", c
);
7443 /* Default ASM_OUTPUT_ASCII for ELF targets. */
7446 default_elf_asm_output_ascii (FILE *f
, const char *s
, unsigned int len
)
7448 const char *limit
= s
+ len
;
7449 const char *last_null
= NULL
;
7450 unsigned bytes_in_chunk
= 0;
7454 for (; s
< limit
; s
++)
7458 if (bytes_in_chunk
>= 60)
7467 for (p
= s
; p
< limit
&& *p
!= '\0'; p
++)
7474 if (p
< limit
&& (p
- s
) <= (long) ELF_STRING_LIMIT
)
7476 if (bytes_in_chunk
> 0)
7483 default_elf_asm_output_limited_string (f
, s
);
7488 if (bytes_in_chunk
== 0)
7489 fputs (ASCII_DATA_ASM_OP
"\"", f
);
7492 escape
= ELF_ASCII_ESCAPES
[c
];
7500 /* TODO: Print in hex with fast function, important for -flto. */
7501 fprintf (f
, "\\%03o", c
);
7502 bytes_in_chunk
+= 4;
7507 bytes_in_chunk
+= 2;
7514 if (bytes_in_chunk
> 0)
7522 static GTY(()) section
*elf_init_array_section
;
7523 static GTY(()) section
*elf_fini_array_section
;
7526 get_elf_initfini_array_priority_section (int priority
,
7530 if (priority
!= DEFAULT_INIT_PRIORITY
)
7533 sprintf (buf
, "%s.%.5u",
7534 constructor_p
? ".init_array" : ".fini_array",
7536 sec
= get_section (buf
, SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7542 if (elf_init_array_section
== NULL
)
7543 elf_init_array_section
7544 = get_section (".init_array",
7545 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7546 sec
= elf_init_array_section
;
7550 if (elf_fini_array_section
== NULL
)
7551 elf_fini_array_section
7552 = get_section (".fini_array",
7553 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7554 sec
= elf_fini_array_section
;
7560 /* Use .init_array section for constructors. */
7563 default_elf_init_array_asm_out_constructor (rtx symbol
, int priority
)
7565 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7567 assemble_addr_to_section (symbol
, sec
);
7570 /* Use .fini_array section for destructors. */
7573 default_elf_fini_array_asm_out_destructor (rtx symbol
, int priority
)
7575 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7577 assemble_addr_to_section (symbol
, sec
);
7580 /* Default TARGET_ASM_OUTPUT_IDENT hook.
7582 This is a bit of a cheat. The real default is a no-op, but this
7583 hook is the default for all targets with a .ident directive. */
7586 default_asm_output_ident_directive (const char *ident_str
)
7588 const char *ident_asm_op
= "\t.ident\t";
7590 /* If we are still in the front end, do not write out the string
7591 to asm_out_file. Instead, add a fake top-level asm statement.
7592 This allows the front ends to use this hook without actually
7593 writing to asm_out_file, to handle #ident or Pragma Ident. */
7594 if (cgraph_state
== CGRAPH_STATE_PARSING
)
7596 char *buf
= ACONCAT ((ident_asm_op
, "\"", ident_str
, "\"\n", NULL
));
7597 add_asm_node (build_string (strlen (buf
), buf
));
7600 fprintf (asm_out_file
, "%s\"%s\"\n", ident_asm_op
, ident_str
);
7603 #include "gt-varasm.h"