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_TREE)
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
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
417 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
418 return get_section (name
, flags
, decl
);
421 /* If required, set DECL_SECTION_NAME to a unique name. */
424 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
425 int flag_function_or_data_sections
)
427 if (DECL_SECTION_NAME (decl
) == NULL_TREE
428 && targetm_common
.have_named_sections
429 && (flag_function_or_data_sections
430 || DECL_COMDAT_GROUP (decl
)))
432 targetm
.asm_out
.unique_section (decl
, reloc
);
433 DECL_HAS_IMPLICIT_SECTION_NAME_P (decl
) = true;
437 #ifdef BSS_SECTION_ASM_OP
439 #ifdef ASM_OUTPUT_ALIGNED_BSS
441 /* Utility function for targets to use in implementing
442 ASM_OUTPUT_ALIGNED_BSS.
443 ??? It is believed that this function will work in most cases so such
444 support is localized here. */
447 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
448 const char *name
, unsigned HOST_WIDE_INT size
,
451 switch_to_section (bss_section
);
452 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
453 #ifdef ASM_DECLARE_OBJECT_NAME
454 last_assemble_variable_decl
= decl
;
455 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
457 /* Standard thing is just output label for the object. */
458 ASM_OUTPUT_LABEL (file
, name
);
459 #endif /* ASM_DECLARE_OBJECT_NAME */
460 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
465 #endif /* BSS_SECTION_ASM_OP */
467 #ifndef USE_SELECT_SECTION_FOR_FUNCTIONS
468 /* Return the hot section for function DECL. Return text_section for
472 hot_function_section (tree decl
)
474 if (decl
!= NULL_TREE
475 && DECL_SECTION_NAME (decl
) != NULL_TREE
476 && targetm_common
.have_named_sections
)
477 return get_named_section (decl
, NULL
, 0);
483 /* Return section for TEXT_SECTION_NAME if DECL or DECL_SECTION_NAME (DECL)
486 When DECL_SECTION_NAME is non-NULL and it is implicit section and
487 NAMED_SECTION_SUFFIX is non-NULL, then produce section called
488 concatenate the name with NAMED_SECTION_SUFFIX.
489 Otherwise produce "TEXT_SECTION_NAME.IMPLICIT_NAME". */
492 get_named_text_section (tree decl
,
493 const char *text_section_name
,
494 const char *named_section_suffix
)
496 if (decl
&& DECL_SECTION_NAME (decl
))
498 if (named_section_suffix
)
500 tree dsn
= DECL_SECTION_NAME (decl
);
501 const char *stripped_name
;
504 name
= (char *) alloca (TREE_STRING_LENGTH (dsn
) + 1);
505 memcpy (name
, TREE_STRING_POINTER (dsn
),
506 TREE_STRING_LENGTH (dsn
) + 1);
508 stripped_name
= targetm
.strip_name_encoding (name
);
510 buffer
= ACONCAT ((stripped_name
, named_section_suffix
, NULL
));
511 return get_named_section (decl
, buffer
, 0);
513 else if (DECL_HAS_IMPLICIT_SECTION_NAME_P (decl
))
517 /* Do not try to split gnu_linkonce functions. This gets somewhat
519 if (DECL_COMDAT_GROUP (decl
) && !HAVE_COMDAT_GROUP
)
521 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
522 name
= targetm
.strip_name_encoding (name
);
523 return get_named_section (decl
, ACONCAT ((text_section_name
, ".",
529 return get_named_section (decl
, text_section_name
, 0);
532 /* Choose named function section based on its frequency. */
535 default_function_section (tree decl
, enum node_frequency freq
,
536 bool startup
, bool exit
)
538 #if defined HAVE_LD_EH_GC_SECTIONS && defined HAVE_LD_EH_GC_SECTIONS_BUG
539 /* Old GNU linkers have buggy --gc-section support, which sometimes
540 results in .gcc_except_table* sections being garbage collected. */
542 && DECL_SECTION_NAME (decl
)
543 && DECL_HAS_IMPLICIT_SECTION_NAME_P (decl
))
547 if (!flag_reorder_functions
548 || !targetm_common
.have_named_sections
)
550 /* Startup code should go to startup subsection unless it is
551 unlikely executed (this happens especially with function splitting
552 where we can split away unnecessary parts of static constructors. */
553 if (startup
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
555 /* If we do have a profile or(and) LTO phase is executed, we do not need
556 these ELF section. */
557 if (!in_lto_p
|| !flag_profile_values
)
558 return get_named_text_section (decl
, ".text.startup", NULL
);
563 /* Similarly for exit. */
564 if (exit
&& freq
!= NODE_FREQUENCY_UNLIKELY_EXECUTED
)
565 return get_named_text_section (decl
, ".text.exit", NULL
);
567 /* Group cold functions together, similarly for hot code. */
570 case NODE_FREQUENCY_UNLIKELY_EXECUTED
:
571 return get_named_text_section (decl
, ".text.unlikely", NULL
);
572 case NODE_FREQUENCY_HOT
:
573 /* If we do have a profile or(and) LTO phase is executed, we do not need
574 these ELF section. */
575 if (!in_lto_p
|| !flag_profile_values
)
576 return get_named_text_section (decl
, ".text.hot", NULL
);
582 /* Return the section for function DECL.
584 If DECL is NULL_TREE, return the text section. We can be passed
585 NULL_TREE under some circumstances by dbxout.c at least.
587 If FORCE_COLD is true, return cold function section ignoring
588 the frequency info of cgraph_node. */
591 function_section_1 (tree decl
, bool force_cold
)
593 section
*section
= NULL
;
594 enum node_frequency freq
= NODE_FREQUENCY_NORMAL
;
595 bool startup
= false, exit
= false;
599 struct cgraph_node
*node
= cgraph_get_node (decl
);
603 freq
= node
->frequency
;
604 startup
= node
->only_called_at_startup
;
605 exit
= node
->only_called_at_exit
;
609 freq
= NODE_FREQUENCY_UNLIKELY_EXECUTED
;
611 #ifdef USE_SELECT_SECTION_FOR_FUNCTIONS
612 if (decl
!= NULL_TREE
613 && DECL_SECTION_NAME (decl
) != NULL_TREE
)
615 if (targetm
.asm_out
.function_section
)
616 section
= targetm
.asm_out
.function_section (decl
, freq
,
620 return get_named_section (decl
, NULL
, 0);
623 return targetm
.asm_out
.select_section
624 (decl
, freq
== NODE_FREQUENCY_UNLIKELY_EXECUTED
,
627 if (targetm
.asm_out
.function_section
)
628 section
= targetm
.asm_out
.function_section (decl
, freq
, startup
, exit
);
631 return hot_function_section (decl
);
635 /* Return the section for function DECL.
637 If DECL is NULL_TREE, return the text section. We can be passed
638 NULL_TREE under some circumstances by dbxout.c at least. */
641 function_section (tree decl
)
643 /* Handle cases where function splitting code decides
644 to put function entry point into unlikely executed section
645 despite the fact that the function itself is not cold
646 (i.e. it is called rarely but contains a hot loop that is
647 better to live in hot subsection for the code locality). */
648 return function_section_1 (decl
,
649 first_function_block_is_cold
);
652 /* Return the section for the current function, take IN_COLD_SECTION_P
656 current_function_section (void)
658 return function_section_1 (current_function_decl
, in_cold_section_p
);
661 /* Tell assembler to switch to unlikely-to-be-executed text section. */
664 unlikely_text_section (void)
666 return function_section_1 (current_function_decl
, true);
669 /* When called within a function context, return true if the function
670 has been assigned a cold text section and if SECT is that section.
671 When called outside a function context, return true if SECT is the
672 default cold section. */
675 unlikely_text_section_p (section
*sect
)
677 return sect
== function_section_1 (current_function_decl
, true);
680 /* Return the read-only data section associated with function DECL. */
683 default_function_rodata_section (tree decl
)
685 if (decl
!= NULL_TREE
&& DECL_SECTION_NAME (decl
))
687 const char *name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
689 if (DECL_COMDAT_GROUP (decl
) && HAVE_COMDAT_GROUP
)
695 dot
= strchr (name
+ 1, '.');
698 len
= strlen (dot
) + 8;
699 rname
= (char *) alloca (len
);
701 strcpy (rname
, ".rodata");
703 return get_section (rname
, SECTION_LINKONCE
, decl
);
705 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
706 else if (DECL_COMDAT_GROUP (decl
)
707 && strncmp (name
, ".gnu.linkonce.t.", 16) == 0)
709 size_t len
= strlen (name
) + 1;
710 char *rname
= (char *) alloca (len
);
712 memcpy (rname
, name
, len
);
714 return get_section (rname
, SECTION_LINKONCE
, decl
);
716 /* For .text.foo we want to use .rodata.foo. */
717 else if (flag_function_sections
&& flag_data_sections
718 && strncmp (name
, ".text.", 6) == 0)
720 size_t len
= strlen (name
) + 1;
721 char *rname
= (char *) alloca (len
+ 2);
723 memcpy (rname
, ".rodata", 7);
724 memcpy (rname
+ 7, name
+ 5, len
- 5);
725 return get_section (rname
, 0, decl
);
729 return readonly_data_section
;
732 /* Return the read-only data section associated with function DECL
733 for targets where that section should be always the single
734 readonly data section. */
737 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED
)
739 return readonly_data_section
;
742 /* Return the section to use for string merging. */
745 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
746 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
747 unsigned int flags ATTRIBUTE_UNUSED
)
751 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
752 && TREE_CODE (decl
) == STRING_CST
753 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
755 && (len
= int_size_in_bytes (TREE_TYPE (decl
))) > 0
756 && TREE_STRING_LENGTH (decl
) >= len
)
758 enum machine_mode mode
;
759 unsigned int modesize
;
763 const char *prefix
= targetm
.asm_out
.mergeable_rodata_prefix
;
764 char *name
= (char *) alloca (strlen (prefix
) + 30);
766 mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
767 modesize
= GET_MODE_BITSIZE (mode
);
768 if (modesize
>= 8 && modesize
<= 256
769 && (modesize
& (modesize
- 1)) == 0)
771 if (align
< modesize
)
774 str
= TREE_STRING_POINTER (decl
);
775 unit
= GET_MODE_SIZE (mode
);
777 /* Check for embedded NUL characters. */
778 for (i
= 0; i
< len
; i
+= unit
)
780 for (j
= 0; j
< unit
; j
++)
781 if (str
[i
+ j
] != '\0')
788 sprintf (name
, "%s.str%d.%d", prefix
,
789 modesize
/ 8, (int) (align
/ 8));
790 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
791 return get_section (name
, flags
, NULL
);
796 return readonly_data_section
;
799 /* Return the section to use for constant merging. */
802 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
803 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
804 unsigned int flags ATTRIBUTE_UNUSED
)
806 unsigned int modesize
= GET_MODE_BITSIZE (mode
);
808 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
814 && (align
& (align
- 1)) == 0)
816 const char *prefix
= targetm
.asm_out
.mergeable_rodata_prefix
;
817 char *name
= (char *) alloca (strlen (prefix
) + 30);
819 sprintf (name
, "%s.cst%d", prefix
, (int) (align
/ 8));
820 flags
|= (align
/ 8) | SECTION_MERGE
;
821 return get_section (name
, flags
, NULL
);
823 return readonly_data_section
;
826 /* Given NAME, a putative register name, discard any customary prefixes. */
829 strip_reg_name (const char *name
)
831 #ifdef REGISTER_PREFIX
832 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
833 name
+= strlen (REGISTER_PREFIX
);
835 if (name
[0] == '%' || name
[0] == '#')
840 /* The user has asked for a DECL to have a particular name. Set (or
841 change) it in such a way that we don't prefix an underscore to
844 set_user_assembler_name (tree decl
, const char *name
)
846 char *starred
= (char *) alloca (strlen (name
) + 2);
848 strcpy (starred
+ 1, name
);
849 change_decl_assembler_name (decl
, get_identifier (starred
));
850 SET_DECL_RTL (decl
, NULL_RTX
);
853 /* Decode an `asm' spec for a declaration as a register name.
854 Return the register number, or -1 if nothing specified,
855 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
856 or -3 if ASMSPEC is `cc' and is not recognized,
857 or -4 if ASMSPEC is `memory' and is not recognized.
858 Accept an exact spelling or a decimal number.
859 Prefixes such as % are optional. */
862 decode_reg_name_and_count (const char *asmspec
, int *pnregs
)
864 /* Presume just one register is clobbered. */
871 /* Get rid of confusing prefixes. */
872 asmspec
= strip_reg_name (asmspec
);
874 /* Allow a decimal number as a "register name". */
875 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
876 if (! ISDIGIT (asmspec
[i
]))
878 if (asmspec
[0] != 0 && i
< 0)
881 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
887 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
889 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
892 #ifdef OVERLAPPING_REGISTER_NAMES
896 const char *const name
;
899 } table
[] = OVERLAPPING_REGISTER_NAMES
;
901 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
903 && ! strcmp (asmspec
, table
[i
].name
))
905 *pnregs
= table
[i
].nregs
;
906 return table
[i
].number
;
909 #endif /* OVERLAPPING_REGISTER_NAMES */
911 #ifdef ADDITIONAL_REGISTER_NAMES
913 static const struct { const char *const name
; const int number
; } table
[]
914 = ADDITIONAL_REGISTER_NAMES
;
916 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
918 && ! strcmp (asmspec
, table
[i
].name
))
919 return table
[i
].number
;
921 #endif /* ADDITIONAL_REGISTER_NAMES */
923 if (!strcmp (asmspec
, "memory"))
926 if (!strcmp (asmspec
, "cc"))
936 decode_reg_name (const char *name
)
939 return decode_reg_name_and_count (name
, &count
);
943 /* Return true if DECL's initializer is suitable for a BSS section. */
946 bss_initializer_p (const_tree decl
)
948 return (DECL_INITIAL (decl
) == NULL
949 || DECL_INITIAL (decl
) == error_mark_node
950 || (flag_zero_initialized_in_bss
951 /* Leave constant zeroes in .rodata so they
953 && !TREE_READONLY (decl
)
954 && initializer_zerop (DECL_INITIAL (decl
))));
957 /* Compute the alignment of variable specified by DECL.
958 DONT_OUTPUT_DATA is from assemble_variable. */
961 align_variable (tree decl
, bool dont_output_data
)
963 unsigned int align
= DECL_ALIGN (decl
);
965 /* In the case for initialing an array whose length isn't specified,
966 where we have not yet been able to do the layout,
967 figure out the proper alignment now. */
968 if (dont_output_data
&& DECL_SIZE (decl
) == 0
969 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
970 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
972 /* Some object file formats have a maximum alignment which they support.
973 In particular, a.out format supports a maximum alignment of 4. */
974 if (align
> MAX_OFILE_ALIGNMENT
)
976 error ("alignment of %q+D is greater than maximum object "
977 "file alignment %d", decl
,
978 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
979 align
= MAX_OFILE_ALIGNMENT
;
982 if (! DECL_USER_ALIGN (decl
))
984 #ifdef DATA_ABI_ALIGNMENT
985 unsigned int data_abi_align
986 = DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
987 /* For backwards compatibility, don't assume the ABI alignment for
989 if (! DECL_THREAD_LOCAL_P (decl
) || data_abi_align
<= BITS_PER_WORD
)
990 align
= data_abi_align
;
993 /* On some machines, it is good to increase alignment sometimes.
994 But as DECL_ALIGN is used both for actually emitting the variable
995 and for code accessing the variable as guaranteed alignment, we
996 can only increase the alignment if it is a performance optimization
997 if the references to it must bind to the current definition. */
998 if (decl_binds_to_current_def_p (decl
)
999 && !DECL_VIRTUAL_P (decl
))
1001 #ifdef DATA_ALIGNMENT
1002 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1003 /* Don't increase alignment too much for TLS variables - TLS space
1005 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1008 #ifdef CONSTANT_ALIGNMENT
1009 if (DECL_INITIAL (decl
) != 0
1010 && DECL_INITIAL (decl
) != error_mark_node
)
1012 unsigned int const_align
1013 = CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1014 /* Don't increase alignment too much for TLS variables - TLS
1015 space is too precious. */
1016 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1017 align
= const_align
;
1023 /* Reset the alignment in case we have made it tighter, so we can benefit
1024 from it in get_pointer_alignment. */
1025 DECL_ALIGN (decl
) = align
;
1028 /* Return DECL_ALIGN (decl), possibly increased for optimization purposes
1029 beyond what align_variable returned. */
1032 get_variable_align (tree decl
)
1034 unsigned int align
= DECL_ALIGN (decl
);
1036 /* For user aligned vars or static vars align_variable already did
1038 if (DECL_USER_ALIGN (decl
) || !TREE_PUBLIC (decl
))
1041 #ifdef DATA_ABI_ALIGNMENT
1042 if (DECL_THREAD_LOCAL_P (decl
))
1043 align
= DATA_ABI_ALIGNMENT (TREE_TYPE (decl
), align
);
1046 /* For decls that bind to the current definition, align_variable
1047 did also everything, except for not assuming ABI required alignment
1048 of TLS variables. For other vars, increase the alignment here
1049 as an optimization. */
1050 if (!decl_binds_to_current_def_p (decl
))
1052 /* On some machines, it is good to increase alignment sometimes. */
1053 #ifdef DATA_ALIGNMENT
1054 unsigned int data_align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1055 /* Don't increase alignment too much for TLS variables - TLS space
1057 if (! DECL_THREAD_LOCAL_P (decl
) || data_align
<= BITS_PER_WORD
)
1060 #ifdef CONSTANT_ALIGNMENT
1061 if (DECL_INITIAL (decl
) != 0 && DECL_INITIAL (decl
) != error_mark_node
)
1063 unsigned int const_align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
),
1065 /* Don't increase alignment too much for TLS variables - TLS space
1067 if (! DECL_THREAD_LOCAL_P (decl
) || const_align
<= BITS_PER_WORD
)
1068 align
= const_align
;
1076 /* Return the section into which the given VAR_DECL or CONST_DECL
1077 should be placed. PREFER_NOSWITCH_P is true if a noswitch
1078 section should be used wherever possible. */
1081 get_variable_section (tree decl
, bool prefer_noswitch_p
)
1083 addr_space_t as
= ADDR_SPACE_GENERIC
;
1085 symtab_node
*snode
= symtab_get_node (decl
);
1087 decl
= symtab_alias_ultimate_target (snode
)->decl
;
1089 if (TREE_TYPE (decl
) != error_mark_node
)
1090 as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1092 if (DECL_COMMON (decl
))
1094 /* If the decl has been given an explicit section name, or it resides
1095 in a non-generic address space, then it isn't common, and shouldn't
1096 be handled as such. */
1097 gcc_assert (DECL_SECTION_NAME (decl
) == NULL
1098 && ADDR_SPACE_GENERIC_P (as
));
1099 if (DECL_THREAD_LOCAL_P (decl
))
1100 return tls_comm_section
;
1101 else if (TREE_PUBLIC (decl
) && bss_initializer_p (decl
))
1102 return comm_section
;
1105 if (DECL_INITIAL (decl
) == error_mark_node
)
1106 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1107 else if (DECL_INITIAL (decl
))
1108 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1112 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1113 if (IN_NAMED_SECTION (decl
))
1114 return get_named_section (decl
, NULL
, reloc
);
1116 if (ADDR_SPACE_GENERIC_P (as
)
1117 && !DECL_THREAD_LOCAL_P (decl
)
1118 && !(prefer_noswitch_p
&& targetm
.have_switchable_bss_sections
)
1119 && bss_initializer_p (decl
))
1121 if (!TREE_PUBLIC (decl
)
1122 && !((flag_sanitize
& SANITIZE_ADDRESS
)
1123 && asan_protect_global (decl
)))
1124 return lcomm_section
;
1125 if (bss_noswitch_section
)
1126 return bss_noswitch_section
;
1129 return targetm
.asm_out
.select_section (decl
, reloc
,
1130 get_variable_align (decl
));
1133 /* Return the block into which object_block DECL should be placed. */
1135 static struct object_block
*
1136 get_block_for_decl (tree decl
)
1140 if (TREE_CODE (decl
) == VAR_DECL
)
1142 /* The object must be defined in this translation unit. */
1143 if (DECL_EXTERNAL (decl
))
1146 /* There's no point using object blocks for something that is
1147 isolated by definition. */
1148 if (DECL_COMDAT_GROUP (decl
))
1152 /* We can only calculate block offsets if the decl has a known
1154 if (DECL_SIZE_UNIT (decl
) == NULL
)
1156 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl
)))
1159 /* Find out which section should contain DECL. We cannot put it into
1160 an object block if it requires a standalone definition. */
1161 if (TREE_CODE (decl
) == VAR_DECL
)
1162 align_variable (decl
, 0);
1163 sect
= get_variable_section (decl
, true);
1164 if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
1167 return get_block_for_section (sect
);
1170 /* Make sure block symbol SYMBOL is in block BLOCK. */
1173 change_symbol_block (rtx symbol
, struct object_block
*block
)
1175 if (block
!= SYMBOL_REF_BLOCK (symbol
))
1177 gcc_assert (SYMBOL_REF_BLOCK_OFFSET (symbol
) < 0);
1178 SYMBOL_REF_BLOCK (symbol
) = block
;
1182 /* Return true if it is possible to put DECL in an object_block. */
1185 use_blocks_for_decl_p (tree decl
)
1187 struct symtab_node
*snode
;
1189 /* Only data DECLs can be placed into object blocks. */
1190 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != CONST_DECL
)
1193 /* Detect decls created by dw2_force_const_mem. Such decls are
1194 special because DECL_INITIAL doesn't specify the decl's true value.
1195 dw2_output_indirect_constants will instead call assemble_variable
1196 with dont_output_data set to 1 and then print the contents itself. */
1197 if (DECL_INITIAL (decl
) == decl
)
1200 /* If this decl is an alias, then we don't want to emit a
1202 if (TREE_CODE (decl
) == VAR_DECL
1203 && (snode
= symtab_get_node (decl
)) != NULL
1207 return targetm
.use_blocks_for_decl_p (decl
);
1210 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
1211 have static storage duration. In other words, it should not be an
1212 automatic variable, including PARM_DECLs.
1214 There is, however, one exception: this function handles variables
1215 explicitly placed in a particular register by the user.
1217 This is never called for PARM_DECL nodes. */
1220 make_decl_rtl (tree decl
)
1222 const char *name
= 0;
1226 /* Check that we are not being given an automatic variable. */
1227 gcc_assert (TREE_CODE (decl
) != PARM_DECL
1228 && TREE_CODE (decl
) != RESULT_DECL
);
1230 /* A weak alias has TREE_PUBLIC set but not the other bits. */
1231 gcc_assert (TREE_CODE (decl
) != VAR_DECL
1232 || TREE_STATIC (decl
)
1233 || TREE_PUBLIC (decl
)
1234 || DECL_EXTERNAL (decl
)
1235 || DECL_REGISTER (decl
));
1237 /* And that we were not given a type or a label. */
1238 gcc_assert (TREE_CODE (decl
) != TYPE_DECL
1239 && TREE_CODE (decl
) != LABEL_DECL
);
1241 /* For a duplicate declaration, we can be called twice on the
1242 same DECL node. Don't discard the RTL already made. */
1243 if (DECL_RTL_SET_P (decl
))
1245 /* If the old RTL had the wrong mode, fix the mode. */
1246 x
= DECL_RTL (decl
);
1247 if (GET_MODE (x
) != DECL_MODE (decl
))
1248 SET_DECL_RTL (decl
, adjust_address_nv (x
, DECL_MODE (decl
), 0));
1250 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1253 /* ??? Another way to do this would be to maintain a hashed
1254 table of such critters. Instead of adding stuff to a DECL
1255 to give certain attributes to it, we could use an external
1256 hash map from DECL to set of attributes. */
1258 /* Let the target reassign the RTL if it wants.
1259 This is necessary, for example, when one machine specific
1260 decl attribute overrides another. */
1261 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
1263 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
1264 on the new decl information. */
1266 && GET_CODE (XEXP (x
, 0)) == SYMBOL_REF
1267 && SYMBOL_REF_HAS_BLOCK_INFO_P (XEXP (x
, 0)))
1268 change_symbol_block (XEXP (x
, 0), get_block_for_decl (decl
));
1273 /* If this variable belongs to the global constant pool, retrieve the
1274 pre-computed RTL or recompute it in LTO mode. */
1275 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_IN_CONSTANT_POOL (decl
))
1277 SET_DECL_RTL (decl
, output_constant_def (DECL_INITIAL (decl
), 1));
1281 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
1283 if (name
[0] != '*' && TREE_CODE (decl
) != FUNCTION_DECL
1284 && DECL_REGISTER (decl
))
1286 error ("register name not specified for %q+D", decl
);
1288 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
1290 const char *asmspec
= name
+1;
1291 enum machine_mode mode
= DECL_MODE (decl
);
1292 reg_number
= decode_reg_name (asmspec
);
1293 /* First detect errors in declaring global registers. */
1294 if (reg_number
== -1)
1295 error ("register name not specified for %q+D", decl
);
1296 else if (reg_number
< 0)
1297 error ("invalid register name for %q+D", decl
);
1298 else if (mode
== BLKmode
)
1299 error ("data type of %q+D isn%'t suitable for a register",
1301 else if (!in_hard_reg_set_p (accessible_reg_set
, mode
, reg_number
))
1302 error ("the register specified for %q+D cannot be accessed"
1303 " by the current target", decl
);
1304 else if (!in_hard_reg_set_p (operand_reg_set
, mode
, reg_number
))
1305 error ("the register specified for %q+D is not general enough"
1306 " to be used as a register variable", decl
);
1307 else if (!HARD_REGNO_MODE_OK (reg_number
, mode
))
1308 error ("register specified for %q+D isn%'t suitable for data type",
1310 /* Now handle properly declared static register variables. */
1315 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
1317 DECL_INITIAL (decl
) = 0;
1318 error ("global register variable has initial value");
1320 if (TREE_THIS_VOLATILE (decl
))
1321 warning (OPT_Wvolatile_register_var
,
1322 "optimization may eliminate reads and/or "
1323 "writes to register variables");
1325 /* If the user specified one of the eliminables registers here,
1326 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
1327 confused with that register and be eliminated. This usage is
1328 somewhat suspect... */
1330 SET_DECL_RTL (decl
, gen_rtx_raw_REG (mode
, reg_number
));
1331 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
1332 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
1334 if (TREE_STATIC (decl
))
1336 /* Make this register global, so not usable for anything
1338 #ifdef ASM_DECLARE_REGISTER_GLOBAL
1339 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
1340 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
1342 nregs
= hard_regno_nregs
[reg_number
][mode
];
1344 globalize_reg (decl
, reg_number
+ --nregs
);
1347 /* As a register variable, it has no section. */
1351 /* Now handle ordinary static variables and functions (in memory).
1352 Also handle vars declared register invalidly. */
1353 else if (name
[0] == '*')
1355 #ifdef REGISTER_PREFIX
1356 if (strlen (REGISTER_PREFIX
) != 0)
1358 reg_number
= decode_reg_name (name
);
1359 if (reg_number
>= 0 || reg_number
== -3)
1360 error ("register name given for non-register variable %q+D", decl
);
1365 /* Specifying a section attribute on a variable forces it into a
1366 non-.bss section, and thus it cannot be common. */
1367 /* FIXME: In general this code should not be necessary because
1368 visibility pass is doing the same work. But notice_global_symbol
1369 is called early and it needs to make DECL_RTL to get the name.
1370 we take care of recomputing the DECL_RTL after visibility is changed. */
1371 if (TREE_CODE (decl
) == VAR_DECL
1372 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
))
1373 && DECL_SECTION_NAME (decl
) != NULL_TREE
1374 && DECL_INITIAL (decl
) == NULL_TREE
1375 && DECL_COMMON (decl
))
1376 DECL_COMMON (decl
) = 0;
1378 /* Variables can't be both common and weak. */
1379 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_WEAK (decl
))
1380 DECL_COMMON (decl
) = 0;
1382 if (use_object_blocks_p () && use_blocks_for_decl_p (decl
))
1383 x
= create_block_symbol (name
, get_block_for_decl (decl
), -1);
1386 enum machine_mode address_mode
= Pmode
;
1387 if (TREE_TYPE (decl
) != error_mark_node
)
1389 addr_space_t as
= TYPE_ADDR_SPACE (TREE_TYPE (decl
));
1390 address_mode
= targetm
.addr_space
.address_mode (as
);
1392 x
= gen_rtx_SYMBOL_REF (address_mode
, name
);
1394 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
1395 SET_SYMBOL_REF_DECL (x
, decl
);
1397 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
1398 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1399 set_mem_attributes (x
, decl
, 1);
1400 SET_DECL_RTL (decl
, x
);
1402 /* Optionally set flags or add text to the name to record information
1403 such as that it is a function name.
1404 If the name is changed, the macro ASM_OUTPUT_LABELREF
1405 will have to know how to strip this information. */
1406 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
1409 /* Like make_decl_rtl, but inhibit creation of new alias sets when
1410 calling make_decl_rtl. Also, reset DECL_RTL before returning the
1414 make_decl_rtl_for_debug (tree decl
)
1416 unsigned int save_aliasing_flag
;
1419 if (DECL_RTL_SET_P (decl
))
1420 return DECL_RTL (decl
);
1422 /* Kludge alert! Somewhere down the call chain, make_decl_rtl will
1423 call new_alias_set. If running with -fcompare-debug, sometimes
1424 we do not want to create alias sets that will throw the alias
1425 numbers off in the comparison dumps. So... clearing
1426 flag_strict_aliasing will keep new_alias_set() from creating a
1428 save_aliasing_flag
= flag_strict_aliasing
;
1429 flag_strict_aliasing
= 0;
1431 rtl
= DECL_RTL (decl
);
1432 /* Reset DECL_RTL back, as various parts of the compiler expects
1433 DECL_RTL set meaning it is actually going to be output. */
1434 SET_DECL_RTL (decl
, NULL
);
1436 flag_strict_aliasing
= save_aliasing_flag
;
1440 /* Output a string of literal assembler code
1441 for an `asm' keyword used between functions. */
1444 assemble_asm (tree string
)
1449 if (TREE_CODE (string
) == ADDR_EXPR
)
1450 string
= TREE_OPERAND (string
, 0);
1452 p
= TREE_STRING_POINTER (string
);
1453 fprintf (asm_out_file
, "%s%s\n", p
[0] == '\t' ? "" : "\t", p
);
1456 /* Write the address of the entity given by SYMBOL to SEC. */
1458 assemble_addr_to_section (rtx symbol
, section
*sec
)
1460 switch_to_section (sec
);
1461 assemble_align (POINTER_SIZE
);
1462 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1465 /* Return the numbered .ctors.N (if CONSTRUCTOR_P) or .dtors.N (if
1466 not) section for PRIORITY. */
1468 get_cdtor_priority_section (int priority
, bool constructor_p
)
1472 /* ??? This only works reliably with the GNU linker. */
1473 sprintf (buf
, "%s.%.5u",
1474 constructor_p
? ".ctors" : ".dtors",
1475 /* Invert the numbering so the linker puts us in the proper
1476 order; constructors are run from right to left, and the
1477 linker sorts in increasing order. */
1478 MAX_INIT_PRIORITY
- priority
);
1479 return get_section (buf
, SECTION_WRITE
, NULL
);
1483 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1487 if (priority
!= DEFAULT_INIT_PRIORITY
)
1488 sec
= get_cdtor_priority_section (priority
,
1489 /*constructor_p=*/false);
1491 sec
= get_section (".dtors", SECTION_WRITE
, NULL
);
1493 assemble_addr_to_section (symbol
, sec
);
1496 #ifdef DTORS_SECTION_ASM_OP
1498 default_dtor_section_asm_out_destructor (rtx symbol
,
1499 int priority ATTRIBUTE_UNUSED
)
1501 assemble_addr_to_section (symbol
, dtors_section
);
1506 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1510 if (priority
!= DEFAULT_INIT_PRIORITY
)
1511 sec
= get_cdtor_priority_section (priority
,
1512 /*constructor_p=*/true);
1514 sec
= get_section (".ctors", SECTION_WRITE
, NULL
);
1516 assemble_addr_to_section (symbol
, sec
);
1519 #ifdef CTORS_SECTION_ASM_OP
1521 default_ctor_section_asm_out_constructor (rtx symbol
,
1522 int priority ATTRIBUTE_UNUSED
)
1524 assemble_addr_to_section (symbol
, ctors_section
);
1528 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1529 a nonzero value if the constant pool should be output before the
1530 start of the function, or a zero value if the pool should output
1531 after the end of the function. The default is to put it before the
1534 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1535 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1538 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1539 to be output to assembler.
1540 Set first_global_object_name and weak_global_object_name as appropriate. */
1543 notice_global_symbol (tree decl
)
1545 const char **type
= &first_global_object_name
;
1547 if (first_global_object_name
1548 || !TREE_PUBLIC (decl
)
1549 || DECL_EXTERNAL (decl
)
1550 || !DECL_NAME (decl
)
1551 || (TREE_CODE (decl
) != FUNCTION_DECL
1552 && (TREE_CODE (decl
) != VAR_DECL
1553 || (DECL_COMMON (decl
)
1554 && (DECL_INITIAL (decl
) == 0
1555 || DECL_INITIAL (decl
) == error_mark_node
))))
1556 || !MEM_P (DECL_RTL (decl
)))
1559 /* We win when global object is found, but it is useful to know about weak
1560 symbol as well so we can produce nicer unique names. */
1561 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
) || flag_shlib
)
1562 type
= &weak_global_object_name
;
1568 rtx decl_rtl
= DECL_RTL (decl
);
1570 p
= targetm
.strip_name_encoding (XSTR (XEXP (decl_rtl
, 0), 0));
1571 name
= ggc_strdup (p
);
1577 /* If not using flag_reorder_blocks_and_partition, decide early whether the
1578 current function goes into the cold section, so that targets can use
1579 current_function_section during RTL expansion. DECL describes the
1583 decide_function_section (tree decl
)
1585 first_function_block_is_cold
= false;
1587 if (flag_reorder_blocks_and_partition
)
1588 /* We will decide in assemble_start_function. */
1591 if (DECL_SECTION_NAME (decl
))
1593 struct cgraph_node
*node
= cgraph_get_node (current_function_decl
);
1594 /* Calls to function_section rely on first_function_block_is_cold
1596 first_function_block_is_cold
= (node
1598 == NODE_FREQUENCY_UNLIKELY_EXECUTED
);
1601 in_cold_section_p
= first_function_block_is_cold
;
1604 /* Output assembler code for the constant pool of a function and associated
1605 with defining the name of the function. DECL describes the function.
1606 NAME is the function's name. For the constant pool, we use the current
1607 constant pool data. */
1610 assemble_start_function (tree decl
, const char *fnname
)
1613 char tmp_label
[100];
1614 bool hot_label_written
= false;
1616 if (flag_reorder_blocks_and_partition
)
1618 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTB", const_labelno
);
1619 crtl
->subsections
.hot_section_label
= ggc_strdup (tmp_label
);
1620 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDB", const_labelno
);
1621 crtl
->subsections
.cold_section_label
= ggc_strdup (tmp_label
);
1622 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LHOTE", const_labelno
);
1623 crtl
->subsections
.hot_section_end_label
= ggc_strdup (tmp_label
);
1624 ASM_GENERATE_INTERNAL_LABEL (tmp_label
, "LCOLDE", const_labelno
);
1625 crtl
->subsections
.cold_section_end_label
= ggc_strdup (tmp_label
);
1630 crtl
->subsections
.hot_section_label
= NULL
;
1631 crtl
->subsections
.cold_section_label
= NULL
;
1632 crtl
->subsections
.hot_section_end_label
= NULL
;
1633 crtl
->subsections
.cold_section_end_label
= NULL
;
1636 /* The following code does not need preprocessing in the assembler. */
1640 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1641 output_constant_pool (fnname
, decl
);
1643 /* Make sure the not and cold text (code) sections are properly
1644 aligned. This is necessary here in the case where the function
1645 has both hot and cold sections, because we don't want to re-set
1646 the alignment when the section switch happens mid-function. */
1648 if (flag_reorder_blocks_and_partition
)
1650 first_function_block_is_cold
= false;
1652 switch_to_section (unlikely_text_section ());
1653 assemble_align (DECL_ALIGN (decl
));
1654 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_label
);
1656 /* When the function starts with a cold section, we need to explicitly
1657 align the hot section and write out the hot section label.
1658 But if the current function is a thunk, we do not have a CFG. */
1660 && BB_PARTITION (ENTRY_BLOCK_PTR_FOR_FN (cfun
)->next_bb
) == BB_COLD_PARTITION
)
1662 switch_to_section (text_section
);
1663 assemble_align (DECL_ALIGN (decl
));
1664 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1665 hot_label_written
= true;
1666 first_function_block_is_cold
= true;
1668 in_cold_section_p
= first_function_block_is_cold
;
1672 /* Switch to the correct text section for the start of the function. */
1674 switch_to_section (function_section (decl
));
1675 if (flag_reorder_blocks_and_partition
1676 && !hot_label_written
)
1677 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_label
);
1679 /* Tell assembler to move to target machine's alignment for functions. */
1680 align
= floor_log2 (DECL_ALIGN (decl
) / BITS_PER_UNIT
);
1683 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1686 /* Handle a user-specified function alignment.
1687 Note that we still need to align to DECL_ALIGN, as above,
1688 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1689 if (! DECL_USER_ALIGN (decl
)
1690 && align_functions_log
> align
1691 && optimize_function_for_speed_p (cfun
))
1693 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1694 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1695 align_functions_log
, align_functions
- 1);
1697 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
1701 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1702 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1705 if (!DECL_IGNORED_P (decl
))
1706 (*debug_hooks
->begin_function
) (decl
);
1708 /* Make function name accessible from other files, if appropriate. */
1710 if (TREE_PUBLIC (decl
))
1712 notice_global_symbol (decl
);
1714 globalize_decl (decl
);
1716 maybe_assemble_visibility (decl
);
1719 if (DECL_PRESERVE_P (decl
))
1720 targetm
.asm_out
.mark_decl_preserved (fnname
);
1722 /* Do any machine/system dependent processing of the function name. */
1723 #ifdef ASM_DECLARE_FUNCTION_NAME
1724 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1726 /* Standard thing is just output label for the function. */
1727 ASM_OUTPUT_FUNCTION_LABEL (asm_out_file
, fnname
, current_function_decl
);
1728 #endif /* ASM_DECLARE_FUNCTION_NAME */
1730 if (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (decl
)))
1731 saw_no_split_stack
= true;
1734 /* Output assembler code associated with defining the size of the
1735 function. DECL describes the function. NAME is the function's name. */
1738 assemble_end_function (tree decl
, const char *fnname ATTRIBUTE_UNUSED
)
1740 #ifdef ASM_DECLARE_FUNCTION_SIZE
1741 /* We could have switched section in the middle of the function. */
1742 if (flag_reorder_blocks_and_partition
)
1743 switch_to_section (function_section (decl
));
1744 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1746 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1748 output_constant_pool (fnname
, decl
);
1749 switch_to_section (function_section (decl
)); /* need to switch back */
1751 /* Output labels for end of hot/cold text sections (to be used by
1753 if (flag_reorder_blocks_and_partition
)
1755 section
*save_text_section
;
1757 save_text_section
= in_section
;
1758 switch_to_section (unlikely_text_section ());
1759 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.cold_section_end_label
);
1760 if (first_function_block_is_cold
)
1761 switch_to_section (text_section
);
1763 switch_to_section (function_section (decl
));
1764 ASM_OUTPUT_LABEL (asm_out_file
, crtl
->subsections
.hot_section_end_label
);
1765 switch_to_section (save_text_section
);
1769 /* Assemble code to leave SIZE bytes of zeros. */
1772 assemble_zeros (unsigned HOST_WIDE_INT size
)
1774 /* Do no output if -fsyntax-only. */
1775 if (flag_syntax_only
)
1778 #ifdef ASM_NO_SKIP_IN_TEXT
1779 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1780 so we must output 0s explicitly in the text section. */
1781 if (ASM_NO_SKIP_IN_TEXT
&& (in_section
->common
.flags
& SECTION_CODE
) != 0)
1783 unsigned HOST_WIDE_INT i
;
1784 for (i
= 0; i
< size
; i
++)
1785 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
1790 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1793 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1796 assemble_align (int align
)
1798 if (align
> BITS_PER_UNIT
)
1800 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1804 /* Assemble a string constant with the specified C string as contents. */
1807 assemble_string (const char *p
, int size
)
1812 /* If the string is very long, split it up. */
1816 int thissize
= size
- pos
;
1817 if (thissize
> maximum
)
1820 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1828 /* A noswitch_section_callback for lcomm_section. */
1831 emit_local (tree decl ATTRIBUTE_UNUSED
,
1832 const char *name ATTRIBUTE_UNUSED
,
1833 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1834 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1836 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1837 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, decl
, name
,
1838 size
, DECL_ALIGN (decl
));
1840 #elif defined ASM_OUTPUT_ALIGNED_LOCAL
1841 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, DECL_ALIGN (decl
));
1844 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1849 /* A noswitch_section_callback for bss_noswitch_section. */
1851 #if defined ASM_OUTPUT_ALIGNED_BSS
1853 emit_bss (tree decl ATTRIBUTE_UNUSED
,
1854 const char *name ATTRIBUTE_UNUSED
,
1855 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1856 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1858 #if defined ASM_OUTPUT_ALIGNED_BSS
1859 ASM_OUTPUT_ALIGNED_BSS (asm_out_file
, decl
, name
, size
,
1860 get_variable_align (decl
));
1866 /* A noswitch_section_callback for comm_section. */
1869 emit_common (tree decl ATTRIBUTE_UNUSED
,
1870 const char *name ATTRIBUTE_UNUSED
,
1871 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1872 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1874 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1875 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file
, decl
, name
,
1876 size
, get_variable_align (decl
));
1878 #elif defined ASM_OUTPUT_ALIGNED_COMMON
1879 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, name
, size
,
1880 get_variable_align (decl
));
1883 ASM_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
1888 /* A noswitch_section_callback for tls_comm_section. */
1891 emit_tls_common (tree decl ATTRIBUTE_UNUSED
,
1892 const char *name ATTRIBUTE_UNUSED
,
1893 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1894 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1896 #ifdef ASM_OUTPUT_TLS_COMMON
1897 ASM_OUTPUT_TLS_COMMON (asm_out_file
, decl
, name
, size
);
1900 sorry ("thread-local COMMON data not implemented");
1905 /* Assemble DECL given that it belongs in SECTION_NOSWITCH section SECT.
1906 NAME is the name of DECL's SYMBOL_REF. */
1909 assemble_noswitch_variable (tree decl
, const char *name
, section
*sect
,
1912 unsigned HOST_WIDE_INT size
, rounded
;
1914 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
1917 if ((flag_sanitize
& SANITIZE_ADDRESS
) && asan_protect_global (decl
))
1918 size
+= asan_red_zone_size (size
);
1920 /* Don't allocate zero bytes of common,
1921 since that means "undefined external" in the linker. */
1925 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1926 so that each uninitialized object starts on such a boundary. */
1927 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1928 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1929 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1931 if (!sect
->noswitch
.callback (decl
, name
, size
, rounded
)
1932 && (unsigned HOST_WIDE_INT
) (align
/ BITS_PER_UNIT
) > rounded
)
1933 error ("requested alignment for %q+D is greater than "
1934 "implemented alignment of %wu", decl
, rounded
);
1937 /* A subroutine of assemble_variable. Output the label and contents of
1938 DECL, whose address is a SYMBOL_REF with name NAME. DONT_OUTPUT_DATA
1939 is as for assemble_variable. */
1942 assemble_variable_contents (tree decl
, const char *name
,
1943 bool dont_output_data
)
1945 /* Do any machine/system dependent processing of the object. */
1946 #ifdef ASM_DECLARE_OBJECT_NAME
1947 last_assemble_variable_decl
= decl
;
1948 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1950 /* Standard thing is just output label for the object. */
1951 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1952 #endif /* ASM_DECLARE_OBJECT_NAME */
1954 if (!dont_output_data
)
1956 if (DECL_INITIAL (decl
)
1957 && DECL_INITIAL (decl
) != error_mark_node
1958 && !initializer_zerop (DECL_INITIAL (decl
)))
1959 /* Output the actual data. */
1960 output_constant (DECL_INITIAL (decl
),
1961 tree_to_uhwi (DECL_SIZE_UNIT (decl
)),
1962 get_variable_align (decl
));
1964 /* Leave space for it. */
1965 assemble_zeros (tree_to_uhwi (DECL_SIZE_UNIT (decl
)));
1969 /* Assemble everything that is needed for a variable or function declaration.
1970 Not used for automatic variables, and not used for function definitions.
1971 Should not be called for variables of incomplete structure type.
1973 TOP_LEVEL is nonzero if this variable has file scope.
1974 AT_END is nonzero if this is the special handling, at end of compilation,
1975 to define things that have had only tentative definitions.
1976 DONT_OUTPUT_DATA if nonzero means don't actually output the
1977 initial value (that will be done by the caller). */
1980 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
1981 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
1984 rtx decl_rtl
, symbol
;
1987 bool asan_protected
= false;
1989 /* This function is supposed to handle VARIABLES. Ensure we have one. */
1990 gcc_assert (TREE_CODE (decl
) == VAR_DECL
);
1992 /* Emulated TLS had better not get this far. */
1993 gcc_checking_assert (targetm
.have_tls
|| !DECL_THREAD_LOCAL_P (decl
));
1995 last_assemble_variable_decl
= 0;
1997 /* Normally no need to say anything here for external references,
1998 since assemble_external is called by the language-specific code
1999 when a declaration is first seen. */
2001 if (DECL_EXTERNAL (decl
))
2004 /* Do nothing for global register variables. */
2005 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
2007 TREE_ASM_WRITTEN (decl
) = 1;
2011 /* If type was incomplete when the variable was declared,
2012 see if it is complete now. */
2014 if (DECL_SIZE (decl
) == 0)
2015 layout_decl (decl
, 0);
2017 /* Still incomplete => don't allocate it; treat the tentative defn
2018 (which is what it must have been) as an `extern' reference. */
2020 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
2022 error ("storage size of %q+D isn%'t known", decl
);
2023 TREE_ASM_WRITTEN (decl
) = 1;
2027 /* The first declaration of a variable that comes through this function
2028 decides whether it is global (in C, has external linkage)
2029 or local (in C, has internal linkage). So do nothing more
2030 if this function has already run. */
2032 if (TREE_ASM_WRITTEN (decl
))
2035 /* Make sure targetm.encode_section_info is invoked before we set
2037 decl_rtl
= DECL_RTL (decl
);
2039 TREE_ASM_WRITTEN (decl
) = 1;
2041 /* Do no output if -fsyntax-only. */
2042 if (flag_syntax_only
)
2045 if (! dont_output_data
2046 && ! valid_constant_size_p (DECL_SIZE_UNIT (decl
)))
2048 error ("size of variable %q+D is too large", decl
);
2052 gcc_assert (MEM_P (decl_rtl
));
2053 gcc_assert (GET_CODE (XEXP (decl_rtl
, 0)) == SYMBOL_REF
);
2054 symbol
= XEXP (decl_rtl
, 0);
2056 /* If this symbol belongs to the tree constant pool, output the constant
2057 if it hasn't already been written. */
2058 if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
2060 tree decl
= SYMBOL_REF_DECL (symbol
);
2061 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
2062 output_constant_def_contents (symbol
);
2068 name
= XSTR (symbol
, 0);
2069 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
2070 notice_global_symbol (decl
);
2072 /* Compute the alignment of this data. */
2074 align_variable (decl
, dont_output_data
);
2076 if ((flag_sanitize
& SANITIZE_ADDRESS
)
2077 && asan_protect_global (decl
))
2079 asan_protected
= true;
2080 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
2081 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
2084 set_mem_align (decl_rtl
, DECL_ALIGN (decl
));
2086 align
= get_variable_align (decl
);
2088 if (TREE_PUBLIC (decl
))
2089 maybe_assemble_visibility (decl
);
2091 if (DECL_PRESERVE_P (decl
))
2092 targetm
.asm_out
.mark_decl_preserved (name
);
2094 /* First make the assembler name(s) global if appropriate. */
2095 sect
= get_variable_section (decl
, false);
2096 if (TREE_PUBLIC (decl
)
2097 && (sect
->common
.flags
& SECTION_COMMON
) == 0)
2098 globalize_decl (decl
);
2100 /* Output any data that we will need to use the address of. */
2101 if (DECL_INITIAL (decl
) && DECL_INITIAL (decl
) != error_mark_node
)
2102 output_addressed_constants (DECL_INITIAL (decl
));
2104 /* dbxout.c needs to know this. */
2105 if (sect
&& (sect
->common
.flags
& SECTION_CODE
) != 0)
2106 DECL_IN_TEXT_SECTION (decl
) = 1;
2108 /* If the decl is part of an object_block, make sure that the decl
2109 has been positioned within its block, but do not write out its
2110 definition yet. output_object_blocks will do that later. */
2111 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
2113 gcc_assert (!dont_output_data
);
2114 place_block_symbol (symbol
);
2116 else if (SECTION_STYLE (sect
) == SECTION_NOSWITCH
)
2117 assemble_noswitch_variable (decl
, name
, sect
, align
);
2120 /* The following bit of code ensures that vtable_map
2121 variables are not only in the comdat section, but that
2122 each variable has its own unique comdat name. If this
2123 code is removed, the variables end up in the same section
2124 with a single comdat name.
2126 FIXME: resolve_unique_section needs to deal better with
2127 decls with both DECL_SECTION_NAME and DECL_ONE_ONLY. Once
2128 that is fixed, this if-else statement can be replaced with
2129 a single call to "switch_to_section (sect)". */
2130 if (sect
->named
.name
2131 && (strcmp (sect
->named
.name
, ".vtable_map_vars") == 0))
2133 #if defined (OBJECT_FORMAT_ELF)
2134 targetm
.asm_out
.named_section (sect
->named
.name
,
2135 sect
->named
.common
.flags
2140 switch_to_section (sect
);
2144 switch_to_section (sect
);
2145 if (align
> BITS_PER_UNIT
)
2146 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2147 assemble_variable_contents (decl
, name
, dont_output_data
);
2150 unsigned HOST_WIDE_INT
int size
2151 = tree_to_uhwi (DECL_SIZE_UNIT (decl
));
2152 assemble_zeros (asan_red_zone_size (size
));
2158 /* Given a function declaration (FN_DECL), this function assembles the
2159 function into the .preinit_array section. */
2162 assemble_vtv_preinit_initializer (tree fn_decl
)
2165 unsigned flags
= SECTION_WRITE
;
2166 rtx symbol
= XEXP (DECL_RTL (fn_decl
), 0);
2168 flags
|= SECTION_NOTYPE
;
2169 sect
= get_section (".preinit_array", flags
, fn_decl
);
2170 switch_to_section (sect
);
2171 assemble_addr_to_section (symbol
, sect
);
2174 /* Return 1 if type TYPE contains any pointers. */
2177 contains_pointers_p (tree type
)
2179 switch (TREE_CODE (type
))
2182 case REFERENCE_TYPE
:
2183 /* I'm not sure whether OFFSET_TYPE needs this treatment,
2184 so I'll play safe and return 1. */
2190 case QUAL_UNION_TYPE
:
2193 /* For a type that has fields, see if the fields have pointers. */
2194 for (fields
= TYPE_FIELDS (type
); fields
; fields
= DECL_CHAIN (fields
))
2195 if (TREE_CODE (fields
) == FIELD_DECL
2196 && contains_pointers_p (TREE_TYPE (fields
)))
2202 /* An array type contains pointers if its element type does. */
2203 return contains_pointers_p (TREE_TYPE (type
));
2210 /* We delay assemble_external processing until
2211 the compilation unit is finalized. This is the best we can do for
2212 right now (i.e. stage 3 of GCC 4.0) - the right thing is to delay
2213 it all the way to final. See PR 17982 for further discussion. */
2214 static GTY(()) tree pending_assemble_externals
;
2216 #ifdef ASM_OUTPUT_EXTERNAL
2217 /* Some targets delay some output to final using TARGET_ASM_FILE_END.
2218 As a result, assemble_external can be called after the list of externals
2219 is processed and the pointer set destroyed. */
2220 static bool pending_assemble_externals_processed
;
2222 /* Avoid O(external_decls**2) lookups in the pending_assemble_externals
2223 TREE_LIST in assemble_external. */
2224 static struct pointer_set_t
*pending_assemble_externals_set
;
2226 /* True if DECL is a function decl for which no out-of-line copy exists.
2227 It is assumed that DECL's assembler name has been set. */
2230 incorporeal_function_p (tree decl
)
2232 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
2236 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
2237 && (DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA
2238 || DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA_WITH_ALIGN
))
2241 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
2242 /* Atomic or sync builtins which have survived this far will be
2243 resolved externally and therefore are not incorporeal. */
2244 if (strncmp (name
, "__builtin_", 10) == 0)
2250 /* Actually do the tests to determine if this is necessary, and invoke
2251 ASM_OUTPUT_EXTERNAL. */
2253 assemble_external_real (tree decl
)
2255 rtx rtl
= DECL_RTL (decl
);
2257 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
2258 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
2259 && !incorporeal_function_p (decl
))
2261 /* Some systems do require some output. */
2262 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
2263 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
2269 process_pending_assemble_externals (void)
2271 #ifdef ASM_OUTPUT_EXTERNAL
2273 for (list
= pending_assemble_externals
; list
; list
= TREE_CHAIN (list
))
2274 assemble_external_real (TREE_VALUE (list
));
2276 pending_assemble_externals
= 0;
2277 pending_assemble_externals_processed
= true;
2278 pointer_set_destroy (pending_assemble_externals_set
);
2282 /* This TREE_LIST contains any weak symbol declarations waiting
2284 static GTY(()) tree weak_decls
;
2286 /* Output something to declare an external symbol to the assembler,
2287 and qualifiers such as weakness. (Most assemblers don't need
2288 extern declaration, so we normally output nothing.) Do nothing if
2289 DECL is not external. */
2292 assemble_external (tree decl ATTRIBUTE_UNUSED
)
2294 /* Make sure that the ASM_OUT_FILE is open.
2295 If it's not, we should not be calling this function. */
2296 gcc_assert (asm_out_file
);
2298 /* In a perfect world, the following condition would be true.
2299 Sadly, the Java and Go front ends emit assembly *from the front end*,
2300 bypassing the call graph. See PR52739. Fix before GCC 4.8. */
2302 /* This function should only be called if we are expanding, or have
2304 Ideally, only final.c would be calling this function, but it is
2305 not clear whether that would break things somehow. See PR 17982
2306 for further discussion. */
2307 gcc_assert (cgraph_state
== CGRAPH_STATE_EXPANSION
2308 || cgraph_state
== CGRAPH_STATE_FINISHED
);
2311 if (!DECL_P (decl
) || !DECL_EXTERNAL (decl
) || !TREE_PUBLIC (decl
))
2314 /* We want to output annotation for weak and external symbols at
2315 very last to check if they are references or not. */
2317 if (TARGET_SUPPORTS_WEAK
2319 /* TREE_STATIC is a weird and abused creature which is not
2320 generally the right test for whether an entity has been
2321 locally emitted, inlined or otherwise not-really-extern, but
2322 for declarations that can be weak, it happens to be
2324 && !TREE_STATIC (decl
)
2325 && lookup_attribute ("weak", DECL_ATTRIBUTES (decl
))
2326 && value_member (decl
, weak_decls
) == NULL_TREE
)
2327 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
2329 #ifdef ASM_OUTPUT_EXTERNAL
2330 if (pending_assemble_externals_processed
)
2332 assemble_external_real (decl
);
2336 if (! pointer_set_insert (pending_assemble_externals_set
, decl
))
2337 pending_assemble_externals
= tree_cons (NULL
, decl
,
2338 pending_assemble_externals
);
2342 /* Similar, for calling a library function FUN. */
2345 assemble_external_libcall (rtx fun
)
2347 /* Declare library function name external when first used, if nec. */
2348 if (! SYMBOL_REF_USED (fun
))
2350 SYMBOL_REF_USED (fun
) = 1;
2351 targetm
.asm_out
.external_libcall (fun
);
2355 /* Assemble a label named NAME. */
2358 assemble_label (FILE *file
, const char *name
)
2360 ASM_OUTPUT_LABEL (file
, name
);
2363 /* Set the symbol_referenced flag for ID. */
2365 mark_referenced (tree id
)
2367 TREE_SYMBOL_REFERENCED (id
) = 1;
2370 /* Set the symbol_referenced flag for DECL and notify callgraph. */
2372 mark_decl_referenced (tree decl
)
2374 if (TREE_CODE (decl
) == FUNCTION_DECL
)
2376 /* Extern inline functions don't become needed when referenced.
2377 If we know a method will be emitted in other TU and no new
2378 functions can be marked reachable, just use the external
2380 struct cgraph_node
*node
= cgraph_get_create_node (decl
);
2381 if (!DECL_EXTERNAL (decl
)
2382 && !node
->definition
)
2383 cgraph_mark_force_output_node (node
);
2385 else if (TREE_CODE (decl
) == VAR_DECL
)
2387 varpool_node
*node
= varpool_node_for_decl (decl
);
2388 /* C++ frontend use mark_decl_references to force COMDAT variables
2389 to be output that might appear dead otherwise. */
2390 node
->force_output
= true;
2392 /* else do nothing - we can get various sorts of CST nodes here,
2393 which do not need to be marked. */
2397 /* Follow the IDENTIFIER_TRANSPARENT_ALIAS chain starting at *ALIAS
2398 until we find an identifier that is not itself a transparent alias.
2399 Modify the alias passed to it by reference (and all aliases on the
2400 way to the ultimate target), such that they do not have to be
2401 followed again, and return the ultimate target of the alias
2405 ultimate_transparent_alias_target (tree
*alias
)
2407 tree target
= *alias
;
2409 if (IDENTIFIER_TRANSPARENT_ALIAS (target
))
2411 gcc_assert (TREE_CHAIN (target
));
2412 target
= ultimate_transparent_alias_target (&TREE_CHAIN (target
));
2413 gcc_assert (! IDENTIFIER_TRANSPARENT_ALIAS (target
)
2414 && ! TREE_CHAIN (target
));
2421 /* Output to FILE (an assembly file) a reference to NAME. If NAME
2422 starts with a *, the rest of NAME is output verbatim. Otherwise
2423 NAME is transformed in a target-specific way (usually by the
2424 addition of an underscore). */
2427 assemble_name_raw (FILE *file
, const char *name
)
2430 fputs (&name
[1], file
);
2432 ASM_OUTPUT_LABELREF (file
, name
);
2435 /* Like assemble_name_raw, but should be used when NAME might refer to
2436 an entity that is also represented as a tree (like a function or
2437 variable). If NAME does refer to such an entity, that entity will
2438 be marked as referenced. */
2441 assemble_name (FILE *file
, const char *name
)
2443 const char *real_name
;
2446 real_name
= targetm
.strip_name_encoding (name
);
2448 id
= maybe_get_identifier (real_name
);
2453 mark_referenced (id
);
2454 ultimate_transparent_alias_target (&id
);
2456 name
= IDENTIFIER_POINTER (id
);
2457 gcc_assert (! TREE_CHAIN (id
));
2460 assemble_name_raw (file
, name
);
2463 /* Allocate SIZE bytes writable static space with a gensym name
2464 and return an RTX to refer to its address. */
2467 assemble_static_space (unsigned HOST_WIDE_INT size
)
2470 const char *namestring
;
2473 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
2475 namestring
= ggc_strdup (name
);
2477 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
2478 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
2480 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
2481 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
2484 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
2485 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
2488 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
2489 so that each uninitialized object starts on such a boundary. */
2490 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
2491 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
2492 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
2493 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
2494 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
2495 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
2502 /* Assemble the static constant template for function entry trampolines.
2503 This is done at most once per compilation.
2504 Returns an RTX for the address of the template. */
2506 static GTY(()) rtx initial_trampoline
;
2509 assemble_trampoline_template (void)
2516 gcc_assert (targetm
.asm_out
.trampoline_template
!= NULL
);
2518 if (initial_trampoline
)
2519 return initial_trampoline
;
2521 /* By default, put trampoline templates in read-only data section. */
2523 #ifdef TRAMPOLINE_SECTION
2524 switch_to_section (TRAMPOLINE_SECTION
);
2526 switch_to_section (readonly_data_section
);
2529 /* Write the assembler code to define one. */
2530 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
2532 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
2534 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
2535 targetm
.asm_out
.trampoline_template (asm_out_file
);
2537 /* Record the rtl to refer to it. */
2538 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
2539 name
= ggc_strdup (label
);
2540 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
2541 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2543 initial_trampoline
= gen_const_mem (BLKmode
, symbol
);
2544 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
2545 set_mem_size (initial_trampoline
, TRAMPOLINE_SIZE
);
2547 return initial_trampoline
;
2550 /* A and B are either alignments or offsets. Return the minimum alignment
2551 that may be assumed after adding the two together. */
2553 static inline unsigned
2554 min_align (unsigned int a
, unsigned int b
)
2556 return (a
| b
) & -(a
| b
);
2559 /* Return the assembler directive for creating a given kind of integer
2560 object. SIZE is the number of bytes in the object and ALIGNED_P
2561 indicates whether it is known to be aligned. Return NULL if the
2562 assembly dialect has no such directive.
2564 The returned string should be printed at the start of a new line and
2565 be followed immediately by the object's initial value. */
2568 integer_asm_op (int size
, int aligned_p
)
2570 struct asm_int_op
*ops
;
2573 ops
= &targetm
.asm_out
.aligned_op
;
2575 ops
= &targetm
.asm_out
.unaligned_op
;
2580 return targetm
.asm_out
.byte_op
;
2594 /* Use directive OP to assemble an integer object X. Print OP at the
2595 start of the line, followed immediately by the value of X. */
2598 assemble_integer_with_op (const char *op
, rtx x
)
2600 fputs (op
, asm_out_file
);
2601 output_addr_const (asm_out_file
, x
);
2602 fputc ('\n', asm_out_file
);
2605 /* The default implementation of the asm_out.integer target hook. */
2608 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2609 unsigned int size ATTRIBUTE_UNUSED
,
2610 int aligned_p ATTRIBUTE_UNUSED
)
2612 const char *op
= integer_asm_op (size
, aligned_p
);
2613 /* Avoid GAS bugs for large values. Specifically negative values whose
2614 absolute value fits in a bfd_vma, but not in a bfd_signed_vma. */
2615 if (size
> UNITS_PER_WORD
&& size
> POINTER_SIZE
/ BITS_PER_UNIT
)
2617 return op
&& (assemble_integer_with_op (op
, x
), true);
2620 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2621 the alignment of the integer in bits. Return 1 if we were able to output
2622 the constant, otherwise 0. We must be able to output the constant,
2623 if FORCE is nonzero. */
2626 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2630 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2632 /* See if the target hook can handle this kind of object. */
2633 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2636 /* If the object is a multi-byte one, try splitting it up. Split
2637 it into words it if is multi-word, otherwise split it into bytes. */
2640 enum machine_mode omode
, imode
;
2641 unsigned int subalign
;
2642 unsigned int subsize
, i
;
2643 enum mode_class mclass
;
2645 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2646 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2647 if (GET_CODE (x
) == CONST_FIXED
)
2648 mclass
= GET_MODE_CLASS (GET_MODE (x
));
2652 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, mclass
, 0);
2653 imode
= mode_for_size (size
* BITS_PER_UNIT
, mclass
, 0);
2655 for (i
= 0; i
< size
; i
+= subsize
)
2657 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2658 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2664 /* If we've printed some of it, but not all of it, there's no going
2669 gcc_assert (!force
);
2675 assemble_real (REAL_VALUE_TYPE d
, enum machine_mode mode
, unsigned int align
)
2677 long data
[4] = {0, 0, 0, 0};
2679 int bitsize
, nelts
, nunits
, units_per
;
2681 /* This is hairy. We have a quantity of known size. real_to_target
2682 will put it into an array of *host* longs, 32 bits per element
2683 (even if long is more than 32 bits). We need to determine the
2684 number of array elements that are occupied (nelts) and the number
2685 of *target* min-addressable units that will be occupied in the
2686 object file (nunits). We cannot assume that 32 divides the
2687 mode's bitsize (size * BITS_PER_UNIT) evenly.
2689 size * BITS_PER_UNIT is used here to make sure that padding bits
2690 (which might appear at either end of the value; real_to_target
2691 will include the padding bits in its output array) are included. */
2693 nunits
= GET_MODE_SIZE (mode
);
2694 bitsize
= nunits
* BITS_PER_UNIT
;
2695 nelts
= CEIL (bitsize
, 32);
2696 units_per
= 32 / BITS_PER_UNIT
;
2698 real_to_target (data
, &d
, mode
);
2700 /* Put out the first word with the specified alignment. */
2701 assemble_integer (GEN_INT (data
[0]), MIN (nunits
, units_per
), align
, 1);
2702 nunits
-= units_per
;
2704 /* Subsequent words need only 32-bit alignment. */
2705 align
= min_align (align
, 32);
2707 for (i
= 1; i
< nelts
; i
++)
2709 assemble_integer (GEN_INT (data
[i
]), MIN (nunits
, units_per
), align
, 1);
2710 nunits
-= units_per
;
2714 /* Given an expression EXP with a constant value,
2715 reduce it to the sum of an assembler symbol and an integer.
2716 Store them both in the structure *VALUE.
2717 EXP must be reducible. */
2721 HOST_WIDE_INT offset
;
2725 decode_addr_const (tree exp
, struct addr_const
*value
)
2727 tree target
= TREE_OPERAND (exp
, 0);
2733 if (TREE_CODE (target
) == COMPONENT_REF
2734 && tree_fits_shwi_p (byte_position (TREE_OPERAND (target
, 1))))
2736 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2737 target
= TREE_OPERAND (target
, 0);
2739 else if (TREE_CODE (target
) == ARRAY_REF
2740 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
2742 offset
+= (tree_to_uhwi (TYPE_SIZE_UNIT (TREE_TYPE (target
)))
2743 * tree_to_shwi (TREE_OPERAND (target
, 1)));
2744 target
= TREE_OPERAND (target
, 0);
2746 else if (TREE_CODE (target
) == MEM_REF
2747 && TREE_CODE (TREE_OPERAND (target
, 0)) == ADDR_EXPR
)
2749 offset
+= mem_ref_offset (target
).to_short_addr ();
2750 target
= TREE_OPERAND (TREE_OPERAND (target
, 0), 0);
2752 else if (TREE_CODE (target
) == INDIRECT_REF
2753 && TREE_CODE (TREE_OPERAND (target
, 0)) == NOP_EXPR
2754 && TREE_CODE (TREE_OPERAND (TREE_OPERAND (target
, 0), 0))
2756 target
= TREE_OPERAND (TREE_OPERAND (TREE_OPERAND (target
, 0), 0), 0);
2761 switch (TREE_CODE (target
))
2765 x
= DECL_RTL (target
);
2769 x
= gen_rtx_MEM (FUNCTION_MODE
,
2770 gen_rtx_LABEL_REF (Pmode
, force_label_rtx (target
)));
2779 x
= output_constant_def (target
, 1);
2786 gcc_assert (MEM_P (x
));
2790 value
->offset
= offset
;
2794 static GTY((param_is (struct constant_descriptor_tree
)))
2795 htab_t const_desc_htab
;
2797 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
2799 /* Constant pool accessor function. */
2802 constant_pool_htab (void)
2804 return const_desc_htab
;
2807 /* Compute a hash code for a constant expression. */
2810 const_desc_hash (const void *ptr
)
2812 return ((const struct constant_descriptor_tree
*)ptr
)->hash
;
2816 const_hash_1 (const tree exp
)
2821 enum tree_code code
= TREE_CODE (exp
);
2823 /* Either set P and LEN to the address and len of something to hash and
2824 exit the switch or return a value. */
2829 p
= (char *) &TREE_INT_CST_ELT (exp
, 0);
2830 len
= TREE_INT_CST_NUNITS (exp
) * sizeof (HOST_WIDE_INT
);
2834 return real_hash (TREE_REAL_CST_PTR (exp
));
2837 return fixed_hash (TREE_FIXED_CST_PTR (exp
));
2840 p
= TREE_STRING_POINTER (exp
);
2841 len
= TREE_STRING_LENGTH (exp
);
2845 return (const_hash_1 (TREE_REALPART (exp
)) * 5
2846 + const_hash_1 (TREE_IMAGPART (exp
)));
2852 hi
= 7 + VECTOR_CST_NELTS (exp
);
2854 for (i
= 0; i
< VECTOR_CST_NELTS (exp
); ++i
)
2855 hi
= hi
* 563 + const_hash_1 (VECTOR_CST_ELT (exp
, i
));
2862 unsigned HOST_WIDE_INT idx
;
2865 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
2867 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, value
)
2869 hi
= hi
* 603 + const_hash_1 (value
);
2877 struct addr_const value
;
2879 decode_addr_const (exp
, &value
);
2880 switch (GET_CODE (value
.base
))
2883 /* Don't hash the address of the SYMBOL_REF;
2884 only use the offset and the symbol name. */
2886 p
= XSTR (value
.base
, 0);
2887 for (i
= 0; p
[i
] != 0; i
++)
2888 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2892 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2902 case POINTER_PLUS_EXPR
:
2904 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
2905 + const_hash_1 (TREE_OPERAND (exp
, 1)));
2908 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
2911 /* A language specific constant. Just hash the code. */
2915 /* Compute hashing function. */
2917 for (i
= 0; i
< len
; i
++)
2918 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2923 /* Wrapper of compare_constant, for the htab interface. */
2925 const_desc_eq (const void *p1
, const void *p2
)
2927 const struct constant_descriptor_tree
*const c1
2928 = (const struct constant_descriptor_tree
*) p1
;
2929 const struct constant_descriptor_tree
*const c2
2930 = (const struct constant_descriptor_tree
*) p2
;
2931 if (c1
->hash
!= c2
->hash
)
2933 return compare_constant (c1
->value
, c2
->value
);
2936 /* Compare t1 and t2, and return 1 only if they are known to result in
2937 the same bit pattern on output. */
2940 compare_constant (const tree t1
, const tree t2
)
2942 enum tree_code typecode
;
2944 if (t1
== NULL_TREE
)
2945 return t2
== NULL_TREE
;
2946 if (t2
== NULL_TREE
)
2949 if (TREE_CODE (t1
) != TREE_CODE (t2
))
2952 switch (TREE_CODE (t1
))
2955 /* Integer constants are the same only if the same width of type. */
2956 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2958 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2960 return tree_int_cst_equal (t1
, t2
);
2963 /* Real constants are the same only if the same width of type. */
2964 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2967 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
2970 /* Fixed constants are the same only if the same width of type. */
2971 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2974 return FIXED_VALUES_IDENTICAL (TREE_FIXED_CST (t1
), TREE_FIXED_CST (t2
));
2977 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2980 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
2981 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
2982 TREE_STRING_LENGTH (t1
)));
2985 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
2986 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
2992 if (VECTOR_CST_NELTS (t1
) != VECTOR_CST_NELTS (t2
))
2995 for (i
= 0; i
< VECTOR_CST_NELTS (t1
); ++i
)
2996 if (!compare_constant (VECTOR_CST_ELT (t1
, i
),
2997 VECTOR_CST_ELT (t2
, i
)))
3005 vec
<constructor_elt
, va_gc
> *v1
, *v2
;
3006 unsigned HOST_WIDE_INT idx
;
3008 typecode
= TREE_CODE (TREE_TYPE (t1
));
3009 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
3012 if (typecode
== ARRAY_TYPE
)
3014 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
3015 /* For arrays, check that the sizes all match. */
3016 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
3018 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
)))
3023 /* For record and union constructors, require exact type
3025 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
3029 v1
= CONSTRUCTOR_ELTS (t1
);
3030 v2
= CONSTRUCTOR_ELTS (t2
);
3031 if (vec_safe_length (v1
) != vec_safe_length (v2
))
3034 for (idx
= 0; idx
< vec_safe_length (v1
); ++idx
)
3036 constructor_elt
*c1
= &(*v1
)[idx
];
3037 constructor_elt
*c2
= &(*v2
)[idx
];
3039 /* Check that each value is the same... */
3040 if (!compare_constant (c1
->value
, c2
->value
))
3042 /* ... and that they apply to the same fields! */
3043 if (typecode
== ARRAY_TYPE
)
3045 if (!compare_constant (c1
->index
, c2
->index
))
3050 if (c1
->index
!= c2
->index
)
3061 struct addr_const value1
, value2
;
3065 decode_addr_const (t1
, &value1
);
3066 decode_addr_const (t2
, &value2
);
3068 if (value1
.offset
!= value2
.offset
)
3071 code
= GET_CODE (value1
.base
);
3072 if (code
!= GET_CODE (value2
.base
))
3078 ret
= (strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
3082 ret
= (CODE_LABEL_NUMBER (XEXP (value1
.base
, 0))
3083 == CODE_LABEL_NUMBER (XEXP (value2
.base
, 0)));
3093 case POINTER_PLUS_EXPR
:
3096 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
3097 && compare_constant (TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
3100 case VIEW_CONVERT_EXPR
:
3101 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
3110 /* Return the section into which constant EXP should be placed. */
3113 get_constant_section (tree exp
, unsigned int align
)
3115 return targetm
.asm_out
.select_section (exp
,
3116 compute_reloc_for_constant (exp
),
3120 /* Return the size of constant EXP in bytes. */
3122 static HOST_WIDE_INT
3123 get_constant_size (tree exp
)
3127 size
= int_size_in_bytes (TREE_TYPE (exp
));
3128 if (TREE_CODE (exp
) == STRING_CST
)
3129 size
= MAX (TREE_STRING_LENGTH (exp
), size
);
3133 /* Subroutine of output_constant_def:
3134 No constant equal to EXP is known to have been output.
3135 Make a constant descriptor to enter EXP in the hash table.
3136 Assign the label number and construct RTL to refer to the
3137 constant's location in memory.
3138 Caller is responsible for updating the hash table. */
3140 static struct constant_descriptor_tree
*
3141 build_constant_desc (tree exp
)
3143 struct constant_descriptor_tree
*desc
;
3149 desc
= ggc_alloc
<constant_descriptor_tree
> ();
3152 /* Create a string containing the label name, in LABEL. */
3153 labelno
= const_labelno
++;
3154 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
3156 /* Construct the VAR_DECL associated with the constant. */
3157 decl
= build_decl (UNKNOWN_LOCATION
, VAR_DECL
, get_identifier (label
),
3159 DECL_ARTIFICIAL (decl
) = 1;
3160 DECL_IGNORED_P (decl
) = 1;
3161 TREE_READONLY (decl
) = 1;
3162 TREE_STATIC (decl
) = 1;
3163 TREE_ADDRESSABLE (decl
) = 1;
3164 /* We don't set the RTL yet as this would cause varpool to assume that the
3165 variable is referenced. Moreover, it would just be dropped in LTO mode.
3166 Instead we set the flag that will be recognized in make_decl_rtl. */
3167 DECL_IN_CONSTANT_POOL (decl
) = 1;
3168 DECL_INITIAL (decl
) = desc
->value
;
3169 /* ??? CONSTANT_ALIGNMENT hasn't been updated for vector types on most
3170 architectures so use DATA_ALIGNMENT as well, except for strings. */
3171 if (TREE_CODE (exp
) == STRING_CST
)
3173 #ifdef CONSTANT_ALIGNMENT
3174 DECL_ALIGN (decl
) = CONSTANT_ALIGNMENT (exp
, DECL_ALIGN (decl
));
3178 align_variable (decl
, 0);
3180 /* Now construct the SYMBOL_REF and the MEM. */
3181 if (use_object_blocks_p ())
3183 section
*sect
= get_constant_section (exp
, DECL_ALIGN (decl
));
3184 symbol
= create_block_symbol (ggc_strdup (label
),
3185 get_block_for_section (sect
), -1);
3188 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3189 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3190 SET_SYMBOL_REF_DECL (symbol
, decl
);
3191 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3193 rtl
= gen_const_mem (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
3194 set_mem_attributes (rtl
, exp
, 1);
3195 set_mem_alias_set (rtl
, 0);
3196 set_mem_alias_set (rtl
, const_alias_set
);
3198 /* We cannot share RTX'es in pool entries.
3199 Mark this piece of RTL as required for unsharing. */
3200 RTX_FLAG (rtl
, used
) = 1;
3202 /* Set flags or add text to the name to record information, such as
3203 that it is a local symbol. If the name is changed, the macro
3204 ASM_OUTPUT_LABELREF will have to know how to strip this
3205 information. This call might invalidate our local variable
3206 SYMBOL; we can't use it afterward. */
3207 targetm
.encode_section_info (exp
, rtl
, true);
3214 /* Return an rtx representing a reference to constant data in memory
3215 for the constant expression EXP.
3217 If assembler code for such a constant has already been output,
3218 return an rtx to refer to it.
3219 Otherwise, output such a constant in memory
3220 and generate an rtx for it.
3222 If DEFER is nonzero, this constant can be deferred and output only
3223 if referenced in the function after all optimizations.
3225 `const_desc_table' records which constants already have label strings. */
3228 output_constant_def (tree exp
, int defer
)
3230 struct constant_descriptor_tree
*desc
;
3231 struct constant_descriptor_tree key
;
3234 /* Look up EXP in the table of constant descriptors. If we didn't find
3235 it, create a new one. */
3237 key
.hash
= const_hash_1 (exp
);
3238 loc
= htab_find_slot_with_hash (const_desc_htab
, &key
, key
.hash
, INSERT
);
3240 desc
= (struct constant_descriptor_tree
*) *loc
;
3243 desc
= build_constant_desc (exp
);
3244 desc
->hash
= key
.hash
;
3248 maybe_output_constant_def_contents (desc
, defer
);
3252 /* Subroutine of output_constant_def: Decide whether or not we need to
3253 output the constant DESC now, and if so, do it. */
3255 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
3258 rtx symbol
= XEXP (desc
->rtl
, 0);
3259 tree exp
= desc
->value
;
3261 if (flag_syntax_only
)
3264 if (TREE_ASM_WRITTEN (exp
))
3265 /* Already output; don't do it again. */
3268 /* We can always defer constants as long as the context allows
3272 /* Increment n_deferred_constants if it exists. It needs to be at
3273 least as large as the number of constants actually referred to
3274 by the function. If it's too small we'll stop looking too early
3275 and fail to emit constants; if it's too large we'll only look
3276 through the entire function when we could have stopped earlier. */
3278 n_deferred_constants
++;
3282 output_constant_def_contents (symbol
);
3285 /* Subroutine of output_constant_def_contents. Output the definition
3286 of constant EXP, which is pointed to by label LABEL. ALIGN is the
3287 constant's alignment in bits. */
3290 assemble_constant_contents (tree exp
, const char *label
, unsigned int align
)
3294 size
= get_constant_size (exp
);
3296 /* Do any machine/system dependent processing of the constant. */
3297 targetm
.asm_out
.declare_constant_name (asm_out_file
, label
, exp
, size
);
3299 /* Output the value of EXP. */
3300 output_constant (exp
, size
, align
);
3303 /* We must output the constant data referred to by SYMBOL; do so. */
3306 output_constant_def_contents (rtx symbol
)
3308 tree decl
= SYMBOL_REF_DECL (symbol
);
3309 tree exp
= DECL_INITIAL (decl
);
3311 bool asan_protected
= false;
3313 /* Make sure any other constants whose addresses appear in EXP
3314 are assigned label numbers. */
3315 output_addressed_constants (exp
);
3317 /* We are no longer deferring this constant. */
3318 TREE_ASM_WRITTEN (decl
) = TREE_ASM_WRITTEN (exp
) = 1;
3320 if ((flag_sanitize
& SANITIZE_ADDRESS
)
3321 && TREE_CODE (exp
) == STRING_CST
3322 && asan_protect_global (exp
))
3324 asan_protected
= true;
3325 DECL_ALIGN (decl
) = MAX (DECL_ALIGN (decl
),
3326 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
3329 /* If the constant is part of an object block, make sure that the
3330 decl has been positioned within its block, but do not write out
3331 its definition yet. output_object_blocks will do that later. */
3332 if (SYMBOL_REF_HAS_BLOCK_INFO_P (symbol
) && SYMBOL_REF_BLOCK (symbol
))
3333 place_block_symbol (symbol
);
3336 align
= DECL_ALIGN (decl
);
3337 switch_to_section (get_constant_section (exp
, align
));
3338 if (align
> BITS_PER_UNIT
)
3339 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
3340 assemble_constant_contents (exp
, XSTR (symbol
, 0), align
);
3343 HOST_WIDE_INT size
= get_constant_size (exp
);
3344 assemble_zeros (asan_red_zone_size (size
));
3349 /* Look up EXP in the table of constant descriptors. Return the rtl
3350 if it has been emitted, else null. */
3353 lookup_constant_def (tree exp
)
3355 struct constant_descriptor_tree
*desc
;
3356 struct constant_descriptor_tree key
;
3359 key
.hash
= const_hash_1 (exp
);
3360 desc
= (struct constant_descriptor_tree
*)
3361 htab_find_with_hash (const_desc_htab
, &key
, key
.hash
);
3363 return (desc
? desc
->rtl
: NULL_RTX
);
3366 /* Return a tree representing a reference to constant data in memory
3367 for the constant expression EXP.
3369 This is the counterpart of output_constant_def at the Tree level. */
3372 tree_output_constant_def (tree exp
)
3374 struct constant_descriptor_tree
*desc
, key
;
3378 /* Look up EXP in the table of constant descriptors. If we didn't find
3379 it, create a new one. */
3381 key
.hash
= const_hash_1 (exp
);
3382 loc
= htab_find_slot_with_hash (const_desc_htab
, &key
, key
.hash
, INSERT
);
3384 desc
= (struct constant_descriptor_tree
*) *loc
;
3387 desc
= build_constant_desc (exp
);
3388 desc
->hash
= key
.hash
;
3392 decl
= SYMBOL_REF_DECL (XEXP (desc
->rtl
, 0));
3393 varpool_finalize_decl (decl
);
3397 /* Used in the hash tables to avoid outputting the same constant
3398 twice. Unlike 'struct constant_descriptor_tree', RTX constants
3399 are output once per function, not once per file. */
3400 /* ??? Only a few targets need per-function constant pools. Most
3401 can use one per-file pool. Should add a targetm bit to tell the
3404 struct GTY(()) rtx_constant_pool
{
3405 /* Pointers to first and last constant in pool, as ordered by offset. */
3406 struct constant_descriptor_rtx
*first
;
3407 struct constant_descriptor_rtx
*last
;
3409 /* Hash facility for making memory-constants from constant rtl-expressions.
3410 It is used on RISC machines where immediate integer arguments and
3411 constant addresses are restricted so that such constants must be stored
3413 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_htab
;
3415 /* Current offset in constant pool (does not include any
3416 machine-specific header). */
3417 HOST_WIDE_INT offset
;
3420 struct GTY((chain_next ("%h.next"))) constant_descriptor_rtx
{
3421 struct constant_descriptor_rtx
*next
;
3425 HOST_WIDE_INT offset
;
3427 enum machine_mode mode
;
3433 /* Hash and compare functions for const_rtx_htab. */
3436 const_desc_rtx_hash (const void *ptr
)
3438 const struct constant_descriptor_rtx
*const desc
3439 = (const struct constant_descriptor_rtx
*) ptr
;
3444 const_desc_rtx_eq (const void *a
, const void *b
)
3446 const struct constant_descriptor_rtx
*const x
3447 = (const struct constant_descriptor_rtx
*) a
;
3448 const struct constant_descriptor_rtx
*const y
3449 = (const struct constant_descriptor_rtx
*) b
;
3451 if (x
->mode
!= y
->mode
)
3453 return rtx_equal_p (x
->constant
, y
->constant
);
3456 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
3459 const_rtx_hash_1 (rtx
*xp
, void *data
)
3461 unsigned HOST_WIDE_INT hwi
;
3462 enum machine_mode mode
;
3469 code
= GET_CODE (x
);
3470 mode
= GET_MODE (x
);
3471 h
= (hashval_t
) code
* 1048573 + mode
;
3480 int shift
= sizeof (hashval_t
) * CHAR_BIT
;
3481 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
3483 h
^= (hashval_t
) hwi
;
3484 for (i
= 1; i
< n
; ++i
)
3487 h
^= (hashval_t
) hwi
;
3492 case CONST_WIDE_INT
:
3493 hwi
= GET_MODE_PRECISION (mode
);
3495 for (i
= 0; i
< CONST_WIDE_INT_NUNITS (x
); i
++)
3496 hwi
^= CONST_WIDE_INT_ELT (x
, i
);
3501 if (TARGET_SUPPORTS_WIDE_INT
== 0 && mode
== VOIDmode
)
3503 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
3507 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
3511 h
^= fixed_hash (CONST_FIXED_VALUE (x
));
3517 for (i
= XVECLEN (x
, 0); i
-- > 0; )
3518 h
= h
* 251 + const_rtx_hash_1 (&XVECEXP (x
, 0, i
), data
);
3523 h
^= htab_hash_string (XSTR (x
, 0));
3527 h
= h
* 251 + CODE_LABEL_NUMBER (XEXP (x
, 0));
3531 case UNSPEC_VOLATILE
:
3532 h
= h
* 251 + XINT (x
, 1);
3539 hp
= (hashval_t
*) data
;
3540 *hp
= *hp
* 509 + h
;
3544 /* Compute a hash value for X, which should be a constant. */
3547 const_rtx_hash (rtx x
)
3550 for_each_rtx (&x
, const_rtx_hash_1
, &h
);
3555 /* Create and return a new rtx constant pool. */
3557 static struct rtx_constant_pool
*
3558 create_constant_pool (void)
3560 struct rtx_constant_pool
*pool
;
3562 pool
= ggc_alloc
<rtx_constant_pool
> ();
3563 pool
->const_rtx_htab
= htab_create_ggc (31, const_desc_rtx_hash
,
3564 const_desc_rtx_eq
, NULL
);
3571 /* Initialize constant pool hashing for a new function. */
3574 init_varasm_status (void)
3576 crtl
->varasm
.pool
= create_constant_pool ();
3577 crtl
->varasm
.deferred_constants
= 0;
3580 /* Given a MINUS expression, simplify it if both sides
3581 include the same symbol. */
3584 simplify_subtraction (rtx x
)
3586 rtx r
= simplify_rtx (x
);
3590 /* Given a constant rtx X, make (or find) a memory constant for its value
3591 and return a MEM rtx to refer to it in memory. */
3594 force_const_mem (enum machine_mode mode
, rtx x
)
3596 struct constant_descriptor_rtx
*desc
, tmp
;
3597 struct rtx_constant_pool
*pool
;
3604 /* If we're not allowed to drop X into the constant pool, don't. */
3605 if (targetm
.cannot_force_const_mem (mode
, x
))
3608 /* Record that this function has used a constant pool entry. */
3609 crtl
->uses_const_pool
= 1;
3611 /* Decide which pool to use. */
3612 pool
= (targetm
.use_blocks_for_constant_p (mode
, x
)
3613 ? shared_constant_pool
3614 : crtl
->varasm
.pool
);
3616 /* Lookup the value in the hashtable. */
3619 hash
= const_rtx_hash (x
);
3620 slot
= htab_find_slot_with_hash (pool
->const_rtx_htab
, &tmp
, hash
, INSERT
);
3621 desc
= (struct constant_descriptor_rtx
*) *slot
;
3623 /* If the constant was already present, return its memory. */
3625 return copy_rtx (desc
->mem
);
3627 /* Otherwise, create a new descriptor. */
3628 desc
= ggc_alloc
<constant_descriptor_rtx
> ();
3631 /* Align the location counter as required by EXP's data type. */
3632 align
= GET_MODE_ALIGNMENT (mode
== VOIDmode
? word_mode
: mode
);
3633 #ifdef CONSTANT_ALIGNMENT
3635 tree type
= lang_hooks
.types
.type_for_mode (mode
, 0);
3636 if (type
!= NULL_TREE
)
3637 align
= CONSTANT_ALIGNMENT (make_tree (type
, x
), align
);
3641 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
3642 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
3645 desc
->constant
= copy_rtx (tmp
.constant
);
3646 desc
->offset
= pool
->offset
;
3649 desc
->align
= align
;
3650 desc
->labelno
= const_labelno
;
3653 pool
->offset
+= GET_MODE_SIZE (mode
);
3655 pool
->last
->next
= desc
;
3657 pool
->first
= pool
->last
= desc
;
3660 /* Create a string containing the label name, in LABEL. */
3661 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3664 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
3665 the constants pool. */
3666 if (use_object_blocks_p () && targetm
.use_blocks_for_constant_p (mode
, x
))
3668 section
*sect
= targetm
.asm_out
.select_rtx_section (mode
, x
, align
);
3669 symbol
= create_block_symbol (ggc_strdup (label
),
3670 get_block_for_section (sect
), -1);
3673 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
3675 SYMBOL_REF_FLAGS (symbol
) |= SYMBOL_FLAG_LOCAL
;
3676 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
3677 SET_SYMBOL_REF_CONSTANT (symbol
, desc
);
3679 /* Construct the MEM. */
3680 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
3681 set_mem_attributes (def
, lang_hooks
.types
.type_for_mode (mode
, 0), 1);
3682 set_mem_align (def
, align
);
3684 /* If we're dropping a label to the constant pool, make sure we
3686 if (GET_CODE (x
) == LABEL_REF
)
3687 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
3689 return copy_rtx (def
);
3692 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3695 get_pool_constant (rtx addr
)
3697 return SYMBOL_REF_CONSTANT (addr
)->constant
;
3700 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3701 and whether it has been output or not. */
3704 get_pool_constant_mark (rtx addr
, bool *pmarked
)
3706 struct constant_descriptor_rtx
*desc
;
3708 desc
= SYMBOL_REF_CONSTANT (addr
);
3709 *pmarked
= (desc
->mark
!= 0);
3710 return desc
->constant
;
3713 /* Similar, return the mode. */
3716 get_pool_mode (const_rtx addr
)
3718 return SYMBOL_REF_CONSTANT (addr
)->mode
;
3721 /* Return the size of the constant pool. */
3724 get_pool_size (void)
3726 return crtl
->varasm
.pool
->offset
;
3729 /* Worker function for output_constant_pool_1. Emit assembly for X
3730 in MODE with known alignment ALIGN. */
3733 output_constant_pool_2 (enum machine_mode mode
, rtx x
, unsigned int align
)
3735 switch (GET_MODE_CLASS (mode
))
3738 case MODE_DECIMAL_FLOAT
:
3742 gcc_assert (CONST_DOUBLE_AS_FLOAT_P (x
));
3743 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
3744 assemble_real (r
, mode
, align
);
3749 case MODE_PARTIAL_INT
:
3754 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
3757 case MODE_VECTOR_FLOAT
:
3758 case MODE_VECTOR_INT
:
3759 case MODE_VECTOR_FRACT
:
3760 case MODE_VECTOR_UFRACT
:
3761 case MODE_VECTOR_ACCUM
:
3762 case MODE_VECTOR_UACCUM
:
3765 enum machine_mode submode
= GET_MODE_INNER (mode
);
3766 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
3768 gcc_assert (GET_CODE (x
) == CONST_VECTOR
);
3769 units
= CONST_VECTOR_NUNITS (x
);
3771 for (i
= 0; i
< units
; i
++)
3773 rtx elt
= CONST_VECTOR_ELT (x
, i
);
3774 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
3784 /* Worker function for output_constant_pool. Emit constant DESC,
3785 giving it ALIGN bits of alignment. */
3788 output_constant_pool_1 (struct constant_descriptor_rtx
*desc
,
3795 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3796 whose CODE_LABEL has been deleted. This can occur if a jump table
3797 is eliminated by optimization. If so, write a constant of zero
3798 instead. Note that this can also happen by turning the
3799 CODE_LABEL into a NOTE. */
3800 /* ??? This seems completely and utterly wrong. Certainly it's
3801 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3802 functioning even with INSN_DELETED_P and friends. */
3805 switch (GET_CODE (tmp
))
3808 if (GET_CODE (XEXP (tmp
, 0)) != PLUS
3809 || GET_CODE (XEXP (XEXP (tmp
, 0), 0)) != LABEL_REF
)
3811 tmp
= XEXP (XEXP (tmp
, 0), 0);
3815 tmp
= XEXP (tmp
, 0);
3816 gcc_assert (!INSN_DELETED_P (tmp
));
3817 gcc_assert (!NOTE_P (tmp
)
3818 || NOTE_KIND (tmp
) != NOTE_INSN_DELETED
);
3825 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3826 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
3827 align
, desc
->labelno
, done
);
3830 assemble_align (align
);
3832 /* Output the label. */
3833 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
3835 /* Output the data. */
3836 output_constant_pool_2 (desc
->mode
, x
, align
);
3838 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3839 sections have proper size. */
3840 if (align
> GET_MODE_BITSIZE (desc
->mode
)
3842 && (in_section
->common
.flags
& SECTION_MERGE
))
3843 assemble_align (align
);
3845 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3851 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3852 to as used. Emit referenced deferred strings. This function can
3853 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3856 mark_constant (rtx
*current_rtx
, void *data ATTRIBUTE_UNUSED
)
3858 rtx x
= *current_rtx
;
3860 if (x
== NULL_RTX
|| GET_CODE (x
) != SYMBOL_REF
)
3863 if (CONSTANT_POOL_ADDRESS_P (x
))
3865 struct constant_descriptor_rtx
*desc
= SYMBOL_REF_CONSTANT (x
);
3866 if (desc
->mark
== 0)
3869 for_each_rtx (&desc
->constant
, mark_constant
, NULL
);
3872 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
3874 tree decl
= SYMBOL_REF_DECL (x
);
3875 if (!TREE_ASM_WRITTEN (DECL_INITIAL (decl
)))
3877 n_deferred_constants
--;
3878 output_constant_def_contents (x
);
3885 /* Look through appropriate parts of INSN, marking all entries in the
3886 constant pool which are actually being used. Entries that are only
3887 referenced by other constants are also marked as used. Emit
3888 deferred strings that are used. */
3891 mark_constants (rtx insn
)
3896 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3897 insns, not any notes that may be attached. We don't want to mark
3898 a constant just because it happens to appear in a REG_EQUIV note. */
3899 if (GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3901 rtx seq
= PATTERN (insn
);
3902 int i
, n
= XVECLEN (seq
, 0);
3903 for (i
= 0; i
< n
; ++i
)
3905 rtx subinsn
= XVECEXP (seq
, 0, i
);
3906 if (INSN_P (subinsn
))
3907 for_each_rtx (&PATTERN (subinsn
), mark_constant
, NULL
);
3911 for_each_rtx (&PATTERN (insn
), mark_constant
, NULL
);
3914 /* Look through the instructions for this function, and mark all the
3915 entries in POOL which are actually being used. Emit deferred constants
3916 which have indeed been used. */
3919 mark_constant_pool (void)
3923 if (!crtl
->uses_const_pool
&& n_deferred_constants
== 0)
3926 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3927 mark_constants (insn
);
3930 /* Write all the constants in POOL. */
3933 output_constant_pool_contents (struct rtx_constant_pool
*pool
)
3935 struct constant_descriptor_rtx
*desc
;
3937 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
3940 /* If the constant is part of an object_block, make sure that
3941 the constant has been positioned within its block, but do not
3942 write out its definition yet. output_object_blocks will do
3944 if (SYMBOL_REF_HAS_BLOCK_INFO_P (desc
->sym
)
3945 && SYMBOL_REF_BLOCK (desc
->sym
))
3946 place_block_symbol (desc
->sym
);
3949 switch_to_section (targetm
.asm_out
.select_rtx_section
3950 (desc
->mode
, desc
->constant
, desc
->align
));
3951 output_constant_pool_1 (desc
, desc
->align
);
3956 /* Mark all constants that are used in the current function, then write
3957 out the function's private constant pool. */
3960 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
3961 tree fndecl ATTRIBUTE_UNUSED
)
3963 struct rtx_constant_pool
*pool
= crtl
->varasm
.pool
;
3965 /* It is possible for gcc to call force_const_mem and then to later
3966 discard the instructions which refer to the constant. In such a
3967 case we do not need to output the constant. */
3968 mark_constant_pool ();
3970 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3971 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3974 output_constant_pool_contents (pool
);
3976 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3977 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3981 /* Write the contents of the shared constant pool. */
3984 output_shared_constant_pool (void)
3986 output_constant_pool_contents (shared_constant_pool
);
3989 /* Determine what kind of relocations EXP may need. */
3992 compute_reloc_for_constant (tree exp
)
3994 int reloc
= 0, reloc2
;
3997 switch (TREE_CODE (exp
))
4001 /* Go inside any operations that get_inner_reference can handle and see
4002 if what's inside is a constant: no need to do anything here for
4003 addresses of variables or functions. */
4004 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4005 tem
= TREE_OPERAND (tem
, 0))
4008 if (TREE_CODE (tem
) == MEM_REF
4009 && TREE_CODE (TREE_OPERAND (tem
, 0)) == ADDR_EXPR
)
4011 reloc
= compute_reloc_for_constant (TREE_OPERAND (tem
, 0));
4015 if (!targetm
.binds_local_p (tem
))
4022 case POINTER_PLUS_EXPR
:
4023 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4024 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4028 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4029 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
4030 /* The difference of two local labels is computable at link time. */
4031 if (reloc
== 1 && reloc2
== 1)
4038 case VIEW_CONVERT_EXPR
:
4039 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
4044 unsigned HOST_WIDE_INT idx
;
4045 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4047 reloc
|= compute_reloc_for_constant (tem
);
4057 /* Find all the constants whose addresses are referenced inside of EXP,
4058 and make sure assembler code with a label has been output for each one.
4059 Indicate whether an ADDR_EXPR has been encountered. */
4062 output_addressed_constants (tree exp
)
4066 switch (TREE_CODE (exp
))
4070 /* Go inside any operations that get_inner_reference can handle and see
4071 if what's inside is a constant: no need to do anything here for
4072 addresses of variables or functions. */
4073 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
4074 tem
= TREE_OPERAND (tem
, 0))
4077 /* If we have an initialized CONST_DECL, retrieve the initializer. */
4078 if (TREE_CODE (tem
) == CONST_DECL
&& DECL_INITIAL (tem
))
4079 tem
= DECL_INITIAL (tem
);
4081 if (CONSTANT_CLASS_P (tem
) || TREE_CODE (tem
) == CONSTRUCTOR
)
4082 output_constant_def (tem
, 0);
4084 if (TREE_CODE (tem
) == MEM_REF
)
4085 output_addressed_constants (TREE_OPERAND (tem
, 0));
4089 case POINTER_PLUS_EXPR
:
4091 output_addressed_constants (TREE_OPERAND (exp
, 1));
4095 case VIEW_CONVERT_EXPR
:
4096 output_addressed_constants (TREE_OPERAND (exp
, 0));
4101 unsigned HOST_WIDE_INT idx
;
4102 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp
), idx
, tem
)
4104 output_addressed_constants (tem
);
4113 /* Whether a constructor CTOR is a valid static constant initializer if all
4114 its elements are. This used to be internal to initializer_constant_valid_p
4115 and has been exposed to let other functions like categorize_ctor_elements
4116 evaluate the property while walking a constructor for other purposes. */
4119 constructor_static_from_elts_p (const_tree ctor
)
4121 return (TREE_CONSTANT (ctor
)
4122 && (TREE_CODE (TREE_TYPE (ctor
)) == UNION_TYPE
4123 || TREE_CODE (TREE_TYPE (ctor
)) == RECORD_TYPE
4124 || TREE_CODE (TREE_TYPE (ctor
)) == ARRAY_TYPE
));
4127 static tree
initializer_constant_valid_p_1 (tree value
, tree endtype
,
4130 /* A subroutine of initializer_constant_valid_p. VALUE is a MINUS_EXPR,
4131 PLUS_EXPR or POINTER_PLUS_EXPR. This looks for cases of VALUE
4132 which are valid when ENDTYPE is an integer of any size; in
4133 particular, this does not accept a pointer minus a constant. This
4134 returns null_pointer_node if the VALUE is an absolute constant
4135 which can be used to initialize a static variable. Otherwise it
4139 narrowing_initializer_constant_valid_p (tree value
, tree endtype
, tree
*cache
)
4143 if (!INTEGRAL_TYPE_P (endtype
))
4146 op0
= TREE_OPERAND (value
, 0);
4147 op1
= TREE_OPERAND (value
, 1);
4149 /* Like STRIP_NOPS except allow the operand mode to widen. This
4150 works around a feature of fold that simplifies (int)(p1 - p2) to
4151 ((int)p1 - (int)p2) under the theory that the narrower operation
4154 while (CONVERT_EXPR_P (op0
)
4155 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
4157 tree inner
= TREE_OPERAND (op0
, 0);
4158 if (inner
== error_mark_node
4159 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4160 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0
)))
4161 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4166 while (CONVERT_EXPR_P (op1
)
4167 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
4169 tree inner
= TREE_OPERAND (op1
, 0);
4170 if (inner
== error_mark_node
4171 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
4172 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1
)))
4173 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
4178 op0
= initializer_constant_valid_p_1 (op0
, endtype
, cache
);
4182 op1
= initializer_constant_valid_p_1 (op1
, endtype
,
4183 cache
? cache
+ 2 : NULL
);
4184 /* Both initializers must be known. */
4188 && (op0
== null_pointer_node
4189 || TREE_CODE (value
) == MINUS_EXPR
))
4190 return null_pointer_node
;
4192 /* Support differences between labels. */
4193 if (TREE_CODE (op0
) == LABEL_DECL
4194 && TREE_CODE (op1
) == LABEL_DECL
)
4195 return null_pointer_node
;
4197 if (TREE_CODE (op0
) == STRING_CST
4198 && TREE_CODE (op1
) == STRING_CST
4199 && operand_equal_p (op0
, op1
, 1))
4200 return null_pointer_node
;
4206 /* Helper function of initializer_constant_valid_p.
4207 Return nonzero if VALUE is a valid constant-valued expression
4208 for use in initializing a static variable; one that can be an
4209 element of a "constant" initializer.
4211 Return null_pointer_node if the value is absolute;
4212 if it is relocatable, return the variable that determines the relocation.
4213 We assume that VALUE has been folded as much as possible;
4214 therefore, we do not need to check for such things as
4215 arithmetic-combinations of integers.
4217 Use CACHE (pointer to 2 tree values) for caching if non-NULL. */
4220 initializer_constant_valid_p_1 (tree value
, tree endtype
, tree
*cache
)
4224 switch (TREE_CODE (value
))
4227 if (constructor_static_from_elts_p (value
))
4229 unsigned HOST_WIDE_INT idx
;
4231 bool absolute
= true;
4233 if (cache
&& cache
[0] == value
)
4235 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4238 reloc
= initializer_constant_valid_p_1 (elt
, TREE_TYPE (elt
),
4245 cache
[1] = NULL_TREE
;
4249 if (reloc
!= null_pointer_node
)
4252 /* For a non-absolute relocation, there is no single
4253 variable that can be "the variable that determines the
4258 cache
[1] = absolute
? null_pointer_node
: error_mark_node
;
4260 return absolute
? null_pointer_node
: error_mark_node
;
4263 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
4271 return null_pointer_node
;
4276 tree op0
= staticp (TREE_OPERAND (value
, 0));
4279 /* "&(*a).f" is like unto pointer arithmetic. If "a" turns out
4280 to be a constant, this is old-skool offsetof-like nonsense. */
4281 if (TREE_CODE (op0
) == INDIRECT_REF
4282 && TREE_CONSTANT (TREE_OPERAND (op0
, 0)))
4283 return null_pointer_node
;
4284 /* Taking the address of a nested function involves a trampoline,
4285 unless we don't need or want one. */
4286 if (TREE_CODE (op0
) == FUNCTION_DECL
4287 && DECL_STATIC_CHAIN (op0
)
4288 && !TREE_NO_TRAMPOLINE (value
))
4290 /* "&{...}" requires a temporary to hold the constructed
4292 if (TREE_CODE (op0
) == CONSTRUCTOR
)
4298 case NON_LVALUE_EXPR
:
4299 return initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4302 case VIEW_CONVERT_EXPR
:
4304 tree src
= TREE_OPERAND (value
, 0);
4305 tree src_type
= TREE_TYPE (src
);
4306 tree dest_type
= TREE_TYPE (value
);
4308 /* Allow view-conversions from aggregate to non-aggregate type only
4309 if the bit pattern is fully preserved afterwards; otherwise, the
4310 RTL expander won't be able to apply a subsequent transformation
4311 to the underlying constructor. */
4312 if (AGGREGATE_TYPE_P (src_type
) && !AGGREGATE_TYPE_P (dest_type
))
4314 if (TYPE_MODE (endtype
) == TYPE_MODE (dest_type
))
4315 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4320 /* Allow all other kinds of view-conversion. */
4321 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4326 tree src
= TREE_OPERAND (value
, 0);
4327 tree src_type
= TREE_TYPE (src
);
4328 tree dest_type
= TREE_TYPE (value
);
4330 /* Allow conversions between pointer types, floating-point
4331 types, and offset types. */
4332 if ((POINTER_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
))
4333 || (FLOAT_TYPE_P (dest_type
) && FLOAT_TYPE_P (src_type
))
4334 || (TREE_CODE (dest_type
) == OFFSET_TYPE
4335 && TREE_CODE (src_type
) == OFFSET_TYPE
))
4336 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4338 /* Allow length-preserving conversions between integer types. */
4339 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
)
4340 && (TYPE_PRECISION (dest_type
) == TYPE_PRECISION (src_type
)))
4341 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4343 /* Allow conversions between other integer types only if
4345 if (INTEGRAL_TYPE_P (dest_type
) && INTEGRAL_TYPE_P (src_type
))
4347 tree inner
= initializer_constant_valid_p_1 (src
, endtype
, cache
);
4348 if (inner
== null_pointer_node
)
4349 return null_pointer_node
;
4353 /* Allow (int) &foo provided int is as wide as a pointer. */
4354 if (INTEGRAL_TYPE_P (dest_type
) && POINTER_TYPE_P (src_type
)
4355 && (TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
)))
4356 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4358 /* Likewise conversions from int to pointers, but also allow
4359 conversions from 0. */
4360 if ((POINTER_TYPE_P (dest_type
)
4361 || TREE_CODE (dest_type
) == OFFSET_TYPE
)
4362 && INTEGRAL_TYPE_P (src_type
))
4364 if (TREE_CODE (src
) == INTEGER_CST
4365 && TYPE_PRECISION (dest_type
) >= TYPE_PRECISION (src_type
))
4366 return null_pointer_node
;
4367 if (integer_zerop (src
))
4368 return null_pointer_node
;
4369 else if (TYPE_PRECISION (dest_type
) <= TYPE_PRECISION (src_type
))
4370 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4373 /* Allow conversions to struct or union types if the value
4375 if (TREE_CODE (dest_type
) == RECORD_TYPE
4376 || TREE_CODE (dest_type
) == UNION_TYPE
)
4377 return initializer_constant_valid_p_1 (src
, endtype
, cache
);
4381 case POINTER_PLUS_EXPR
:
4383 /* Any valid floating-point constants will have been folded by now;
4384 with -frounding-math we hit this with addition of two constants. */
4385 if (TREE_CODE (endtype
) == REAL_TYPE
)
4387 if (cache
&& cache
[0] == value
)
4389 if (! INTEGRAL_TYPE_P (endtype
)
4390 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4392 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4394 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4397 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4398 endtype
, ncache
+ 2);
4399 /* If either term is absolute, use the other term's relocation. */
4400 if (valid0
== null_pointer_node
)
4402 else if (valid1
== null_pointer_node
)
4404 /* Support narrowing pointer differences. */
4406 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4410 /* Support narrowing pointer differences. */
4411 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4420 if (TREE_CODE (endtype
) == REAL_TYPE
)
4422 if (cache
&& cache
[0] == value
)
4424 if (! INTEGRAL_TYPE_P (endtype
)
4425 || TYPE_PRECISION (endtype
) >= TYPE_PRECISION (TREE_TYPE (value
)))
4427 tree ncache
[4] = { NULL_TREE
, NULL_TREE
, NULL_TREE
, NULL_TREE
};
4429 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 0),
4432 = initializer_constant_valid_p_1 (TREE_OPERAND (value
, 1),
4433 endtype
, ncache
+ 2);
4434 /* Win if second argument is absolute. */
4435 if (valid1
== null_pointer_node
)
4437 /* Win if both arguments have the same relocation.
4438 Then the value is absolute. */
4439 else if (valid0
== valid1
&& valid0
!= 0)
4440 ret
= null_pointer_node
;
4441 /* Since GCC guarantees that string constants are unique in the
4442 generated code, a subtraction between two copies of the same
4443 constant string is absolute. */
4444 else if (valid0
&& TREE_CODE (valid0
) == STRING_CST
4445 && valid1
&& TREE_CODE (valid1
) == STRING_CST
4446 && operand_equal_p (valid0
, valid1
, 1))
4447 ret
= null_pointer_node
;
4448 /* Support narrowing differences. */
4450 ret
= narrowing_initializer_constant_valid_p (value
, endtype
,
4454 /* Support narrowing differences. */
4455 ret
= narrowing_initializer_constant_valid_p (value
, endtype
, NULL
);
4470 /* Return nonzero if VALUE is a valid constant-valued expression
4471 for use in initializing a static variable; one that can be an
4472 element of a "constant" initializer.
4474 Return null_pointer_node if the value is absolute;
4475 if it is relocatable, return the variable that determines the relocation.
4476 We assume that VALUE has been folded as much as possible;
4477 therefore, we do not need to check for such things as
4478 arithmetic-combinations of integers. */
4480 initializer_constant_valid_p (tree value
, tree endtype
)
4482 return initializer_constant_valid_p_1 (value
, endtype
, NULL
);
4485 /* Return true if VALUE is a valid constant-valued expression
4486 for use in initializing a static bit-field; one that can be
4487 an element of a "constant" initializer. */
4490 initializer_constant_valid_for_bitfield_p (tree value
)
4492 /* For bitfields we support integer constants or possibly nested aggregates
4494 switch (TREE_CODE (value
))
4498 unsigned HOST_WIDE_INT idx
;
4501 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (value
), idx
, elt
)
4502 if (!initializer_constant_valid_for_bitfield_p (elt
))
4511 case VIEW_CONVERT_EXPR
:
4512 case NON_LVALUE_EXPR
:
4514 initializer_constant_valid_for_bitfield_p (TREE_OPERAND (value
, 0));
4523 /* output_constructor outer state of relevance in recursive calls, typically
4524 for nested aggregate bitfields. */
4527 unsigned int bit_offset
; /* current position in ... */
4528 int byte
; /* ... the outer byte buffer. */
4531 static unsigned HOST_WIDE_INT
4532 output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int,
4535 /* Output assembler code for constant EXP, with no label.
4536 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4537 Assumes output_addressed_constants has been done on EXP already.
4539 Generate at least SIZE bytes of assembler data, padding at the end
4540 with zeros if necessary. SIZE must always be specified. The returned
4541 value is the actual number of bytes of assembler data generated, which
4542 may be bigger than SIZE if the object contains a variable length field.
4544 SIZE is important for structure constructors,
4545 since trailing members may have been omitted from the constructor.
4546 It is also important for initialization of arrays from string constants
4547 since the full length of the string constant might not be wanted.
4548 It is also needed for initialization of unions, where the initializer's
4549 type is just one member, and that may not be as long as the union.
4551 There a case in which we would fail to output exactly SIZE bytes:
4552 for a structure constructor that wants to produce more than SIZE bytes.
4553 But such constructors will never be generated for any possible input.
4555 ALIGN is the alignment of the data in bits. */
4557 static unsigned HOST_WIDE_INT
4558 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
)
4560 enum tree_code code
;
4561 unsigned HOST_WIDE_INT thissize
;
4563 if (size
== 0 || flag_syntax_only
)
4566 /* See if we're trying to initialize a pointer in a non-default mode
4567 to the address of some declaration somewhere. If the target says
4568 the mode is valid for pointers, assume the target has a way of
4570 if (TREE_CODE (exp
) == NOP_EXPR
4571 && POINTER_TYPE_P (TREE_TYPE (exp
))
4572 && targetm
.addr_space
.valid_pointer_mode
4573 (TYPE_MODE (TREE_TYPE (exp
)),
4574 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4576 tree saved_type
= TREE_TYPE (exp
);
4578 /* Peel off any intermediate conversions-to-pointer for valid
4580 while (TREE_CODE (exp
) == NOP_EXPR
4581 && POINTER_TYPE_P (TREE_TYPE (exp
))
4582 && targetm
.addr_space
.valid_pointer_mode
4583 (TYPE_MODE (TREE_TYPE (exp
)),
4584 TYPE_ADDR_SPACE (TREE_TYPE (TREE_TYPE (exp
)))))
4585 exp
= TREE_OPERAND (exp
, 0);
4587 /* If what we're left with is the address of something, we can
4588 convert the address to the final type and output it that
4590 if (TREE_CODE (exp
) == ADDR_EXPR
)
4591 exp
= build1 (ADDR_EXPR
, saved_type
, TREE_OPERAND (exp
, 0));
4592 /* Likewise for constant ints. */
4593 else if (TREE_CODE (exp
) == INTEGER_CST
)
4594 exp
= wide_int_to_tree (saved_type
, exp
);
4598 /* Eliminate any conversions since we'll be outputting the underlying
4600 while (CONVERT_EXPR_P (exp
)
4601 || TREE_CODE (exp
) == NON_LVALUE_EXPR
4602 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
4604 HOST_WIDE_INT type_size
= int_size_in_bytes (TREE_TYPE (exp
));
4605 HOST_WIDE_INT op_size
= int_size_in_bytes (TREE_TYPE (TREE_OPERAND (exp
, 0)));
4607 /* Make sure eliminating the conversion is really a no-op, except with
4608 VIEW_CONVERT_EXPRs to allow for wild Ada unchecked conversions and
4609 union types to allow for Ada unchecked unions. */
4610 if (type_size
> op_size
4611 && TREE_CODE (exp
) != VIEW_CONVERT_EXPR
4612 && TREE_CODE (TREE_TYPE (exp
)) != UNION_TYPE
)
4613 /* Keep the conversion. */
4616 exp
= TREE_OPERAND (exp
, 0);
4619 code
= TREE_CODE (TREE_TYPE (exp
));
4620 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
4622 /* Allow a constructor with no elements for any data type.
4623 This means to fill the space with zeros. */
4624 if (TREE_CODE (exp
) == CONSTRUCTOR
4625 && vec_safe_is_empty (CONSTRUCTOR_ELTS (exp
)))
4627 assemble_zeros (size
);
4631 if (TREE_CODE (exp
) == FDESC_EXPR
)
4633 #ifdef ASM_OUTPUT_FDESC
4634 HOST_WIDE_INT part
= tree_to_shwi (TREE_OPERAND (exp
, 1));
4635 tree decl
= TREE_OPERAND (exp
, 0);
4636 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
4643 /* Now output the underlying data. If we've handling the padding, return.
4644 Otherwise, break and ensure SIZE is the size written. */
4651 case REFERENCE_TYPE
:
4653 case FIXED_POINT_TYPE
:
4655 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
4656 EXPAND_INITIALIZER
),
4657 MIN (size
, thissize
), align
, 0))
4658 error ("initializer for integer/fixed-point value is too complicated");
4662 if (TREE_CODE (exp
) != REAL_CST
)
4663 error ("initializer for floating value is not a floating constant");
4665 assemble_real (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)), align
);
4669 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
);
4670 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
4671 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)));
4676 switch (TREE_CODE (exp
))
4679 return output_constructor (exp
, size
, align
, NULL
);
4682 = MIN ((unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
), size
);
4683 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
4687 enum machine_mode inner
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
4688 unsigned int nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
4689 int elt_size
= GET_MODE_SIZE (inner
);
4690 output_constant (VECTOR_CST_ELT (exp
, 0), elt_size
, align
);
4691 thissize
= elt_size
;
4692 for (unsigned int i
= 1; i
< VECTOR_CST_NELTS (exp
); i
++)
4694 output_constant (VECTOR_CST_ELT (exp
, i
), elt_size
, nalign
);
4695 thissize
+= elt_size
;
4706 gcc_assert (TREE_CODE (exp
) == CONSTRUCTOR
);
4707 return output_constructor (exp
, size
, align
, NULL
);
4716 if (size
> thissize
)
4717 assemble_zeros (size
- thissize
);
4723 /* Subroutine of output_constructor, used for computing the size of
4724 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4725 type with an unspecified upper bound. */
4727 static unsigned HOST_WIDE_INT
4728 array_size_for_constructor (tree val
)
4731 unsigned HOST_WIDE_INT cnt
;
4732 tree index
, value
, tmp
;
4735 /* This code used to attempt to handle string constants that are not
4736 arrays of single-bytes, but nothing else does, so there's no point in
4738 if (TREE_CODE (val
) == STRING_CST
)
4739 return TREE_STRING_LENGTH (val
);
4741 max_index
= NULL_TREE
;
4742 FOR_EACH_CONSTRUCTOR_ELT (CONSTRUCTOR_ELTS (val
), cnt
, index
, value
)
4744 if (TREE_CODE (index
) == RANGE_EXPR
)
4745 index
= TREE_OPERAND (index
, 1);
4746 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
4750 if (max_index
== NULL_TREE
)
4753 /* Compute the total number of array elements. */
4754 tmp
= TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)));
4755 i
= wi::to_offset (max_index
) - wi::to_offset (tmp
) + 1;
4757 /* Multiply by the array element unit size to find number of bytes. */
4758 i
*= wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
4760 gcc_assert (wi::fits_uhwi_p (i
));
4761 return i
.to_uhwi ();
4764 /* Other datastructures + helpers for output_constructor. */
4766 /* output_constructor local state to support interaction with helpers. */
4770 /* Received arguments. */
4771 tree exp
; /* Constructor expression. */
4772 tree type
; /* Type of constructor expression. */
4773 unsigned HOST_WIDE_INT size
; /* # bytes to output - pad if necessary. */
4774 unsigned int align
; /* Known initial alignment. */
4775 tree min_index
; /* Lower bound if specified for an array. */
4777 /* Output processing state. */
4778 HOST_WIDE_INT total_bytes
; /* # bytes output so far / current position. */
4779 int byte
; /* Part of a bitfield byte yet to be output. */
4780 int last_relative_index
; /* Implicit or explicit index of the last
4781 array element output within a bitfield. */
4782 bool byte_buffer_in_use
; /* Whether BYTE is in use. */
4784 /* Current element. */
4785 tree field
; /* Current field decl in a record. */
4786 tree val
; /* Current element value. */
4787 tree index
; /* Current element index. */
4791 /* Helper for output_constructor. From the current LOCAL state, output a
4792 RANGE_EXPR element. */
4795 output_constructor_array_range (oc_local_state
*local
)
4797 unsigned HOST_WIDE_INT fieldsize
4798 = int_size_in_bytes (TREE_TYPE (local
->type
));
4800 HOST_WIDE_INT lo_index
4801 = tree_to_shwi (TREE_OPERAND (local
->index
, 0));
4802 HOST_WIDE_INT hi_index
4803 = tree_to_shwi (TREE_OPERAND (local
->index
, 1));
4804 HOST_WIDE_INT index
;
4807 = min_align (local
->align
, fieldsize
* BITS_PER_UNIT
);
4809 for (index
= lo_index
; index
<= hi_index
; index
++)
4811 /* Output the element's initial value. */
4812 if (local
->val
== NULL_TREE
)
4813 assemble_zeros (fieldsize
);
4815 fieldsize
= output_constant (local
->val
, fieldsize
, align2
);
4817 /* Count its size. */
4818 local
->total_bytes
+= fieldsize
;
4822 /* Helper for output_constructor. From the current LOCAL state, output a
4823 field element that is not true bitfield or part of an outer one. */
4826 output_constructor_regular_field (oc_local_state
*local
)
4828 /* Field size and position. Since this structure is static, we know the
4829 positions are constant. */
4830 unsigned HOST_WIDE_INT fieldsize
;
4831 HOST_WIDE_INT fieldpos
;
4833 unsigned int align2
;
4835 if (local
->index
!= NULL_TREE
)
4837 /* Perform the index calculation in modulo arithmetic but
4838 sign-extend the result because Ada has negative DECL_FIELD_OFFSETs
4839 but we are using an unsigned sizetype. */
4840 unsigned prec
= TYPE_PRECISION (sizetype
);
4841 offset_int idx
= wi::sext (wi::to_offset (local
->index
)
4842 - wi::to_offset (local
->min_index
), prec
);
4843 fieldpos
= (idx
* wi::to_offset (TYPE_SIZE_UNIT (TREE_TYPE (local
->val
))))
4846 else if (local
->field
!= NULL_TREE
)
4847 fieldpos
= int_byte_position (local
->field
);
4851 /* Output any buffered-up bit-fields preceding this element. */
4852 if (local
->byte_buffer_in_use
)
4854 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
4855 local
->total_bytes
++;
4856 local
->byte_buffer_in_use
= false;
4859 /* Advance to offset of this element.
4860 Note no alignment needed in an array, since that is guaranteed
4861 if each element has the proper size. */
4862 if ((local
->field
!= NULL_TREE
|| local
->index
!= NULL_TREE
)
4863 && fieldpos
> local
->total_bytes
)
4865 assemble_zeros (fieldpos
- local
->total_bytes
);
4866 local
->total_bytes
= fieldpos
;
4869 /* Find the alignment of this element. */
4870 align2
= min_align (local
->align
, BITS_PER_UNIT
* fieldpos
);
4872 /* Determine size this element should occupy. */
4877 /* If this is an array with an unspecified upper bound,
4878 the initializer determines the size. */
4879 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4880 but we cannot do this until the deprecated support for
4881 initializing zero-length array members is removed. */
4882 if (TREE_CODE (TREE_TYPE (local
->field
)) == ARRAY_TYPE
4883 && TYPE_DOMAIN (TREE_TYPE (local
->field
))
4884 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (local
->field
))))
4886 fieldsize
= array_size_for_constructor (local
->val
);
4887 /* Given a non-empty initialization, this field had
4889 gcc_assert (!fieldsize
|| !DECL_CHAIN (local
->field
));
4892 fieldsize
= tree_to_uhwi (DECL_SIZE_UNIT (local
->field
));
4895 fieldsize
= int_size_in_bytes (TREE_TYPE (local
->type
));
4897 /* Output the element's initial value. */
4898 if (local
->val
== NULL_TREE
)
4899 assemble_zeros (fieldsize
);
4901 fieldsize
= output_constant (local
->val
, fieldsize
, align2
);
4903 /* Count its size. */
4904 local
->total_bytes
+= fieldsize
;
4907 /* Helper for output_constructor. From the LOCAL state, output an element
4908 that is a true bitfield or part of an outer one. BIT_OFFSET is the offset
4909 from the start of a possibly ongoing outer byte buffer. */
4912 output_constructor_bitfield (oc_local_state
*local
, unsigned int bit_offset
)
4914 /* Bit size of this element. */
4915 HOST_WIDE_INT ebitsize
4917 ? tree_to_uhwi (DECL_SIZE (local
->field
))
4918 : tree_to_uhwi (TYPE_SIZE (TREE_TYPE (local
->type
))));
4920 /* Relative index of this element if this is an array component. */
4921 HOST_WIDE_INT relative_index
4924 ? (tree_to_shwi (local
->index
)
4925 - tree_to_shwi (local
->min_index
))
4926 : local
->last_relative_index
+ 1)
4929 /* Bit position of this element from the start of the containing
4931 HOST_WIDE_INT constructor_relative_ebitpos
4933 ? int_bit_position (local
->field
)
4934 : ebitsize
* relative_index
);
4936 /* Bit position of this element from the start of a possibly ongoing
4937 outer byte buffer. */
4938 HOST_WIDE_INT byte_relative_ebitpos
4939 = bit_offset
+ constructor_relative_ebitpos
;
4941 /* From the start of a possibly ongoing outer byte buffer, offsets to
4942 the first bit of this element and to the first bit past the end of
4944 HOST_WIDE_INT next_offset
= byte_relative_ebitpos
;
4945 HOST_WIDE_INT end_offset
= byte_relative_ebitpos
+ ebitsize
;
4947 local
->last_relative_index
= relative_index
;
4949 if (local
->val
== NULL_TREE
)
4950 local
->val
= integer_zero_node
;
4952 while (TREE_CODE (local
->val
) == VIEW_CONVERT_EXPR
4953 || TREE_CODE (local
->val
) == NON_LVALUE_EXPR
)
4954 local
->val
= TREE_OPERAND (local
->val
, 0);
4956 if (TREE_CODE (local
->val
) != INTEGER_CST
4957 && TREE_CODE (local
->val
) != CONSTRUCTOR
)
4959 error ("invalid initial value for member %qE", DECL_NAME (local
->field
));
4963 /* If this field does not start in this (or next) byte, skip some bytes. */
4964 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
4966 /* Output remnant of any bit field in previous bytes. */
4967 if (local
->byte_buffer_in_use
)
4969 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
4970 local
->total_bytes
++;
4971 local
->byte_buffer_in_use
= false;
4974 /* If still not at proper byte, advance to there. */
4975 if (next_offset
/ BITS_PER_UNIT
!= local
->total_bytes
)
4977 gcc_assert (next_offset
/ BITS_PER_UNIT
>= local
->total_bytes
);
4978 assemble_zeros (next_offset
/ BITS_PER_UNIT
- local
->total_bytes
);
4979 local
->total_bytes
= next_offset
/ BITS_PER_UNIT
;
4983 /* Set up the buffer if necessary. */
4984 if (!local
->byte_buffer_in_use
)
4988 local
->byte_buffer_in_use
= true;
4991 /* If this is nested constructor, recurse passing the bit offset and the
4992 pending data, then retrieve the new pending data afterwards. */
4993 if (TREE_CODE (local
->val
) == CONSTRUCTOR
)
4995 oc_outer_state temp_state
;
4996 temp_state
.bit_offset
= next_offset
% BITS_PER_UNIT
;
4997 temp_state
.byte
= local
->byte
;
4999 += output_constructor (local
->val
, 0, 0, &temp_state
);
5000 local
->byte
= temp_state
.byte
;
5004 /* Otherwise, we must split the element into pieces that fall within
5005 separate bytes, and combine each byte with previous or following
5007 while (next_offset
< end_offset
)
5011 HOST_WIDE_INT value
;
5012 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
5013 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
5015 /* Advance from byte to byte within this element when necessary. */
5016 while (next_byte
!= local
->total_bytes
)
5018 assemble_integer (GEN_INT (local
->byte
), 1, BITS_PER_UNIT
, 1);
5019 local
->total_bytes
++;
5023 /* Number of bits we can process at once (all part of the same byte). */
5024 this_time
= MIN (end_offset
- next_offset
, BITS_PER_UNIT
- next_bit
);
5025 if (BYTES_BIG_ENDIAN
)
5027 /* On big-endian machine, take the most significant bits (of the
5028 bits that are significant) first and put them into bytes from
5029 the most significant end. */
5030 shift
= end_offset
- next_offset
- this_time
;
5032 /* Don't try to take a bunch of bits that cross
5033 the word boundary in the INTEGER_CST. We can
5034 only select bits from one element. */
5035 if ((shift
/ HOST_BITS_PER_WIDE_INT
)
5036 != ((shift
+ this_time
- 1) / HOST_BITS_PER_WIDE_INT
))
5038 const int end
= shift
+ this_time
- 1;
5039 shift
= end
& -HOST_BITS_PER_WIDE_INT
;
5040 this_time
= end
- shift
+ 1;
5043 /* Now get the bits from the appropriate constant word. */
5044 value
= TREE_INT_CST_ELT (local
->val
, shift
/ HOST_BITS_PER_WIDE_INT
);
5045 shift
= shift
& (HOST_BITS_PER_WIDE_INT
- 1);
5047 /* Get the result. This works only when:
5048 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5049 local
->byte
|= (((value
>> shift
)
5050 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5051 << (BITS_PER_UNIT
- this_time
- next_bit
));
5055 /* On little-endian machines, take the least significant bits of
5056 the value first and pack them starting at the least significant
5057 bits of the bytes. */
5058 shift
= next_offset
- byte_relative_ebitpos
;
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 = HOST_BITS_PER_WIDE_INT
- (shift
& (HOST_BITS_PER_WIDE_INT
- 1));
5068 /* Now get the bits from the appropriate constant word. */
5069 value
= TREE_INT_CST_ELT (local
->val
, shift
/ HOST_BITS_PER_WIDE_INT
);
5070 shift
= shift
& (HOST_BITS_PER_WIDE_INT
- 1);
5072 /* Get the result. This works only when:
5073 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
5074 local
->byte
|= (((value
>> shift
)
5075 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
5079 next_offset
+= this_time
;
5080 local
->byte_buffer_in_use
= true;
5084 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
5085 Generate at least SIZE bytes, padding if necessary. OUTER designates the
5086 caller output state of relevance in recursive invocations. */
5088 static unsigned HOST_WIDE_INT
5089 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
,
5090 unsigned int align
, oc_outer_state
*outer
)
5092 unsigned HOST_WIDE_INT cnt
;
5093 constructor_elt
*ce
;
5095 oc_local_state local
;
5097 /* Setup our local state to communicate with helpers. */
5099 local
.type
= TREE_TYPE (exp
);
5101 local
.align
= align
;
5102 if (TREE_CODE (local
.type
) == ARRAY_TYPE
&& TYPE_DOMAIN (local
.type
))
5103 local
.min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (local
.type
));
5105 local
.min_index
= NULL_TREE
;
5107 local
.total_bytes
= 0;
5108 local
.byte_buffer_in_use
= outer
!= NULL
;
5109 local
.byte
= outer
? outer
->byte
: 0;
5110 local
.last_relative_index
= -1;
5112 gcc_assert (HOST_BITS_PER_WIDE_INT
>= BITS_PER_UNIT
);
5114 /* As CE goes through the elements of the constant, FIELD goes through the
5115 structure fields if the constant is a structure. If the constant is a
5116 union, we override this by getting the field from the TREE_LIST element.
5117 But the constant could also be an array. Then FIELD is zero.
5119 There is always a maximum of one element in the chain LINK for unions
5120 (even if the initializer in a source program incorrectly contains
5123 if (TREE_CODE (local
.type
) == RECORD_TYPE
)
5124 local
.field
= TYPE_FIELDS (local
.type
);
5126 local
.field
= NULL_TREE
;
5129 vec_safe_iterate (CONSTRUCTOR_ELTS (exp
), cnt
, &ce
);
5130 cnt
++, local
.field
= local
.field
? DECL_CHAIN (local
.field
) : 0)
5132 local
.val
= ce
->value
;
5133 local
.index
= NULL_TREE
;
5135 /* The element in a union constructor specifies the proper field
5137 if (RECORD_OR_UNION_TYPE_P (local
.type
) && ce
->index
!= NULL_TREE
)
5138 local
.field
= ce
->index
;
5140 else if (TREE_CODE (local
.type
) == ARRAY_TYPE
)
5141 local
.index
= ce
->index
;
5143 if (local
.field
&& flag_verbose_asm
)
5144 fprintf (asm_out_file
, "%s %s:\n",
5146 DECL_NAME (local
.field
)
5147 ? IDENTIFIER_POINTER (DECL_NAME (local
.field
))
5150 /* Eliminate the marker that makes a cast not be an lvalue. */
5151 if (local
.val
!= NULL_TREE
)
5152 STRIP_NOPS (local
.val
);
5154 /* Output the current element, using the appropriate helper ... */
5156 /* For an array slice not part of an outer bitfield. */
5158 && local
.index
!= NULL_TREE
5159 && TREE_CODE (local
.index
) == RANGE_EXPR
)
5160 output_constructor_array_range (&local
);
5162 /* For a field that is neither a true bitfield nor part of an outer one,
5163 known to be at least byte aligned and multiple-of-bytes long. */
5165 && (local
.field
== NULL_TREE
5166 || !CONSTRUCTOR_BITFIELD_P (local
.field
)))
5167 output_constructor_regular_field (&local
);
5169 /* For a true bitfield or part of an outer one. Only INTEGER_CSTs are
5170 supported for scalar fields, so we may need to convert first. */
5173 if (TREE_CODE (local
.val
) == REAL_CST
)
5175 = fold_unary (VIEW_CONVERT_EXPR
,
5176 build_nonstandard_integer_type
5177 (TYPE_PRECISION (TREE_TYPE (local
.val
)), 0),
5179 output_constructor_bitfield (&local
, outer
? outer
->bit_offset
: 0);
5183 /* If we are not at toplevel, save the pending data for our caller.
5184 Otherwise output the pending data and padding zeros as needed. */
5186 outer
->byte
= local
.byte
;
5189 if (local
.byte_buffer_in_use
)
5191 assemble_integer (GEN_INT (local
.byte
), 1, BITS_PER_UNIT
, 1);
5192 local
.total_bytes
++;
5195 if ((unsigned HOST_WIDE_INT
)local
.total_bytes
< local
.size
)
5197 assemble_zeros (local
.size
- local
.total_bytes
);
5198 local
.total_bytes
= local
.size
;
5202 return local
.total_bytes
;
5205 /* Mark DECL as weak. */
5208 mark_weak (tree decl
)
5210 DECL_WEAK (decl
) = 1;
5212 if (DECL_RTL_SET_P (decl
)
5213 && MEM_P (DECL_RTL (decl
))
5214 && XEXP (DECL_RTL (decl
), 0)
5215 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
5216 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
5219 /* Merge weak status between NEWDECL and OLDDECL. */
5222 merge_weak (tree newdecl
, tree olddecl
)
5224 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
5226 if (DECL_WEAK (newdecl
) && TARGET_SUPPORTS_WEAK
)
5229 /* We put the NEWDECL on the weak_decls list at some point
5230 and OLDDECL as well. Keep just OLDDECL on the list. */
5231 for (pwd
= &weak_decls
; *pwd
; pwd
= &TREE_CHAIN (*pwd
))
5232 if (TREE_VALUE (*pwd
) == newdecl
)
5234 *pwd
= TREE_CHAIN (*pwd
);
5241 if (DECL_WEAK (newdecl
))
5245 /* NEWDECL is weak, but OLDDECL is not. */
5247 /* If we already output the OLDDECL, we're in trouble; we can't
5248 go back and make it weak. This should never happen in
5249 unit-at-a-time compilation. */
5250 gcc_assert (!TREE_ASM_WRITTEN (olddecl
));
5252 /* If we've already generated rtl referencing OLDDECL, we may
5253 have done so in a way that will not function properly with
5254 a weak symbol. Again in unit-at-a-time this should be
5256 gcc_assert (!TREE_USED (olddecl
)
5257 || !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)));
5259 if (TARGET_SUPPORTS_WEAK
)
5261 /* We put the NEWDECL on the weak_decls list at some point.
5262 Replace it with the OLDDECL. */
5263 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
5264 if (TREE_VALUE (wd
) == newdecl
)
5266 TREE_VALUE (wd
) = olddecl
;
5269 /* We may not find the entry on the list. If NEWDECL is a
5270 weak alias, then we will have already called
5271 globalize_decl to remove the entry; in that case, we do
5272 not need to do anything. */
5275 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
5276 mark_weak (olddecl
);
5279 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
5280 weak. Just update NEWDECL to indicate that it's weak too. */
5281 mark_weak (newdecl
);
5284 /* Declare DECL to be a weak symbol. */
5287 declare_weak (tree decl
)
5289 gcc_assert (TREE_CODE (decl
) != FUNCTION_DECL
|| !TREE_ASM_WRITTEN (decl
));
5290 if (! TREE_PUBLIC (decl
))
5291 error ("weak declaration of %q+D must be public", decl
);
5292 else if (!TARGET_SUPPORTS_WEAK
)
5293 warning (0, "weak declaration of %q+D not supported", decl
);
5296 if (!lookup_attribute ("weak", DECL_ATTRIBUTES (decl
)))
5297 DECL_ATTRIBUTES (decl
)
5298 = tree_cons (get_identifier ("weak"), NULL
, DECL_ATTRIBUTES (decl
));
5302 weak_finish_1 (tree decl
)
5304 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
5305 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5308 if (! TREE_USED (decl
))
5311 #ifdef ASM_WEAKEN_DECL
5312 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
5314 #ifdef ASM_WEAKEN_LABEL
5315 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5317 #ifdef ASM_OUTPUT_WEAK_ALIAS
5319 static bool warn_once
= 0;
5322 warning (0, "only weak aliases are supported in this configuration");
5332 /* Fiven an assembly name, find the decl it is associated with. */
5334 find_decl (tree target
)
5336 symtab_node
*node
= symtab_node_for_asm (target
);
5342 /* This TREE_LIST contains weakref targets. */
5344 static GTY(()) tree weakref_targets
;
5346 /* Emit any pending weak declarations. */
5353 for (t
= weakref_targets
; t
; t
= TREE_CHAIN (t
))
5355 tree alias_decl
= TREE_PURPOSE (t
);
5356 tree target
= ultimate_transparent_alias_target (&TREE_VALUE (t
));
5358 if (! TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (alias_decl
)))
5359 /* Remove alias_decl from the weak list, but leave entries for
5360 the target alone. */
5362 #ifndef ASM_OUTPUT_WEAKREF
5363 else if (! TREE_SYMBOL_REFERENCED (target
))
5365 /* Use ASM_WEAKEN_LABEL only if ASM_WEAKEN_DECL is not
5366 defined, otherwise we and weak_finish_1 would use
5367 different macros. */
5368 # if defined ASM_WEAKEN_LABEL && ! defined ASM_WEAKEN_DECL
5369 ASM_WEAKEN_LABEL (asm_out_file
, IDENTIFIER_POINTER (target
));
5371 tree decl
= find_decl (target
);
5375 decl
= build_decl (DECL_SOURCE_LOCATION (alias_decl
),
5376 TREE_CODE (alias_decl
), target
,
5377 TREE_TYPE (alias_decl
));
5379 DECL_EXTERNAL (decl
) = 1;
5380 TREE_PUBLIC (decl
) = 1;
5381 DECL_ARTIFICIAL (decl
) = 1;
5382 TREE_NOTHROW (decl
) = TREE_NOTHROW (alias_decl
);
5383 TREE_USED (decl
) = 1;
5386 weak_finish_1 (decl
);
5395 /* Remove the alias and the target from the pending weak list
5396 so that we do not emit any .weak directives for the former,
5397 nor multiple .weak directives for the latter. */
5398 for (p
= &weak_decls
; (t2
= *p
) ; )
5400 if (TREE_VALUE (t2
) == alias_decl
5401 || target
== DECL_ASSEMBLER_NAME (TREE_VALUE (t2
)))
5402 *p
= TREE_CHAIN (t2
);
5404 p
= &TREE_CHAIN (t2
);
5407 /* Remove other weakrefs to the same target, to speed things up. */
5408 for (p
= &TREE_CHAIN (t
); (t2
= *p
) ; )
5410 if (target
== ultimate_transparent_alias_target (&TREE_VALUE (t2
)))
5411 *p
= TREE_CHAIN (t2
);
5413 p
= &TREE_CHAIN (t2
);
5418 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
5420 tree decl
= TREE_VALUE (t
);
5422 weak_finish_1 (decl
);
5426 /* Emit the assembly bits to indicate that DECL is globally visible. */
5429 globalize_decl (tree decl
)
5432 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
5433 if (DECL_WEAK (decl
))
5435 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
5438 #ifdef ASM_WEAKEN_DECL
5439 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
5441 ASM_WEAKEN_LABEL (asm_out_file
, name
);
5444 /* Remove this function from the pending weak list so that
5445 we do not emit multiple .weak directives for it. */
5446 for (p
= &weak_decls
; (t
= *p
) ; )
5448 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5449 *p
= TREE_CHAIN (t
);
5451 p
= &TREE_CHAIN (t
);
5454 /* Remove weakrefs to the same target from the pending weakref
5455 list, for the same reason. */
5456 for (p
= &weakref_targets
; (t
= *p
) ; )
5458 if (DECL_ASSEMBLER_NAME (decl
)
5459 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5460 *p
= TREE_CHAIN (t
);
5462 p
= &TREE_CHAIN (t
);
5469 targetm
.asm_out
.globalize_decl_name (asm_out_file
, decl
);
5472 vec
<alias_pair
, va_gc
> *alias_pairs
;
5474 /* Output the assembler code for a define (equate) using ASM_OUTPUT_DEF
5475 or ASM_OUTPUT_DEF_FROM_DECLS. The function defines the symbol whose
5476 tree node is DECL to have the value of the tree node TARGET. */
5479 do_assemble_alias (tree decl
, tree target
)
5481 /* Emulated TLS had better not get this var. */
5482 gcc_assert (!(!targetm
.have_tls
5483 && TREE_CODE (decl
) == VAR_DECL
5484 && DECL_THREAD_LOCAL_P (decl
)));
5486 if (TREE_ASM_WRITTEN (decl
))
5489 /* We must force creation of DECL_RTL for debug info generation, even though
5490 we don't use it here. */
5491 make_decl_rtl (decl
);
5493 TREE_ASM_WRITTEN (decl
) = 1;
5494 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
5496 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5498 ultimate_transparent_alias_target (&target
);
5500 if (!TREE_SYMBOL_REFERENCED (target
))
5501 weakref_targets
= tree_cons (decl
, target
, weakref_targets
);
5503 #ifdef ASM_OUTPUT_WEAKREF
5504 ASM_OUTPUT_WEAKREF (asm_out_file
, decl
,
5505 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5506 IDENTIFIER_POINTER (target
));
5508 if (!TARGET_SUPPORTS_WEAK
)
5510 error_at (DECL_SOURCE_LOCATION (decl
),
5511 "weakref is not supported in this configuration");
5518 #ifdef ASM_OUTPUT_DEF
5519 /* Make name accessible from other files, if appropriate. */
5521 if (TREE_PUBLIC (decl
))
5523 globalize_decl (decl
);
5524 maybe_assemble_visibility (decl
);
5526 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5528 #if defined (ASM_OUTPUT_TYPE_DIRECTIVE)
5529 if (targetm
.has_ifunc_p ())
5530 ASM_OUTPUT_TYPE_DIRECTIVE
5531 (asm_out_file
, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5535 error_at (DECL_SOURCE_LOCATION (decl
),
5536 "ifunc is not supported on this target");
5539 # ifdef ASM_OUTPUT_DEF_FROM_DECLS
5540 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
5542 ASM_OUTPUT_DEF (asm_out_file
,
5543 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)),
5544 IDENTIFIER_POINTER (target
));
5546 #elif defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
5551 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5552 # ifdef ASM_WEAKEN_DECL
5553 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
5555 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
5557 /* Remove this function from the pending weak list so that
5558 we do not emit multiple .weak directives for it. */
5559 for (p
= &weak_decls
; (t
= *p
) ; )
5560 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
5561 *p
= TREE_CHAIN (t
);
5563 p
= &TREE_CHAIN (t
);
5565 /* Remove weakrefs to the same target from the pending weakref
5566 list, for the same reason. */
5567 for (p
= &weakref_targets
; (t
= *p
) ; )
5569 if (DECL_ASSEMBLER_NAME (decl
)
5570 == ultimate_transparent_alias_target (&TREE_VALUE (t
)))
5571 *p
= TREE_CHAIN (t
);
5573 p
= &TREE_CHAIN (t
);
5579 /* Emit an assembler directive to make the symbol for DECL an alias to
5580 the symbol for TARGET. */
5583 assemble_alias (tree decl
, tree target
)
5587 if (lookup_attribute ("weakref", DECL_ATTRIBUTES (decl
)))
5589 tree alias
= DECL_ASSEMBLER_NAME (decl
);
5591 ultimate_transparent_alias_target (&target
);
5593 if (alias
== target
)
5594 error ("weakref %q+D ultimately targets itself", decl
);
5595 if (TREE_PUBLIC (decl
))
5596 error ("weakref %q+D must have static linkage", decl
);
5600 #if !defined (ASM_OUTPUT_DEF)
5601 # if !defined(ASM_OUTPUT_WEAK_ALIAS) && !defined (ASM_WEAKEN_DECL)
5602 error_at (DECL_SOURCE_LOCATION (decl
),
5603 "alias definitions not supported in this configuration");
5604 TREE_ASM_WRITTEN (decl
) = 1;
5607 if (!DECL_WEAK (decl
))
5609 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (decl
)))
5610 error_at (DECL_SOURCE_LOCATION (decl
),
5611 "ifunc is not supported in this configuration");
5613 error_at (DECL_SOURCE_LOCATION (decl
),
5614 "only weak aliases are supported in this configuration");
5615 TREE_ASM_WRITTEN (decl
) = 1;
5621 TREE_USED (decl
) = 1;
5623 /* Allow aliases to aliases. */
5624 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5625 cgraph_get_create_node (decl
)->alias
= true;
5627 varpool_node_for_decl (decl
)->alias
= true;
5629 /* If the target has already been emitted, we don't have to queue the
5630 alias. This saves a tad of memory. */
5631 if (cgraph_global_info_ready
)
5632 target_decl
= find_decl (target
);
5635 if ((target_decl
&& TREE_ASM_WRITTEN (target_decl
))
5636 || cgraph_state
>= CGRAPH_STATE_EXPANSION
)
5637 do_assemble_alias (decl
, target
);
5640 alias_pair p
= {decl
, target
};
5641 vec_safe_push (alias_pairs
, p
);
5645 /* Record and output a table of translations from original function
5646 to its transaction aware clone. Note that tm_pure functions are
5647 considered to be their own clone. */
5649 static GTY((if_marked ("tree_map_marked_p"), param_is (struct tree_map
)))
5650 htab_t tm_clone_hash
;
5653 record_tm_clone_pair (tree o
, tree n
)
5655 struct tree_map
**slot
, *h
;
5657 if (tm_clone_hash
== NULL
)
5658 tm_clone_hash
= htab_create_ggc (32, tree_map_hash
, tree_map_eq
, 0);
5660 h
= ggc_alloc
<tree_map
> ();
5661 h
->hash
= htab_hash_pointer (o
);
5665 slot
= (struct tree_map
**)
5666 htab_find_slot_with_hash (tm_clone_hash
, h
, h
->hash
, INSERT
);
5671 get_tm_clone_pair (tree o
)
5675 struct tree_map
*h
, in
;
5678 in
.hash
= htab_hash_pointer (o
);
5679 h
= (struct tree_map
*) htab_find_with_hash (tm_clone_hash
,
5687 typedef struct tm_alias_pair
5695 /* Helper function for finish_tm_clone_pairs. Dump a hash table entry
5696 into a VEC in INFO. */
5699 dump_tm_clone_to_vec (void **slot
, void *info
)
5701 struct tree_map
*map
= (struct tree_map
*) *slot
;
5702 vec
<tm_alias_pair
> *tm_alias_pairs
= (vec
<tm_alias_pair
> *) info
;
5703 tm_alias_pair p
= {DECL_UID (map
->base
.from
), map
->base
.from
, map
->to
};
5704 tm_alias_pairs
->safe_push (p
);
5708 /* Dump the actual pairs to the .tm_clone_table section. */
5711 dump_tm_clone_pairs (vec
<tm_alias_pair
> tm_alias_pairs
)
5715 bool switched
= false;
5717 FOR_EACH_VEC_ELT (tm_alias_pairs
, i
, p
)
5721 struct cgraph_node
*src_n
= cgraph_get_node (src
);
5722 struct cgraph_node
*dst_n
= cgraph_get_node (dst
);
5724 /* The function ipa_tm_create_version() marks the clone as needed if
5725 the original function was needed. But we also mark the clone as
5726 needed if we ever called the clone indirectly through
5727 TM_GETTMCLONE. If neither of these are true, we didn't generate
5728 a clone, and we didn't call it indirectly... no sense keeping it
5729 in the clone table. */
5730 if (!dst_n
|| !dst_n
->definition
)
5733 /* This covers the case where we have optimized the original
5734 function away, and only access the transactional clone. */
5735 if (!src_n
|| !src_n
->definition
)
5740 switch_to_section (targetm
.asm_out
.tm_clone_table_section ());
5741 assemble_align (POINTER_SIZE
);
5745 assemble_integer (XEXP (DECL_RTL (src
), 0),
5746 POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
5747 assemble_integer (XEXP (DECL_RTL (dst
), 0),
5748 POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
5752 /* Provide a default for the tm_clone_table section. */
5755 default_clone_table_section (void)
5757 return get_named_section (NULL
, ".tm_clone_table", 3);
5760 /* Helper comparison function for qsorting by the DECL_UID stored in
5761 alias_pair->emitted_diags. */
5764 tm_alias_pair_cmp (const void *x
, const void *y
)
5766 const tm_alias_pair
*p1
= (const tm_alias_pair
*) x
;
5767 const tm_alias_pair
*p2
= (const tm_alias_pair
*) y
;
5768 if (p1
->uid
< p2
->uid
)
5770 if (p1
->uid
> p2
->uid
)
5776 finish_tm_clone_pairs (void)
5778 vec
<tm_alias_pair
> tm_alias_pairs
= vNULL
;
5780 if (tm_clone_hash
== NULL
)
5783 /* We need a determenistic order for the .tm_clone_table, otherwise
5784 we will get bootstrap comparison failures, so dump the hash table
5785 to a vector, sort it, and dump the vector. */
5787 /* Dump the hashtable to a vector. */
5788 htab_traverse_noresize (tm_clone_hash
, dump_tm_clone_to_vec
,
5789 (void *) &tm_alias_pairs
);
5791 tm_alias_pairs
.qsort (tm_alias_pair_cmp
);
5794 dump_tm_clone_pairs (tm_alias_pairs
);
5796 htab_delete (tm_clone_hash
);
5797 tm_clone_hash
= NULL
;
5798 tm_alias_pairs
.release ();
5802 /* Emit an assembler directive to set symbol for DECL visibility to
5803 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
5806 default_assemble_visibility (tree decl ATTRIBUTE_UNUSED
,
5807 int vis ATTRIBUTE_UNUSED
)
5809 #ifdef HAVE_GAS_HIDDEN
5810 static const char * const visibility_types
[] = {
5811 NULL
, "protected", "hidden", "internal"
5814 const char *name
, *type
;
5816 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
5817 type
= visibility_types
[vis
];
5819 fprintf (asm_out_file
, "\t.%s\t", type
);
5820 assemble_name (asm_out_file
, name
);
5821 fprintf (asm_out_file
, "\n");
5823 if (!DECL_ARTIFICIAL (decl
))
5824 warning (OPT_Wattributes
, "visibility attribute not supported "
5825 "in this configuration; ignored");
5829 /* A helper function to call assemble_visibility when needed for a decl. */
5832 maybe_assemble_visibility (tree decl
)
5834 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
5836 if (vis
!= VISIBILITY_DEFAULT
)
5838 targetm
.asm_out
.assemble_visibility (decl
, vis
);
5845 /* Returns 1 if the target configuration supports defining public symbols
5846 so that one of them will be chosen at link time instead of generating a
5847 multiply-defined symbol error, whether through the use of weak symbols or
5848 a target-specific mechanism for having duplicates discarded. */
5851 supports_one_only (void)
5853 if (SUPPORTS_ONE_ONLY
)
5855 return TARGET_SUPPORTS_WEAK
;
5858 /* Set up DECL as a public symbol that can be defined in multiple
5859 translation units without generating a linker error. */
5862 make_decl_one_only (tree decl
, tree comdat_group
)
5864 struct symtab_node
*symbol
;
5865 gcc_assert (TREE_CODE (decl
) == VAR_DECL
5866 || TREE_CODE (decl
) == FUNCTION_DECL
);
5868 TREE_PUBLIC (decl
) = 1;
5870 if (TREE_CODE (decl
) == VAR_DECL
)
5871 symbol
= varpool_node_for_decl (decl
);
5873 symbol
= cgraph_get_create_node (decl
);
5875 if (SUPPORTS_ONE_ONLY
)
5877 #ifdef MAKE_DECL_ONE_ONLY
5878 MAKE_DECL_ONE_ONLY (decl
);
5880 symbol
->set_comdat_group (comdat_group
);
5882 else if (TREE_CODE (decl
) == VAR_DECL
5883 && (DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
))
5884 DECL_COMMON (decl
) = 1;
5887 gcc_assert (TARGET_SUPPORTS_WEAK
);
5888 DECL_WEAK (decl
) = 1;
5893 init_varasm_once (void)
5895 section_htab
= htab_create_ggc (31, section_entry_hash
,
5896 section_entry_eq
, NULL
);
5897 object_block_htab
= htab_create_ggc (31, object_block_entry_hash
,
5898 object_block_entry_eq
, NULL
);
5899 const_desc_htab
= htab_create_ggc (1009, const_desc_hash
,
5900 const_desc_eq
, NULL
);
5902 const_alias_set
= new_alias_set ();
5903 shared_constant_pool
= create_constant_pool ();
5905 #ifdef TEXT_SECTION_ASM_OP
5906 text_section
= get_unnamed_section (SECTION_CODE
, output_section_asm_op
,
5907 TEXT_SECTION_ASM_OP
);
5910 #ifdef DATA_SECTION_ASM_OP
5911 data_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
5912 DATA_SECTION_ASM_OP
);
5915 #ifdef SDATA_SECTION_ASM_OP
5916 sdata_section
= get_unnamed_section (SECTION_WRITE
, output_section_asm_op
,
5917 SDATA_SECTION_ASM_OP
);
5920 #ifdef READONLY_DATA_SECTION_ASM_OP
5921 readonly_data_section
= get_unnamed_section (0, output_section_asm_op
,
5922 READONLY_DATA_SECTION_ASM_OP
);
5925 #ifdef CTORS_SECTION_ASM_OP
5926 ctors_section
= get_unnamed_section (0, output_section_asm_op
,
5927 CTORS_SECTION_ASM_OP
);
5930 #ifdef DTORS_SECTION_ASM_OP
5931 dtors_section
= get_unnamed_section (0, output_section_asm_op
,
5932 DTORS_SECTION_ASM_OP
);
5935 #ifdef BSS_SECTION_ASM_OP
5936 bss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
5937 output_section_asm_op
,
5938 BSS_SECTION_ASM_OP
);
5941 #ifdef SBSS_SECTION_ASM_OP
5942 sbss_section
= get_unnamed_section (SECTION_WRITE
| SECTION_BSS
,
5943 output_section_asm_op
,
5944 SBSS_SECTION_ASM_OP
);
5947 tls_comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
5948 | SECTION_COMMON
, emit_tls_common
);
5949 lcomm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
5950 | SECTION_COMMON
, emit_local
);
5951 comm_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
5952 | SECTION_COMMON
, emit_common
);
5954 #if defined ASM_OUTPUT_ALIGNED_BSS
5955 bss_noswitch_section
= get_noswitch_section (SECTION_WRITE
| SECTION_BSS
,
5959 targetm
.asm_out
.init_sections ();
5961 if (readonly_data_section
== NULL
)
5962 readonly_data_section
= text_section
;
5964 #ifdef ASM_OUTPUT_EXTERNAL
5965 pending_assemble_externals_set
= pointer_set_create ();
5970 decl_default_tls_model (const_tree decl
)
5972 enum tls_model kind
;
5975 is_local
= targetm
.binds_local_p (decl
);
5979 kind
= TLS_MODEL_LOCAL_EXEC
;
5981 kind
= TLS_MODEL_INITIAL_EXEC
;
5984 /* Local dynamic is inefficient when we're not combining the
5985 parts of the address. */
5986 else if (optimize
&& is_local
)
5987 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
5989 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
5990 if (kind
< flag_tls_default
)
5991 kind
= flag_tls_default
;
5996 /* Select a set of attributes for section NAME based on the properties
5997 of DECL and whether or not RELOC indicates that DECL's initializer
5998 might contain runtime relocations.
6000 We make the section read-only and executable for a function decl,
6001 read-only for a const data decl, and writable for a non-const data decl. */
6004 default_section_type_flags (tree decl
, const char *name
, int reloc
)
6008 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
6009 flags
= SECTION_CODE
;
6012 enum section_category category
6013 = categorize_decl_for_section (decl
, reloc
);
6014 if (decl_readonly_section_1 (category
))
6016 else if (category
== SECCAT_DATA_REL_RO
6017 || category
== SECCAT_DATA_REL_RO_LOCAL
)
6018 flags
= SECTION_WRITE
| SECTION_RELRO
;
6020 flags
= SECTION_WRITE
;
6024 flags
= SECTION_WRITE
;
6025 if (strcmp (name
, ".data.rel.ro") == 0
6026 || strcmp (name
, ".data.rel.ro.local") == 0)
6027 flags
|= SECTION_RELRO
;
6030 if (decl
&& DECL_P (decl
) && DECL_COMDAT_GROUP (decl
))
6031 flags
|= SECTION_LINKONCE
;
6033 if (strcmp (name
, ".vtable_map_vars") == 0)
6034 flags
|= SECTION_LINKONCE
;
6036 if (decl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6037 flags
|= SECTION_TLS
| SECTION_WRITE
;
6039 if (strcmp (name
, ".bss") == 0
6040 || strncmp (name
, ".bss.", 5) == 0
6041 || strncmp (name
, ".gnu.linkonce.b.", 16) == 0
6042 || strcmp (name
, ".sbss") == 0
6043 || strncmp (name
, ".sbss.", 6) == 0
6044 || strncmp (name
, ".gnu.linkonce.sb.", 17) == 0)
6045 flags
|= SECTION_BSS
;
6047 if (strcmp (name
, ".tdata") == 0
6048 || strncmp (name
, ".tdata.", 7) == 0
6049 || strncmp (name
, ".gnu.linkonce.td.", 17) == 0)
6050 flags
|= SECTION_TLS
;
6052 if (strcmp (name
, ".tbss") == 0
6053 || strncmp (name
, ".tbss.", 6) == 0
6054 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
6055 flags
|= SECTION_TLS
| SECTION_BSS
;
6057 /* These three sections have special ELF types. They are neither
6058 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
6059 want to print a section type (@progbits or @nobits). If someone
6060 is silly enough to emit code or TLS variables to one of these
6061 sections, then don't handle them specially. */
6062 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
))
6063 && (strcmp (name
, ".init_array") == 0
6064 || strcmp (name
, ".fini_array") == 0
6065 || strcmp (name
, ".preinit_array") == 0))
6066 flags
|= SECTION_NOTYPE
;
6071 /* Return true if the target supports some form of global BSS,
6072 either through bss_noswitch_section, or by selecting a BSS
6073 section in TARGET_ASM_SELECT_SECTION. */
6076 have_global_bss_p (void)
6078 return bss_noswitch_section
|| targetm
.have_switchable_bss_sections
;
6081 /* Output assembly to switch to section NAME with attribute FLAGS.
6082 Four variants for common object file formats. */
6085 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
6086 unsigned int flags ATTRIBUTE_UNUSED
,
6087 tree decl ATTRIBUTE_UNUSED
)
6089 /* Some object formats don't support named sections at all. The
6090 front-end should already have flagged this as an error. */
6094 #ifndef TLS_SECTION_ASM_FLAG
6095 #define TLS_SECTION_ASM_FLAG 'T'
6099 default_elf_asm_named_section (const char *name
, unsigned int flags
,
6100 tree decl ATTRIBUTE_UNUSED
)
6102 char flagchars
[10], *f
= flagchars
;
6104 /* If we have already declared this section, we can use an
6105 abbreviated form to switch back to it -- unless this section is
6106 part of a COMDAT groups, in which case GAS requires the full
6107 declaration every time. */
6108 if (!(HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6109 && (flags
& SECTION_DECLARED
))
6111 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
6115 if (!(flags
& SECTION_DEBUG
))
6117 if (flags
& SECTION_EXCLUDE
)
6119 if (flags
& SECTION_WRITE
)
6121 if (flags
& SECTION_CODE
)
6123 if (flags
& SECTION_SMALL
)
6125 if (flags
& SECTION_MERGE
)
6127 if (flags
& SECTION_STRINGS
)
6129 if (flags
& SECTION_TLS
)
6130 *f
++ = TLS_SECTION_ASM_FLAG
;
6131 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6135 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
6137 if (!(flags
& SECTION_NOTYPE
))
6142 if (flags
& SECTION_BSS
)
6148 /* On platforms that use "@" as the assembly comment character,
6150 if (strcmp (ASM_COMMENT_START
, "@") == 0)
6152 fprintf (asm_out_file
, format
, type
);
6154 if (flags
& SECTION_ENTSIZE
)
6155 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
6156 if (HAVE_COMDAT_GROUP
&& (flags
& SECTION_LINKONCE
))
6158 if (TREE_CODE (decl
) == IDENTIFIER_NODE
)
6159 fprintf (asm_out_file
, ",%s,comdat", IDENTIFIER_POINTER (decl
));
6161 fprintf (asm_out_file
, ",%s,comdat",
6162 IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl
)));
6166 putc ('\n', asm_out_file
);
6170 default_coff_asm_named_section (const char *name
, unsigned int flags
,
6171 tree decl ATTRIBUTE_UNUSED
)
6173 char flagchars
[8], *f
= flagchars
;
6175 if (flags
& SECTION_WRITE
)
6177 if (flags
& SECTION_CODE
)
6181 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
6185 default_pe_asm_named_section (const char *name
, unsigned int flags
,
6188 default_coff_asm_named_section (name
, flags
, decl
);
6190 if (flags
& SECTION_LINKONCE
)
6192 /* Functions may have been compiled at various levels of
6193 optimization so we can't use `same_size' here.
6194 Instead, have the linker pick one. */
6195 fprintf (asm_out_file
, "\t.linkonce %s\n",
6196 (flags
& SECTION_CODE
? "discard" : "same_size"));
6200 /* The lame default section selector. */
6203 default_select_section (tree decl
, int reloc
,
6204 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6208 if (decl_readonly_section (decl
, reloc
))
6209 return readonly_data_section
;
6211 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6213 if (! ((flag_pic
&& reloc
)
6214 || !TREE_READONLY (decl
)
6215 || TREE_SIDE_EFFECTS (decl
)
6216 || !TREE_CONSTANT (decl
)))
6217 return readonly_data_section
;
6219 else if (TREE_CODE (decl
) == STRING_CST
)
6220 return readonly_data_section
;
6221 else if (! (flag_pic
&& reloc
))
6222 return readonly_data_section
;
6224 return data_section
;
6227 enum section_category
6228 categorize_decl_for_section (const_tree decl
, int reloc
)
6230 enum section_category ret
;
6232 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6234 else if (TREE_CODE (decl
) == STRING_CST
)
6236 if ((flag_sanitize
& SANITIZE_ADDRESS
)
6237 && asan_protect_global (CONST_CAST_TREE (decl
)))
6238 /* or !flag_merge_constants */
6239 return SECCAT_RODATA
;
6241 return SECCAT_RODATA_MERGE_STR
;
6243 else if (TREE_CODE (decl
) == VAR_DECL
)
6245 if (bss_initializer_p (decl
))
6247 else if (! TREE_READONLY (decl
)
6248 || TREE_SIDE_EFFECTS (decl
)
6249 || ! TREE_CONSTANT (DECL_INITIAL (decl
)))
6251 /* Here the reloc_rw_mask is not testing whether the section should
6252 be read-only or not, but whether the dynamic link will have to
6253 do something. If so, we wish to segregate the data in order to
6254 minimize cache misses inside the dynamic linker. */
6255 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6256 ret
= reloc
== 1 ? SECCAT_DATA_REL_LOCAL
: SECCAT_DATA_REL
;
6260 else if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6261 ret
= reloc
== 1 ? SECCAT_DATA_REL_RO_LOCAL
: SECCAT_DATA_REL_RO
;
6262 else if (reloc
|| flag_merge_constants
< 2
6263 || ((flag_sanitize
& SANITIZE_ADDRESS
)
6264 && asan_protect_global (CONST_CAST_TREE (decl
))))
6265 /* C and C++ don't allow different variables to share the same
6266 location. -fmerge-all-constants allows even that (at the
6267 expense of not conforming). */
6268 ret
= SECCAT_RODATA
;
6269 else if (TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
6270 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
6272 ret
= SECCAT_RODATA_MERGE_CONST
;
6274 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
6276 if ((reloc
& targetm
.asm_out
.reloc_rw_mask ())
6277 || TREE_SIDE_EFFECTS (decl
)
6278 || ! TREE_CONSTANT (decl
))
6281 ret
= SECCAT_RODATA
;
6284 ret
= SECCAT_RODATA
;
6286 /* There are no read-only thread-local sections. */
6287 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6289 /* Note that this would be *just* SECCAT_BSS, except that there's
6290 no concept of a read-only thread-local-data section. */
6291 if (ret
== SECCAT_BSS
6292 || (flag_zero_initialized_in_bss
6293 && initializer_zerop (DECL_INITIAL (decl
))))
6299 /* If the target uses small data sections, select it. */
6300 else if (targetm
.in_small_data_p (decl
))
6302 if (ret
== SECCAT_BSS
)
6304 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
6305 ret
= SECCAT_SRODATA
;
6314 decl_readonly_section_1 (enum section_category category
)
6319 case SECCAT_RODATA_MERGE_STR
:
6320 case SECCAT_RODATA_MERGE_STR_INIT
:
6321 case SECCAT_RODATA_MERGE_CONST
:
6322 case SECCAT_SRODATA
:
6330 decl_readonly_section (const_tree decl
, int reloc
)
6332 return decl_readonly_section_1 (categorize_decl_for_section (decl
, reloc
));
6335 /* Select a section based on the above categorization. */
6338 default_elf_select_section (tree decl
, int reloc
,
6339 unsigned HOST_WIDE_INT align
)
6342 switch (categorize_decl_for_section (decl
, reloc
))
6345 /* We're not supposed to be called on FUNCTION_DECLs. */
6348 return readonly_data_section
;
6349 case SECCAT_RODATA_MERGE_STR
:
6350 return mergeable_string_section (decl
, align
, 0);
6351 case SECCAT_RODATA_MERGE_STR_INIT
:
6352 return mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
6353 case SECCAT_RODATA_MERGE_CONST
:
6354 return mergeable_constant_section (DECL_MODE (decl
), align
, 0);
6355 case SECCAT_SRODATA
:
6359 return data_section
;
6360 case SECCAT_DATA_REL
:
6361 sname
= ".data.rel";
6363 case SECCAT_DATA_REL_LOCAL
:
6364 sname
= ".data.rel.local";
6366 case SECCAT_DATA_REL_RO
:
6367 sname
= ".data.rel.ro";
6369 case SECCAT_DATA_REL_RO_LOCAL
:
6370 sname
= ".data.rel.ro.local";
6393 return get_named_section (decl
, sname
, reloc
);
6396 /* Construct a unique section name based on the decl name and the
6397 categorization performed above. */
6400 default_unique_section (tree decl
, int reloc
)
6402 /* We only need to use .gnu.linkonce if we don't have COMDAT groups. */
6403 bool one_only
= DECL_ONE_ONLY (decl
) && !HAVE_COMDAT_GROUP
;
6404 const char *prefix
, *name
, *linkonce
;
6407 switch (categorize_decl_for_section (decl
, reloc
))
6410 prefix
= one_only
? ".t" : ".text";
6413 case SECCAT_RODATA_MERGE_STR
:
6414 case SECCAT_RODATA_MERGE_STR_INIT
:
6415 case SECCAT_RODATA_MERGE_CONST
:
6416 prefix
= one_only
? ".r" : ".rodata";
6418 case SECCAT_SRODATA
:
6419 prefix
= one_only
? ".s2" : ".sdata2";
6422 prefix
= one_only
? ".d" : ".data";
6424 case SECCAT_DATA_REL
:
6425 prefix
= one_only
? ".d.rel" : ".data.rel";
6427 case SECCAT_DATA_REL_LOCAL
:
6428 prefix
= one_only
? ".d.rel.local" : ".data.rel.local";
6430 case SECCAT_DATA_REL_RO
:
6431 prefix
= one_only
? ".d.rel.ro" : ".data.rel.ro";
6433 case SECCAT_DATA_REL_RO_LOCAL
:
6434 prefix
= one_only
? ".d.rel.ro.local" : ".data.rel.ro.local";
6437 prefix
= one_only
? ".s" : ".sdata";
6440 prefix
= one_only
? ".b" : ".bss";
6443 prefix
= one_only
? ".sb" : ".sbss";
6446 prefix
= one_only
? ".td" : ".tdata";
6449 prefix
= one_only
? ".tb" : ".tbss";
6455 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
6456 name
= targetm
.strip_name_encoding (name
);
6458 /* If we're using one_only, then there needs to be a .gnu.linkonce
6459 prefix to the section name. */
6460 linkonce
= one_only
? ".gnu.linkonce" : "";
6462 string
= ACONCAT ((linkonce
, prefix
, ".", name
, NULL
));
6464 set_decl_section_name (decl
, build_string (strlen (string
), string
));
6467 /* Like compute_reloc_for_constant, except for an RTX. The return value
6468 is a mask for which bit 1 indicates a global relocation, and bit 0
6469 indicates a local relocation. */
6472 compute_reloc_for_rtx_1 (rtx
*xp
, void *data
)
6474 int *preloc
= (int *) data
;
6477 switch (GET_CODE (x
))
6480 *preloc
|= SYMBOL_REF_LOCAL_P (x
) ? 1 : 2;
6493 compute_reloc_for_rtx (rtx x
)
6497 switch (GET_CODE (x
))
6503 for_each_rtx (&x
, compute_reloc_for_rtx_1
, &reloc
);
6512 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
6514 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
6516 if (compute_reloc_for_rtx (x
) & targetm
.asm_out
.reloc_rw_mask ())
6517 return data_section
;
6519 return readonly_data_section
;
6523 default_elf_select_rtx_section (enum machine_mode mode
, rtx x
,
6524 unsigned HOST_WIDE_INT align
)
6526 int reloc
= compute_reloc_for_rtx (x
);
6528 /* ??? Handle small data here somehow. */
6530 if (reloc
& targetm
.asm_out
.reloc_rw_mask ())
6533 return get_named_section (NULL
, ".data.rel.ro.local", 1);
6535 return get_named_section (NULL
, ".data.rel.ro", 3);
6538 return mergeable_constant_section (mode
, align
, 0);
6541 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
6544 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
6549 /* Careful not to prod global register variables. */
6552 symbol
= XEXP (rtl
, 0);
6553 if (GET_CODE (symbol
) != SYMBOL_REF
)
6556 flags
= SYMBOL_REF_FLAGS (symbol
) & SYMBOL_FLAG_HAS_BLOCK_INFO
;
6557 if (TREE_CODE (decl
) == FUNCTION_DECL
)
6558 flags
|= SYMBOL_FLAG_FUNCTION
;
6559 if (targetm
.binds_local_p (decl
))
6560 flags
|= SYMBOL_FLAG_LOCAL
;
6561 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL_P (decl
))
6562 flags
|= DECL_TLS_MODEL (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
6563 else if (targetm
.in_small_data_p (decl
))
6564 flags
|= SYMBOL_FLAG_SMALL
;
6565 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
6566 being PUBLIC, the thing *must* be defined in this translation unit.
6567 Prevent this buglet from being propagated into rtl code as well. */
6568 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
6569 flags
|= SYMBOL_FLAG_EXTERNAL
;
6571 SYMBOL_REF_FLAGS (symbol
) = flags
;
6574 /* By default, we do nothing for encode_section_info, so we need not
6575 do anything but discard the '*' marker. */
6578 default_strip_name_encoding (const char *str
)
6580 return str
+ (*str
== '*');
6583 #ifdef ASM_OUTPUT_DEF
6584 /* The default implementation of TARGET_ASM_OUTPUT_ANCHOR. Define the
6585 anchor relative to ".", the current section position. */
6588 default_asm_output_anchor (rtx symbol
)
6592 sprintf (buffer
, "*. + " HOST_WIDE_INT_PRINT_DEC
,
6593 SYMBOL_REF_BLOCK_OFFSET (symbol
));
6594 ASM_OUTPUT_DEF (asm_out_file
, XSTR (symbol
, 0), buffer
);
6598 /* The default implementation of TARGET_USE_ANCHORS_FOR_SYMBOL_P. */
6601 default_use_anchors_for_symbol_p (const_rtx symbol
)
6606 /* Don't use anchors for mergeable sections. The linker might move
6607 the objects around. */
6608 sect
= SYMBOL_REF_BLOCK (symbol
)->sect
;
6609 if (sect
->common
.flags
& SECTION_MERGE
)
6612 /* Don't use anchors for small data sections. The small data register
6613 acts as an anchor for such sections. */
6614 if (sect
->common
.flags
& SECTION_SMALL
)
6617 decl
= SYMBOL_REF_DECL (symbol
);
6618 if (decl
&& DECL_P (decl
))
6620 /* Don't use section anchors for decls that might be defined or
6621 usurped by other modules. */
6622 if (TREE_PUBLIC (decl
) && !decl_binds_to_current_def_p (decl
))
6625 /* Don't use section anchors for decls that will be placed in a
6626 small data section. */
6627 /* ??? Ideally, this check would be redundant with the SECTION_SMALL
6628 one above. The problem is that we only use SECTION_SMALL for
6629 sections that should be marked as small in the section directive. */
6630 if (targetm
.in_small_data_p (decl
))
6636 /* Return true when RESOLUTION indicate that symbol will be bound to the
6637 definition provided by current .o file. */
6640 resolution_to_local_definition_p (enum ld_plugin_symbol_resolution resolution
)
6642 return (resolution
== LDPR_PREVAILING_DEF
6643 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6644 || resolution
== LDPR_PREVAILING_DEF_IRONLY
);
6647 /* Return true when RESOLUTION indicate that symbol will be bound locally
6648 within current executable or DSO. */
6651 resolution_local_p (enum ld_plugin_symbol_resolution resolution
)
6653 return (resolution
== LDPR_PREVAILING_DEF
6654 || resolution
== LDPR_PREVAILING_DEF_IRONLY
6655 || resolution
== LDPR_PREVAILING_DEF_IRONLY_EXP
6656 || resolution
== LDPR_PREEMPTED_REG
6657 || resolution
== LDPR_PREEMPTED_IR
6658 || resolution
== LDPR_RESOLVED_IR
6659 || resolution
== LDPR_RESOLVED_EXEC
);
6662 /* Assume ELF-ish defaults, since that's pretty much the most liberal
6663 wrt cross-module name binding. */
6666 default_binds_local_p (const_tree exp
)
6668 return default_binds_local_p_1 (exp
, flag_shlib
);
6672 default_binds_local_p_1 (const_tree exp
, int shlib
)
6675 bool resolved_locally
= false;
6676 bool resolved_to_local_def
= false;
6678 /* With resolution file in hands, take look into resolutions.
6679 We can't just return true for resolved_locally symbols,
6680 because dynamic linking might overwrite symbols
6681 in shared libraries. */
6682 if (TREE_CODE (exp
) == VAR_DECL
&& TREE_PUBLIC (exp
)
6683 && (TREE_STATIC (exp
) || DECL_EXTERNAL (exp
)))
6685 varpool_node
*vnode
= varpool_get_node (exp
);
6686 if (vnode
&& (resolution_local_p (vnode
->resolution
) || vnode
->in_other_partition
))
6687 resolved_locally
= true;
6689 && resolution_to_local_definition_p (vnode
->resolution
))
6690 resolved_to_local_def
= true;
6692 else if (TREE_CODE (exp
) == FUNCTION_DECL
&& TREE_PUBLIC (exp
))
6694 struct cgraph_node
*node
= cgraph_get_node (exp
);
6696 && (resolution_local_p (node
->resolution
) || node
->in_other_partition
))
6697 resolved_locally
= true;
6699 && resolution_to_local_definition_p (node
->resolution
))
6700 resolved_to_local_def
= true;
6703 /* A non-decl is an entry in the constant pool. */
6706 /* Weakrefs may not bind locally, even though the weakref itself is always
6707 static and therefore local. Similarly, the resolver for ifunc functions
6708 might resolve to a non-local function.
6709 FIXME: We can resolve the weakref case more curefuly by looking at the
6711 else if (lookup_attribute ("weakref", DECL_ATTRIBUTES (exp
))
6712 || (TREE_CODE (exp
) == FUNCTION_DECL
6713 && lookup_attribute ("ifunc", DECL_ATTRIBUTES (exp
))))
6715 /* Static variables are always local. */
6716 else if (! TREE_PUBLIC (exp
))
6718 /* A variable is local if the user has said explicitly that it will
6720 else if ((DECL_VISIBILITY_SPECIFIED (exp
)
6721 || resolved_to_local_def
)
6722 && DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
6724 /* Variables defined outside this object might not be local. */
6725 else if (DECL_EXTERNAL (exp
) && !resolved_locally
)
6727 /* If defined in this object and visibility is not default, must be
6729 else if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
6731 /* Default visibility weak data can be overridden by a strong symbol
6732 in another module and so are not local. */
6733 else if (DECL_WEAK (exp
)
6734 && !resolved_locally
)
6736 /* If PIC, then assume that any global name can be overridden by
6737 symbols resolved from other modules. */
6740 /* Uninitialized COMMON variable may be unified with symbols
6741 resolved from other modules. */
6742 else if (DECL_COMMON (exp
)
6743 && !resolved_locally
6744 && (DECL_INITIAL (exp
) == NULL
6745 || DECL_INITIAL (exp
) == error_mark_node
))
6747 /* Otherwise we're left with initialized (or non-common) global data
6748 which is of necessity defined locally. */
6755 /* Return true when references to DECL must bind to current definition in
6758 The condition is usually equivalent to whether the function binds to the
6759 current module (shared library or executable), that is to binds_local_p.
6760 We use this fact to avoid need for another target hook and implement
6761 the logic using binds_local_p and just special cases where
6762 decl_binds_to_current_def_p is stronger than binds_local_p. In particular
6763 the weak definitions (that can be overwritten at linktime by other
6764 definition from different object file) and when resolution info is available
6765 we simply use the knowledge passed to us by linker plugin. */
6767 decl_binds_to_current_def_p (tree decl
)
6769 gcc_assert (DECL_P (decl
));
6770 if (!targetm
.binds_local_p (decl
))
6772 if (!TREE_PUBLIC (decl
))
6774 /* When resolution is available, just use it. */
6775 if (TREE_CODE (decl
) == VAR_DECL
6776 && (TREE_STATIC (decl
) || DECL_EXTERNAL (decl
)))
6778 varpool_node
*vnode
= varpool_get_node (decl
);
6780 && vnode
->resolution
!= LDPR_UNKNOWN
)
6781 return resolution_to_local_definition_p (vnode
->resolution
);
6783 else if (TREE_CODE (decl
) == FUNCTION_DECL
)
6785 struct cgraph_node
*node
= cgraph_get_node (decl
);
6787 && node
->resolution
!= LDPR_UNKNOWN
)
6788 return resolution_to_local_definition_p (node
->resolution
);
6790 /* Otherwise we have to assume the worst for DECL_WEAK (hidden weaks
6791 binds locally but still can be overwritten), DECL_COMMON (can be merged
6792 with a non-common definition somewhere in the same module) or
6794 This rely on fact that binds_local_p behave as decl_replaceable_p
6795 for all other declaration types. */
6796 if (DECL_WEAK (decl
))
6798 if (DECL_COMMON (decl
)
6799 && (DECL_INITIAL (decl
) == NULL
6800 || DECL_INITIAL (decl
) == error_mark_node
))
6802 if (DECL_EXTERNAL (decl
))
6807 /* A replaceable function or variable is one which may be replaced
6808 at link-time with an entirely different definition, provided that the
6809 replacement has the same type. For example, functions declared
6810 with __attribute__((weak)) on most systems are replaceable.
6812 COMDAT functions are not replaceable, since all definitions of the
6813 function must be equivalent. It is important that COMDAT functions
6814 not be treated as replaceable so that use of C++ template
6815 instantiations is not penalized. */
6818 decl_replaceable_p (tree decl
)
6820 gcc_assert (DECL_P (decl
));
6821 if (!TREE_PUBLIC (decl
) || DECL_COMDAT (decl
))
6823 return !decl_binds_to_current_def_p (decl
);
6826 /* Default function to output code that will globalize a label. A
6827 target must define GLOBAL_ASM_OP or provide its own function to
6828 globalize a label. */
6829 #ifdef GLOBAL_ASM_OP
6831 default_globalize_label (FILE * stream
, const char *name
)
6833 fputs (GLOBAL_ASM_OP
, stream
);
6834 assemble_name (stream
, name
);
6835 putc ('\n', stream
);
6837 #endif /* GLOBAL_ASM_OP */
6839 /* Default function to output code that will globalize a declaration. */
6841 default_globalize_decl_name (FILE * stream
, tree decl
)
6843 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
6844 targetm
.asm_out
.globalize_label (stream
, name
);
6847 /* Default function to output a label for unwind information. The
6848 default is to do nothing. A target that needs nonlocal labels for
6849 unwind information must provide its own function to do this. */
6851 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
6852 tree decl ATTRIBUTE_UNUSED
,
6853 int for_eh ATTRIBUTE_UNUSED
,
6854 int empty ATTRIBUTE_UNUSED
)
6858 /* Default function to output a label to divide up the exception table.
6859 The default is to do nothing. A target that needs/wants to divide
6860 up the table must provide it's own function to do this. */
6862 default_emit_except_table_label (FILE * stream ATTRIBUTE_UNUSED
)
6866 /* This is how to output an internal numbered label where PREFIX is
6867 the class of label and LABELNO is the number within the class. */
6870 default_generate_internal_label (char *buf
, const char *prefix
,
6871 unsigned long labelno
)
6873 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
6876 /* This is how to output an internal numbered label where PREFIX is
6877 the class of label and LABELNO is the number within the class. */
6880 default_internal_label (FILE *stream
, const char *prefix
,
6881 unsigned long labelno
)
6883 char *const buf
= (char *) alloca (40 + strlen (prefix
));
6884 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
6885 ASM_OUTPUT_INTERNAL_LABEL (stream
, buf
);
6889 /* The default implementation of ASM_DECLARE_CONSTANT_NAME. */
6892 default_asm_declare_constant_name (FILE *file
, const char *name
,
6893 const_tree exp ATTRIBUTE_UNUSED
,
6894 HOST_WIDE_INT size ATTRIBUTE_UNUSED
)
6896 assemble_label (file
, name
);
6899 /* This is the default behavior at the beginning of a file. It's
6900 controlled by two other target-hook toggles. */
6902 default_file_start (void)
6904 if (targetm
.asm_file_start_app_off
6905 && !(flag_verbose_asm
|| flag_debug_asm
|| flag_dump_rtl_in_asm
))
6906 fputs (ASM_APP_OFF
, asm_out_file
);
6908 if (targetm
.asm_file_start_file_directive
)
6909 output_file_directive (asm_out_file
, main_input_filename
);
6912 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
6913 which emits a special section directive used to indicate whether or
6914 not this object file needs an executable stack. This is primarily
6915 a GNU extension to ELF but could be used on other targets. */
6917 int trampolines_created
;
6920 file_end_indicate_exec_stack (void)
6922 unsigned int flags
= SECTION_DEBUG
;
6923 if (trampolines_created
)
6924 flags
|= SECTION_CODE
;
6926 switch_to_section (get_section (".note.GNU-stack", flags
, NULL
));
6929 /* Emit a special section directive to indicate that this object file
6930 was compiled with -fsplit-stack. This is used to let the linker
6931 detect calls between split-stack code and non-split-stack code, so
6932 that it can modify the split-stack code to allocate a sufficiently
6933 large stack. We emit another special section if there are any
6934 functions in this file which have the no_split_stack attribute, to
6935 prevent the linker from warning about being unable to convert the
6936 functions if they call non-split-stack code. */
6939 file_end_indicate_split_stack (void)
6941 if (flag_split_stack
)
6943 switch_to_section (get_section (".note.GNU-split-stack", SECTION_DEBUG
,
6945 if (saw_no_split_stack
)
6946 switch_to_section (get_section (".note.GNU-no-split-stack",
6947 SECTION_DEBUG
, NULL
));
6951 /* Output DIRECTIVE (a C string) followed by a newline. This is used as
6952 a get_unnamed_section callback. */
6955 output_section_asm_op (const void *directive
)
6957 fprintf (asm_out_file
, "%s\n", (const char *) directive
);
6960 /* Emit assembly code to switch to section NEW_SECTION. Do nothing if
6961 the current section is NEW_SECTION. */
6964 switch_to_section (section
*new_section
)
6966 if (in_section
== new_section
)
6969 if (new_section
->common
.flags
& SECTION_FORGET
)
6972 in_section
= new_section
;
6974 switch (SECTION_STYLE (new_section
))
6977 targetm
.asm_out
.named_section (new_section
->named
.name
,
6978 new_section
->named
.common
.flags
,
6979 new_section
->named
.decl
);
6982 case SECTION_UNNAMED
:
6983 new_section
->unnamed
.callback (new_section
->unnamed
.data
);
6986 case SECTION_NOSWITCH
:
6991 new_section
->common
.flags
|= SECTION_DECLARED
;
6994 /* If block symbol SYMBOL has not yet been assigned an offset, place
6995 it at the end of its block. */
6998 place_block_symbol (rtx symbol
)
7000 unsigned HOST_WIDE_INT size
, mask
, offset
;
7001 struct constant_descriptor_rtx
*desc
;
7002 unsigned int alignment
;
7003 struct object_block
*block
;
7006 gcc_assert (SYMBOL_REF_BLOCK (symbol
));
7007 if (SYMBOL_REF_BLOCK_OFFSET (symbol
) >= 0)
7010 /* Work out the symbol's size and alignment. */
7011 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7013 desc
= SYMBOL_REF_CONSTANT (symbol
);
7014 alignment
= desc
->align
;
7015 size
= GET_MODE_SIZE (desc
->mode
);
7017 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7019 decl
= SYMBOL_REF_DECL (symbol
);
7020 alignment
= DECL_ALIGN (decl
);
7021 size
= get_constant_size (DECL_INITIAL (decl
));
7022 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7023 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7024 && asan_protect_global (DECL_INITIAL (decl
)))
7025 size
+= asan_red_zone_size (size
);
7029 struct symtab_node
*snode
;
7030 decl
= SYMBOL_REF_DECL (symbol
);
7032 snode
= symtab_get_node (decl
);
7035 rtx target
= DECL_RTL (symtab_alias_ultimate_target (snode
)->decl
);
7037 place_block_symbol (target
);
7038 SYMBOL_REF_BLOCK_OFFSET (symbol
) = SYMBOL_REF_BLOCK_OFFSET (target
);
7041 alignment
= get_variable_align (decl
);
7042 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
7043 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7044 && asan_protect_global (decl
))
7046 size
+= asan_red_zone_size (size
);
7047 alignment
= MAX (alignment
,
7048 ASAN_RED_ZONE_SIZE
* BITS_PER_UNIT
);
7052 /* Calculate the object's offset from the start of the block. */
7053 block
= SYMBOL_REF_BLOCK (symbol
);
7054 mask
= alignment
/ BITS_PER_UNIT
- 1;
7055 offset
= (block
->size
+ mask
) & ~mask
;
7056 SYMBOL_REF_BLOCK_OFFSET (symbol
) = offset
;
7058 /* Record the block's new alignment and size. */
7059 block
->alignment
= MAX (block
->alignment
, alignment
);
7060 block
->size
= offset
+ size
;
7062 vec_safe_push (block
->objects
, symbol
);
7065 /* Return the anchor that should be used to address byte offset OFFSET
7066 from the first object in BLOCK. MODEL is the TLS model used
7070 get_section_anchor (struct object_block
*block
, HOST_WIDE_INT offset
,
7071 enum tls_model model
)
7074 unsigned int begin
, middle
, end
;
7075 unsigned HOST_WIDE_INT min_offset
, max_offset
, range
, bias
, delta
;
7078 /* Work out the anchor's offset. Use an offset of 0 for the first
7079 anchor so that we don't pessimize the case where we take the address
7080 of a variable at the beginning of the block. This is particularly
7081 useful when a block has only one variable assigned to it.
7083 We try to place anchors RANGE bytes apart, so there can then be
7084 anchors at +/-RANGE, +/-2 * RANGE, and so on, up to the limits of
7085 a ptr_mode offset. With some target settings, the lowest such
7086 anchor might be out of range for the lowest ptr_mode offset;
7087 likewise the highest anchor for the highest offset. Use anchors
7088 at the extreme ends of the ptr_mode range in such cases.
7090 All arithmetic uses unsigned integers in order to avoid
7092 max_offset
= (unsigned HOST_WIDE_INT
) targetm
.max_anchor_offset
;
7093 min_offset
= (unsigned HOST_WIDE_INT
) targetm
.min_anchor_offset
;
7094 range
= max_offset
- min_offset
+ 1;
7099 bias
= 1 << (GET_MODE_BITSIZE (ptr_mode
) - 1);
7102 delta
= -(unsigned HOST_WIDE_INT
) offset
+ max_offset
;
7103 delta
-= delta
% range
;
7106 offset
= (HOST_WIDE_INT
) (-delta
);
7110 delta
= (unsigned HOST_WIDE_INT
) offset
- min_offset
;
7111 delta
-= delta
% range
;
7112 if (delta
> bias
- 1)
7114 offset
= (HOST_WIDE_INT
) delta
;
7118 /* Do a binary search to see if there's already an anchor we can use.
7119 Set BEGIN to the new anchor's index if not. */
7121 end
= vec_safe_length (block
->anchors
);
7122 while (begin
!= end
)
7124 middle
= (end
+ begin
) / 2;
7125 anchor
= (*block
->anchors
)[middle
];
7126 if (SYMBOL_REF_BLOCK_OFFSET (anchor
) > offset
)
7128 else if (SYMBOL_REF_BLOCK_OFFSET (anchor
) < offset
)
7130 else if (SYMBOL_REF_TLS_MODEL (anchor
) > model
)
7132 else if (SYMBOL_REF_TLS_MODEL (anchor
) < model
)
7138 /* Create a new anchor with a unique label. */
7139 ASM_GENERATE_INTERNAL_LABEL (label
, "LANCHOR", anchor_labelno
++);
7140 anchor
= create_block_symbol (ggc_strdup (label
), block
, offset
);
7141 SYMBOL_REF_FLAGS (anchor
) |= SYMBOL_FLAG_LOCAL
| SYMBOL_FLAG_ANCHOR
;
7142 SYMBOL_REF_FLAGS (anchor
) |= model
<< SYMBOL_FLAG_TLS_SHIFT
;
7144 /* Insert it at index BEGIN. */
7145 vec_safe_insert (block
->anchors
, begin
, anchor
);
7149 /* Output the objects in BLOCK. */
7152 output_object_block (struct object_block
*block
)
7154 struct constant_descriptor_rtx
*desc
;
7156 HOST_WIDE_INT offset
;
7160 if (!block
->objects
)
7163 /* Switch to the section and make sure that the first byte is
7164 suitably aligned. */
7165 switch_to_section (block
->sect
);
7166 assemble_align (block
->alignment
);
7168 /* Define the values of all anchors relative to the current section
7170 FOR_EACH_VEC_SAFE_ELT (block
->anchors
, i
, symbol
)
7171 targetm
.asm_out
.output_anchor (symbol
);
7173 /* Output the objects themselves. */
7175 FOR_EACH_VEC_ELT (*block
->objects
, i
, symbol
)
7177 /* Move to the object's offset, padding with zeros if necessary. */
7178 assemble_zeros (SYMBOL_REF_BLOCK_OFFSET (symbol
) - offset
);
7179 offset
= SYMBOL_REF_BLOCK_OFFSET (symbol
);
7180 if (CONSTANT_POOL_ADDRESS_P (symbol
))
7182 desc
= SYMBOL_REF_CONSTANT (symbol
);
7183 output_constant_pool_1 (desc
, 1);
7184 offset
+= GET_MODE_SIZE (desc
->mode
);
7186 else if (TREE_CONSTANT_POOL_ADDRESS_P (symbol
))
7189 decl
= SYMBOL_REF_DECL (symbol
);
7190 assemble_constant_contents (DECL_INITIAL (decl
), XSTR (symbol
, 0),
7192 size
= get_constant_size (DECL_INITIAL (decl
));
7194 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7195 && TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
7196 && asan_protect_global (DECL_INITIAL (decl
)))
7198 size
= asan_red_zone_size (size
);
7199 assemble_zeros (size
);
7206 decl
= SYMBOL_REF_DECL (symbol
);
7207 assemble_variable_contents (decl
, XSTR (symbol
, 0), false);
7208 size
= tree_to_uhwi (DECL_SIZE_UNIT (decl
));
7210 if ((flag_sanitize
& SANITIZE_ADDRESS
)
7211 && asan_protect_global (decl
))
7213 size
= asan_red_zone_size (size
);
7214 assemble_zeros (size
);
7221 /* A htab_traverse callback used to call output_object_block for
7222 each member of object_block_htab. */
7225 output_object_block_htab (void **slot
, void *data ATTRIBUTE_UNUSED
)
7227 output_object_block ((struct object_block
*) (*slot
));
7231 /* Output the definitions of all object_blocks. */
7234 output_object_blocks (void)
7236 htab_traverse (object_block_htab
, output_object_block_htab
, NULL
);
7239 /* This function provides a possible implementation of the
7240 TARGET_ASM_RECORD_GCC_SWITCHES target hook for ELF targets. When triggered
7241 by -frecord-gcc-switches it creates a new mergeable, string section in the
7242 assembler output file called TARGET_ASM_RECORD_GCC_SWITCHES_SECTION which
7243 contains the switches in ASCII format.
7245 FIXME: This code does not correctly handle double quote characters
7246 that appear inside strings, (it strips them rather than preserving them).
7247 FIXME: ASM_OUTPUT_ASCII, as defined in config/elfos.h will not emit NUL
7248 characters - instead it treats them as sub-string separators. Since
7249 we want to emit NUL strings terminators into the object file we have to use
7253 elf_record_gcc_switches (print_switch_type type
, const char * name
)
7257 case SWITCH_TYPE_PASSED
:
7258 ASM_OUTPUT_ASCII (asm_out_file
, name
, strlen (name
));
7259 ASM_OUTPUT_SKIP (asm_out_file
, (unsigned HOST_WIDE_INT
) 1);
7262 case SWITCH_TYPE_DESCRIPTIVE
:
7265 /* Distinguish between invocations where name is NULL. */
7266 static bool started
= false;
7272 sec
= get_section (targetm
.asm_out
.record_gcc_switches_section
,
7276 | (SECTION_ENTSIZE
& 1),
7278 switch_to_section (sec
);
7287 /* The return value is currently ignored by the caller, but must be 0.
7288 For -fverbose-asm the return value would be the number of characters
7289 emitted into the assembler file. */
7293 /* Emit text to declare externally defined symbols. It is needed to
7294 properly support non-default visibility. */
7296 default_elf_asm_output_external (FILE *file ATTRIBUTE_UNUSED
,
7298 const char *name ATTRIBUTE_UNUSED
)
7300 /* We output the name if and only if TREE_SYMBOL_REFERENCED is
7301 set in order to avoid putting out names that are never really
7303 if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl
))
7304 && targetm
.binds_local_p (decl
))
7305 maybe_assemble_visibility (decl
);
7308 /* The default hook for TARGET_ASM_OUTPUT_SOURCE_FILENAME. */
7311 default_asm_output_source_filename (FILE *file
, const char *name
)
7313 #ifdef ASM_OUTPUT_SOURCE_FILENAME
7314 ASM_OUTPUT_SOURCE_FILENAME (file
, name
);
7316 fprintf (file
, "\t.file\t");
7317 output_quoted_string (file
, name
);
7322 /* Output a file name in the form wanted by System V. */
7325 output_file_directive (FILE *asm_file
, const char *input_name
)
7330 if (input_name
== NULL
)
7331 input_name
= "<stdin>";
7333 input_name
= remap_debug_filename (input_name
);
7335 len
= strlen (input_name
);
7336 na
= input_name
+ len
;
7338 /* NA gets INPUT_NAME sans directory names. */
7339 while (na
> input_name
)
7341 if (IS_DIR_SEPARATOR (na
[-1]))
7346 targetm
.asm_out
.output_source_filename (asm_file
, na
);
7349 /* Create a DEBUG_EXPR_DECL / DEBUG_EXPR pair from RTL expression
7352 make_debug_expr_from_rtl (const_rtx exp
)
7354 tree ddecl
= make_node (DEBUG_EXPR_DECL
), type
;
7355 enum machine_mode mode
= GET_MODE (exp
);
7358 DECL_ARTIFICIAL (ddecl
) = 1;
7359 if (REG_P (exp
) && REG_EXPR (exp
))
7360 type
= TREE_TYPE (REG_EXPR (exp
));
7361 else if (MEM_P (exp
) && MEM_EXPR (exp
))
7362 type
= TREE_TYPE (MEM_EXPR (exp
));
7365 if (type
&& TYPE_MODE (type
) == mode
)
7366 TREE_TYPE (ddecl
) = type
;
7368 TREE_TYPE (ddecl
) = lang_hooks
.types
.type_for_mode (mode
, 1);
7369 DECL_MODE (ddecl
) = mode
;
7370 dval
= gen_rtx_DEBUG_EXPR (mode
);
7371 DEBUG_EXPR_TREE_DECL (dval
) = ddecl
;
7372 SET_DECL_RTL (ddecl
, dval
);
7376 #ifdef ELF_ASCII_ESCAPES
7377 /* Default ASM_OUTPUT_LIMITED_STRING for ELF targets. */
7380 default_elf_asm_output_limited_string (FILE *f
, const char *s
)
7385 fputs (STRING_ASM_OP
, f
);
7390 escape
= ELF_ASCII_ESCAPES
[c
];
7397 /* TODO: Print in hex with fast function, important for -flto. */
7398 fprintf (f
, "\\%03o", c
);
7411 /* Default ASM_OUTPUT_ASCII for ELF targets. */
7414 default_elf_asm_output_ascii (FILE *f
, const char *s
, unsigned int len
)
7416 const char *limit
= s
+ len
;
7417 const char *last_null
= NULL
;
7418 unsigned bytes_in_chunk
= 0;
7422 for (; s
< limit
; s
++)
7426 if (bytes_in_chunk
>= 60)
7435 for (p
= s
; p
< limit
&& *p
!= '\0'; p
++)
7442 if (p
< limit
&& (p
- s
) <= (long) ELF_STRING_LIMIT
)
7444 if (bytes_in_chunk
> 0)
7451 default_elf_asm_output_limited_string (f
, s
);
7456 if (bytes_in_chunk
== 0)
7457 fputs (ASCII_DATA_ASM_OP
"\"", f
);
7460 escape
= ELF_ASCII_ESCAPES
[c
];
7468 /* TODO: Print in hex with fast function, important for -flto. */
7469 fprintf (f
, "\\%03o", c
);
7470 bytes_in_chunk
+= 4;
7475 bytes_in_chunk
+= 2;
7482 if (bytes_in_chunk
> 0)
7490 static GTY(()) section
*elf_init_array_section
;
7491 static GTY(()) section
*elf_fini_array_section
;
7494 get_elf_initfini_array_priority_section (int priority
,
7498 if (priority
!= DEFAULT_INIT_PRIORITY
)
7501 sprintf (buf
, "%s.%.5u",
7502 constructor_p
? ".init_array" : ".fini_array",
7504 sec
= get_section (buf
, SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7510 if (elf_init_array_section
== NULL
)
7511 elf_init_array_section
7512 = get_section (".init_array",
7513 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7514 sec
= elf_init_array_section
;
7518 if (elf_fini_array_section
== NULL
)
7519 elf_fini_array_section
7520 = get_section (".fini_array",
7521 SECTION_WRITE
| SECTION_NOTYPE
, NULL_TREE
);
7522 sec
= elf_fini_array_section
;
7528 /* Use .init_array section for constructors. */
7531 default_elf_init_array_asm_out_constructor (rtx symbol
, int priority
)
7533 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7535 assemble_addr_to_section (symbol
, sec
);
7538 /* Use .fini_array section for destructors. */
7541 default_elf_fini_array_asm_out_destructor (rtx symbol
, int priority
)
7543 section
*sec
= get_elf_initfini_array_priority_section (priority
,
7545 assemble_addr_to_section (symbol
, sec
);
7548 /* Default TARGET_ASM_OUTPUT_IDENT hook.
7550 This is a bit of a cheat. The real default is a no-op, but this
7551 hook is the default for all targets with a .ident directive. */
7554 default_asm_output_ident_directive (const char *ident_str
)
7556 const char *ident_asm_op
= "\t.ident\t";
7558 /* If we are still in the front end, do not write out the string
7559 to asm_out_file. Instead, add a fake top-level asm statement.
7560 This allows the front ends to use this hook without actually
7561 writing to asm_out_file, to handle #ident or Pragma Ident. */
7562 if (cgraph_state
== CGRAPH_STATE_PARSING
)
7564 char *buf
= ACONCAT ((ident_asm_op
, "\"", ident_str
, "\"\n", NULL
));
7565 add_asm_node (build_string (strlen (buf
), buf
));
7568 fprintf (asm_out_file
, "%s\"%s\"\n", ident_asm_op
, ident_str
);
7571 #include "gt-varasm.h"